diff --git a/.github/workflows/auto_changelog.yml b/.github/workflows/auto_changelog.yml index 37dc7d2e054efd..a2a438ee0098b7 100644 --- a/.github/workflows/auto_changelog.yml +++ b/.github/workflows/auto_changelog.yml @@ -10,11 +10,11 @@ permissions: contents: write jobs: auto_changelog: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: github.event.pull_request.merged == true steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Generate App Token id: app-token-generation diff --git a/.github/workflows/autowiki.yml b/.github/workflows/autowiki.yml index 2f6cadbbf922df..d6e8c5890972a5 100644 --- a/.github/workflows/autowiki.yml +++ b/.github/workflows/autowiki.yml @@ -8,7 +8,7 @@ permissions: jobs: autowiki: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: "Check for AUTOWIKI_USERNAME" id: secrets_set @@ -20,7 +20,7 @@ jobs: echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT - name: Checkout if: steps.secrets_set.outputs.SECRETS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install BYOND if: steps.secrets_set.outputs.SECRETS_ENABLED uses: ./.github/actions/restore_or_install_byond diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index 184fd52bd82990..e4201249185514 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -17,7 +17,7 @@ jobs: start_gate: if: ( !contains(github.event.head_commit.message, '[ci skip]') ) name: Start Gate - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Mandatory Empty Step run: exit 0 @@ -80,7 +80,7 @@ jobs: run_alternate_tests, run_linters, ] - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Decide whether the needed jobs succeeded or failed uses: re-actors/alls-green@release/v1 diff --git a/.github/workflows/codeowner_reviews.yml b/.github/workflows/codeowner_reviews.yml index cc5d8e8a20e034..f1cb174de37b4a 100644 --- a/.github/workflows/codeowner_reviews.yml +++ b/.github/workflows/codeowner_reviews.yml @@ -7,12 +7,12 @@ on: jobs: assign-users: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: # Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 #Parse the Codeowner file on non draft PRs - name: CodeOwnersParser diff --git a/.github/workflows/collect_data.yml b/.github/workflows/collect_data.yml index b82575bfd873c6..60cf249dfca01c 100644 --- a/.github/workflows/collect_data.yml +++ b/.github/workflows/collect_data.yml @@ -18,7 +18,7 @@ on: jobs: collect_data: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 outputs: maps: ${{ steps.map_finder.outputs.maps }} @@ -27,7 +27,7 @@ jobs: required_build_versions: ${{ steps.setup_required_build_versions.outputs.required_build_versions }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Find Maps id: map_finder run: | diff --git a/.github/workflows/compare_screenshots.yml b/.github/workflows/compare_screenshots.yml index 87c9b96a6d9847..b814905b9b8e2d 100644 --- a/.github/workflows/compare_screenshots.yml +++ b/.github/workflows/compare_screenshots.yml @@ -6,14 +6,14 @@ on: jobs: compare_screenshots: timeout-minutes: 15 - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup directory run: mkdir -p artifacts # If we ever add more artifacts, this is going to break, but it'll be obvious. - name: Download screenshot tests - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: artifacts - name: ls -R @@ -34,7 +34,7 @@ jobs: echo ${{ github.event.pull_request.number }} > artifacts/screenshot_comparisons/pull_request_number.txt - name: Upload bad screenshots if: failure() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: bad-screenshots path: artifacts/screenshot_comparisons diff --git a/.github/workflows/compile_all_maps.yml b/.github/workflows/compile_all_maps.yml index 2512d5fa97964d..c80c0f4ae052d7 100644 --- a/.github/workflows/compile_all_maps.yml +++ b/.github/workflows/compile_all_maps.yml @@ -10,11 +10,11 @@ on: jobs: compile_all_stations: name: Compile All Station Maps - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Bun uses: ./.github/actions/setup_bun - name: Restore BYOND from Cache @@ -31,11 +31,11 @@ jobs: compile_all_templates: name: Compile All Templates - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Bun uses: ./.github/actions/setup_bun - name: Restore BYOND from Cache diff --git a/.github/workflows/compile_changelogs.yml b/.github/workflows/compile_changelogs.yml index fd4214890f9ef8..d23589260fb72a 100644 --- a/.github/workflows/compile_changelogs.yml +++ b/.github/workflows/compile_changelogs.yml @@ -8,7 +8,7 @@ on: jobs: compile: name: "Compile changelogs" - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 permissions: contents: write steps: @@ -35,7 +35,7 @@ jobs: - name: "Checkout" if: steps.value_holder.outputs.ACTIONS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 25 persist-credentials: false diff --git a/.github/workflows/discord_discussions.yml b/.github/workflows/discord_discussions.yml index 68876aed185355..da1b2b223876e4 100644 --- a/.github/workflows/discord_discussions.yml +++ b/.github/workflows/discord_discussions.yml @@ -18,7 +18,7 @@ concurrency: jobs: manage-discord-discussion: name: Manage Discord Discussion - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: contains(github.event.pull_request.labels.*.name, 'Discord Discussion') steps: - name: Fail if vars.DISCORD_DISCUSSIONS_CHANNEL_ID is unset @@ -34,7 +34,7 @@ jobs: dotnet-quality: ga - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Build Tgstation.DiscordDiscussions run: dotnet publish -c Release -o discord_discussions_bins tools/Tgstation.DiscordDiscussions/Tgstation.DiscordDiscussions.csproj diff --git a/.github/workflows/discord_pr_announce.yml b/.github/workflows/discord_pr_announce.yml index d6150e76fb3f35..6ceb3546399808 100644 --- a/.github/workflows/discord_pr_announce.yml +++ b/.github/workflows/discord_pr_announce.yml @@ -5,7 +5,7 @@ on: jobs: notify: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: ${{ github.event.action != 'labeled' || github.event.label.name == 'Stale' }} steps: - name: "Check for DISCORD_WEBHOOK" diff --git a/.github/workflows/gbp.yml b/.github/workflows/gbp.yml index 00e763e4b97d43..7f751e7de1928f 100644 --- a/.github/workflows/gbp.yml +++ b/.github/workflows/gbp.yml @@ -5,14 +5,14 @@ on: jobs: # labeler must run before gbp because gbp calculates itself based on labels labeler: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: github.event.action == 'opened' || github.event.action == 'synchronize' permissions: pull-requests: write # to apply labels issues: write # to apply labels steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run Auto Labeler uses: actions/github-script@v7 with: @@ -26,9 +26,10 @@ jobs: labels: new_labels, }); console.log(`Labels updated: ${new_labels}`); + # DOPPLER SHIFT REMOVAL BEGIN - GBP is unused # gbp: -# runs-on: ubuntu-latest +# runs-on: ubuntu-24.04 # if: github.event.action == 'opened' || github.event.action == 'closed' # steps: # - name: "Check for ACTION_ENABLER secret and pass true to output if it exists to be checked by later steps" @@ -41,7 +42,7 @@ jobs: # echo "ACTIONS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT # - name: Checkout # if: steps.value_holder.outputs.ACTIONS_ENABLED -# uses: actions/checkout@v5 +# uses: actions/checkout@v6 # - name: Setup git # if: steps.value_holder.outputs.ACTIONS_ENABLED # run: | @@ -49,12 +50,12 @@ jobs: # git config --global user.email "<>" # - name: Checkout alternate branch # if: steps.value_holder.outputs.ACTIONS_ENABLED -# uses: actions/checkout@v5 +# uses: actions/checkout@v6 # with: # ref: "gbp-balances" # The branch name # path: gbp-balances - # This is to ensure we keep the gbp.toml from master - # without having to update our separate branch. +# This is to ensure we keep the gbp.toml from master +# without having to update our separate branch. # - name: Copy configuration # if: steps.value_holder.outputs.ACTIONS_ENABLED # run: cp ./.github/gbp.toml ./gbp-balances/.github/gbp.toml diff --git a/.github/workflows/gbp_collect.yml b/.github/workflows/gbp_collect.yml index 0bea51a49693c4..f9cc7d8034e7a2 100644 --- a/.github/workflows/gbp_collect.yml +++ b/.github/workflows/gbp_collect.yml @@ -1,13 +1,14 @@ # DOPPLER SHIFT REMOVAL BEGIN - GBP is unused #name: GBP Collection # Every hour at the :20 minute mark. GitHub tells us to pick odd hours, instead of just using the start. +# DOPPLER SHIFT REMOVAL BEGIN - GBP is unused #on: # schedule: # - cron: "20 * * * *" # workflow_dispatch: #jobs: # gbp_collection: -# runs-on: ubuntu-latest +# runs-on: ubuntu-24.04 # steps: # - name: "Check for ACTION_ENABLER secret and pass true to output if it exists to be checked by later steps" # id: value_holder @@ -19,7 +20,7 @@ # echo "ACTIONS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT # - name: Checkout # if: steps.value_holder.outputs.ACTIONS_ENABLED -# uses: actions/checkout@v5 +# uses: actions/checkout@v6 # - name: Setup git # if: steps.value_holder.outputs.ACTIONS_ENABLED # run: | @@ -27,12 +28,12 @@ # git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" # - name: Checkout alternate branch # if: steps.value_holder.outputs.ACTIONS_ENABLED -# uses: actions/checkout@v5 +# uses: actions/checkout@v6 # with: # ref: "gbp-balances" # The branch name # path: gbp-balances - # This is to ensure we keep the gbp.toml from master - # without having to update our separate branch. +# This is to ensure we keep the gbp.toml from master +# without having to update our separate branch. # - name: Copy configuration # if: steps.value_holder.outputs.ACTIONS_ENABLED # run: cp ./.github/gbp.toml ./gbp-balances/.github/gbp.toml diff --git a/.github/workflows/generate_client_storage.yml b/.github/workflows/generate_client_storage.yml new file mode 100644 index 00000000000000..f601288b14b3a8 --- /dev/null +++ b/.github/workflows/generate_client_storage.yml @@ -0,0 +1,33 @@ +name: "Generate Client Storage" +on: + push: + branches: + - master + paths: + - tgui/public/* + +jobs: + dispatch_repo: + if: ( !contains(github.event.head_commit.message, '[ci skip]') ) + name: Repository Dispatch + runs-on: ubuntu-24.04 + steps: + - name: Generate App Token + id: app-token-generation + uses: actions/create-github-app-token@v2 + if: env.APP_PRIVATE_KEY != '' && env.APP_ID != '' + with: + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + owner: tgstation + env: + APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }} + APP_ID: ${{ secrets.APP_ID }} + + - name: Send Repository Dispatch + if: success() + uses: peter-evans/repository-dispatch@v4 + with: + token: ${{ steps.app-token-generation.outputs.token }} + repository: tgstation/byond-client-storage + event-type: on_master_push diff --git a/.github/workflows/generate_documentation.yml b/.github/workflows/generate_documentation.yml index 79dc2593681da9..3949732751c597 100644 --- a/.github/workflows/generate_documentation.yml +++ b/.github/workflows/generate_documentation.yml @@ -10,12 +10,12 @@ jobs: permissions: contents: write # for JamesIves/github-pages-deploy-action to push changes in repo if: ( !contains(github.event.head_commit.message, '[ci skip]') ) - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 concurrency: gen-docs steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/SpacemanDMM key: ${{ runner.os }}-spacemandmm-${{ secrets.CACHE_PURGE_KEY }} @@ -27,7 +27,7 @@ jobs: touch dmdoc/.nojekyll echo codedocs.tgstation13.org > dmdoc/CNAME - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4.7.3 + uses: JamesIves/github-pages-deploy-action@v4.7.6 with: branch: gh-pages clean: true diff --git a/.github/workflows/remove_guide_comments.yml b/.github/workflows/remove_guide_comments.yml index 4bbc0c6025152c..e5e168df7f5809 100644 --- a/.github/workflows/remove_guide_comments.yml +++ b/.github/workflows/remove_guide_comments.yml @@ -6,10 +6,10 @@ on: types: [opened] jobs: remove_guide_comments: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Remove guide comments uses: actions/github-script@v7 with: diff --git a/.github/workflows/rerun_flaky_tests.yml b/.github/workflows/rerun_flaky_tests.yml index fc9238bcf02516..62f12dc4772ab1 100644 --- a/.github/workflows/rerun_flaky_tests.yml +++ b/.github/workflows/rerun_flaky_tests.yml @@ -6,11 +6,11 @@ on: - completed jobs: rerun_flaky_tests: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: ${{ github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.run_attempt == 1 }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Rerun flaky tests uses: actions/github-script@v7 with: @@ -18,11 +18,11 @@ jobs: const { rerunFlakyTests } = await import('${{ github.workspace }}/tools/pull_request_hooks/rerunFlakyTests.js') await rerunFlakyTests({ github, context }) report_flaky_tests: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.run_attempt == 2 }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Report flaky tests uses: actions/github-script@v7 with: diff --git a/.github/workflows/round_id_linker.yml b/.github/workflows/round_id_linker.yml index 7fb0ee8c4f3231..9b3ddfe2d36ba3 100644 --- a/.github/workflows/round_id_linker.yml +++ b/.github/workflows/round_id_linker.yml @@ -5,7 +5,7 @@ on: jobs: link_rounds: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: tgstation/round_linker@master with: diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml index d8be51d69ca57c..22401f63f289fc 100644 --- a/.github/workflows/run_integration_tests.yml +++ b/.github/workflows/run_integration_tests.yml @@ -26,17 +26,17 @@ jobs: # Otherwise, it will output `Run Tests (map; max)`. # For example, `Run Tests (runtimestation; 515)`. name: Run Tests (${{ inputs.major && format('{0}.{1}; ', inputs.major, inputs.minor) || '' }}${{ inputs.map }}; ${{ inputs.max_required_byond_client }}) - runs-on: ubuntu-latest - timeout-minutes: 25 # DOPPLER EDIT CHANGE - Original: timeout-minutes: 15 + runs-on: ubuntu-24.04 + timeout-minutes: 15 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Restore BYOND from Cache uses: ./.github/actions/restore_or_install_byond with: major: ${{ inputs.major }} minor: ${{ inputs.minor }} - name: Download build outputs - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: build-artifact-${{ inputs.major || env.BYOND_MAJOR }}-${{ inputs.minor || env.BYOND_MINOR}} path: ./ @@ -63,7 +63,7 @@ jobs: bash tools/ci/run_server.sh ${{ inputs.map }} - name: Upload screenshot tests if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: test_artifacts_${{ inputs.map }}_${{ inputs.major }}_${{ inputs.minor }} path: data/screenshots_new/ diff --git a/.github/workflows/run_linters.yml b/.github/workflows/run_linters.yml index cf8e56da583331..bf294d5f517d0a 100644 --- a/.github/workflows/run_linters.yml +++ b/.github/workflows/run_linters.yml @@ -5,13 +5,13 @@ on: jobs: linters: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Restore SpacemanDMM cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/SpacemanDMM key: ${{ runner.os }}-spacemandmm-${{ hashFiles('dependencies.sh') }} @@ -20,21 +20,21 @@ jobs: - name: Setup Bun uses: ./.github/actions/setup_bun - name: Restore Bootstrap cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: tools/bootstrap/.cache - key: ${{ runner.os }}-bootstrap-${{ hashFiles('tools/requirements.txt') }} + key: ${{ runner.os }}-bootstrap-${{ hashFiles('/tools/requirements.txt') }} restore-keys: | ${{ runner.os }}-bootstrap- - name: Restore Rust cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cargo - key: ${{ runner.os }}-rust-${{ hashFiles('tools/ci/ci_dependencies.sh')}} + key: ${{ runner.os }}-rust-${{ hashFiles('/tools/ci/ci_dependencies.sh')}} restore-keys: | ${{ runner.os }}-rust- - name: Restore Cutter cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: tools/icon_cutter/cache key: ${{ runner.os }}-cutter-${{ hashFiles('dependencies.sh') }} diff --git a/.github/workflows/setup_build_artifact.yml b/.github/workflows/setup_build_artifact.yml index 3cbfd8f39d9d8c..57e3a7715f5597 100644 --- a/.github/workflows/setup_build_artifact.yml +++ b/.github/workflows/setup_build_artifact.yml @@ -11,10 +11,10 @@ on: jobs: setup_build_artifact: name: Setup build artifact (${{ format('{0}.{1}', inputs.major, inputs.minor) }}) - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Bun uses: ./.github/actions/setup_bun - name: Restore BYOND from Cache @@ -35,7 +35,7 @@ jobs: bash tools/ci/copy_build_output.sh $OUTPUT_DIR - name: Upload artifact if: success() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: build-artifact-${{ inputs.major }}-${{ inputs.minor }} path: ${{ env.OUTPUT_DIR }} diff --git a/.github/workflows/show_screenshot_test_results.yml b/.github/workflows/show_screenshot_test_results.yml index 6901e1d1d1762f..2cfd4f2fd4a824 100644 --- a/.github/workflows/show_screenshot_test_results.yml +++ b/.github/workflows/show_screenshot_test_results.yml @@ -13,7 +13,7 @@ jobs: show_screenshot_test_results: if: ( !contains(github.event.head_commit.message, '[ci skip]') && github.event.workflow_run.run_attempt == 1 ) name: Show Screenshot Test Results - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: "Check for ARTIFACTS_FILE_HOUSE_KEY" id: secrets_set @@ -25,7 +25,7 @@ jobs: echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT - name: Checkout if: steps.secrets_set.outputs.SECRETS_ENABLED - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Prepare module if: steps.secrets_set.outputs.SECRETS_ENABLED run: | diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index f60a1c486d026d..55d9eef7e01f85 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,18 +12,22 @@ jobs: permissions: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/stale@v10 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 ~ 7 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" + stale-issue-message: "This issue has been marked for cleanup and will be automatically closed in ~ 14 days. If there is evidence that the issue still occurs, leave a comment with it attached and contact a maintainer to have the label removed." days-before-stale: 7 days-before-close: 7 + days-before-issue-stale: 14 + days-before-issue-close: 14 stale-pr-label: "Stale" - days-before-issue-stale: -1 - stale-issue-label: "Cleanup Flagged" + stale-issue-label: "Stale" + any-of-issue-labels: "Cleanup Flagged,🤖 Flaky Test Report" remove-issue-stale-when-updated: false - exempt-pr-labels: "RED LABEL,Good First PR,No Stale" + exempt-issue-labels: "RED LABEL" + exempt-pr-labels: "RED LABEL,Good First PR,No Stale" # DOPPER EDIT - ORIGINAL: exempt-pr-labels: "RED LABEL,Good First PR" operations-per-run: 300 diff --git a/.github/workflows/test_merge_bot.yml b/.github/workflows/test_merge_bot.yml index 101c3ad2b322ce..ee5d01e15f56f4 100644 --- a/.github/workflows/test_merge_bot.yml +++ b/.github/workflows/test_merge_bot.yml @@ -11,7 +11,7 @@ on: jobs: test_merge_bot: name: Test Merge Detector - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Check for GET_TEST_MERGES_URL id: secrets_set @@ -23,7 +23,7 @@ jobs: echo "GET_TEST_MERGES_URL=$SECRET_EXISTS" >> $GITHUB_OUTPUT - name: Checkout if: steps.secrets_set.outputs.GET_TEST_MERGES_URL - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Prepare module if: steps.secrets_set.outputs.GET_TEST_MERGES_URL run: | diff --git a/.github/workflows/tgs_test.yml b/.github/workflows/tgs_test.yml index feb89bac9c05ae..fefe765bb753f0 100644 --- a/.github/workflows/tgs_test.yml +++ b/.github/workflows/tgs_test.yml @@ -42,7 +42,7 @@ jobs: test_tgs_docker: if: ( !contains(github.event.head_commit.message, '[ci skip]') ) name: Test TGS Docker - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 concurrency: group: test_tgs_docker-${{ github.head_ref || github.run_id }} cancel-in-progress: true @@ -64,7 +64,7 @@ jobs: dotnet-version: 8.0.x - name: Checkout Repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Test TGS Integration run: dotnet run -c Release --project tools/tgs_test ${{ github.repository }} /tgs_instances/tgstation ${{ env.TGS_API_PORT }} ${{ github.event.pull_request.head.sha || github.sha }} ${{ secrets.GITHUB_TOKEN }} ${{ env.PR_NUMBER }} diff --git a/.github/workflows/update_tgs_dmapi.yml b/.github/workflows/update_tgs_dmapi.yml index 885ac26c8391d8..6335f9047f5024 100644 --- a/.github/workflows/update_tgs_dmapi.yml +++ b/.github/workflows/update_tgs_dmapi.yml @@ -7,14 +7,14 @@ on: jobs: update-dmapi: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 name: Update the TGS DMAPI permissions: contents: write pull-requests: write steps: - name: Clone - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Branch run: | diff --git a/.vscode/launch.json b/.vscode/launch.json index fd029c2874ee7b..e137e741ef40c2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -59,6 +59,14 @@ "dmb": "${workspaceFolder}/${command:CurrentDMB}", "dreamDaemon": true }, + { + "type": "byond", + "request": "launch", + "name": "Launch DreamDaemon (absolute minimum)", + "preLaunchTask": "Build All (absolute minimum)", + "dmb": "${workspaceFolder}/${command:CurrentDMB}", + "dreamDaemon": true + }, { "type": "byond", "request": "launch", diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql index 0ed001a8cc10dd..570fb85ee81106 100644 --- a/SQL/tgstation_schema.sql +++ b/SQL/tgstation_schema.sql @@ -647,7 +647,7 @@ CREATE TABLE `ticket` ( KEY `idx_ticket_act_time_rid` (`action`, `timestamp`, `round_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -DELIMITER $$ +DELIMITER // CREATE PROCEDURE `set_poll_deleted`( IN `poll_id` INT ) @@ -658,16 +658,16 @@ UPDATE `poll_option` SET deleted = 1 WHERE pollid = poll_id; UPDATE `poll_vote` SET deleted = 1 WHERE pollid = poll_id; UPDATE `poll_textreply` SET deleted = 1 WHERE pollid = poll_id; END -$$ +// CREATE TRIGGER `role_timeTlogupdate` AFTER UPDATE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (NEW.CKEY, NEW.job, NEW.minutes-OLD.minutes); END -$$ +// CREATE TRIGGER `role_timeTloginsert` AFTER INSERT ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (NEW.ckey, NEW.job, NEW.minutes); END -$$ +// CREATE TRIGGER `role_timeTlogdelete` AFTER DELETE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (OLD.ckey, OLD.job, 0-OLD.minutes); END -$$ +// DELIMITER ; -- diff --git a/SQL/tgstation_schema_prefixed.sql b/SQL/tgstation_schema_prefixed.sql index 7b73d443b442cb..28d9fd9a7e54a9 100644 --- a/SQL/tgstation_schema_prefixed.sql +++ b/SQL/tgstation_schema_prefixed.sql @@ -646,7 +646,7 @@ CREATE TABLE `SS13_ticket` ( KEY `idx_ticket_act_time_rid` (`action`, `timestamp`, `round_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -DELIMITER $$ +DELIMITER // CREATE PROCEDURE `set_poll_deleted`( IN `poll_id` INT ) @@ -657,16 +657,16 @@ UPDATE `SS13_poll_option` SET deleted = 1 WHERE pollid = poll_id; UPDATE `SS13_poll_vote` SET deleted = 1 WHERE pollid = poll_id; UPDATE `SS13_poll_textreply` SET deleted = 1 WHERE pollid = poll_id; END -$$ +// CREATE TRIGGER `SS13_role_timeTlogupdate` AFTER UPDATE ON `SS13_role_time` FOR EACH ROW BEGIN INSERT into SS13_role_time_log (ckey, job, delta) VALUES (NEW.CKEY, NEW.job, NEW.minutes-OLD.minutes); END -$$ +// CREATE TRIGGER `SS13_role_timeTloginsert` AFTER INSERT ON `SS13_role_time` FOR EACH ROW BEGIN INSERT into SS13_role_time_log (ckey, job, delta) VALUES (NEW.ckey, NEW.job, NEW.minutes); END -$$ +// CREATE TRIGGER `SS13_role_timeTlogdelete` AFTER DELETE ON `SS13_role_time` FOR EACH ROW BEGIN INSERT into SS13_role_time_log (ckey, job, delta) VALUES (OLD.ckey, OLD.job, 0-OLD.minutes); END -$$ +// DELIMITER ; -- diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm index 79126e4fdd2e3b..4107abfea5533b 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm @@ -123,10 +123,8 @@ /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "op" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area, +/obj/structure/flora/tree/pine, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "tW" = ( @@ -134,7 +132,6 @@ dir = 4 }, /obj/structure/flora/rock/pile/icy/style_2, -/obj/structure/sign/warning/secure_area, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "uy" = ( @@ -201,6 +198,11 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"Fj" = ( +/obj/structure/flora/grass/brown/style_random, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "Fn" = ( /obj/structure/railing{ dir = 6 @@ -304,11 +306,8 @@ /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) "Wr" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, -/turf/open/misc/asteroid/snow/icemoon, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) "Wt" = ( /obj/effect/turf_decal/stripes/line, @@ -439,9 +438,9 @@ fl (5,1,1) = {" fl kd +Sc Wr vJ -vJ kd kd mP @@ -868,8 +867,8 @@ mP mP mP bE -nT op +Sc "} (20,1,1) = {" cO @@ -902,7 +901,7 @@ wg "} (21,1,1) = {" tW -kd +Fj lH Wt mP diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm index c9b3d35aa72648..fe11d7a8b6c2a1 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm @@ -805,14 +805,12 @@ /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/airalarm/directional/south{ - pixel_y = 35 - }, +/obj/machinery/airalarm/directional/north, /turf/open/floor/iron/cafeteria, /area/ruin/pizzeria/kitchen) "IW" = ( /obj/effect/spawner/random/entertainment/cigarette, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) "IY" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm index b44fbe0b1b55e9..fad279c0710e89 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_plasma_facility.dmm @@ -199,7 +199,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/turf_decal/tile/brown/opposingcorners, /turf/open/floor/iron, /area/ruin/plasma_facility/operations) @@ -325,7 +325,7 @@ /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) "fx" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/lava/plasma/ice_moon, /area/ruin/plasma_facility/operations) "fJ" = ( @@ -399,7 +399,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/iron/grimy, /area/ruin/plasma_facility/commons) "gH" = ( @@ -748,18 +748,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/large, /area/ruin/plasma_facility/commons) -"lW" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/ruin/plasma_facility/commons) "lX" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lantern, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/iron/smooth{ initial_gas_mix = "ICEMOON_ATMOS" }, @@ -853,7 +845,6 @@ }, /area/ruin/plasma_facility/commons) "nu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/brown/half, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -978,7 +969,7 @@ /area/ruin/plasma_facility/commons) "pl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /obj/effect/turf_decal/tile/brown/half, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -1028,13 +1019,19 @@ /turf/open/floor/plating/icemoon, /area/ruin/plasma_facility/operations) "pX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/plating/icemoon, /area/ruin/plasma_facility/operations) "qk" = ( /obj/structure/flora/grass/green/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"qr" = ( +/obj/structure/sign/warning/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "qv" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -1181,8 +1178,11 @@ /obj/item/stock_parts/capacitor, /turf/open/floor/plating/icemoon, /area/ruin/plasma_facility/commons) +"sN" = ( +/turf/closed/wall, +/area/icemoon/underground/explored) "sP" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/ruin/plasma_facility/operations) "sX" = ( @@ -1310,6 +1310,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) +"vh" = ( +/obj/structure/flora/grass/brown/style_random, +/obj/structure/sign/warning/directional/west, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "vt" = ( /turf/closed/wall, /area/ruin/plasma_facility/operations) @@ -1583,11 +1588,9 @@ /obj/structure/fence{ dir = 4 }, -/obj/structure/sign/warning, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) "BZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/mining{ name = "Processing Control" @@ -1859,7 +1862,6 @@ /turf/open/floor/plating/icemoon, /area/ruin/plasma_facility/operations) "Ib" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_half{ @@ -1928,7 +1930,7 @@ /area/icemoon/underground/explored) "Jn" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/iron/smooth{ initial_gas_mix = "ICEMOON_ATMOS" }, @@ -2015,6 +2017,11 @@ /obj/machinery/light/small/blacklight/directional/south, /turf/open/floor/iron/grimy, /area/ruin/plasma_facility/commons) +"Kj" = ( +/obj/structure/flora/rock/icy/style_random, +/obj/structure/sign/warning/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "Km" = ( /obj/structure/girder, /turf/open/floor/plating/icemoon, @@ -2077,7 +2084,7 @@ /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) "KY" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/ruin/plasma_facility/commons) "Lh" = ( @@ -2126,7 +2133,7 @@ /turf/open/floor/wood/large, /area/ruin/plasma_facility/commons) "LY" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/plating, /area/ruin/plasma_facility/commons) "LZ" = ( @@ -2227,7 +2234,9 @@ /turf/open/floor/iron/white/textured_half, /area/ruin/plasma_facility/commons) "Nm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /obj/effect/turf_decal/tile/brown/half{ dir = 1 }, @@ -2564,6 +2573,17 @@ }, /turf/open/floor/stone, /area/ruin/plasma_facility/commons) +"SI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/ruin/plasma_facility/commons) "SR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -2582,6 +2602,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/edge{ dir = 1 }, @@ -2661,6 +2682,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/edge, /area/ruin/plasma_facility/commons) "VS" = ( @@ -2720,7 +2742,6 @@ /turf/open/floor/iron/corner, /area/ruin/plasma_facility/commons) "WU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch/directional/east, @@ -2912,7 +2933,7 @@ /area/ruin/plasma_facility/commons) "ZC" = ( /obj/effect/decal/cleanable/glass, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) "ZH" = ( @@ -3168,7 +3189,7 @@ Yw Yw Yw BY -LZ +Kj rs fP rs @@ -3187,7 +3208,7 @@ AG AG LZ BY -ms +qr hJ Py Yw @@ -3301,7 +3322,7 @@ zX XI XI Nm -lW +DN pl Mc af @@ -3335,8 +3356,8 @@ ri ri qW XW -PB -bM +SI +DN VD gj ac @@ -4085,8 +4106,8 @@ rk dr dr dr -NC -ms +sN +qr AG AG AG @@ -4241,7 +4262,7 @@ AG AG AG AG -NC +sN dr II vt @@ -4276,7 +4297,7 @@ AG AG AG AG -zF +vh rs rs oi diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm index 6ef2066b191566..3a55529f5fab87 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm @@ -439,7 +439,7 @@ /area/ruin/powered) "PQ" = ( /obj/effect/decal/cleanable/blood/splatter, -/mob/living/simple_animal/hostile/illusion{ +/mob/living/basic/illusion{ death_message = "disperses into the air in a cloud of red mist, you feel slightly more at ease."; desc = "You can't quite make out what you're seeing."; faction = list("cult"); diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_cheap.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_cheap.dmm index 462f5b486aad3b..ee2ab997b2d804 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_cheap.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_cheap.dmm @@ -8,7 +8,11 @@ pixel_x = -2 }, /obj/item/paper/monitorkey, -/obj/item/paperwork, +/obj/item/radio/intercom/syndicate/freerange{ + dir = 1; + pixel_y = 32 + }, +/obj/item/folder/syndicate/mining, /turf/open/floor/plating, /area/ruin/comms_agent) "b" = ( @@ -39,9 +43,6 @@ /turf/open/floor/plating, /area/ruin/comms_agent) "q" = ( -/obj/item/radio/intercom/syndicate/freerange{ - pixel_x = -31 - }, /obj/machinery/modular_computer/preset{ dir = 4 }, diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_luxury.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_luxury.dmm index a7b2d4dea8be1d..ce78df7db2689a 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_luxury.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_luxury.dmm @@ -144,11 +144,11 @@ /area/ruin/comms_agent) "M" = ( /obj/structure/filingcabinet, -/obj/item/paperwork, /obj/item/paper/monitorkey, /obj/item/paper/fluff/ruins/listeningstation/briefing{ pixel_x = -2 }, +/obj/item/folder/syndicate/mining, /turf/open/floor/wood/tile, /area/ruin/comms_agent) "N" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_standard.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_standard.dmm index b1edb418dfb347..9d77d3535fec33 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_standard.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent/commsoffice_standard.dmm @@ -49,11 +49,11 @@ /area/ruin/comms_agent) "u" = ( /obj/structure/filingcabinet, -/obj/item/paperwork, /obj/item/paper/monitorkey, /obj/item/paper/fluff/ruins/listeningstation/briefing{ pixel_x = -2 }, +/obj/item/folder/syndicate/mining, /turf/open/floor/wood/tile, /area/ruin/comms_agent) "v" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_frozen_comms.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_frozen_comms.dmm index 54b33b5e8111d6..6749491b68b64a 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_frozen_comms.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_frozen_comms.dmm @@ -195,6 +195,14 @@ pixel_x = -3; pixel_y = 7 }, +/obj/machinery/button/door/directional/north{ + id = "ice_comms_car"; + name = "Garage Door Button"; + pixel_x = -23; + pixel_y = 0; + req_access = list("research"); + dir = 8 + }, /turf/open/floor/plating/icemoon, /area/ruin/powered/shuttle) "zz" = ( @@ -239,13 +247,6 @@ dir = 4 }, /obj/machinery/light/small/directional/south, -/obj/machinery/button/door/directional/north{ - id = "ice_comms_car"; - name = "Garage Door Button"; - pixel_x = -23; - pixel_y = 22; - req_access = list("research") - }, /turf/open/floor/plating/icemoon, /area/ruin/powered/shuttle) "FK" = ( @@ -312,7 +313,7 @@ /obj/structure/rack, /obj/item/wrench, /obj/item/crowbar/large/twenty_force, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/plating/icemoon, /area/ruin/powered/shuttle) "Kr" = ( diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_mailroom.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_mailroom.dmm index c62c9f09e4eb83..45defb797ed423 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_mailroom.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_mailroom.dmm @@ -202,10 +202,6 @@ /obj/machinery/light/small/red/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/ruin/powered/mailroom) -"vU" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/indestructible/reinforced, -/area/ruin/powered/mailroom) "vV" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/iron/smooth_large, @@ -470,6 +466,7 @@ pixel_x = 4; pixel_y = 3 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/white, /area/ruin/powered/mailroom) "Wr" = ( @@ -485,16 +482,13 @@ "WE" = ( /turf/closed/wall/r_wall, /area/ruin/powered/mailroom) -"Xa" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/reinforced, -/area/ruin/powered/mailroom) "Xi" = ( /obj/effect/turf_decal/loading_area{ dir = 4 }, /obj/effect/decal/remains/human, /obj/item/clothing/suit/hooded/wintercoat, +/obj/structure/sign/departments/cargo/directional/south, /turf/open/floor/iron/textured, /area/ruin/powered/mailroom) "XO" = ( @@ -693,7 +687,7 @@ SY iO MC Wr -Xa +ms Wj ch Mi @@ -767,7 +761,7 @@ MT ba ba Xi -vU +ms iV zr iV diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_outpost31.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_outpost31.dmm index 24b4221ebf2724..b6531a22008262 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_outpost31.dmm +++ b/_maps/RandomRuins/IceRuins/icemoon_underground_outpost31.dmm @@ -555,7 +555,6 @@ /turf/open/floor/wood, /area/ruin/outpost31/kennel) "kP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/cable, /turf/open/floor/pod/dark, @@ -626,6 +625,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron/white/smooth_half, /area/ruin/outpost31/medical) "lW" = ( @@ -834,7 +834,6 @@ /area/ruin/outpost31/recroom) "qt" = ( /obj/machinery/door/airlock/external/glass/ruin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "o31a" @@ -1046,7 +1045,6 @@ /turf/open/floor/catwalk_floor/iron, /area/ruin/outpost31) "uj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, @@ -1211,7 +1209,6 @@ /area/ruin/outpost31/lootroom) "xP" = ( /obj/machinery/door/airlock/external/glass/ruin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "o31B" @@ -1241,11 +1238,6 @@ initial_gas_mix = "o2=14;n2=30;TEMP=293.15" }, /area/ruin/outpost31/lab) -"yQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/pod/dark, -/area/ruin/outpost31) "yW" = ( /obj/structure/sign/warning/biohazard, /turf/closed/indestructible/reinforced, @@ -1259,7 +1251,6 @@ /area/ruin/outpost31/lab) "zd" = ( /obj/machinery/door/airlock/grunge, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/autoname, @@ -1380,12 +1371,6 @@ /obj/item/ammo_box/c9mm, /turf/open/floor/carpet/green, /area/ruin/outpost31/commander_room) -"AE" = ( -/obj/machinery/door/airlock/grunge, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/autoname, -/turf/open/floor/carpet/green, -/area/ruin/outpost31/commander_room) "AG" = ( /obj/machinery/door/airlock/grunge, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, @@ -1399,6 +1384,14 @@ /obj/item/paper_bin, /turf/open/floor/iron, /area/ruin/outpost31/radiomap) +"AX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/outpost31) "Bb" = ( /obj/machinery/light/warm/directional/south, /obj/effect/turf_decal/tile/neutral, @@ -1594,6 +1587,14 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/ruin/outpost31) +"EM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/ruin/outpost31) "ES" = ( /obj/item/kirbyplants/random/dead, /obj/effect/turf_decal/siding/white{ @@ -1633,6 +1634,12 @@ /obj/structure/table, /turf/open/floor/iron/cafeteria, /area/ruin/outpost31/kitchendiningroom) +"Fy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/catwalk_floor/iron, +/area/ruin/outpost31) "FH" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/tile/neutral{ @@ -1767,7 +1774,6 @@ /area/ruin/outpost31/medical) "Ie" = ( /obj/machinery/door/airlock/external/glass/ruin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "o31d" @@ -1859,6 +1865,11 @@ dir = 4 }, /area/ruin/outpost31/medical) +"JU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron, +/area/ruin/outpost31) "Kh" = ( /obj/structure/thing_boss_phase_depleter, /turf/open/floor/circuit/red/off{ @@ -2035,7 +2046,6 @@ /turf/open/floor/iron/freezer, /area/ruin/outpost31/crewquarters) "NP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, @@ -2122,7 +2132,6 @@ /turf/open/floor/iron/kitchen/small, /area/ruin/outpost31/kitchendiningroom) "PR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ @@ -2587,6 +2596,12 @@ "Yo" = ( /turf/open/misc/asteroid/snow/icemoon/do_not_chasm, /area/icemoon/underground/explored) +"YC" = ( +/obj/machinery/door/airlock/grunge, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/ruin/outpost31/commander_room) "YG" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -3016,7 +3031,7 @@ uB uB Sg Lf -yQ +lM qI Sg SN @@ -3100,7 +3115,7 @@ yp ES aq Ht -QU +AX lO aV Wu @@ -3142,7 +3157,7 @@ kh UH Ml vX -ge +Fy oN rO gu @@ -3875,10 +3890,10 @@ Ly Ly Ly Ly -uA -AE -vX -YK +Ly +iA +cp +JU Uy xc xc @@ -3918,9 +3933,9 @@ fM Ly Ly uA -iA -Ht -qK +YC +EM +JU Uy xc uB diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm index b4d563d8fed059..2e6a25bdab3d40 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm @@ -146,10 +146,6 @@ /obj/structure/fluff/beach_umbrella/engine, /turf/open/misc/beach/sand, /area/ruin/powered/beach) -"ct" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/wood, -/area/ruin/powered/beach) "cE" = ( /obj/effect/turf_decal/sand, /obj/effect/turf_decal/stripes/asteroid/line{ @@ -263,7 +259,7 @@ /turf/open/floor/wood, /area/ruin/powered/beach) "gX" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/layer4, +/obj/machinery/atmospherics/components/unary/passive_vent/layer4, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors/explored) "hj" = ( @@ -304,7 +300,9 @@ /area/ruin/powered/beach) "hC" = ( /obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, /obj/structure/chair/stool/bar/directional/south, /turf/open/floor/wood, /area/ruin/powered/beach) @@ -330,7 +328,6 @@ dir = 1 }, /obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/wood, /area/ruin/powered/beach) "hX" = ( @@ -359,12 +356,6 @@ /obj/item/reagent_containers/cup/glass/colocup, /turf/open/floor/wood, /area/ruin/powered/beach) -"kg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/pod/light, -/area/ruin/powered/beach) "kh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -441,6 +432,15 @@ /obj/item/reagent_containers/condiment/flour, /turf/open/floor/wood, /area/ruin/powered/beach) +"oe" = ( +/obj/effect/spawner/random/bedsheet{ + dir = 4 + }, +/obj/structure/bed{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/powered/beach) "og" = ( /obj/structure/weightmachine/weightlifter, /turf/open/floor/pod/dark, @@ -460,9 +460,6 @@ /area/ruin/powered/beach) "oU" = ( /obj/machinery/seed_extractor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, /turf/open/floor/pod/light, /area/ruin/powered/beach) "pz" = ( @@ -552,6 +549,15 @@ /obj/item/toy/beach_ball, /turf/open/misc/beach/sand, /area/ruin/powered/beach) +"rO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/ruin/powered/beach) "rU" = ( /obj/item/reagent_containers/condiment/enzyme, /obj/item/reagent_containers/cup/beaker{ @@ -605,7 +611,6 @@ /turf/open/floor/light/colour_cycle/dancefloor_a, /area/ruin/powered/beach) "vf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/table/wood/poker, /obj/item/storage/dice, /obj/item/stack/spacecash/c1000, @@ -631,10 +636,9 @@ /turf/open/floor/pod/light, /area/ruin/powered/beach) "xa" = ( -/obj/structure/sign/warning/secure_area, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/closed/wall/mineral/sandstone, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/plating, /area/ruin/powered/beach) "xe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ @@ -822,33 +826,16 @@ }, /turf/closed/wall/mineral/sandstone, /area/ruin/powered/beach) -"CZ" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/ruin/powered/beach) "Df" = ( /obj/structure/table, /obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/wood, /area/ruin/powered/beach) -"Dg" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/ruin/powered/beach) "Ds" = ( /obj/structure/closet/secure_closet/freezer/kitchen/all_access, /turf/open/floor/wood, /area/ruin/powered/beach) -"Eq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/wood, -/area/ruin/powered/beach) "Eu" = ( /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/water/beach, @@ -959,7 +946,7 @@ /area/ruin/powered/beach) "Iq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 + dir = 8 }, /turf/open/floor/pod/light, /area/ruin/powered/beach) @@ -1014,7 +1001,7 @@ /area/ruin/powered/beach) "JP" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 + dir = 8 }, /turf/open/floor/pod/light, /area/ruin/powered/beach) @@ -1109,9 +1096,7 @@ /turf/open/floor/wood, /area/ruin/powered/beach) "OP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/machinery/light/directional/south, /turf/open/floor/wood, /area/ruin/powered/beach) @@ -1506,7 +1491,7 @@ Cs Cs aj Zi -xa +BE BE Mf FO @@ -1518,8 +1503,8 @@ aj HW aC aC -Eq -ct +kh +aC hS cd Bp @@ -1538,7 +1523,7 @@ Wa as pE mh -Wa +xa gs VI VI @@ -1660,7 +1645,7 @@ Ti Ti hC vf -ct +aC BN Lm Lm @@ -2157,9 +2142,9 @@ Lm hX VO og -wY -wY -wY +gC +gC +rO Fr yc Bp @@ -2179,7 +2164,7 @@ kh aj de TC -hq +oe MZ hj mw @@ -2221,9 +2206,9 @@ dc hX VO og -gC +wY EN -kg +wY wY Pr MZ @@ -2253,7 +2238,7 @@ CL wY wY wY -gC +wY oF oU wY @@ -2285,9 +2270,9 @@ qF BE yc FD -gC wY -kg +wY +wY wY AY MZ @@ -2317,9 +2302,9 @@ UZ IL MZ sV -Dg +sV jh -CZ +sV sV Zi Mf diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm index bbf0c14f8f3232..cc9f5e7a2958aa 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm @@ -266,7 +266,7 @@ /turf/open/floor/wood, /area/ruin/powered/snow_biodome) "hA" = ( -/obj/machinery/light/built/directional/north, +/obj/machinery/light/empty/directional/north, /obj/effect/mapping_helpers/no_lava, /turf/open/floor/pod/dark{ initial_gas_mix = "LAVALAND_ATMOS" diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_crashsite.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_crashsite.dmm index 6150ca807272cf..4a162ed4e76e6e 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_crashsite.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_crashsite.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "b" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" @@ -45,11 +45,11 @@ "h" = ( /obj/effect/decal/cleanable/rubble, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "i" = ( /obj/effect/mob_spawn/corpse/goliath, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "j" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -63,7 +63,7 @@ /area/ruin/unpowered) "l" = ( /turf/open/water/hot_spring/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "m" = ( /obj/machinery/door/airlock/survival_pod/glass, /turf/open/floor/pod/dark, @@ -75,7 +75,7 @@ /area/ruin/unpowered) "o" = ( /turf/closed/mineral/volcanic/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "p" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -97,17 +97,17 @@ "t" = ( /obj/structure/flora/tree/stump, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "u" = ( /obj/structure/bonfire/prelit, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "v" = ( /obj/effect/decal/cleanable/rubble, /obj/item/stack/sheet/mineral/titanium, /obj/item/stack/sheet/mineral/titanium, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "w" = ( /obj/effect/decal/cleanable/glass/titanium, /obj/item/stack/sheet/mineral/titanium, @@ -119,7 +119,7 @@ dir = 8 }, /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "y" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 @@ -130,22 +130,22 @@ "z" = ( /obj/item/book/manual/fish_catalog, /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "B" = ( /mob/living/basic/mining/goliath, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "D" = ( /obj/item/gun/energy/recharge/kinetic_accelerator, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "E" = ( /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "F" = ( /obj/effect/mob_spawn/corpse/human/cargo_tech, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "G" = ( /turf/template_noop, /area/template_noop) @@ -176,7 +176,7 @@ "L" = ( /obj/item/storage/toolbox/fishing, /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "M" = ( /obj/structure/rack, /obj/item/pickaxe/emergency, @@ -194,14 +194,14 @@ "P" = ( /obj/effect/mob_spawn/corpse/human/miner, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "Q" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/ruin/unpowered) "R" = ( /mob/living/basic/mining/goliath/ancient, /turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "S" = ( /obj/structure/bed/pod, /obj/item/bedsheet/black, @@ -214,7 +214,7 @@ "U" = ( /obj/item/bait_can/worm/premium, /turf/open/misc/ashplanet/wateryrock/lavaland_atmos, -/area/lavaland/surface) +/area/lavaland/surface/outdoors) "V" = ( /obj/structure/table/survival_pod, /obj/item/food/meat/steak/goliath, diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm index f61188c3a46053..2b4b18d6c680c9 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm @@ -40,6 +40,7 @@ "bh" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/chair/office/light, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/mineral/titanium/white, /area/ruin/powered/graveyard_shuttle) "bi" = ( @@ -298,6 +299,7 @@ "vP" = ( /obj/item/light/bulb/broken, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/mineral/titanium/white, /area/ruin/powered/graveyard_shuttle) "vS" = ( @@ -623,10 +625,6 @@ /obj/effect/spawner/structure/window/reinforced/shuttle, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/ruin/powered/graveyard_shuttle) -"ZC" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/titanium, -/area/ruin/powered/graveyard_shuttle) "ZH" = ( /obj/structure/stone_tile/surrounding_tile, /turf/open/misc/asteroid/basalt/wasteland{ @@ -1499,9 +1497,9 @@ AB bf aH aH -ZC +aH IR -ZC +aH aH aH aH diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_gas.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_gas.dmm index d03c2800eea7e7..790879899dbecc 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_gas.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_gas.dmm @@ -585,6 +585,7 @@ pixel_y = -1 }, /obj/structure/closet/crate/freezer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden/layer2, /turf/open/floor/iron/freezer{ baseturfs = /turf/open/misc/asteroid/basalt/lava_land_surface }, @@ -714,7 +715,7 @@ }, /area/ruin/thelizardsgas_lavaland) "Eh" = ( -/obj/machinery/atmospherics/components/tank/oxygen{ +/obj/machinery/atmospherics/components/tank/air/layer2{ dir = 8 }, /turf/open/floor/iron/smooth{ @@ -730,7 +731,6 @@ /area/ruin/thelizardsgas_lavaland) "Es" = ( /obj/machinery/door/airlock/external/ruin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ @@ -850,6 +850,12 @@ baseturfs = /turf/open/misc/asteroid/basalt/lava_land_surface }, /area/ruin/thelizardsgas_lavaland) +"Im" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron{ + baseturfs = /turf/open/misc/asteroid/basalt/lava_land_surface + }, +/area/ruin/thelizardsgas_lavaland) "IC" = ( /obj/structure/cable, /obj/structure/railing, @@ -1038,7 +1044,6 @@ pixel_y = 2; pixel_x = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden/layer4, /turf/open/floor/iron{ baseturfs = /turf/open/misc/asteroid/basalt/lava_land_surface }, @@ -1530,7 +1535,7 @@ IU HL xW rM -IU +Im pp FA dC diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_mookvillage.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_mookvillage.dmm index 70ebd3ce428605..241b2b608f25cd 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_mookvillage.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_mookvillage.dmm @@ -106,6 +106,7 @@ "x" = ( /obj/structure/table/wood/shuttle_bar, /obj/item/clothing/head/costume/garland/poppy, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/wood/lavaland, /area/lavaland/surface/outdoors) "y" = ( @@ -119,10 +120,6 @@ /obj/structure/chair/pew/right, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"C" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/wood, -/area/lavaland/surface/outdoors) "E" = ( /obj/structure/flora/grass/jungle/b, /turf/open/misc/grass/jungle/lavaland, @@ -588,7 +585,7 @@ a a a a -C +h x c c diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm index fa4bec4dbc7d42..b79b365023888c 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm @@ -383,9 +383,12 @@ /turf/open/floor/engine, /area/ruin/syndicate_lava_base/engineering) "dQ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/testlab) +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/ruin/syndicate_lava_base/main) "dV" = ( /obj/machinery/atmospherics/miner/plasma, /turf/open/floor/engine/plasma, @@ -680,7 +683,6 @@ /turf/open/floor/iron, /area/ruin/syndicate_lava_base/chemistry) "fx" = ( -/obj/structure/sign/warning/secure_area, /obj/machinery/porta_turret/syndicate{ dir = 9 }, @@ -788,6 +790,8 @@ "gg" = ( /obj/structure/sign/warning/fire/directional/north, /obj/structure/sign/warning/xeno_mining/directional/south, +/obj/structure/sign/warning/secure_area/directional/northeast, +/obj/structure/sign/warning/secure_area/directional/southeast, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/cargo) "gh" = ( @@ -814,10 +818,6 @@ /obj/structure/sink/kitchen/directional/west, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"gO" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/cargo) "gP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/brown{ @@ -1105,10 +1105,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"iq" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/main) "iF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -1707,6 +1703,9 @@ /area/ruin/syndicate_lava_base/engineering) "nA" = ( /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, /turf/open/floor/iron/white/corner, /area/ruin/syndicate_lava_base/medbay) "nB" = ( @@ -1763,9 +1762,9 @@ /turf/open/floor/iron, /area/ruin/syndicate_lava_base/bar) "nM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/medbay) @@ -1869,10 +1868,11 @@ "oD" = ( /obj/structure/sign/warning/xeno_mining/directional/west, /obj/structure/sign/warning/fire/directional/east, +/obj/structure/sign/warning/secure_area/directional/southwest, +/obj/structure/sign/warning/secure_area/directional/southeast, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/arrivals) "oF" = ( -/obj/structure/sign/warning/secure_area, /obj/machinery/porta_turret/syndicate{ dir = 9 }, @@ -1904,6 +1904,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/airalarm/directional/south, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/main) "pk" = ( @@ -1927,9 +1928,9 @@ /area/ruin/syndicate_lava_base/engineering) "pp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/duct, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/medbay) "pu" = ( @@ -2174,10 +2175,6 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/cargo) -"sB" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/cargo) "sH" = ( /obj/machinery/door/airlock/virology/glass{ name = "Monkey Pen" @@ -2401,7 +2398,6 @@ ailock = 1; control_area = "/area/ruin/syndicate_lava_base/main"; dir = 1; - icon_state = "control_kill"; lethal = 1; name = "Base turret controls"; pixel_y = 30; @@ -2589,13 +2585,6 @@ /obj/item/reagent_containers/spray/cleaner, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/main) -"zq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/medbay) "zt" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -3321,6 +3310,7 @@ }, /obj/machinery/duct, /obj/machinery/light/small/directional/north, +/obj/structure/sign/departments/cargo/directional/east, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) "Iv" = ( @@ -3694,10 +3684,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"Oj" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/arrivals) "Oq" = ( /obj/effect/spawner/random/vending/colavend{ hacked = 1 @@ -4286,6 +4272,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/main) "WA" = ( @@ -5354,7 +5341,7 @@ Vb mT mT mT -Oj +mT ab ab ab @@ -5678,7 +5665,7 @@ pa pa pa ae -dQ +ae TD hd hy @@ -5728,7 +5715,7 @@ ae ae ae oP -fH +dQ IX yA hz @@ -6098,7 +6085,7 @@ qA lJ pW lI -zq +lJ nM ob al @@ -6279,14 +6266,14 @@ SQ Iw dy dy -gO +dy Tb hC dy ha -iq +ha eZ -iq +ha ha ha yG @@ -6677,7 +6664,7 @@ ab ab ab ab -sB +dy gh fx si diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_1.dmm index 8ca5c0cd2b50ed..0a4fce58b4659e 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_1.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_1.dmm @@ -133,6 +133,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/telecomms) "R" = ( @@ -147,10 +148,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/telecomms) -"V" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/telecomms) "W" = ( /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/telecomms) @@ -200,7 +197,7 @@ a (4,1,1) = {" f f -V +f O f f diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_2.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_2.dmm index fd703febfb1652..6f294481474f20 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_2.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_2.dmm @@ -3,9 +3,7 @@ /turf/template_noop, /area/template_noop) "b" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, /area/ruin/syndicate_lava_base/telecomms) "h" = ( @@ -93,7 +91,6 @@ "F" = ( /obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, /area/ruin/syndicate_lava_base/telecomms) @@ -229,7 +226,7 @@ a K y b -y +S T K a @@ -238,8 +235,8 @@ a a K y -S y +S T K a diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_3.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_3.dmm index cd6670dfb21f17..8d8bba7502d192 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_3.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/commswilding_3.dmm @@ -227,7 +227,6 @@ "W" = ( /obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/noticeboard/directional/east, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/telecomms) @@ -315,7 +314,7 @@ a G O s -p +s j k G diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm index 9dfb448cffecb3..a636d9d65efb3d 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm @@ -17,14 +17,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"ad" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/taperecorder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/testlab) "ae" = ( /obj/machinery/firealarm/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -33,19 +25,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"af" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/testlab) "ag" = ( /obj/structure/table/reinforced, /obj/item/restraints/handcuffs, @@ -67,12 +46,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"aj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ruin/syndicate_lava_base/testlab) "ak" = ( /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, @@ -83,14 +56,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"al" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/testlab) "am" = ( /obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, /obj/machinery/door/firedoor, @@ -106,7 +71,7 @@ /area/ruin/syndicate_lava_base/testlab) "ao" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 1 }, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) @@ -122,33 +87,8 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"aq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/engine, -/area/ruin/syndicate_lava_base/testlab) "ar" = ( -/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "lavalandsyndi"; - name = "Syndicate Research Experimentation Shutters" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/testlab) -"as" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) "at" = ( @@ -174,43 +114,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"aw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airalarm/syndicate_access, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/testlab) -"ax" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ruin/syndicate_lava_base/testlab) -"ay" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/testlab) -"az" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/testlab) "aA" = ( /obj/structure/bed/medical/emergency, /obj/machinery/iv_drip, @@ -240,12 +143,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"aC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ruin/syndicate_lava_base/testlab) "aD" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/testlab) @@ -262,35 +159,10 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"aF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/door/airlock/hatch{ - name = "Experimentation Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/syndicate/general, -/obj/structure/cable, -/obj/modular_map_connector, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/testlab) -"aG" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/testlab) "aH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) -"aI" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/testlab) "aJ" = ( /obj/structure/chair{ dir = 1 @@ -300,11 +172,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"aK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/engine, -/area/ruin/syndicate_lava_base/testlab) "aL" = ( /obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, /turf/open/floor/plating, @@ -313,7 +180,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) "aN" = ( @@ -340,16 +206,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) -"aR" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/testlab) "aS" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine, @@ -365,20 +221,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/testlab) -"aU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/engine, -/area/ruin/syndicate_lava_base/testlab) -"aV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ruin/syndicate_lava_base/testlab) "aW" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/engine, @@ -411,16 +253,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) +"GB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/ruin/syndicate_lava_base/testlab) "IP" = ( /obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/airalarm/directional/north, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) -"Zh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, +"Kf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/testlab) @@ -459,8 +302,8 @@ ah ah an aY -ah -aI +ar +aD aL au aa @@ -470,8 +313,8 @@ aa aD aW ah -ao -ah +GB +aH ao ah ac @@ -484,10 +327,10 @@ aa aD IP ah -aH ah aH ah +ah aD aB aO @@ -498,8 +341,8 @@ aa aD ah ah -Zh -ah +aM +aH aM ah am @@ -512,7 +355,7 @@ aa aD aW ah -aQ +Kf gS gS aQ diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_unlikely.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_unlikely.dmm index c84eec64e9ad9e..27d1bd0f3b36e1 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_unlikely.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_unlikely.dmm @@ -33,12 +33,9 @@ "i" = ( /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) -"n" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/testlab) "w" = ( /obj/structure/closet/emcloset, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/testlab) "A" = ( @@ -128,7 +125,7 @@ N "} (4,1,1) = {" d -n +B w A a diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_1.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_1.dmm index 4f032c8ac053bb..b0fe3041c9b71d 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_1.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_1.dmm @@ -63,7 +63,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "L" = ( /turf/closed/wall, /area/ruin/space/djstation) @@ -76,7 +76,7 @@ name = "Kitchen" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "P" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_2.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_2.dmm index c7cdd09fbdd744..41e0fa8eb705be 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_2.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_2.dmm @@ -49,7 +49,7 @@ /obj/effect/mapping_helpers/airlock/locked, /obj/structure/barricade/wooden, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "L" = ( /turf/closed/wall, /area/ruin/space/djstation) @@ -60,7 +60,7 @@ /obj/effect/mapping_helpers/airlock/locked, /obj/structure/barricade/wooden, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "S" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_4.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_4.dmm index 9b6e108bf6ec0c..fa6fdf97f40917 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_4.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/kitchen_4.dmm @@ -116,7 +116,7 @@ name = "Kitchen" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "V" = ( /obj/structure/table, /obj/item/reagent_containers/spray/cleaner{ @@ -140,7 +140,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" e diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_1.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_1.dmm index efdb18e781a65e..3d8b5681d58b60 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_1.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_1.dmm @@ -24,7 +24,7 @@ name = "Rest Room" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "u" = ( /obj/machinery/duct, /turf/open/floor/iron/grimy, @@ -51,7 +51,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "F" = ( /obj/structure/curtain, /obj/machinery/shower/directional/south, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_2.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_2.dmm index ef304f1d9303ad..ed849a2aa621e0 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_2.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_2.dmm @@ -21,7 +21,7 @@ name = "Rest Room" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "v" = ( /obj/structure/bed/maint, /turf/open/floor/iron/dark/textured, @@ -32,7 +32,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "J" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_3.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_3.dmm index 9102b5e7acc6c3..c85247898122e3 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_3.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_3.dmm @@ -56,7 +56,7 @@ name = "Rest Room" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "s" = ( /obj/machinery/shower/directional/east, /turf/open/floor/iron/freezer, @@ -91,7 +91,7 @@ }, /obj/modular_map_connector, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "C" = ( /obj/machinery/duct, /obj/machinery/light/directional/south, diff --git a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_4.dmm b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_4.dmm index 52ec466ae86234..0a3ef02eab4213 100644 --- a/_maps/RandomRuins/SpaceRuins/DJstation/quarters_4.dmm +++ b/_maps/RandomRuins/SpaceRuins/DJstation/quarters_4.dmm @@ -29,7 +29,7 @@ /obj/effect/mapping_helpers/airlock/locked, /obj/structure/barricade/wooden, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "q" = ( /obj/structure/girder, /obj/effect/mapping_helpers/burnt_floor, @@ -50,7 +50,7 @@ "C" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "E" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/plating/airless, @@ -72,10 +72,6 @@ /obj/effect/mapping_helpers/airlock/locked, /obj/structure/barricade/wooden, /turf/template_noop, -/area/template_noop) -"U" = ( -/obj/structure/lattice, -/turf/template_noop, /area/space/nearstation) "W" = ( /obj/structure/lattice, @@ -85,7 +81,7 @@ pixel_y = -1 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Y" = ( /obj/structure/lattice, /obj/effect/spawner/random/structure/grille, @@ -126,9 +122,9 @@ a "} (3,1,1) = {" a -U -U -U +C +C +C J x g @@ -139,12 +135,12 @@ W (4,1,1) = {" a a -U +C a -U +C a -U -U +C +C q a "} @@ -153,10 +149,10 @@ a a a a -U +C a a -U +C J a "} @@ -165,7 +161,7 @@ a a a a -U +C a a M diff --git a/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm b/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm index ebe9895b5dd22b..e3f1697c0427ee 100644 --- a/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm +++ b/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm @@ -8,7 +8,7 @@ "c" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "d" = ( /obj/structure/frame/computer, /turf/open/floor/plating/airless, diff --git a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm index 136697eacc118e..00dec1bb707a11 100644 --- a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm +++ b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm @@ -66,7 +66,7 @@ "aK" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aL" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -81,7 +81,7 @@ "aQ" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aT" = ( /obj/structure/rack, /obj/item/clothing/suit/space/eva, @@ -211,7 +211,7 @@ "bK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "bN" = ( /obj/structure/grille/broken, /obj/item/stack/cable_coil/cut, @@ -227,14 +227,14 @@ "bP" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bR" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, /obj/structure/disposaloutlet, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "bT" = ( /obj/structure/grille, /obj/item/shard{ @@ -249,7 +249,7 @@ "bW" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bX" = ( /turf/open/floor/plating/airless, /area/ruin/space/has_grav/abandonedzoo) @@ -319,7 +319,7 @@ "ly" = ( /obj/machinery/power/shieldwallgen/unlocked, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "nI" = ( /obj/structure/alien/resin/wall, /obj/machinery/light/floor/broken, diff --git a/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm b/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm index 4108db225969c0..f877e7c8ae37d8 100644 --- a/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm +++ b/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm @@ -756,7 +756,7 @@ pixel_x = -6; pixel_y = 4 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 9 }, @@ -767,9 +767,7 @@ /turf/open/floor/iron/grimy, /area/ruin/space/has_grav/allamericandiner) "HF" = ( -/obj/structure/noticeboard/directional/north{ - dir = 2 - }, +/obj/structure/noticeboard/directional/north, /obj/machinery/deepfryer, /obj/effect/decal/cleanable/dirt, /obj/item/paper/fluff/ruins/allamericandiner, diff --git a/_maps/RandomRuins/SpaceRuins/anomaly_research.dmm b/_maps/RandomRuins/SpaceRuins/anomaly_research.dmm index 171775eca42e9b..17fe1864a16c97 100644 --- a/_maps/RandomRuins/SpaceRuins/anomaly_research.dmm +++ b/_maps/RandomRuins/SpaceRuins/anomaly_research.dmm @@ -545,7 +545,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4 }, /obj/effect/decal/cleanable/dirt, @@ -682,7 +682,7 @@ /turf/open/floor/iron/white, /area/misc/anomaly_research) "sX" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/spawner/random/environmentally_safe_anomaly/bioscramblerless, /obj/item/reagent_containers/cup/bottle/wittel, /obj/effect/spawner/random/trash/grime, @@ -1807,7 +1807,7 @@ /turf/closed/mineral/snowmountain/cavern, /area/misc/anomaly_research) "Yo" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/spawner/random/trash/garbage, /obj/effect/spawner/random/trash/mopbucket, /obj/effect/decal/cleanable/dirt, diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm index 03a29e782d1403..38437408106fb7 100644 --- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm +++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm @@ -218,7 +218,7 @@ "aY" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aZ" = ( /turf/closed/wall, /area/ruin/space/has_grav/derelictoutpost) diff --git a/_maps/RandomRuins/SpaceRuins/bus.dmm b/_maps/RandomRuins/SpaceRuins/bus.dmm index 4a77be7c7d5450..177654f63add75 100644 --- a/_maps/RandomRuins/SpaceRuins/bus.dmm +++ b/_maps/RandomRuins/SpaceRuins/bus.dmm @@ -8,7 +8,7 @@ "ac" = ( /obj/item/trash/sosjerky, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "am" = ( /obj/structure/fluff/bus/passable/seat, /obj/effect/decal/cleanable/dirt, diff --git a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm index 9912d559703c40..12b94e1b65b801 100644 --- a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm +++ b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm @@ -5,32 +5,32 @@ "ab" = ( /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ac" = ( /obj/item/stack/sheet/mineral/plastitanium, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ad" = ( /obj/item/wallframe/camera, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "af" = ( /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ag" = ( /obj/structure/lattice/catwalk, /obj/structure/closet/crate/secure/weapon, /obj/item/gun/energy/e_gun/mini, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ah" = ( /obj/structure/lattice/catwalk, /mob/living/basic/trooper/pirate/ranged/space{ environment_smash = 0 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aj" = ( /obj/docking_port/stationary{ dir = 2; @@ -42,15 +42,15 @@ width = 22 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ao" = ( /obj/item/stack/sheet/mineral/titanium, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aD" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bl" = ( /mob/living/basic/carp, /turf/template_noop, @@ -58,11 +58,11 @@ "br" = ( /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bs" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, @@ -115,7 +115,7 @@ "dc" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -228,7 +228,7 @@ /obj/structure/lattice, /obj/structure/broken_flooring/plating/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "fG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/frame/computer, @@ -248,11 +248,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/ruin/caravan/freighter2) -"hj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/iron/airless, -/area/shuttle/ruin/caravan/freighter2) "iR" = ( /obj/effect/turf_decal/bot_white, /obj/effect/decal/cleanable/dirt, @@ -275,7 +270,7 @@ width = 15 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "kG" = ( /obj/docking_port/stationary{ dir = 4; @@ -287,7 +282,7 @@ width = 9 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "kU" = ( /obj/docking_port/stationary{ dir = 2; @@ -299,7 +294,7 @@ width = 27 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "kX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -311,7 +306,7 @@ /obj/structure/lattice, /obj/structure/broken_flooring/pile/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lC" = ( /turf/closed/mineral/random/high_chance, /area/ruin/space/has_grav) @@ -414,7 +409,6 @@ /turf/open/floor/plating/airless, /area/shuttle/ruin/caravan/freighter2) "oI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, /area/shuttle/ruin/caravan/freighter2) @@ -471,7 +465,7 @@ "re" = ( /obj/structure/broken_flooring/singular/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "rj" = ( /obj/effect/turf_decal/bot_white/right, /obj/machinery/power/apc/auto_name/directional/west, @@ -656,7 +650,7 @@ "As" = ( /obj/structure/broken_flooring/singular/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "AA" = ( /obj/effect/turf_decal/box/white/corners{ dir = 8 @@ -680,7 +674,7 @@ "Bq" = ( /obj/structure/broken_flooring/pile/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Bv" = ( /obj/structure/chair{ dir = 4 @@ -873,7 +867,7 @@ "Ku" = ( /obj/structure/broken_flooring/plating/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "KC" = ( /obj/item/stack/cable_coil{ amount = 1 @@ -885,7 +879,7 @@ /obj/structure/lattice, /obj/structure/broken_flooring/plating/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Lx" = ( /obj/structure/rack, /obj/item/tank/jetpack/carbondioxide, @@ -939,7 +933,9 @@ /turf/open/floor/iron/dark/airless, /area/shuttle/ruin/caravan/freighter3) "Nm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /mob/living/basic/trooper/pirate/ranged/space{ environment_smash = 0 @@ -1094,6 +1090,7 @@ /area/shuttle/ruin/caravan/freighter2) "Wb" = ( /obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/iron/airless, /area/shuttle/ruin/caravan/freighter2) "WC" = ( @@ -3473,7 +3470,7 @@ aa bN iR Nm -hj +oI oI IZ Bz diff --git a/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm b/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm index b2d0e00768582d..8f27318f82325f 100644 --- a/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm +++ b/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm @@ -122,12 +122,9 @@ dir = 8 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/white, /area/ruin/space/has_grav/powered/ancient_shuttle) -"n" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/ruin/space/has_grav/powered/ancient_shuttle) "o" = ( /obj/machinery/vending/snack/teal, /obj/effect/decal/cleanable/dirt, @@ -521,7 +518,7 @@ a (18,1,1) = {" a d -n +T A K T diff --git a/_maps/RandomRuins/SpaceRuins/clownplanet.dmm b/_maps/RandomRuins/SpaceRuins/clownplanet.dmm index fa0b50cc44359c..67b7b1f74e89a2 100644 --- a/_maps/RandomRuins/SpaceRuins/clownplanet.dmm +++ b/_maps/RandomRuins/SpaceRuins/clownplanet.dmm @@ -30,8 +30,8 @@ /turf/open/floor/engine, /area/ruin/space/has_grav/powered/clownplanet) "ai" = ( -/obj/structure/sign/warning, -/turf/closed/wall/mineral/sandstone, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/bronze, /area/ruin/space/has_grav/powered/clownplanet) "aj" = ( /turf/open/floor/grass{ @@ -118,7 +118,9 @@ /turf/open/floor/iron/bluespace, /area/ruin/space/has_grav/powered/clownplanet) "az" = ( -/obj/structure/signpost, +/obj/structure/signpost{ + teleports = 1 + }, /turf/open/floor/grass{ color = "#1eff00" }, @@ -613,8 +615,8 @@ aa (10,1,1) = {" ae ae -ac ai +af aM aE ak @@ -743,8 +745,8 @@ ae (15,1,1) = {" ae ae -ac ai +af aO aP aj diff --git a/_maps/RandomRuins/SpaceRuins/commsbuoy_nt.dmm b/_maps/RandomRuins/SpaceRuins/commsbuoy_nt.dmm index 43c2ff9632645e..956e8813e93934 100644 --- a/_maps/RandomRuins/SpaceRuins/commsbuoy_nt.dmm +++ b/_maps/RandomRuins/SpaceRuins/commsbuoy_nt.dmm @@ -54,9 +54,7 @@ /turf/template_noop, /area/template_noop) "gw" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium, /area/ruin/space/nt_commsbuoy) "hb" = ( @@ -141,17 +139,13 @@ /turf/open/floor/plating, /area/ruin/space/nt_commsbuoy) "jy" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/light/small/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/titanium, /area/ruin/space/nt_commsbuoy) "jz" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/titanium, /area/ruin/space/nt_commsbuoy) "kZ" = ( @@ -386,9 +380,6 @@ /turf/closed/wall/mineral/iron, /area/ruin/space/nt_commsbuoy) "FH" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/structure/rack, /obj/item/clothing/suit/space/syndicate/orange{ pixel_x = 6; @@ -398,6 +389,7 @@ pixel_x = 9; pixel_y = -5 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium, /area/ruin/space/nt_commsbuoy) "FK" = ( @@ -406,9 +398,7 @@ /area/space/nearstation) "Gd" = ( /obj/structure/fluff/commsbuoy_processor, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/titanium/blue, /area/ruin/space/nt_commsbuoy) "Gq" = ( @@ -527,7 +517,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ws" = ( /obj/structure/marker_beacon/cerulean, /turf/open/floor/plating/reinforced/airless, diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm index 60e8714e865ae6..13428e3432f370 100644 --- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm +++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm @@ -256,7 +256,7 @@ "mb" = ( /obj/item/stack/ore/glass, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "mu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, @@ -633,7 +633,7 @@ "zg" = ( /obj/item/stack/tile/wood, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zm" = ( /obj/structure/table/wood, /obj/effect/spawner/random/decoration, @@ -955,7 +955,7 @@ "ID" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "IG" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood/parquet, @@ -1028,11 +1028,11 @@ "KF" = ( /obj/item/stack/cable_coil/cut, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "KO" = ( /obj/item/light/tube/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ln" = ( /obj/effect/turf_decal/trimline/brown/filled/warning, /obj/effect/turf_decal/trimline/brown/line{ @@ -1094,7 +1094,7 @@ "MC" = ( /obj/effect/mob_spawn/corpse/human/laborer, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Nc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1309,7 +1309,7 @@ /obj/item/shard, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Xy" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/effect/turf_decal/trimline/yellow/filled/line{ diff --git a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm index a2baaa8dc20699..8900f33d7f8eca 100644 --- a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm +++ b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm @@ -112,6 +112,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "bu" = ( @@ -1654,7 +1655,7 @@ /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/purple, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "uP" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -1843,7 +1844,6 @@ /area/ruin/space/has_grav/dangerous_research) "xD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 }, @@ -1872,7 +1872,7 @@ "xZ" = ( /obj/structure/sign/poster/official/random/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 1 }, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, @@ -1996,7 +1996,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /obj/effect/turf_decal/tile/neutral/half{ dir = 8 @@ -2018,7 +2018,7 @@ "zY" = ( /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zZ" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -2100,6 +2100,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "AQ" = ( @@ -2147,6 +2148,12 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) +"Bp" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/ruin/space/has_grav/dangerous_research/dorms) "Bq" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -2226,11 +2233,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) -"Cf" = ( -/obj/effect/turf_decal/tile/purple/diagonal_edge, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/diagonal, -/area/ruin/space/has_grav/dangerous_research) "Cl" = ( /turf/closed/wall, /area/ruin/space/has_grav/dangerous_research/maint) @@ -2411,7 +2413,7 @@ "Ey" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "EA" = ( /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/lab) @@ -2452,7 +2454,6 @@ /area/ruin/space/has_grav/dangerous_research/dorms) "Fi" = ( /obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) @@ -2578,6 +2579,7 @@ }, /obj/item/pen/red, /obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) "Go" = ( @@ -2793,6 +2795,7 @@ name = "Alternate Sciences Research Center" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) "KS" = ( @@ -2965,7 +2968,6 @@ }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/purple/diagonal_edge, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) "Ni" = ( @@ -3100,7 +3102,6 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/chair/office/light, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) @@ -3117,6 +3118,7 @@ /obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "OM" = ( @@ -3189,6 +3191,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron/dark/diagonal, /area/ruin/space/has_grav/dangerous_research/dorms) "PL" = ( @@ -3216,20 +3219,9 @@ /obj/structure/chair/office{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/dorms) -"Qa" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/dangerous_research/lab) "Qe" = ( /turf/closed/wall/r_wall/rust, /area/ruin/space/has_grav/dangerous_research/dorms) @@ -3353,12 +3345,6 @@ }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research) -"Rt" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) "Rx" = ( /obj/structure/closet{ name = "Greyham's Locker" @@ -3503,6 +3489,7 @@ "Te" = ( /obj/effect/turf_decal/tile/purple/diagonal_edge, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/diagonal, /area/ruin/space/has_grav/dangerous_research) "TD" = ( @@ -3535,11 +3522,6 @@ /obj/effect/turf_decal/tile/neutral/half, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/dangerous_research/lab) -"Uc" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) "Uk" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3729,12 +3711,6 @@ /obj/structure/cable, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/dangerous_research/lab) -"Xi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/turf/open/floor/iron/dark/diagonal, -/area/ruin/space/has_grav/dangerous_research/dorms) "Xk" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -4248,7 +4224,7 @@ BN fg BN AK -Qa +BN zO rq jp @@ -4341,7 +4317,7 @@ ts ts qf OL -Rt +OW wb ts ts @@ -4383,7 +4359,7 @@ he tD hL bl -Uc +aD AT ts KS @@ -4425,7 +4401,7 @@ Rx ts xA AO -Rt +OW HF ts DX @@ -4467,10 +4443,10 @@ ts ts Zg PJ -Rt +OW Mb ts -Bm +Ny OC Fi PP @@ -4509,11 +4485,11 @@ Cs HQ OW nz -Xi +Lk nv ts Bm -Ny +Bp Gn xZ eQ @@ -4725,8 +4701,8 @@ Hq Hq RD Nc -tv -Cf +lp +wJ fO Bq Bq diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm index 9f560335da0666..ced8c535a3fd29 100644 --- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm +++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm @@ -766,15 +766,9 @@ "eq" = ( /turf/closed/wall/mineral/iron, /area/ruin/space/has_grav/deepstorage/airlock) -"ev" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/ruin/space/has_grav/deepstorage/armory) "ew" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/deepstorage/armory) @@ -1530,6 +1524,14 @@ /obj/effect/baseturf_helper/asteroid/airless, /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage) +"nh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/ruin/space/has_grav/deepstorage/hydroponics) "oo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -2389,6 +2391,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage/hydroponics) "MV" = ( @@ -4381,7 +4384,7 @@ db dt dt pq -ev +dt xY fb fo @@ -4425,8 +4428,8 @@ ag aQ vG bC -zf -sL +nh +bC Lg aQ wK diff --git a/_maps/RandomRuins/SpaceRuins/derelict2.dmm b/_maps/RandomRuins/SpaceRuins/derelict2.dmm index b6e80272c26ed7..0fbccff35d0a5f 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict2.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict2.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /obj/machinery/door/airlock/external/ruin, /turf/open/floor/plating, @@ -13,7 +13,7 @@ "d" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "e" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/west, @@ -40,7 +40,7 @@ "k" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "l" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/north, @@ -76,7 +76,7 @@ "p" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "q" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/iron, diff --git a/_maps/RandomRuins/SpaceRuins/derelict3.dmm b/_maps/RandomRuins/SpaceRuins/derelict3.dmm index cf362dc206aa49..e0b8bcd95defb2 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict3.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict3.dmm @@ -11,7 +11,7 @@ "d" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" a diff --git a/_maps/RandomRuins/SpaceRuins/derelict6.dmm b/_maps/RandomRuins/SpaceRuins/derelict6.dmm index 5126f8ebac961a..93c890866304b9 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict6.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict6.dmm @@ -6,20 +6,20 @@ /obj/structure/lattice, /obj/structure/broken_flooring/singular/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ac" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/item/stack/sheet/iron, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "af" = ( /obj/structure/broken_flooring/pile/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ag" = ( /turf/open/floor/iron/airless, /area/ruin/space/has_grav) @@ -33,7 +33,7 @@ "aj" = ( /obj/structure/broken_flooring/pile/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ak" = ( /obj/item/stack/rods, /obj/effect/mapping_helpers/broken_floor, @@ -43,7 +43,7 @@ /obj/structure/broken_flooring/singular/directional/east, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "am" = ( /obj/item/stack/rods, /turf/open/floor/plating/airless, @@ -87,7 +87,7 @@ "aA" = ( /obj/structure/broken_flooring/pile/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aB" = ( /obj/item/stack/tile/iron/base, /obj/effect/mapping_helpers/broken_floor, @@ -203,12 +203,12 @@ /obj/structure/lattice, /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aZ" = ( /obj/structure/lattice, /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ba" = ( /mob/living/basic/ghost, /turf/open/floor/iron/cafeteria/airless, @@ -266,7 +266,7 @@ "bo" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bp" = ( /obj/item/stack/sheet/iron, /obj/structure/girder, @@ -291,7 +291,7 @@ "bv" = ( /obj/structure/broken_flooring/pile/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bw" = ( /obj/structure/lattice, /obj/structure/broken_flooring/plating/directional/north{ @@ -320,7 +320,7 @@ "bA" = ( /obj/structure/broken_flooring/singular/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bC" = ( /obj/structure/lattice, /obj/structure/broken_flooring/corner/directional/north, @@ -343,7 +343,7 @@ "bG" = ( /obj/structure/broken_flooring/singular/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bH" = ( /obj/structure/broken_flooring/plating/directional/south{ name = "broken plating" diff --git a/_maps/RandomRuins/SpaceRuins/derelict7.dmm b/_maps/RandomRuins/SpaceRuins/derelict7.dmm index e55afd60f98257..49cd1a71613fc7 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict7.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict7.dmm @@ -69,7 +69,7 @@ /obj/item/stack/tile/iron/base, /obj/structure/disposalpipe/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "gK" = ( /obj/structure/closet/cabinet, /obj/item/storage/pill_bottle/happy, @@ -79,12 +79,12 @@ "gX" = ( /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "hf" = ( /obj/structure/lattice, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "iB" = ( /obj/item/shard, /obj/effect/turf_decal/tile/yellow{ @@ -108,7 +108,7 @@ /obj/structure/lattice, /obj/item/stack/tile/iron/base, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lU" = ( /obj/item/stack/tile/iron/base, /obj/effect/mapping_helpers/broken_floor, @@ -120,7 +120,7 @@ "or" = ( /obj/item/stack/tile/iron/base, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "oy" = ( /obj/structure/table_frame, /obj/effect/turf_decal/tile/yellow/opposingcorners{ @@ -132,7 +132,7 @@ /obj/structure/lattice, /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "oX" = ( /obj/structure/door_assembly/door_assembly_med, /turf/open/floor/plating/airless, @@ -146,7 +146,7 @@ /obj/structure/lattice, /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "pr" = ( /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating/airless, @@ -156,11 +156,8 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav) "qi" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 26 - }, -/turf/open/floor/iron/airless, +/obj/structure/sign/directions/medical/directional/east, +/turf/closed/wall, /area/ruin/space/has_grav) "rt" = ( /obj/item/stack/rods, @@ -173,12 +170,12 @@ "tj" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "tk" = ( /obj/structure/lattice, /obj/machinery/light/broken/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "tF" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, @@ -190,7 +187,7 @@ /obj/item/stack/tile/iron/base, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "uB" = ( /obj/structure/disposalpipe/broken{ dir = 1 @@ -208,12 +205,12 @@ /obj/item/stack/tile/iron/base, /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "wJ" = ( /obj/structure/lattice, /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "wT" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, @@ -277,11 +274,11 @@ /obj/structure/lattice, /obj/effect/spawner/random/structure/crate_abandoned, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "CT" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Di" = ( /obj/structure/frame/machine, /obj/item/circuitboard/machine/vendor, @@ -296,7 +293,7 @@ /obj/structure/lattice, /obj/item/vending_refill/assist, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "EE" = ( /obj/effect/spawner/random/trash/botanical_waste, /obj/effect/mapping_helpers/broken_floor, @@ -305,7 +302,7 @@ "Fv" = ( /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "FQ" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron/airless, @@ -324,11 +321,11 @@ /obj/structure/lattice, /obj/item/wallframe/apc, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "HO" = ( /obj/item/stack/tile/wood, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Il" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/public/glass, @@ -404,7 +401,7 @@ "NM" = ( /obj/effect/spawner/random/medical/surgery_tool, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "NN" = ( /obj/effect/turf_decal/trimline/neutral/warning{ dir = 1 @@ -418,7 +415,7 @@ "Pi" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Pn" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -430,17 +427,17 @@ /obj/structure/girder/displaced, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qk" = ( /obj/structure/lattice, /obj/item/stack/tile/wood, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qw" = ( /obj/structure/lattice, /obj/structure/table_frame, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qy" = ( /obj/item/wallframe/airalarm, /obj/structure/disposalpipe/segment{ @@ -499,7 +496,7 @@ /obj/structure/lattice, /obj/item/light/tube/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Wr" = ( /obj/structure/door_assembly/door_assembly_mai, /obj/effect/mapping_helpers/broken_floor, @@ -519,7 +516,7 @@ /obj/item/wallframe/intercom, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" DY @@ -614,7 +611,7 @@ dV (7,1,1) = {" rN eP -eP +qi AY JI IE @@ -630,7 +627,7 @@ IR eP ea eP -qi +nf fc Nw eP diff --git a/_maps/RandomRuins/SpaceRuins/derelict8.dmm b/_maps/RandomRuins/SpaceRuins/derelict8.dmm index 41b53c9b816689..f91b7aafb310ea 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict8.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict8.dmm @@ -3,7 +3,7 @@ /obj/item/stack/tile/iron/base, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ck" = ( /obj/effect/spawner/random/structure/girder{ spawn_loot_chance = 80 @@ -22,7 +22,7 @@ /obj/structure/lattice, /obj/item/stack/tile/iron/base, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dS" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light/broken/directional/south, @@ -32,12 +32,12 @@ "es" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "eu" = ( /obj/structure/lattice, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "hs" = ( /obj/effect/spawner/random/trash/bin, /obj/effect/decal/cleanable/dirt, @@ -119,7 +119,7 @@ /obj/structure/lattice, /obj/effect/spawner/random/trash/food_packaging, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "yf" = ( /obj/structure/table, /obj/item/food/deadmouse{ @@ -136,11 +136,11 @@ /obj/item/stack/tile/iron/base, /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zh" = ( /obj/item/stack/tile/iron/base, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zt" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, @@ -155,7 +155,7 @@ "zK" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "BD" = ( /obj/structure/table, /obj/item/gps/spaceruin{ @@ -176,7 +176,7 @@ /obj/structure/lattice, /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "DQ" = ( /obj/effect/decal/cleanable/glass, /obj/structure/grille, @@ -242,12 +242,12 @@ "Of" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "OD" = ( /obj/structure/lattice, /obj/item/stack/cable_coil/cut, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "OM" = ( /obj/effect/spawner/random/bureaucracy/paper, /obj/structure/table, diff --git a/_maps/RandomRuins/SpaceRuins/derelict_construction.dmm b/_maps/RandomRuins/SpaceRuins/derelict_construction.dmm index c6825c841427b3..bc3c45fd2d9f23 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict_construction.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict_construction.dmm @@ -261,12 +261,12 @@ "DU" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "DY" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/burgundy, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "DZ" = ( /obj/structure/frame, /turf/open/misc/asteroid, @@ -346,10 +346,6 @@ /obj/structure/door_assembly/door_assembly_sec, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/derelictconstruction) -"LL" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space/nearstation) "Md" = ( /turf/open/floor/plating/foam, /area/ruin/space/has_grav/derelictconstruction) @@ -545,9 +541,9 @@ qM qM qM uw -LL +DU qM -LL +DU qM eu qM @@ -574,10 +570,10 @@ qM qM qM uw -LL -LL +DU +DU fa -LL +DU uw Ik bY @@ -603,9 +599,9 @@ qM qM qM Ax -LL +DU qM -LL +DU qM Ax Vq @@ -634,8 +630,8 @@ qM Wj Sw Sw -LL -LL +DU +DU Ax Md ao @@ -663,7 +659,7 @@ qM uw eu qM -LL +DU Sw Ax gi @@ -985,10 +981,10 @@ qR Za qR qR -LL -LL -LL -LL +DU +DU +DU +DU Ax bY bY diff --git a/_maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm b/_maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm index d62b5885ef629c..b3cd97c716b963 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict_sulaco.dmm @@ -95,7 +95,7 @@ dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_pump/layer4{ - dir = 4 + dir = 1 }, /obj/structure/cable, /turf/open/floor/pod/light, @@ -283,7 +283,6 @@ /obj/effect/decal/cleanable/blood/footprints{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/tgmcemblem{ @@ -410,7 +409,7 @@ "mC" = ( /obj/item/stack/tile/iron/smooth_corner, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "na" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/machinery/computer/terminal/sulaco/map, @@ -427,7 +426,7 @@ /obj/structure/lattice, /obj/item/stack/tile/iron/smooth_half, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "nG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks/xeno{ @@ -606,7 +605,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/layer4{ dir = 4 }, -/obj/structure/cable, /turf/open/floor/carpet, /area/ruin/space/has_grav/derelictsulaco) "uk" = ( @@ -968,6 +966,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/floor/broken, +/obj/structure/cable, /turf/open/floor/carpet, /area/ruin/space/has_grav/derelictsulaco) "GL" = ( @@ -1127,7 +1126,7 @@ "KI" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "KS" = ( /obj/machinery/door/window/brigdoor/left/directional/east, /obj/machinery/keycard_auth/wall_mounted/directional/north, @@ -1234,7 +1233,7 @@ "Ne" = ( /obj/item/stack/tile/iron/smooth_half, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ng" = ( /obj/machinery/camera/directional/south{ network = list() @@ -1311,7 +1310,7 @@ /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "PZ" = ( /obj/structure/table/reinforced, /obj/item/storage/box/ids{ @@ -1375,7 +1374,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Sj" = ( /obj/structure/alien/weeds, /obj/structure/bed/nest, @@ -1516,7 +1515,7 @@ /obj/item/stack/tile/iron/smooth_half, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "VO" = ( /obj/structure/alien/weeds, /obj/structure/barricade/sandbags, @@ -1565,7 +1564,7 @@ anchored = 1 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "WQ" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/red/fourcorners, @@ -1583,7 +1582,7 @@ /obj/structure/lattice, /obj/item/stack/tile/iron/smooth_corner, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "XC" = ( /obj/structure/alien/weeds, /obj/machinery/atmospherics/components/unary/vent_pump/layer4{ @@ -1671,7 +1670,7 @@ "ZZ" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" hi @@ -2537,7 +2536,7 @@ VO Op OQ Ng -sr +VT lf hi hi diff --git a/_maps/RandomRuins/SpaceRuins/dj_station.dmm b/_maps/RandomRuins/SpaceRuins/dj_station.dmm index 89aa0534e1bb04..a3ef3d4d654546 100644 --- a/_maps/RandomRuins/SpaceRuins/dj_station.dmm +++ b/_maps/RandomRuins/SpaceRuins/dj_station.dmm @@ -50,7 +50,7 @@ key = "radioroom" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "u" = ( /obj/machinery/telecomms/relay/preset/telecomms, /turf/open/floor/plating, @@ -143,7 +143,7 @@ key = "solars" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "V" = ( /obj/structure/sign/warning/vacuum/external/directional/south, /obj/effect/spawner/random/maintenance, diff --git a/_maps/RandomRuins/SpaceRuins/doppler/beacon_1.dmm b/_maps/RandomRuins/SpaceRuins/doppler/beacon_1.dmm index b093decb8df03c..39d68738238f42 100644 --- a/_maps/RandomRuins/SpaceRuins/doppler/beacon_1.dmm +++ b/_maps/RandomRuins/SpaceRuins/doppler/beacon_1.dmm @@ -2,8 +2,8 @@ "a" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/teal, -/turf/template_noop, -/area/template_noop) +/turf/open/space/basic, +/area/space) "p" = ( /obj/machinery/spaceship_navigation_beacon{ pixel_y = 23; @@ -39,11 +39,11 @@ gpstag = "NAV_BEACON_4CA" }, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space) "Z" = ( /obj/structure/lattice, -/turf/template_noop, -/area/template_noop) +/turf/open/space/basic, +/area/space) (1,1,1) = {" Z diff --git a/_maps/RandomRuins/SpaceRuins/emptyshell.dmm b/_maps/RandomRuins/SpaceRuins/emptyshell.dmm index b0c5d4cf260163..5950409a498fcd 100644 --- a/_maps/RandomRuins/SpaceRuins/emptyshell.dmm +++ b/_maps/RandomRuins/SpaceRuins/emptyshell.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav) diff --git a/_maps/RandomRuins/SpaceRuins/fasttravel.dmm b/_maps/RandomRuins/SpaceRuins/fasttravel.dmm index ca51f7525f5aae..8e50bd9f805683 100644 --- a/_maps/RandomRuins/SpaceRuins/fasttravel.dmm +++ b/_maps/RandomRuins/SpaceRuins/fasttravel.dmm @@ -55,7 +55,7 @@ amount = 10 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lq" = ( /obj/machinery/conveyor{ dir = 8; @@ -187,7 +187,7 @@ "CX" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "DZ" = ( /obj/machinery/power/rtg/advanced, /obj/structure/cable, diff --git a/_maps/RandomRuins/SpaceRuins/film_studio.dmm b/_maps/RandomRuins/SpaceRuins/film_studio.dmm index 595583e814053f..c426b7d2bb020e 100644 --- a/_maps/RandomRuins/SpaceRuins/film_studio.dmm +++ b/_maps/RandomRuins/SpaceRuins/film_studio.dmm @@ -31,7 +31,7 @@ "aG" = ( /obj/structure/lattice, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "aI" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/curtain/cloth/fancy, @@ -182,7 +182,7 @@ /area/ruin/space/has_grav/film_studio/director) "dd" = ( /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "dg" = ( /turf/closed/wall, /area/ruin/space/has_grav/film_studio/starboard) @@ -348,6 +348,7 @@ name = "Cabin 3" }, /obj/effect/mapping_helpers/airlock/access/all/away, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/ruin/space/has_grav/film_studio/dorms) "gl" = ( @@ -2263,7 +2264,6 @@ /obj/structure/chair/comfy/black{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/ruin/space/has_grav/film_studio/director) "Np" = ( @@ -3577,13 +3577,13 @@ dd XK bA NB -NB +Zd xd NB -NB +Zd On pY -NB +Zd gW NB aO @@ -5202,7 +5202,7 @@ WC KP dg DP -Wy +zL zL ST Ym diff --git a/_maps/RandomRuins/SpaceRuins/forgottenship.dmm b/_maps/RandomRuins/SpaceRuins/forgottenship.dmm index 581c5b320611c6..1544232c33d286 100644 --- a/_maps/RandomRuins/SpaceRuins/forgottenship.dmm +++ b/_maps/RandomRuins/SpaceRuins/forgottenship.dmm @@ -54,8 +54,8 @@ /turf/open/floor/plastic, /area/ruin/space/has_grav/syndicate_forgotten_ship) "an" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall/plastitanium/syndicate, +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "ao" = ( /turf/open/floor/carpet/royalblack, @@ -243,7 +243,7 @@ amount = 10 }, /obj/item/stack/cable_coil, -/obj/item/circuitboard/computer/rdconsole, +/obj/item/circuitboard/computer/rdconsole/unlocked, /obj/item/storage/box/stockparts/deluxe, /obj/item/storage/box/stockparts/deluxe, /obj/item/storage/box/beakers, @@ -442,7 +442,7 @@ /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bO" = ( /obj/structure/bodycontainer/crematorium{ id = "fscremate" @@ -568,10 +568,6 @@ /obj/machinery/stasis, /turf/open/floor/plastic, /area/ruin/space/has_grav/syndicate_forgotten_ship) -"ck" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/r_wall/plastitanium/syndicate, -/area/ruin/space/has_grav/syndicate_forgotten_cargopod) "cm" = ( /obj/machinery/door/airlock/grunge{ name = "Syndicate Ship Airlock" @@ -815,12 +811,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) -"cU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ruin/space/has_grav/syndicate_forgotten_ship) "cW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -922,7 +912,7 @@ /area/ruin/space/has_grav/powered/syndicate_forgotten_vault) "dj" = ( /turf/closed/mineral/random/high_chance, -/area/template_noop) +/area/space/nearstation) "dl" = ( /obj/machinery/door/password/voice/sfc{ password = null @@ -1050,11 +1040,11 @@ /obj/machinery/turretid{ control_area = "/area/ruin/space/has_grav/syndicate_forgotten_ship"; enabled = 0; - icon_state = "control_kill"; lethal = 1; name = "Ship turret control panel"; pixel_y = 32; - req_access = list("syndicate") + req_access = list("syndicate"); + dir = 1 }, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) @@ -1107,6 +1097,7 @@ /obj/structure/closet/crate/secure/engineering{ req_access = list("syndicate") }, +/obj/structure/sign/departments/cargo/directional/north, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_cargopod) "Cy" = ( @@ -1182,6 +1173,10 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) +"OW" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/syndicate_forgotten_ship) "VF" = ( /obj/structure/table/reinforced, /obj/machinery/button/door{ @@ -1921,7 +1916,7 @@ ao bx aH cD -cU +aw by al al @@ -1968,7 +1963,7 @@ ao bx aS cx -aS +aw by al al @@ -2015,7 +2010,7 @@ bn bZ tv cE -aS +aw bZ bY bE @@ -2479,8 +2474,8 @@ aa bZ al al -an -al +bZ +OW at ah cA @@ -2488,8 +2483,8 @@ cP ah ah aL -al an +bZ al bJ bZ @@ -2500,7 +2495,7 @@ aa aa aY aY -ck +bb yv bj bj diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm index 09fcc995760205..20bd5e3613c97d 100644 --- a/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm +++ b/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm @@ -36,6 +36,7 @@ /obj/item/paper/crumpled, /obj/item/restraints/handcuffs/cable/zipties/used, /obj/effect/decal/cleanable/blood/gibs/old, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/foodwaste) "bx" = ( @@ -537,10 +538,6 @@ /mob/living/basic/mouse, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/foodwaste) -"yi" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/garbagetruck/foodwaste) "yv" = ( /obj/item/trash/can{ pixel_x = -8; @@ -844,10 +841,8 @@ /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/foodwaste) "Ie" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, /obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/foodwaste) "II" = ( @@ -883,6 +878,7 @@ /obj/item/fish/ratfish, /obj/structure/closet/crate/freezer, /obj/effect/spawner/random/medical/surgery_tool, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/foodwaste) "KD" = ( @@ -1162,7 +1158,7 @@ "VL" = ( /obj/machinery/power/shuttle_engine/propulsion, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Xi" = ( /obj/item/food/badrecipe/moldy/bacteria, /obj/effect/decal/cleanable/food/egg_smudge, @@ -1295,7 +1291,7 @@ nS fV Vb bs -yi +Sa "} (4,1,1) = {" og @@ -1449,7 +1445,7 @@ uJ FL Nm JH -yi +Sa "} (11,1,1) = {" qM diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck2.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck2.dmm index 4ac2217e945e2a..1abd0beb6d1c28 100644 --- a/_maps/RandomRuins/SpaceRuins/garbagetruck2.dmm +++ b/_maps/RandomRuins/SpaceRuins/garbagetruck2.dmm @@ -134,10 +134,8 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/medicalwaste) "mZ" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, /obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/medicalwaste) "nW" = ( @@ -192,6 +190,7 @@ /obj/item/poster/random_contraband, /obj/item/organ/tongue/zombie, /obj/structure/closet/crate/trashcart, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/medicalwaste) "rB" = ( @@ -616,6 +615,7 @@ brute_damage = 200; mob_type = /mob/living/carbon/human/species/lizard }, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/medicalwaste) "Ua" = ( @@ -651,7 +651,7 @@ "VL" = ( /obj/machinery/power/shuttle_engine/propulsion, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "VV" = ( /obj/effect/decal/cleanable/blood/gibs/robot_debris/up, /obj/structure/frame/computer, @@ -665,10 +665,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/medicalwaste) -"XC" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/garbagetruck/medicalwaste) "XD" = ( /obj/structure/sinkframe, /obj/structure/broken_flooring/pile, @@ -760,7 +756,7 @@ AB py io TM -XC +MC "} (4,1,1) = {" iw @@ -914,7 +910,7 @@ Tp zH AU qX -XC +MC "} (11,1,1) = {" gh diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm index 568f2e9194ff63..21136cc1089d25 100644 --- a/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm +++ b/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm @@ -98,6 +98,7 @@ /obj/item/trash/syndi_cakes, /obj/effect/decal/cleanable/plastic, /obj/item/t_scanner, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/squat) "gq" = ( @@ -237,10 +238,8 @@ /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/squat) "lE" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, /obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/squat) "lY" = ( @@ -786,10 +785,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/squat) -"Pz" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/garbagetruck/squat) "PE" = ( /obj/machinery/door/airlock/shuttle, /turf/open/floor/plating, @@ -886,7 +881,7 @@ "VL" = ( /obj/machinery/power/shuttle_engine/propulsion, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "WK" = ( /obj/effect/decal/cleanable/fuel_pool, /obj/item/clothing/shoes/workboots{ @@ -908,6 +903,7 @@ /obj/item/cigarette/carp, /obj/item/extinguisher/mini, /obj/effect/decal/cleanable/fuel_pool, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating/dumpsterair, /area/ruin/space/has_grav/garbagetruck/squat) "XS" = ( @@ -997,7 +993,7 @@ tu hm pC fF -Pz +mV "} (4,1,1) = {" Ye @@ -1151,7 +1147,7 @@ yF Nd Er Xv -Pz +mV "} (11,1,1) = {" JX diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck4.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck4.dmm index 00f49ef1cf19bf..10c1a56fa260d7 100644 --- a/_maps/RandomRuins/SpaceRuins/garbagetruck4.dmm +++ b/_maps/RandomRuins/SpaceRuins/garbagetruck4.dmm @@ -75,6 +75,7 @@ /obj/item/clothing/shoes/kindle_kicks{ pixel_y = -10 }, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/toystore) "hH" = ( @@ -196,10 +197,6 @@ /obj/item/food/spidereggs, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/toystore) -"rb" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/garbagetruck/toystore) "rc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/flashlight/flare/torch, @@ -314,10 +311,8 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/toystore) "wu" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, /obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron, /area/ruin/space/has_grav/garbagetruck/toystore) "ww" = ( @@ -746,7 +741,7 @@ /obj/item/coin/plastic, /obj/structure/safe, /obj/structure/spider/stickyweb, -/obj/item/tank/jetpack/oxygen{ +/obj/item/tank/jetpack{ desc = "A tank of compressed oxygen for use as propulsion in zero-gravity areas. It's blue, and has a triangle chiselled into the paint." }, /obj/item/switchblade, @@ -798,6 +793,7 @@ }, /obj/structure/mop_bucket, /obj/item/broken_bottle, +/obj/structure/sign/warning/directional/south, /turf/open/floor/plating, /area/ruin/space/has_grav/garbagetruck/toystore) "UD" = ( @@ -811,7 +807,7 @@ "VL" = ( /obj/machinery/power/shuttle_engine/propulsion, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Wl" = ( /obj/structure/plasticflaps/opaque, /turf/open/floor/plating, @@ -953,7 +949,7 @@ xC Ix dq TO -rb +Yr "} (4,1,1) = {" yP @@ -1107,7 +1103,7 @@ ld Hy Rl hD -rb +Yr "} (11,1,1) = {" Zi diff --git a/_maps/RandomRuins/SpaceRuins/hauntedtradingpost.dmm b/_maps/RandomRuins/SpaceRuins/hauntedtradingpost.dmm index 3b3445795bea32..07526058562564 100644 --- a/_maps/RandomRuins/SpaceRuins/hauntedtradingpost.dmm +++ b/_maps/RandomRuins/SpaceRuins/hauntedtradingpost.dmm @@ -25,7 +25,8 @@ /obj/machinery/button/door/invisible_tripwire{ id = "donk_vault_lasertrap"; suicide_pact = 1; - suicide_pact_id = "donk_vault_lasertrap" + suicide_pact_id = "donk_vault_lasertrap"; + dir = 1 }, /turf/open/floor/wood, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -78,7 +79,7 @@ /obj/structure/grille, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bd" = ( /obj/structure/table/wood, /obj/structure/cable/layer1, @@ -357,7 +358,8 @@ suicide_pact = 1; suicide_pact_id = "donk_office_trap_shutters"; id = "donk_office_trap_shutters"; - sync_doors = 0 + sync_doors = 0; + dir = 4 }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -514,7 +516,8 @@ suicide_pact = 1; suicide_pact_id = "donk_office_trap_shutters"; id = "donk_office_trap_shutters"; - sync_doors = 0 + sync_doors = 0; + dir = 4 }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -581,11 +584,9 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/sink/directional/south, -/obj/machinery/button/door{ - pixel_y = 22; - pixel_x = -12; - id = "donk_market"; - name = "shutter button" +/obj/machinery/button/door/directional/north{ + pixel_x = 10; + id = "donk_market" }, /turf/open/floor/carpet/orange, /area/ruin/space/has_grav/hauntedtradingpost/public) @@ -837,6 +838,9 @@ /obj/structure/curtain/cloth/fancy, /turf/open/floor/carpet/donk, /area/ruin/space/has_grav/hauntedtradingpost/public) +"ht" = ( +/turf/closed/wall/mineral/plastitanium, +/area/ruin/space/has_grav/hauntedtradingpost/aicore) "hw" = ( /obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/airalarm/directional/south, @@ -914,21 +918,21 @@ /turf/open/floor/carpet/orange/airless, /area/ruin/space/has_grav/hauntedtradingpost/public/corridor) "ia" = ( -/obj/structure/safe/floor, -/obj/item/fishing_hook/shiny{ - desc = "A fancy fishing hook made out of gold."; - name = "fancy gold fishing hook" - }, -/obj/item/food/bait/natural, /obj/structure/cable/layer1, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, /obj/machinery/button/door/invisible_tripwire{ id = "donk_vault_lasertrap"; suicide_pact = 1; suicide_pact_id = "donk_vault_lasertrap" }, +/obj/item/food/bait/natural, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/fishing_hook/shiny{ + desc = "A fancy fishing hook made out of gold."; + name = "fancy gold fishing hook" + }, +/obj/structure/safe/floor, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/space/has_grav/hauntedtradingpost/office) "ic" = ( @@ -1019,7 +1023,8 @@ id = "donk_office_entrance_trap_gamma"; donk_ai_slave = 1; multiuse = 1; - resets_self = 1 + resets_self = 1; + dir = 1 }, /turf/open/floor/carpet/orange, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -1151,7 +1156,8 @@ suicide_pact = 1; suicide_pact_id = "donk_office_trap_shutters"; id = "donk_office_trap_shutters"; - sync_doors = 0 + sync_doors = 0; + dir = 4 }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -1240,7 +1246,7 @@ /obj/structure/lattice, /obj/structure/grille, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "kx" = ( /mob/living/basic/bot/dedbot{ bot_mode_flags = 29 @@ -1800,9 +1806,7 @@ /area/ruin/space/has_grav/hauntedtradingpost/office) "pG" = ( /obj/structure/lattice/catwalk, -/obj/effect/spawner/structure/electrified_grille{ - spawn_list = list(/obj/structure/grille,/obj/structure/cable/layer1) - }, +/obj/effect/spawner/structure/electrified_grille/layer1, /turf/template_noop, /area/ruin/space/has_grav/hauntedtradingpost/office) "pN" = ( @@ -1936,7 +1940,7 @@ /turf/template_noop, /area/template_noop) "qY" = ( -/obj/item/tank/jetpack/oxygen/security{ +/obj/item/tank/jetpack/security{ name = "red jetpack (oxygen)" }, /obj/item/tank/internals/oxygen/red, @@ -2098,7 +2102,7 @@ /obj/structure/table/reinforced/plastitaniumglass, /obj/effect/spawner/random/exotic/technology, /obj/effect/mapping_helpers/apc/syndicate_access, -/obj/item/gun/energy/laser/carbine/cybersun, +/obj/item/gun/energy/laser/cybersun, /obj/effect/mapping_helpers/apc/full_charge, /obj/machinery/power/apc/auto_name/directional/south{ cable_layer = 1 @@ -2144,15 +2148,12 @@ /obj/structure/cable/layer1, /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/cell_charger, -/obj/machinery/button/door{ - pixel_y = 23; - pixel_x = 10; - id = "donk_office_peek"; - name = "shutter button" - }, /obj/item/stock_parts/power_store/cell/bluespace{ pixel_y = 2 }, +/obj/machinery/button/door/directional/north{ + id = "donk_office_peek" + }, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/space/has_grav/hauntedtradingpost/aicore) "sD" = ( @@ -2875,7 +2876,7 @@ /obj/effect/spawner/random/structure/grille, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "yU" = ( /obj/item/rack_parts{ pixel_y = 8; @@ -2983,17 +2984,11 @@ "zQ" = ( /mob/living/basic/viscerator, /obj/effect/turf_decal/bot_red, -/obj/machinery/button/door{ - pixel_y = 23; - pixel_x = 8; - normaldoorcontrol = 1; - specialfunctions = 4; - id = "donk_aicore_door_bolts"; - name = "Door Bolt Button"; - skin = "-warning"; - silicon_access_disabled = 1 - }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/button/door/directional/north{ + id = "donk_aicore_door_bolts" + }, +/obj/structure/sign/warning/directional/west, /turf/open/floor/circuit/red/off, /area/ruin/space/has_grav/hauntedtradingpost/aicore) "Ab" = ( @@ -3039,9 +3034,7 @@ /area/ruin/space/has_grav/hauntedtradingpost/employees/corridor) "At" = ( /obj/structure/lattice/catwalk, -/obj/effect/spawner/structure/electrified_grille{ - spawn_list = list(/obj/structure/grille,/obj/structure/cable/layer1) - }, +/obj/effect/spawner/structure/electrified_grille/layer1, /turf/template_noop, /area/ruin/space/has_grav/hauntedtradingpost/employees/corridor) "Au" = ( @@ -3135,7 +3128,7 @@ /obj/structure/lattice, /obj/effect/spawner/random/structure/grille, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Bj" = ( /obj/structure/rack, /obj/effect/spawner/random/medical/minor_healing, @@ -3276,7 +3269,8 @@ id = "donk_office_entrance_trap_alpha"; resets_self = 1; donk_ai_slave = 1; - multiuse = 1 + multiuse = 1; + dir = 1 }, /turf/open/floor/carpet/orange, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -3405,9 +3399,7 @@ id = "Donk_Trash_Chute" }, /obj/machinery/light/small/dim/directional/west, -/obj/machinery/button/door{ - pixel_y = 10; - pixel_x = -23; +/obj/machinery/button/door/directional/west{ id = "donk_waste" }, /turf/open/floor/plating, @@ -3453,9 +3445,7 @@ /area/ruin/space/has_grav/hauntedtradingpost/employees) "EC" = ( /obj/structure/lattice/catwalk, -/obj/effect/spawner/structure/electrified_grille{ - spawn_list = list(/obj/structure/grille,/obj/structure/cable/layer1) - }, +/obj/effect/spawner/structure/electrified_grille/layer1, /turf/template_noop, /area/ruin/space/has_grav/hauntedtradingpost/employees/workstation) "EK" = ( @@ -3638,7 +3628,6 @@ /turf/open/floor/carpet/donk, /area/ruin/space/has_grav/hauntedtradingpost/office) "Ga" = ( -/obj/effect/spawner/random/entertainment/arcade, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -3647,8 +3636,10 @@ }, /obj/machinery/button/door/invisible_tripwire{ id = "donk_refuel_window"; - donk_ai_slave = 1 + donk_ai_slave = 1; + dir = 1 }, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/catwalk_floor/iron_smooth, /area/ruin/space/has_grav/hauntedtradingpost/public/corridor) "Ge" = ( @@ -3967,15 +3958,8 @@ /area/ruin/space/has_grav/hauntedtradingpost/aicore) "Im" = ( /obj/effect/turf_decal/stripes/red/line, -/obj/machinery/button/door{ - pixel_y = -23; - pixel_x = -8; - normaldoorcontrol = 1; - specialfunctions = 4; - id = "donk_aicore_door_bolts"; - name = "Door Bolt Button"; - skin = "-warning"; - silicon_access_disabled = 1 +/obj/machinery/button/door/directional/south{ + id = "donk_aicore_door_bolts" }, /turf/open/floor/circuit/red/off, /area/ruin/space/has_grav/hauntedtradingpost/aicore) @@ -4065,7 +4049,8 @@ suicide_pact = 1; suicide_pact_id = "donk_office_trap_shutters"; id = "donk_office_trap_shutters"; - sync_doors = 0 + sync_doors = 0; + dir = 4 }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -4088,6 +4073,12 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/hauntedtradingpost/maint) +"Ju" = ( +/mob/living/basic/viscerator, +/obj/effect/turf_decal/bot_red, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/circuit/red/off, +/area/ruin/space/has_grav/hauntedtradingpost/aicore) "Jw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/donk, @@ -4216,23 +4207,20 @@ /obj/machinery/light/small/directional/north, /obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/button/door{ - pixel_y = 25; - pixel_x = 12; - id = "donk_toilet" - }, -/obj/machinery/button/door{ - pixel_y = 25; - pixel_x = -12; - id = "donk_toilet_window"; - name = "window shutter button" - }, /obj/machinery/airalarm/directional/south, /obj/effect/decal/cleanable/dirt, /obj/structure/toilet/secret{ secret_type = /obj/item/toy/plush/nukeplushie; dir = 4 }, +/obj/machinery/button/door/directional/north{ + pixel_x = -12; + id = "donk_toilet" + }, +/obj/machinery/button/door/directional/north{ + pixel_x = 12; + id = "donk_toilet_window" + }, /turf/open/floor/plating, /area/ruin/space/has_grav/hauntedtradingpost/maint/disposals) "KZ" = ( @@ -4571,11 +4559,8 @@ /obj/item/stock_parts/capacitor/super{ pixel_y = 5 }, -/obj/machinery/button/door{ - pixel_y = 23; - pixel_x = -10; - id = "donk_corridor_peek"; - name = "shutter button" +/obj/machinery/button/door/directional/north{ + id = "donk_corridor_peek" }, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/space/has_grav/hauntedtradingpost/aicore) @@ -4599,7 +4584,7 @@ "NS" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "NY" = ( /obj/structure/cable/layer1, /obj/machinery/vending/coffee{ @@ -4787,7 +4772,8 @@ id = "donk_office_entrance_trap_beta"; resets_self = 1; donk_ai_slave = 1; - multiuse = 1 + multiuse = 1; + dir = 1 }, /turf/open/floor/carpet/orange, /area/ruin/space/has_grav/hauntedtradingpost/office) @@ -4873,8 +4859,7 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/space/has_grav/hauntedtradingpost/maint) "QA" = ( -/obj/structure/sign/warning, -/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/structure/window/reinforced/plasma/plastitanium, /turf/open/floor/plating, /area/ruin/space/has_grav/hauntedtradingpost/aicore) "QF" = ( @@ -5029,7 +5014,7 @@ width = 35 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "RI" = ( /obj/structure/chair/sofa/left/brown{ dir = 1 @@ -5168,13 +5153,6 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/hauntedtradingpost/maint/toystorage) "SX" = ( -/obj/machinery/button/door{ - pixel_y = 24; - pixel_x = 9; - id = "donk_office_trap_shutters"; - name = "shutter button"; - sync_doors = 0 - }, /obj/machinery/button/door/selfdestructs{ normaldoorcontrol = 1; id = "donk_door_bolts"; @@ -5184,6 +5162,10 @@ desc = "A button for unbolting doors throughout the facility."; name = "door bolt override" }, +/obj/machinery/button/door/directional/north{ + id = "donk_office_trap_shutters"; + pixel_x = 10 + }, /turf/open/floor/wood/large, /area/ruin/space/has_grav/hauntedtradingpost/office) "SY" = ( @@ -5296,7 +5278,7 @@ name = "external vent" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "TU" = ( /obj/structure/cable/layer1, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, @@ -5555,9 +5537,7 @@ /area/ruin/space/has_grav/hauntedtradingpost/public/corridor) "Wf" = ( /obj/structure/lattice/catwalk, -/obj/effect/spawner/structure/electrified_grille{ - spawn_list = list(/obj/structure/grille,/obj/structure/cable/layer1) - }, +/obj/effect/spawner/structure/electrified_grille/layer1, /turf/template_noop, /area/ruin/space/has_grav/hauntedtradingpost/office/meetingroom) "Wg" = ( @@ -6004,7 +5984,7 @@ /obj/structure/lattice, /obj/structure/grille/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ZI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -6684,7 +6664,7 @@ jk je Nw Ii -ve +ht QA lA nE @@ -6820,7 +6800,7 @@ BE yb Im MR -kl +Ju Gk iv PX @@ -6864,7 +6844,7 @@ pX je Nw AB -ve +MR QA kl nE diff --git a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm b/_maps/RandomRuins/SpaceRuins/hellfactory.dmm index 4d3ac05f1be2bd..7ddd26f84194f7 100644 --- a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm +++ b/_maps/RandomRuins/SpaceRuins/hellfactory.dmm @@ -347,7 +347,7 @@ "bm" = ( /obj/structure/table, /obj/item/stamp/denied, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 6; pixel_y = 6 }, @@ -876,7 +876,7 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/hellfactory) "ux" = ( -/obj/machinery/light/small/directional/west, +/obj/machinery/light/small/directional/east, /turf/open/floor/iron, /area/ruin/space/has_grav/hellfactory) "uL" = ( diff --git a/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm b/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm index 9565fa689c3411..96b778786af652 100644 --- a/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm +++ b/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm @@ -35,7 +35,7 @@ "aB" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aV" = ( /obj/machinery/light/small/red/dim/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -84,7 +84,7 @@ /obj/item/ammo_casing/spent, /obj/item/ammo_casing/spent, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bD" = ( /obj/effect/decal/cleanable/blood/gibs{ icon_state = "gib3-old"; @@ -450,7 +450,7 @@ "fM" = ( /obj/structure/door_assembly/door_assembly_ext, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "fX" = ( /obj/structure/toilet{ dir = 4 @@ -463,7 +463,7 @@ "gG" = ( /obj/effect/spawner/random/trash/food_packaging, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "gW" = ( /obj/effect/turf_decal{ dir = 4 @@ -945,7 +945,7 @@ pixel_x = 15 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qb" = ( /obj/effect/turf_decal{ dir = 8 @@ -1014,14 +1014,14 @@ "qF" = ( /obj/item/ammo_casing/spent, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qJ" = ( /obj/structure/closet/crate/trashcart, /obj/item/clothing/mask/facehugger/toy, /obj/item/storage/fancy/cigarettes/cigpack_cannabis, /obj/effect/mob_spawn/corpse/human/charredskeleton, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qR" = ( /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/mob_spawn/corpse/human/syndicatecommando/lessenedgear, @@ -1103,7 +1103,7 @@ "rO" = ( /obj/structure/broken_flooring/pile/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "so" = ( /obj/effect/mapping_helpers/broken_floor, /obj/item/broken_missile, @@ -1150,7 +1150,7 @@ "sT" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "sZ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -1365,7 +1365,7 @@ amount = 25 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "wt" = ( /obj/effect/turf_decal{ icon_state = "warningline_white"; @@ -1448,7 +1448,7 @@ /obj/effect/spawner/random/trash, /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/mineral/plastitanium/airless, -/area/template_noop) +/area/space/nearstation) "xo" = ( /obj/effect/decal/cleanable/glass, /obj/structure/cable, @@ -1651,11 +1651,11 @@ }, /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "zU" = ( /obj/structure/broken_flooring/pile/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zV" = ( /obj/machinery/suit_storage_unit/open, /obj/effect/turf_decal{ @@ -1839,7 +1839,7 @@ "Eg" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Er" = ( /obj/effect/turf_decal{ icon_state = "arrows_red"; @@ -1879,7 +1879,7 @@ "EB" = ( /obj/structure/girder/displaced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "EL" = ( /obj/effect/turf_decal{ icon_state = "warningline_white" @@ -2086,12 +2086,12 @@ "HD" = ( /obj/structure/broken_flooring/singular/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "HP" = ( /obj/structure/broken_flooring/plating/directional/north, /obj/structure/broken_flooring/pile/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Im" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/mineral/plastitanium, @@ -2325,7 +2325,7 @@ /obj/item/ammo_casing/spent, /obj/structure/alien/weeds, /turf/open/floor/mineral/plastitanium/airless, -/area/template_noop) +/area/space/nearstation) "Ln" = ( /obj/effect/decal/cleanable/glass, /obj/item/ammo_casing/spent, @@ -2518,7 +2518,7 @@ amount = 23 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ou" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -2624,7 +2624,7 @@ /obj/item/ammo_casing/spent, /obj/item/ammo_casing/spent, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qm" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -2649,7 +2649,7 @@ "QL" = ( /obj/structure/broken_flooring/singular/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ru" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt, @@ -2657,7 +2657,7 @@ /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, -/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack, /obj/item/storage/box/coffeepack, /obj/item/storage/box/coffeepack, /obj/item/storage/box/emptysandbags, @@ -2728,7 +2728,7 @@ "RY" = ( /obj/effect/spawner/random/trash, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Sr" = ( /obj/effect/turf_decal{ icon_state = "warningline_white"; @@ -2937,7 +2937,7 @@ "VR" = ( /obj/item/tank/internals/oxygen/empty, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "VU" = ( /obj/structure/cable, /obj/effect/decal/cleanable/vomit/old, @@ -3004,7 +3004,7 @@ amount = 50 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Xc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, diff --git a/_maps/RandomRuins/SpaceRuins/interdyne.dmm b/_maps/RandomRuins/SpaceRuins/interdyne.dmm index ae2a3578e2fc53..c053639750b625 100644 --- a/_maps/RandomRuins/SpaceRuins/interdyne.dmm +++ b/_maps/RandomRuins/SpaceRuins/interdyne.dmm @@ -8,12 +8,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/interdyne) -"aI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/interdyne) "aY" = ( /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/interdyne) @@ -54,6 +48,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/gibspawner/generic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/interdyne) "cJ" = ( @@ -670,11 +665,6 @@ /obj/machinery/light/blacklight/directional/north, /turf/open/floor/iron/smooth, /area/ruin/space/has_grav/interdyne) -"DA" = ( -/mob/living/basic/zombie, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/mineral/plastitanium, -/area/ruin/space/has_grav/interdyne) "DH" = ( /turf/open/floor/iron/showroomfloor, /area/ruin/space/has_grav/interdyne) @@ -995,6 +985,12 @@ /obj/structure/sink/directional/south, /turf/open/floor/iron/showroomfloor, /area/ruin/space/has_grav/interdyne) +"OU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/interdyne) "OW" = ( /obj/machinery/power/smes/engineering{ input_available = 100000; @@ -1783,8 +1779,8 @@ fu eJ WU Zi -gV -vd +oO +OU xb Zi Rn @@ -1819,7 +1815,7 @@ Yi US NG In -SE +QD FF Zi Rn @@ -2161,7 +2157,7 @@ mp Zi fu Nb -DA +uy ga Zi Gk @@ -2196,7 +2192,7 @@ SC Zi ub cG -aI +OU QD Zi XS diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm index c1188e9866360a..cb069a04b11d5c 100644 --- a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm @@ -24,7 +24,6 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "aP" = ( -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/anticorner/contrasted, /turf/open/floor/iron, @@ -53,7 +52,6 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "by" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/item/multitool{ pixel_x = 8; pixel_y = 3 @@ -80,18 +78,10 @@ /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) "ch" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/cerulean, /turf/template_noop, /area/ruin/space) -"cj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/small, -/area/ruin/space/has_grav/listeningstation) "cq" = ( /obj/effect/turf_decal/bot, /obj/item/weldingtool/largetank, @@ -123,7 +113,6 @@ /obj/structure/table, /obj/item/storage/medkit/regular, /obj/item/clothing/neck/stethoscope, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/small/directional/north, /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 @@ -131,20 +120,23 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) "dv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) -"dW" = ( +"dM" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) -"eR" = ( +"dW" = ( +/obj/structure/cable, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, +/turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) "eW" = ( /obj/structure/table, @@ -241,13 +233,9 @@ /turf/open/floor/circuit/red, /area/ruin/space/has_grav/listeningstation) "lO" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/marker_beacon/cerulean, +/obj/structure/sign/nanotrasen/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/airless, /area/ruin/space) "nG" = ( @@ -322,12 +310,6 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/listeningstation) -"tf" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/small, -/area/ruin/space/has_grav/listeningstation) "tl" = ( /obj/structure/marker_beacon/cerulean, /turf/open/floor/plating/airless, @@ -350,17 +332,16 @@ /area/ruin/space/has_grav/listeningstation) "vt" = ( /obj/structure/lattice/catwalk, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/structure/marker_beacon/cerulean, +/obj/structure/sign/nanotrasen/directional/west, /turf/template_noop, /area/ruin/space) "vC" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/spawner/random/trash/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) "vI" = ( @@ -372,7 +353,6 @@ req_access = list("syndicate") }, /obj/item/paper/fluff/ruins/listeningstation/reports/september, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) @@ -421,6 +401,7 @@ "ym" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "yx" = ( @@ -453,7 +434,6 @@ /area/ruin/space/has_grav/listeningstation) "zo" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) @@ -471,10 +451,8 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "zV" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/structure/cable, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/plating/airless, /area/ruin/space) "zZ" = ( @@ -609,13 +587,9 @@ /turf/open/floor/iron/showroomfloor, /area/ruin/space/has_grav/listeningstation) "FU" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/marker_beacon/cerulean, +/obj/structure/sign/nanotrasen/directional/south, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/airless, /area/ruin/space) "FV" = ( @@ -684,7 +658,7 @@ width = 9 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "KG" = ( /obj/structure/curtain, /obj/effect/decal/cleanable/dirt, @@ -704,7 +678,6 @@ /obj/structure/chair/sofa/right/brown{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "LU" = ( @@ -751,7 +724,6 @@ "Ni" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/south, /obj/structure/closet/secure_closet/freezer/empty/open, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) "NO" = ( @@ -786,7 +758,6 @@ "Or" = ( /obj/structure/closet/crate/bin, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/small, /area/ruin/space/has_grav/listeningstation) @@ -819,6 +790,7 @@ dir = 4 }, /obj/machinery/light/warm/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/grimy, /area/ruin/space/has_grav/listeningstation) "Sx" = ( @@ -863,6 +835,8 @@ /obj/structure/chair/sofa/left/brown{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "Uh" = ( @@ -916,6 +890,9 @@ }, /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) +"We" = ( +/turf/open/floor/plating, +/area/ruin/space/has_grav/listeningstation) "WD" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -930,10 +907,8 @@ /area/ruin/space/has_grav/listeningstation) "WG" = ( /obj/structure/lattice/catwalk, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/structure/marker_beacon/cerulean, +/obj/structure/sign/nanotrasen/directional/south, /turf/template_noop, /area/ruin/space) "WW" = ( @@ -945,7 +920,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/space/has_grav/listeningstation) "Yf" = ( @@ -1320,9 +1294,9 @@ MS It ad by -cj -db -Sz +wm +ym +wk JB vI vI @@ -1342,9 +1316,9 @@ JB JB JB eW -eR -eR -cj +FV +FV +wm dv TO LR @@ -1367,12 +1341,12 @@ Dv WD rG Or -SB +We FV ca BX dW -Sz +We JB vI vI @@ -1392,9 +1366,9 @@ LU Mt nX Sx -vC +dM ym -tf +dW ym ym Ni diff --git a/_maps/RandomRuins/SpaceRuins/meatderelict.dmm b/_maps/RandomRuins/SpaceRuins/meatderelict.dmm index 2933e4723eb1a6..48ea0933387c0d 100644 --- a/_maps/RandomRuins/SpaceRuins/meatderelict.dmm +++ b/_maps/RandomRuins/SpaceRuins/meatderelict.dmm @@ -87,6 +87,13 @@ /obj/structure/microscope, /turf/open/indestructible/white, /area/ruin/space/has_grav/powered/biooutpost) +"bV" = ( +/obj/structure/broken_flooring/corner/always_floorplane{ + dir = 4 + }, +/obj/structure/sign/warning/directional/west, +/turf/open/indestructible/meat, +/area/ruin/space/has_grav/powered/biooutpost) "ch" = ( /turf/open/indestructible/white{ icon_state = "showroomfloor" @@ -333,9 +340,11 @@ /turf/open/indestructible/meat, /area/ruin/space/has_grav/powered/biooutpost) "hR" = ( -/obj/structure/sign/warning, -/turf/closed/indestructible/reinforced, -/area/ruin/space/has_grav/powered/biooutpost/vault) +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/directional/east, +/turf/open/indestructible/white, +/area/ruin/space/has_grav/powered/biooutpost) "hW" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/decal/cleanable/blood/splatter, @@ -1314,6 +1323,7 @@ dir = 5 }, /obj/structure/sign/warning/chem_diamond/directional/west, +/obj/structure/sign/warning/directional/south, /turf/open/indestructible/dark, /area/ruin/space/has_grav/powered/biooutpost) "za" = ( @@ -1388,8 +1398,12 @@ /turf/open/indestructible/dark, /area/ruin/space/has_grav/powered/biooutpost) "AT" = ( -/obj/structure/sign/warning, -/turf/closed/indestructible/riveted/plastinum/nodiagonal, +/obj/structure/puzzle_blockade{ + id = "md_armory" + }, +/obj/effect/turf_decal/stripes/full, +/obj/structure/sign/warning/directional/north, +/turf/open/indestructible/white, /area/ruin/space/has_grav/powered/biooutpost) "AV" = ( /obj/effect/turf_decal/stripes/full, @@ -1704,6 +1718,12 @@ /obj/machinery/light/small/broken/directional/south, /turf/open/indestructible/dark, /area/ruin/space/has_grav/powered/biooutpost) +"Gq" = ( +/obj/structure/sign/directions/security/directional/south{ + pixel_y = 0 + }, +/turf/closed/indestructible/riveted/plastinum/nodiagonal, +/area/ruin/space/has_grav/powered/biooutpost/vault) "GA" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -2528,9 +2548,6 @@ /turf/open/indestructible/plating, /area/ruin/space/has_grav/powered/biooutpost) "XO" = ( -/obj/structure/sign/directions/security/directional/south{ - pixel_x = 32 - }, /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/structure/sign/poster/official/random/directional/east, /obj/effect/decal/cleanable/dirt, @@ -2984,7 +3001,7 @@ Jh AP DJ yU -AT +Jh vF ih hf @@ -3262,7 +3279,7 @@ Jh wX wM DJ -cp +hR XO Ju op @@ -3304,9 +3321,9 @@ UX UX EC xr -hR -UX +EC UX +Gq UX op Gd @@ -3560,8 +3577,8 @@ EN EN eP EC -hR -IK +EC +AT IK IK PQ @@ -3721,7 +3738,7 @@ Rb Sj EC Yc -hR +EC EC xr EC @@ -3763,7 +3780,7 @@ UD qV ij Nz -sJ +bV OM Vu NE diff --git a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm index 2591d4991e5747..7ea38800f8e61d 100644 --- a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm +++ b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm @@ -33,12 +33,12 @@ "hR" = ( /obj/item/shard/titanium, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "if" = ( /obj/structure/lattice, /obj/structure/mecha_wreckage/gygax, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "is" = ( /turf/template_noop, /area/template_noop) @@ -98,12 +98,12 @@ pixel_x = 12 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lc" = ( /obj/structure/lattice, /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lB" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood, @@ -172,7 +172,7 @@ "wJ" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "xJ" = ( /obj/structure/chair/office{ dir = 1 @@ -268,7 +268,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Lk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large/airless, @@ -298,7 +298,7 @@ "PG" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Qc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ dir = 8 @@ -322,7 +322,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Vl" = ( /obj/machinery/power/shuttle_engine/heater, /turf/open/floor/plating/airless, diff --git a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm index be9dfaaa1a7f7e..bac43576d133bd 100644 --- a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm @@ -5,7 +5,7 @@ "ab" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ac" = ( /turf/open/floor/plating/airless, /area/ruin/space/tcommsat_oldaisat) @@ -13,16 +13,16 @@ /obj/structure/lattice, /obj/structure/grille/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/structure/lattice, /obj/structure/grille, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "af" = ( /obj/structure/grille, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "ag" = ( /turf/closed/wall/r_wall, /area/ruin/space/tcommsat_oldaisat) @@ -33,7 +33,7 @@ "ai" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aj" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/plating/airless, @@ -78,7 +78,7 @@ /obj/structure/lattice, /obj/structure/window/reinforced/spawner/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "au" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -96,7 +96,7 @@ /obj/structure/lattice, /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ay" = ( /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/iron/airless, @@ -160,7 +160,7 @@ "aL" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aM" = ( /obj/item/folder/yellow, /turf/open/floor/iron/airless, @@ -177,14 +177,14 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aP" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aQ" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -194,22 +194,19 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aS" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aT" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/template_noop, -/area/template_noop) -"aU" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/ruin/space/tcommsat_oldaisat) +/area/space/nearstation) "aV" = ( /obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron/airless, /area/ruin/space/tcommsat_oldaisat) "aW" = ( @@ -326,16 +323,16 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "br" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bs" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bt" = ( /obj/structure/table, /obj/item/gps/spaceruin, @@ -361,7 +358,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bz" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/item/shard{ @@ -400,7 +397,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bG" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/west, @@ -562,12 +559,12 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ck" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cl" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -596,7 +593,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cq" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/west, @@ -649,7 +646,7 @@ icon_state = "medium" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cz" = ( /obj/structure/lattice, /obj/item/stack/rods, @@ -657,7 +654,7 @@ icon_state = "medium" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cB" = ( /obj/effect/spawner/structure/window/hollow/reinforced, /turf/open/floor/plating, @@ -665,7 +662,7 @@ "cC" = ( /obj/structure/grille/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cD" = ( /obj/machinery/door/airlock/hatch, /turf/open/floor/iron, @@ -2354,7 +2351,7 @@ ag ag ag ag -aU +ag bf ag ag diff --git a/_maps/RandomRuins/SpaceRuins/old_infiltrator.dmm b/_maps/RandomRuins/SpaceRuins/old_infiltrator.dmm index 3fef3d7f7fe714..082f1341908d56 100644 --- a/_maps/RandomRuins/SpaceRuins/old_infiltrator.dmm +++ b/_maps/RandomRuins/SpaceRuins/old_infiltrator.dmm @@ -206,7 +206,7 @@ "nv" = ( /obj/item/stack/sheet/mineral/plastitanium, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "nF" = ( /obj/item/radio/intercom/directional/south, /obj/effect/decal/cleanable/blood/old, @@ -268,7 +268,6 @@ "sL" = ( /obj/structure/table, /obj/effect/spawner/random/engineering/tool, -/obj/machinery/light/directional/north, /obj/item/stack/cable_coil, /turf/open/floor/mineral/plastitanium/red/airless, /area/ruin/space/unpowered) @@ -439,6 +438,7 @@ pixel_x = 8 }, /obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium/red/airless, /area/ruin/space/unpowered) "Da" = ( @@ -521,7 +521,7 @@ "Jd" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "JH" = ( /obj/structure/frame/machine, /turf/open/floor/circuit/red/airless, @@ -544,7 +544,7 @@ "KM" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Lz" = ( /obj/structure/table, /obj/item/tank/internals/emergency_oxygen/engi, @@ -562,11 +562,9 @@ /turf/open/floor/iron/dark/airless, /area/ruin/space/unpowered) "Mw" = ( -/obj/machinery/status_display/ai{ - pixel_x = 32 - }, /obj/machinery/light/directional/east, /obj/effect/decal/cleanable/blood/old, +/obj/machinery/status_display/ai/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/unpowered) "MB" = ( @@ -646,7 +644,7 @@ "Tc" = ( /obj/item/stack/rods/two, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Tx" = ( /obj/machinery/door/window/brigdoor/right/directional/west{ req_access = list("syndicate"); @@ -732,7 +730,7 @@ "YT" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Zh" = ( /obj/structure/table, /obj/item/storage/medkit/ancient{ diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm index 4fdde74a1c7b13..93141bbfef43c6 100644 --- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm @@ -288,7 +288,9 @@ /turf/open/floor/iron, /area/ruin/space/ancientstation/charlie/bridge) "bA" = ( -/obj/structure/ai_core/deactivated, +/obj/structure/ai_core{ + state = 5 + }, /turf/open/floor/iron/dark, /area/ruin/space/ancientstation/delta/ai) "bC" = ( @@ -710,7 +712,7 @@ "dq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank/high{ - desc = "A highly-pressurized water tank, this one seems almost empty.."; + desc = "A highly-pressurized water tank. This one seems almost empty.."; tank_volume = 1000 }, /obj/effect/decal/cleanable/dirt, @@ -1006,7 +1008,7 @@ /turf/open/floor/iron/diagonal, /area/ruin/space/ancientstation/beta/gravity) "eF" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/ruin/space/ancientstation/delta/rnd) @@ -2600,13 +2602,6 @@ /area/ruin/space/ancientstation/charlie/hydro) "lI" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/west{ - id = "Beta Secure Storage"; - name = "Engineering Secure Storage"; - req_access = list("engine_equip"); - pixel_x = 25; - pixel_y = 23 - }, /obj/item/shard/plasma, /turf/open/floor/engine/airless, /area/ruin/space/ancientstation/beta/supermatter) @@ -2683,10 +2678,6 @@ "mc" = ( /turf/closed/mineral/plasma, /area/ruin/space/ancientstation/charlie/dorms) -"md" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/ruin/space/ancientstation/delta/biolab) "me" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -3006,7 +2997,7 @@ "nr" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ns" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, @@ -3361,6 +3352,7 @@ dir = 4 }, /obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /turf/open/floor/iron, /area/ruin/space/ancientstation/beta/atmos) "pB" = ( @@ -4125,7 +4117,6 @@ /area/ruin/space/ancientstation/delta/biolab) "vh" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 8 }, @@ -4539,6 +4530,7 @@ /obj/machinery/door/window/right/directional/east{ req_access = list("away_general") }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/engine, /area/ruin/space/ancientstation/delta/biolab) "xT" = ( @@ -5551,7 +5543,6 @@ /turf/open/floor/plating/rust, /area/ruin/space/ancientstation/delta/hall) "Fm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ dir = 1 }, @@ -7054,7 +7045,7 @@ /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 }, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/iron/white/textured_edge{ dir = 4 }, @@ -7821,6 +7812,9 @@ /obj/item/geiger_counter, /obj/item/geiger_counter, /obj/machinery/light/small/broken/directional/north, +/obj/machinery/button/door/directional/north{ + id = "Beta Secure Storage" + }, /turf/open/floor/engine/airless, /area/ruin/space/ancientstation/beta/supermatter) "TA" = ( @@ -8207,6 +8201,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /turf/open/floor/iron, /area/ruin/space/ancientstation/beta/atmos) "WR" = ( @@ -15377,7 +15372,7 @@ uo GX NG Lo -md +rp xM Go Yl diff --git a/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm b/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm index cb2dbf4aca06da..a9f3a5da151c3e 100644 --- a/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /turf/open/floor/plating/airless, /area/ruin/space/oldteleporter) diff --git a/_maps/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/RandomRuins/SpaceRuins/onehalf.dmm index 0048ccb3976ea6..8b1ef6e7cedf99 100644 --- a/_maps/RandomRuins/SpaceRuins/onehalf.dmm +++ b/_maps/RandomRuins/SpaceRuins/onehalf.dmm @@ -6,16 +6,16 @@ /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ad" = ( /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/item/stack/cable_coil/cut, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ag" = ( /turf/closed/wall, /area/ruin/space/has_grav/onehalf/dorms_med) @@ -106,7 +106,7 @@ "aw" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ax" = ( /obj/structure/lattice, /turf/template_noop, @@ -227,7 +227,7 @@ /obj/structure/lattice, /obj/item/storage/toolbox/syndicate, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aT" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -570,7 +570,7 @@ "bV" = ( /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bW" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, @@ -651,7 +651,7 @@ icon_state = "small" }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ck" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/disposalpipe/segment{ @@ -705,14 +705,14 @@ "cr" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cs" = ( /obj/item/stack/sheet/plasteel{ amount = 10 }, /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ct" = ( /obj/structure/lattice, /obj/item/shard{ @@ -747,7 +747,7 @@ "cA" = ( /obj/item/stack/tile/wood, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cB" = ( /turf/template_noop, /area/ruin/space/has_grav/onehalf/hallway) @@ -813,7 +813,7 @@ "cN" = ( /obj/item/stack/sheet/plasteel, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "cQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -828,19 +828,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/ruin/space/has_grav/onehalf/bridge) -"cT" = ( +"cU" = ( +/obj/structure/table/reinforced, /obj/machinery/button/door{ id = "bridge_onehalf"; name = "Bridge Blast Door"; - pixel_x = 32; pixel_y = 5 }, /turf/open/floor/iron, /area/ruin/space/has_grav/onehalf/bridge) -"cU" = ( -/obj/structure/table/reinforced, -/turf/open/floor/iron, -/area/ruin/space/has_grav/onehalf/bridge) "cY" = ( /obj/structure/table/reinforced, /obj/item/gps/spaceruin, @@ -879,23 +875,23 @@ /obj/item/stack/sheet/plasteel, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "di" = ( /obj/item/shard{ icon_state = "medium" }, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dj" = ( /obj/item/stack/rods, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dl" = ( /obj/item/stack/cable_coil/cut, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ms" = ( /obj/item/stack/tile/iron/base, /obj/structure/cable, @@ -1411,7 +1407,7 @@ Vh Vh cJ cn -cT +cn cn cq ad diff --git a/_maps/RandomRuins/SpaceRuins/originalcontent.dmm b/_maps/RandomRuins/SpaceRuins/originalcontent.dmm index d2cf049c0a57c0..9a6e450321e8a6 100644 --- a/_maps/RandomRuins/SpaceRuins/originalcontent.dmm +++ b/_maps/RandomRuins/SpaceRuins/originalcontent.dmm @@ -5,23 +5,23 @@ "ab" = ( /obj/structure/fluff/paper/corner, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ac" = ( /obj/structure/fluff/paper, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ad" = ( /obj/structure/fluff/paper/corner{ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/structure/fluff/paper{ dir = 4 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "af" = ( /turf/closed/indestructible/paper, /area/ruin/space/has_grav/powered) @@ -30,20 +30,20 @@ dir = 10 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ah" = ( /obj/structure/fluff/paper/corner, /obj/structure/fluff/paper/corner{ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ai" = ( /obj/structure/fluff/paper{ dir = 6 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aj" = ( /obj/machinery/door/airlock/freezer{ name = "Airlock"; @@ -137,7 +137,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ax" = ( /obj/structure/fluff/paper/corner{ dir = 1 @@ -375,19 +375,19 @@ dir = 9 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bd" = ( /obj/structure/fluff/paper{ dir = 1 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "be" = ( /obj/structure/fluff/paper/corner{ dir = 4 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bf" = ( /obj/structure/fluff/paper{ dir = 4 @@ -454,7 +454,7 @@ dir = 10 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bo" = ( /obj/structure/fluff/paper/corner{ dir = 4 @@ -463,7 +463,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bp" = ( /obj/structure/fluff/paper{ dir = 8 @@ -518,13 +518,13 @@ dir = 1 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bx" = ( /obj/structure/fluff/paper{ dir = 5 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "by" = ( /obj/structure/fluff/paper/corner, /turf/open/indestructible/paper, diff --git a/_maps/RandomRuins/SpaceRuins/prison_shuttle.dmm b/_maps/RandomRuins/SpaceRuins/prison_shuttle.dmm index e44e1a8adcc8b1..4175d832b83c55 100644 --- a/_maps/RandomRuins/SpaceRuins/prison_shuttle.dmm +++ b/_maps/RandomRuins/SpaceRuins/prison_shuttle.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/girder/reinforced, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /obj/structure/girder/reinforced, /turf/open/misc/asteroid/airless, diff --git a/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm b/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm index 98831dd9d2be03..86727c3b383a13 100644 --- a/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm +++ b/_maps/RandomRuins/SpaceRuins/russian_derelict.dmm @@ -113,6 +113,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/ruin/space/ks13/hallway/central) +"aQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/ruin/space/ks13/hallway/aft) "aU" = ( /obj/item/shard, /obj/structure/lattice, @@ -1675,7 +1679,7 @@ "rd" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "re" = ( /obj/structure/girder, /turf/open/floor/plating/airless, @@ -1704,10 +1708,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/ruin/space/ks13/engineering/atmos) -"rk" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space/nearstation) "rl" = ( /turf/closed/wall/r_wall, /area/ruin/space/ks13/command/bridge) @@ -6388,9 +6388,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/ruin/space/ks13/medical/morgue) -"PG" = ( -/turf/closed/wall/r_wall, -/area/template_noop) "PH" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/power/apc/auto_name/directional/north, @@ -6992,7 +6989,7 @@ /obj/structure/frame/computer{ dir = 1 }, -/obj/item/circuitboard/computer/rdconsole, +/obj/item/circuitboard/computer/rdconsole/unlocked, /obj/structure/cable, /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating/airless, @@ -8135,9 +8132,9 @@ /turf/open/floor/circuit/red/off, /area/ruin/space/ks13/ai/corridor) "YE" = ( -/obj/structure/plaque/static_plaque/golden/commission/ks13, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/plaque/static_plaque/golden/commission/ks13, /turf/open/floor/iron/airless, /area/ruin/space/ks13/hallway/central) "YF" = ( @@ -8510,17 +8507,17 @@ aa aa aa aa -rk +rd aa aa aa -rk +rd nW -rk +rd aa aa -rk -rk +rd +rd aa aa aa @@ -8620,10 +8617,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd aa IQ IQ @@ -8633,9 +8630,9 @@ yW IQ IQ IF -rk -rk -rk +rd +rd +rd aa aa aa @@ -8748,8 +8745,8 @@ PA uf Kb Kb -rk -rk +rd +rd aa aa aa @@ -8957,7 +8954,7 @@ aa aa aa aa -rk +rd MB QU zF @@ -8973,7 +8970,7 @@ LE Qu uf Qe -rk +rd nd aa aa @@ -9070,7 +9067,7 @@ aa aa aa aa -rk +rd MB wt Eu @@ -9085,9 +9082,9 @@ Eq vl Lj uf -rk +rd qG -rk +rd aa qG aa @@ -9201,7 +9198,7 @@ uf No Bp Bp -rk +rd uF aa aa @@ -9313,8 +9310,8 @@ NO uf eG oD -rk -rk +rd +rd uF aa aa @@ -9428,7 +9425,7 @@ Nc uF uF uF -rk +rd aa aa aa @@ -9521,7 +9518,7 @@ aa aa aa aa -rk +rd aa aI EL @@ -9537,7 +9534,7 @@ GY CU Xj uf -rk +rd gn ZD aa @@ -9634,7 +9631,7 @@ aa aa aa aa -rk +rd aa MB Ky @@ -9650,8 +9647,8 @@ rw rw Tb uf -rk -rk +rd +rd UP aa aa @@ -9746,9 +9743,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd MB MB MB @@ -9763,9 +9760,9 @@ ZR yq rm uf -rk +rd qG -rk +rd aa aa aa @@ -9862,7 +9859,7 @@ aa aa aa aa -rk +rd aa MB BO @@ -9975,7 +9972,7 @@ aa aa aa aa -rk +rd aa MB MB @@ -9997,10 +9994,10 @@ Jr aa aa aa -rk +rd aa aa -rk +rd aa aa aa @@ -10088,10 +10085,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd yq DH sX @@ -10110,13 +10107,13 @@ Is aa aa aa -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd aa aa aa @@ -10202,9 +10199,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd yq SW SK @@ -10220,23 +10217,23 @@ Is ow MN Is -rk -rk +rd +rd aa -rk +rd uF uF IF uF -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd IF -rk -rk +rd +rd aa aa aa @@ -10316,8 +10313,8 @@ aa aa aa aa -rk -rk +rd +rd yq PF TT @@ -10334,21 +10331,21 @@ MN Is MN MN -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd IF -rk +rd IF IF -rk +rd uF uF IF -rk +rd aa aa aa @@ -10430,7 +10427,7 @@ aa aa aa aa -rk +rd yq yq yq @@ -10461,7 +10458,7 @@ Ii Ii uF aa -rk +rd aa aa aa @@ -10573,12 +10570,12 @@ cI qJ qv aa -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd aa aa aa @@ -10673,7 +10670,7 @@ vb Jr Ut Ww -MW +Jr Wt Sp pK @@ -10685,12 +10682,12 @@ qv OX kG Me -rk -rk +rd +rd aa aa aa -rk +rd aa aa aa @@ -10761,9 +10758,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -10779,7 +10776,7 @@ qO wC WE OR -MW +Jr JJ Hi vb @@ -10798,12 +10795,12 @@ VE vZ QZ Me -rk +rd aa aa aa aa -rk +rd aa aa aa @@ -10874,10 +10871,10 @@ aa aa aa aa -rk +rd aa -rk -rk +rd +rd aa aa aa @@ -10911,14 +10908,14 @@ Ag VE rR Iy -rk -rk +rd +rd aa -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd aa aa aa @@ -10980,18 +10977,18 @@ aa aa aa aa -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd QG QG QG -rk -rk +rd +rd aa aa aa @@ -11025,13 +11022,13 @@ VE rR Iy aa -rk -rk -rk +rd +rd +rd aa aa aa -rk +rd aa aa aa @@ -11092,12 +11089,12 @@ aa aa aa aa -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd QG QG QG @@ -11105,7 +11102,7 @@ QG QG QG QG -rk +rd aa aa aa @@ -11137,14 +11134,14 @@ qv vZ zr Iy -rk -rk +rd +rd aa -rk -rk +rd +rd aa -rk -rk +rd +rd aa aa aa @@ -11204,13 +11201,13 @@ aa aa aa aa -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd QG QG Xt @@ -11218,8 +11215,8 @@ Xb DT QG QG -rk -rk +rd +rd aa aa II @@ -11250,13 +11247,13 @@ qv Zj qv Me -rk -rk -rk +rd +rd +rd ZK -rk -rk -rk +rd +rd +rd aa aa aa @@ -11314,15 +11311,15 @@ aa aa aa aa -rk -rk -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd +rd +rd sU QG PH @@ -11332,7 +11329,7 @@ Rq sL QG sU -rk +rd aa aU Ho @@ -11369,9 +11366,9 @@ bm ZK ke Ez -rk -rk -rk +rd +rd +rd aa aa aa @@ -11426,16 +11423,16 @@ aa aa aa aa -rk +rd nQ -rk +rd Kb sU sU -rk -rk -rk -rk +rd +rd +rd +rd sU Dy Us @@ -11482,9 +11479,9 @@ bm XO TK Fv -rk +rd IF -rk +rd aa aa aa @@ -11513,13 +11510,13 @@ aa aa aa aa -rk +rd aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -11537,10 +11534,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd Kb sU sU @@ -11597,8 +11594,8 @@ TK Ez jV NW -rk -rk +rd +rd aa aa aa @@ -11625,16 +11622,16 @@ aa aa aa aa -rk +rd aa -rk -rk -rk +rd +rd +rd aa aa aa -rk -rk +rd +rd aa aa aa @@ -11649,10 +11646,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd Kb sU gd @@ -11738,7 +11735,7 @@ aa aa aa aa -rk +rd Yc Yc Yc @@ -11747,7 +11744,7 @@ Yc Yc Yc aa -rk +rd aa aa aa @@ -11763,9 +11760,9 @@ aa aa aa aa -rk +rd Kb -rk +rd Kb sU aj @@ -11818,7 +11815,7 @@ Fa iT TW BM -jV +aQ Uo gG jV @@ -11852,7 +11849,7 @@ aa aa aa aa -rk +rd Yc Pw fU @@ -11860,15 +11857,15 @@ zA fU Yc aa -rk -rk -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd +rd +rd nQ aa aa @@ -11964,7 +11961,7 @@ aa aa aa aa -rk +rd Yc Yc eA @@ -11990,7 +11987,7 @@ aa aa aa aa -rk +rd Kb Wk MG @@ -12078,9 +12075,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd Yc AW KO @@ -12103,7 +12100,7 @@ aa aa aa aa -rk +rd Kb sU UZ @@ -12193,7 +12190,7 @@ aa aa aa aa -rk +rd Yc Yc lk @@ -12206,7 +12203,7 @@ Jw Jw Jw Jw -rk +rd aa aa OY @@ -12307,7 +12304,7 @@ aa aa aa aa -rk +rd Yc fU fU @@ -12319,8 +12316,8 @@ fU fU YC Yc -rk -rk +rd +rd aa uu Pm @@ -12433,7 +12430,7 @@ st Yc Yc aa -rk +rd aa uu NJ @@ -12998,7 +12995,7 @@ qC Yc Yc Yc -rk +rd aa aa aa @@ -13007,7 +13004,7 @@ aa aa aa rd -rk +rd Kb sU fg @@ -13232,7 +13229,7 @@ aa aa aa aa -PG +Kb IF Kb Wk @@ -13347,7 +13344,7 @@ aa aa rd Kb -rk +rd BK Wk HO @@ -13459,8 +13456,8 @@ aa aa aa rd -rk -rk +rd +rd Kb sU HO @@ -13500,18 +13497,18 @@ xW BU Dn cB -rk -rk -rk +rd +rd +rd xW aa -rk +rd Sq aa -rk -rk +rd +rd aa -rk +rd aa ZK Pu @@ -13550,7 +13547,7 @@ aa aa aa aa -rk +rd Yc Yc Yc @@ -13573,8 +13570,8 @@ aa aa aa rd -rk -rk +rd +rd Kb sU sU @@ -13614,17 +13611,17 @@ vP AE Rx sK -rk -rk +rd +rd xW -rk -rk -rk +rd +rd +rd aa aa -rk +rd aa -rk +rd aa ZK Pu @@ -13646,8 +13643,8 @@ aa aa aa aa -rk -rk +rd +rd aa aa "} @@ -13663,7 +13660,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -13686,9 +13683,9 @@ aa aa aa rd -rk -rk -rk +rd +rd +rd Kb sU sU @@ -13725,21 +13722,21 @@ AQ xE AO BT -rk +rd sq xV -rk +rd xW aa -rk -rk -rk -rk -rk -rk -rk -aa -ZK +rd +rd +rd +rd +rd +rd +rd +aa +ZK HI Ze jV @@ -13759,10 +13756,10 @@ aa aa aa aa -rk +rd aa -rk -rk +rd +rd "} (48,1,1) = {" aa @@ -13776,7 +13773,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -13807,8 +13804,8 @@ aa aa aa aa -rk -rk +rd +rd sU rr up @@ -13839,14 +13836,14 @@ Ar Ai ML Cf -rk +rd XA -rk +rd Lq Uu Ar Ar -rk +rd ia LB LB @@ -13871,7 +13868,7 @@ NW NW NW NW -rk +rd NW NW NW @@ -13921,8 +13918,8 @@ aa aa aa aa -rk -rk +rd +rd rr rr ab @@ -13958,12 +13955,12 @@ hY XA AM xs -rk -rk +rd +rd uQ Xv aa -rk +rd Xv Lq Pe @@ -13974,9 +13971,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd BK aa aa @@ -13985,7 +13982,7 @@ aa aa aa aa -rk +rd aa aa NW @@ -14002,7 +13999,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14035,7 +14032,7 @@ aa aa aa aa -rk +rd rr rr rr @@ -14071,12 +14068,12 @@ vz Bf rg sY -rk +rd DF -rk +rd XA XA -rk +rd XA Lq xk @@ -14085,7 +14082,7 @@ ZK Kb Kb BK -rk +rd aa BZ aa @@ -14115,7 +14112,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14148,9 +14145,9 @@ aa aa aa aa -rk +rd aa -rk +rd rr rr rr @@ -14184,10 +14181,10 @@ gm Lq Lq jk -rk +rd hY -rk -rk +rd +rd DO DO DO @@ -14197,12 +14194,12 @@ vN jV NW aa -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd aa aa aa @@ -14228,7 +14225,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14253,17 +14250,17 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa aa aa aa -rk +rd aa -rk +rd wv AX KB @@ -14295,13 +14292,13 @@ RP Ib JF Lq -rk +rd ZJ Sv pB sH MA -rk +rd DF zY Lq @@ -14310,12 +14307,12 @@ vN jV NW aa -rk +rd aa -rk +rd aa -rk -rk +rd +rd mR aa aa @@ -14372,11 +14369,11 @@ aa aa aa aa -rk +rd aa -rk -rk -rk +rd +rd +rd Mj MT QR @@ -14403,10 +14400,10 @@ Ay Qr Qr Rv -rk -rk -rk -rk +rd +rd +rd +rd Lq Cf mS @@ -14424,7 +14421,7 @@ jV NW aa mR -rk +rd hK mR yt @@ -14454,7 +14451,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14478,16 +14475,16 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa aa aa GI -rk -rk +rd +rd aa aa Mj @@ -14509,7 +14506,7 @@ zX Uj Uj CP -rk +rd aw OK vi @@ -14517,8 +14514,8 @@ OK Lq xN Yf -rk -rk +rd +rd uG Lq Wy @@ -14594,14 +14591,14 @@ GI aa Nk GI -rk -rk +rd +rd aa aa -rk +rd aa -rk -rk +rd +rd aa Mj pT @@ -14623,15 +14620,15 @@ Mt Xy Su OK -rk -rk +rd +rd OK vi Lq xN om vI -rk +rd uG Qr zY @@ -14666,7 +14663,7 @@ aa vE aa aa -rk +rd "} (56,1,1) = {" aa @@ -14680,7 +14677,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14705,13 +14702,13 @@ aa aa GI gQ -rk +rd aa aa -rk +rd aa aa -rk +rd aa aa aa @@ -14737,7 +14734,7 @@ Xm CP il Uj -rk +rd Ir Ir Lq @@ -14824,7 +14821,7 @@ aa aa aa aa -rk +rd aa aa aa @@ -14848,7 +14845,7 @@ NT Cy YZ Th -rk +rd Tt Ir Ir @@ -14906,7 +14903,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -14936,8 +14933,8 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -14954,10 +14951,10 @@ tT yl yl TC -rk -rk -rk -rk +rd +rd +rd +rd NT vQ ZL @@ -14968,9 +14965,9 @@ vi aa oU IF -rk -rk -rk +rd +rd +rd ZK VO CV @@ -15005,7 +15002,7 @@ uz vE uz aa -rk +rd "} (59,1,1) = {" aa @@ -15019,7 +15016,7 @@ aa aa aa aa -rk +rd IF Yc yz @@ -15048,9 +15045,9 @@ De aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -15067,10 +15064,10 @@ tT DM yl wv -rk -rk -rk -rk +rd +rd +rd +rd Cy tb Qi @@ -15080,10 +15077,10 @@ il vi aa aa -rk +rd Gf aa -rk +rd ZK ZK ZK @@ -15115,24 +15112,24 @@ aa aa aa aa -rk +rd aa aa -rk +rd "} (60,1,1) = {" aa aa aa -rk -rk +rd +rd aa aa -rk -rk +rd +rd aa aa -rk +rd Kb Yc yz @@ -15180,21 +15177,21 @@ wv pT xd TC -rk -rk -rk -rk +rd +rd +rd +rd IF tb TB tb IF IF -rk +rd aa aa aa -rk +rd aa aa Gf @@ -15225,24 +15222,24 @@ NW NW NW NW -rk +rd NW NW -rk -rk +rd +rd NW -rk +rd "} (61,1,1) = {" aa aa aa -rk +rd NW NW NW NW -rk +rd aa aa aa @@ -15293,21 +15290,21 @@ XV iF cf wv -rk -rk +rd +rd aa aa -rk +rd GA tK rM GA -rk +rd aa aa AC -rk -rk +rd +rd aa aa Gf @@ -15334,31 +15331,31 @@ sz AK AK AK -rk +rd aa aa aa aa aa aa -rk -rk -rk +rd +rd +rd aa "} (62,1,1) = {" -rk -rk +rd +rd aa aa -rk +rd aa aa NW aa aa aa -rk +rd IF Yc yz @@ -15410,7 +15407,7 @@ aa aa aa aa -rk +rd GA kt rM @@ -15419,11 +15416,11 @@ aa aa aa aa -rk +rd GI aa -rk -rk +rd +rd aa aa aa @@ -15447,7 +15444,7 @@ mR mR mR mR -rk +rd aa aa aa @@ -15460,18 +15457,18 @@ aa aa "} (63,1,1) = {" -rk +rd aa nD ri bP -rk -rk +rd +rd NW aa aa aa -rk +rd IF Yc yz @@ -15513,16 +15510,16 @@ yR xd wv wv -rk +rd XW cu th XW -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd IF tb IX @@ -15532,10 +15529,10 @@ aa aa aa aa -rk -rk -rk -rk +rd +rd +rd +rd aa aa aa @@ -15560,7 +15557,7 @@ AK AK sz sz -rk +rd aa aa aa @@ -15584,7 +15581,7 @@ NW aa aa aa -rk +rd IF Yc yz @@ -15625,18 +15622,18 @@ xd UM AX wv -rk -rk +rd +rd Uv xT xY OO -rk +rd aa -rk +rd aa aa -rk +rd LV EV PO @@ -15646,8 +15643,8 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -15673,8 +15670,8 @@ mR mR mR mR -rk -rk +rd +rd aa aa aa @@ -15694,10 +15691,10 @@ bP aa aa NW -rk -rk -rk -rk +rd +rd +rd +rd IF Yc yz @@ -15746,7 +15743,7 @@ IN Uv aa aa -rk +rd aa aa IF @@ -15759,8 +15756,8 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -15779,15 +15776,15 @@ aa jV Ez yX -rk -rk +rd +rd aa -rk +rd aa -rk -rk +rd +rd aa -rk +rd aa aa aa @@ -15851,7 +15848,7 @@ VD VD wv wv -rk +rd aa OO QI @@ -15862,17 +15859,17 @@ aa GI aa aa -rk +rd aa GA PO GA -rk -rk -rk +rd +rd +rd aa aa -rk +rd aa aa aa @@ -15892,14 +15889,14 @@ aa jV ZT yX -rk +rd aa aa -rk +rd aa aa -rk -rk +rd +rd to aa aa @@ -15964,7 +15961,7 @@ iS Kb aa aa -rk +rd aa OO QI @@ -15975,7 +15972,7 @@ aa aa aa aa -rk +rd aa tb dS @@ -15984,9 +15981,9 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -16003,14 +16000,14 @@ aa aa aa jV -rk +rd yX -rk +rd aa -rk -rk +rd +rd aa -rk +rd aa aa aa @@ -16073,9 +16070,9 @@ Pc Db IL Aw -rk +rd Dr -rk +rd aa XW XW @@ -16088,7 +16085,7 @@ XW aa aa aa -rk +rd aa tb zs @@ -16096,8 +16093,8 @@ tb aa aa aa -rk -rk +rd +rd aa aa aa @@ -16115,15 +16112,15 @@ aa aa aa yM -rk -rk -rk -rk +rd +rd +rd +rd aa -rk +rd aa aa -rk +rd aa aa aa @@ -16184,7 +16181,7 @@ Jz JC Zv Rs -rk +rd vY pt Dr @@ -16202,16 +16199,16 @@ aa aa aa IF -rk +rd GA BP GA aa aa -rk +rd BZ -rk -rk +rd +rd aa aa aa @@ -16230,13 +16227,13 @@ aa aa Fu aa -rk +rd aa aa -rk +rd aa aa -rk +rd aa aa aa @@ -16299,7 +16296,7 @@ FQ sa Hu IL -rk +rd Wx aa Lx @@ -16314,7 +16311,7 @@ XW TI XW aa -rk +rd aa tb TB @@ -16324,10 +16321,10 @@ aa aa BZ aa -rk -rk -rk -rk +rd +rd +rd +rd AC aa aa @@ -16341,16 +16338,16 @@ aa aa aa aa -rk +rd aa -rk +rd aa aa -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd aa aa aa @@ -16412,7 +16409,7 @@ dx Bg Wm Ol -rk +rd An aa uF @@ -16427,16 +16424,16 @@ wD Xd XW aa -rk +rd aa tb za GA aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -16454,15 +16451,15 @@ aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa aa aa -rk +rd aa aa aa @@ -16477,7 +16474,7 @@ aa aa "} (72,1,1) = {" -rk +rd aa bP ri @@ -16547,8 +16544,8 @@ pd GA aa aa -rk -rk +rd +rd aa aa aa @@ -16567,15 +16564,15 @@ aa aa aa aa -rk +rd aa aa aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -16590,7 +16587,7 @@ aa aa "} (73,1,1) = {" -rk +rd aa bP ri @@ -16635,7 +16632,7 @@ Qd SE rl IF -rk +rd aa aa aa @@ -16654,7 +16651,7 @@ dO Sw IF IF -rk +rd GA TB GA @@ -16671,23 +16668,23 @@ aa aa aa aa -rk +rd aa aa aa -rk +rd aa aa aa -rk -rk +rd +rd aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -16784,23 +16781,23 @@ Dh aa aa aa -rk +rd aa aa aa -rk +rd aa aa -rk -rk +rd +rd aa -rk -rk -rk +rd +rd +rd aa aa aa -rk +rd aa aa aa @@ -16824,10 +16821,10 @@ bP aa aa NW -rk +rd NW NW -rk +rd NW NW NW @@ -16843,13 +16840,13 @@ dT IF IF IF -rk +rd aa aa aa aa aa -rk +rd Bw rl Ae @@ -16894,27 +16891,27 @@ or Be XM zm -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd +rd aa to -rk -rk -rk -rk -rk +rd +rd +rd +rd +rd to aa aa @@ -16940,7 +16937,7 @@ NW aa aa aa -rk +rd aa aa aa @@ -16949,21 +16946,21 @@ aa aa aa aa -rk +rd dT Ad dT aa aa -rk -rk +rd +rd aa aa aa aa aa aa -rk +rd rl GV GV @@ -16974,7 +16971,7 @@ GV GV rl Bw -rk +rd aa IF IF @@ -17010,13 +17007,13 @@ cb aa aa aa -rk +rd aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -17024,7 +17021,7 @@ aa aa aa aa -rk +rd aa aa aa @@ -17047,8 +17044,8 @@ aa bP ri bP -rk -rk +rd +rd NW aa aa @@ -17062,11 +17059,11 @@ aa aa aa aa -rk +rd aa aa -rk -rk +rd +rd aa aa aa @@ -17077,17 +17074,17 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa aa AC aa -rk +rd aa -rk +rd aa IF IF @@ -17123,13 +17120,13 @@ Gf aa aa aa -rk +rd aa aa aa -rk +rd aa -rk +rd aa aa aa @@ -17159,11 +17156,11 @@ NW aa aa aa -rk +rd aa aa -rk -rk +rd +rd aa aa aa @@ -17199,7 +17196,7 @@ aa aa aa aa -rk +rd aa aa Kb @@ -17242,7 +17239,7 @@ aa aa uq aa -rk +rd aa aa aa @@ -17272,11 +17269,11 @@ NW NW NW NW -rk +rd NW NW NW -rk +rd aa aa aa @@ -17355,7 +17352,7 @@ aa IF NW NW -rk +rd aa aa aa @@ -17381,14 +17378,14 @@ aa aa "} (80,1,1) = {" -rk +rd aa aa aa aa -rk -rk -rk +rd +rd +rd aa aa aa @@ -17468,7 +17465,7 @@ NW NW NW aa -rk +rd aa aa aa @@ -17580,8 +17577,8 @@ IF aa IF aa -rk -rk +rd +rd aa aa aa @@ -17653,7 +17650,7 @@ aa aa aa aa -rk +rd IF IF IF @@ -17661,7 +17658,7 @@ IF IF IF IF -rk +rd aa aa aa @@ -17693,8 +17690,8 @@ Kb Kb Kb Kb -rk -rk +rd +rd aa aa aa @@ -17766,15 +17763,15 @@ aa aa aa aa -rk -rk +rd +rd aa aa aa aa aa -rk -rk +rd +rd aa aa aa @@ -17807,7 +17804,7 @@ NW NW NW aa -rk +rd aa aa aa diff --git a/_maps/RandomRuins/SpaceRuins/space_ghost_restaurant.dmm b/_maps/RandomRuins/SpaceRuins/space_ghost_restaurant.dmm index ad0c72415948a1..fb9745de0ce2d7 100644 --- a/_maps/RandomRuins/SpaceRuins/space_ghost_restaurant.dmm +++ b/_maps/RandomRuins/SpaceRuins/space_ghost_restaurant.dmm @@ -29,7 +29,7 @@ "eb" = ( /obj/item/shard, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "en" = ( /obj/machinery/power/smes/magical{ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; @@ -60,11 +60,11 @@ "hp" = ( /obj/item/stack/rods, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "iF" = ( /obj/item/stack/sheet/iron, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "jd" = ( /obj/item/stack/sheet/iron, /turf/open/floor/plating/airless, @@ -148,7 +148,7 @@ "Bv" = ( /obj/structure/broken_flooring/singular/directional/south, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "BA" = ( /obj/effect/decal/cleanable/blood/gibs/robot_debris, /obj/effect/decal/cleanable/glass, @@ -236,7 +236,7 @@ "Ng" = ( /obj/item/stack/tile/iron/showroomfloor, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ns" = ( /obj/item/chair, /obj/item/clothing/head/utility/surgerycap, @@ -272,7 +272,7 @@ "Rm" = ( /obj/item/circuitboard/machine/restaurant_portal, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "RI" = ( /obj/effect/decal/cleanable/shreds, /turf/open/floor/iron/cafeteria/airless, diff --git a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm index e18683a8334035..e8448c8a047195 100644 --- a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm +++ b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm @@ -137,14 +137,12 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/machinery/button/door/directional/south{ - id = "a5"; - name = "privacy button"; - pixel_y = 24 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, +/obj/machinery/button/door/directional/north{ + id = "a5" + }, /turf/open/floor/carpet/purple, /area/ruin/space/has_grav/hotel/guestroom/room_5) "by" = ( @@ -356,7 +354,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dK" = ( /obj/structure/frame/computer{ dir = 1 @@ -579,17 +577,14 @@ /turf/open/floor/iron/grimy, /area/ruin/space/has_grav/hotel/bar) "gv" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - icon_state = "roomnum"; - name = "Room Number 1"; - pixel_y = -24 +/obj/machinery/light/small/directional/south, +/obj/machinery/button{ + id = "hcb2"; + name = "shutters control"; + pixel_y = -25 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/open/floor/catwalk_floor, +/area/ruin/space/has_grav/hotel/dock) "gB" = ( /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/carpet/black, @@ -634,16 +629,15 @@ /turf/open/floor/wood/tile, /area/ruin/space/has_grav/hotel) "hg" = ( -/obj/effect/turf_decal/siding/wood, /obj/structure/sign/warning/fire{ desc = "A sign that states the labeled room's number."; dir = 10; icon_state = "roomnum"; name = "Room Number 6"; - pixel_y = 24 + pixel_y = -5 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_6) "hh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -1160,7 +1154,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lf" = ( /obj/structure/window/spawner/directional/north, /obj/machinery/shower/directional/south, @@ -1197,7 +1191,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lw" = ( /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating, @@ -1205,7 +1199,7 @@ "lB" = ( /obj/structure/fluff/tram_rail, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "lE" = ( /obj/machinery/light/directional/east, /turf/open/floor/iron/grimy, @@ -1239,7 +1233,6 @@ /obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/sepia, /area/ruin/space/has_grav/hotel/pool) @@ -1281,7 +1274,7 @@ dir = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "mj" = ( /obj/structure/chair/sofa/right/brown{ dir = 4 @@ -1543,7 +1536,7 @@ /obj/structure/fluff/tram_rail, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ot" = ( /obj/structure/table/wood/fancy/red, /obj/item/paper_bin, @@ -1573,7 +1566,7 @@ }, /obj/structure/fluff/tram_rail, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "po" = ( /obj/structure/fluff/beach_umbrella/syndi, /turf/open/misc/beach/sand, @@ -1666,7 +1659,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qF" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1686,7 +1679,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "qM" = ( /turf/open/floor/wood/parquet, /area/ruin/space/has_grav/hotel/guestroom/room_1) @@ -1897,7 +1890,6 @@ }, /obj/effect/turf_decal/siding/white, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/sepia, /area/ruin/space/has_grav/hotel/pool) "tj" = ( @@ -1929,16 +1921,13 @@ /turf/open/floor/carpet/blue, /area/ruin/space/has_grav/hotel) "tW" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - dir = 8; - icon_state = "roomnum"; - name = "Room Number 4"; - pixel_y = 24 +/obj/machinery/button{ + id = "hcb2"; + name = "shutters control"; + pixel_y = 8 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/dock) "ua" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/light/small/directional/south, @@ -2019,10 +2008,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/button/door/directional/south{ - id = "a3"; - name = "privacy button"; - pixel_y = 24 +/obj/machinery/button/door/directional/north{ + id = "a3" }, /turf/open/floor/carpet/red, /area/ruin/space/has_grav/hotel/guestroom/room_3) @@ -2102,7 +2089,8 @@ id = "hcb1"; name = "shutters control"; pixel_x = 26; - pixel_y = 8 + pixel_y = 8; + dir = 4 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2326,8 +2314,6 @@ /area/ruin/space/has_grav/hotel/pool) "xS" = ( /obj/item/beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/ruin/space/has_grav/hotel/dock) "xZ" = ( @@ -2393,7 +2379,7 @@ "yB" = ( /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "yD" = ( /obj/structure/sink/directional/west, /obj/machinery/firealarm/directional/north, @@ -2432,7 +2418,7 @@ "yV" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "yY" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/tile, @@ -2449,12 +2435,6 @@ /area/ruin/space/has_grav/hotel/power) "zr" = ( /obj/effect/turf_decal/loading_area, -/obj/machinery/button{ - id = "hcb2"; - name = "shutters control"; - pixel_x = -25; - pixel_y = 8 - }, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/hotel/dock) "zy" = ( @@ -2588,6 +2568,13 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/hotel) +"BP" = ( +/obj/machinery/button{ + id = "hcd1"; + name = "shutters control" + }, +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/dock) "BU" = ( /obj/structure/cable, /turf/open/floor/circuit/green, @@ -2901,7 +2888,7 @@ /obj/structure/lattice, /obj/structure/grille, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "FT" = ( /turf/open/floor/iron/dark/side, /area/ruin/space/has_grav/hotel/dock) @@ -3123,7 +3110,7 @@ /obj/structure/lattice, /obj/structure/grille/broken, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Iq" = ( /obj/item/kirbyplants/organic/plant16, /obj/structure/sign/poster/random/directional/west, @@ -3176,7 +3163,7 @@ "IZ" = ( /obj/structure/fluff/tram_rail/end, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Je" = ( /obj/structure/cable, /obj/item/reagent_containers/cup/bucket, @@ -3397,18 +3384,14 @@ /turf/open/floor/iron/showroomfloor, /area/ruin/space/has_grav/hotel/guestroom/room_2) "MY" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/table/wood/fancy/red, -/obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, -/obj/machinery/button/door/directional/north{ - id = "a2"; - name = "privacy button"; - pixel_y = -24 +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + icon_state = "roomnum"; + name = "Room Number 5"; + dir = 5 }, -/turf/open/floor/carpet/green, -/area/ruin/space/has_grav/hotel/guestroom/room_2) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_5) "Ne" = ( /obj/effect/turf_decal/loading_area, /obj/machinery/light/small/directional/east, @@ -3429,23 +3412,22 @@ /turf/open/floor/carpet/blue, /area/ruin/space/has_grav/hotel) "ND" = ( -/obj/machinery/button{ - id = "hcd1"; - name = "shutters control"; - pixel_x = -25; - pixel_y = -25 +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + dir = 8; + icon_state = "roomnum"; + name = "Room Number 4" }, -/turf/open/floor/iron/dark/side, -/area/ruin/space/has_grav/hotel/dock) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_4) "NG" = ( -/obj/machinery/button{ - id = "hcb2"; - name = "shutters control"; - pixel_x = -25; - pixel_y = -25 +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + icon_state = "roomnum"; + name = "Room Number 1" }, -/turf/open/floor/catwalk_floor, -/area/ruin/space/has_grav/hotel/dock) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_1) "NJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3626,7 +3608,6 @@ /obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/sepia, /area/ruin/space/has_grav/hotel/pool) @@ -3891,18 +3872,15 @@ /turf/open/floor/iron/cafeteria, /area/ruin/space/has_grav/hotel/bar) "Tq" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, /obj/structure/sign/warning/fire{ desc = "A sign that states the labeled room's number."; - dir = 6; + dir = 1; icon_state = "roomnum"; - name = "Room Number 5"; - pixel_y = -24 + name = "Room Number 2"; + pixel_y = -10 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_2) "Ts" = ( /turf/open/floor/carpet/purple, /area/ruin/space/has_grav/hotel/guestroom/room_5) @@ -3918,18 +3896,15 @@ /turf/template_noop, /area/ruin/space/has_grav/hotel) "TG" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, /obj/structure/sign/warning/fire{ desc = "A sign that states the labeled room's number."; dir = 4; icon_state = "roomnum"; name = "Room Number 3"; - pixel_y = -24 + pixel_y = 10 }, -/turf/open/floor/wood/tile, -/area/ruin/space/has_grav/hotel) +/turf/closed/wall, +/area/ruin/space/has_grav/hotel/guestroom/room_3) "TH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4072,7 +4047,8 @@ id = "hcb1"; name = "shutters control"; pixel_x = -25; - pixel_y = 8 + pixel_y = 8; + dir = 8 }, /turf/open/floor/catwalk_floor, /area/ruin/space/has_grav/hotel/dock) @@ -4092,7 +4068,7 @@ pixel_y = 17 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "VM" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/machinery/power/apc/auto_name/directional/south, @@ -4369,12 +4345,9 @@ /area/ruin/space/has_grav/hotel/bar) "Yf" = ( /obj/effect/turf_decal/siding/wood, -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - dir = 1; - icon_state = "roomnum"; - name = "Room Number 2"; - pixel_y = 24 +/obj/machinery/button/door/directional/north{ + id = "a2"; + pixel_y = 32 }, /turf/open/floor/wood/tile, /area/ruin/space/has_grav/hotel) @@ -4466,7 +4439,6 @@ "Zg" = ( /obj/effect/turf_decal/siding/white, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/sepia, /area/ruin/space/has_grav/hotel/pool) "Zl" = ( @@ -4483,7 +4455,7 @@ }, /obj/structure/fluff/tram_rail/end, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Zo" = ( /obj/structure/sink/directional/west, /turf/open/floor/iron/showroomfloor, @@ -5557,13 +5529,13 @@ ez Ka Xg XS -xI hg +yY Lj PF wr -Tq -LD +QH +MY bu lZ hO @@ -6579,13 +6551,13 @@ Fy On eR Gg -Hm -tW +ND +yY cf PF cf +QH TG -vy vx Xx Rl @@ -7256,9 +7228,9 @@ VV aC lW sh -Ct -VV +gv VV +tW iP jf jy @@ -7329,7 +7301,7 @@ VV hZ hE xd -NG +hZ LB zr nw @@ -7381,14 +7353,14 @@ WD CL Ml OS -MY -Ff +OS +Tq Yf cf PF cf -gv -BK +QH +NG Xw Bb SN @@ -8211,7 +8183,7 @@ VV lI xS FT -VV +BP VV Cl Cl @@ -8283,7 +8255,7 @@ nX hU lI KZ -ND +FT hB Jj Cl diff --git a/_maps/RandomRuins/SpaceRuins/the_faceoff.dmm b/_maps/RandomRuins/SpaceRuins/the_faceoff.dmm index 48844fb46b2253..6464c4901fd90b 100644 --- a/_maps/RandomRuins/SpaceRuins/the_faceoff.dmm +++ b/_maps/RandomRuins/SpaceRuins/the_faceoff.dmm @@ -37,7 +37,7 @@ /area/ruin/space) "aC" = ( /obj/effect/turf_decal/stripes/red/full, -/obj/machinery/light/small/built, +/obj/machinery/light/small/empty, /obj/item/light/bulb/broken, /turf/open/floor/iron/dark/smooth_large/airless, /area/ruin/space) diff --git a/_maps/RandomRuins/SpaceRuins/the_outlet.dmm b/_maps/RandomRuins/SpaceRuins/the_outlet.dmm index 6965d1acea398d..e9091081636508 100644 --- a/_maps/RandomRuins/SpaceRuins/the_outlet.dmm +++ b/_maps/RandomRuins/SpaceRuins/the_outlet.dmm @@ -534,7 +534,7 @@ "nM" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "od" = ( /turf/closed/wall/rust, /area/ruin/space/has_grav/the_outlet/storefront) @@ -1566,7 +1566,7 @@ "LA" = ( /obj/item/stack/rods/two, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "LL" = ( /mob/living/basic/construct/proteon/hostile, /obj/effect/decal/cleanable/crayon/rune2, diff --git a/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm b/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm index 05d7ab995c54f7..b62a9b01b05db4 100644 --- a/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm +++ b/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm @@ -41,7 +41,6 @@ "cm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -223,7 +222,6 @@ /area/ruin/space/has_grav/thelizardsgas) "xy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -234,7 +232,7 @@ desc = "An incredibly bad idea." }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "zn" = ( /obj/structure/rack, /obj/effect/spawner/random/food_or_drink/snack, @@ -377,7 +375,7 @@ /area/ruin/space/has_grav/thelizardsgas) "Kw" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 + dir = 4 }, /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating, diff --git a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm b/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm index cfb0424aeeebcb..e2efec50286e82 100644 --- a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm +++ b/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm @@ -195,7 +195,7 @@ /obj/structure/lattice, /obj/structure/girder, /turf/open/floor/plating/rust/airless, -/area/template_noop) +/area/space/nearstation) "my" = ( /obj/effect/turf_decal/trimline/red/line{ dir = 8 @@ -307,7 +307,7 @@ "rK" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "sb" = ( /turf/open/floor/wood/parquet, /area/ruin/space/has_grav/turretedoutpost) diff --git a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm index c98f098693458b..830bd7508ec9b7 100644 --- a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm +++ b/_maps/RandomRuins/SpaceRuins/vaporwave.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "c" = ( /obj/structure/lattice, /turf/open/misc/asteroid/airless, diff --git a/_maps/RandomRuins/SpaceRuins/waystation.dmm b/_maps/RandomRuins/SpaceRuins/waystation.dmm index 336c57b1dc8646..c950663a8266a3 100644 --- a/_maps/RandomRuins/SpaceRuins/waystation.dmm +++ b/_maps/RandomRuins/SpaceRuins/waystation.dmm @@ -111,7 +111,7 @@ "dd" = ( /obj/structure/broken_flooring/pile/directional/west, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "dl" = ( /obj/machinery/door/airlock/mining/glass, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -277,7 +277,7 @@ pixel_y = 24 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 8 }, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) @@ -285,6 +285,11 @@ /obj/machinery/power/shuttle_engine/propulsion, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powered/waystation/assaultpod) +"fk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/ruin/space/has_grav/waystation/cargobay) "fm" = ( /obj/machinery/conveyor{ dir = 1; @@ -316,9 +321,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/noticeboard/directional/north{ - dir = 2 - }, +/obj/structure/noticeboard/directional/north, /obj/item/paper/fluff/ruins/waystation/menu, /obj/item/paper/fluff/ruins/waystation/toilet, /turf/open/floor/iron, @@ -563,7 +566,7 @@ "kn" = ( /obj/structure/broken_flooring/pile/directional/north, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "ko" = ( /obj/machinery/door/airlock{ name = "Freezer" @@ -713,7 +716,7 @@ pixel_x = -6; pixel_y = 4 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 9 }, @@ -825,7 +828,7 @@ width = 35 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "nQ" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -864,7 +867,6 @@ pixel_x = 12; pixel_y = 7 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) "or" = ( @@ -1155,6 +1157,13 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) +"se" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/ruin/space/has_grav/waystation/power) "su" = ( /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -1220,6 +1229,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate_abandoned, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) "ux" = ( @@ -1257,7 +1267,7 @@ "vi" = ( /obj/structure/girder, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "vn" = ( /obj/effect/turf_decal/siding/red{ dir = 1 @@ -1325,7 +1335,7 @@ "wf" = ( /obj/item/stack/rods/two, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "wj" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/siding/green, @@ -1381,7 +1391,7 @@ "xi" = ( /obj/structure/broken_flooring/pile/directional/east, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "xq" = ( /obj/machinery/conveyor{ dir = 1; @@ -1499,6 +1509,7 @@ /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) "zd" = ( @@ -1564,6 +1575,14 @@ /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) +"AT" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/ruin/space/has_grav/waystation/cargobay) "AW" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -1580,9 +1599,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/noticeboard/directional/west{ - dir = 4 - }, +/obj/structure/noticeboard/directional/west, /obj/item/paper/fluff/ruins/waystation/sop, /obj/structure/cable, /turf/open/floor/iron, @@ -1669,7 +1686,6 @@ /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/dim/directional/west, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) @@ -1700,11 +1716,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/space/has_grav/waystation) -"Ee" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/space/has_grav/waystation/cargobay) "Eh" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/structure/filingcabinet, @@ -1843,7 +1854,7 @@ }, /obj/effect/mapping_helpers/broken_floor, /obj/item/light/tube/broken, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargooffice) "HH" = ( @@ -2398,7 +2409,7 @@ /area/ruin/space/has_grav/waystation/cargooffice) "Qx" = ( /obj/structure/table, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/item/stamp/denied{ pixel_x = 8 }, @@ -2525,7 +2536,7 @@ "Tl" = ( /obj/item/shell/airlock, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Tx" = ( /obj/effect/turf_decal/siding/brown{ dir = 8 @@ -2601,7 +2612,9 @@ /turf/closed/wall, /area/ruin/space/has_grav/waystation/cargooffice) "UH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/space/has_grav/waystation/cargobay) @@ -4732,7 +4745,7 @@ pK pK Br yg -Mu +se Mu Mu yg @@ -4993,7 +5006,7 @@ Vb Vb Bq jH -Vb +AT Xr rn Vb @@ -5052,11 +5065,11 @@ Jf gu bW Jy -Xa +fk Ko -GI +bW hH -Xa +fk AJ bW kc @@ -5064,7 +5077,7 @@ bW Ko Xa ut -Ee +Xa CN Xa GN @@ -5114,11 +5127,11 @@ LW gu Xa Ko -Xa +fk Kn -GI +bW Kn -Xa +fk CN Xa vy @@ -5126,7 +5139,7 @@ bW Ko bW zc -Ee +Xa Kn Xa zI @@ -5177,8 +5190,8 @@ bW Xa Kn UH -KI -GI +Ko +bW oo fd ka diff --git a/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm b/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm index 963815016df09e..231a679be8646d 100644 --- a/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm +++ b/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/docking_port/stationary/picked/whiteship, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" a diff --git a/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm b/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm index 12bc608bda910e..3f430bc63d8def 100644 --- a/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm +++ b/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm @@ -5,7 +5,7 @@ pixel_x = 9 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "aw" = ( /obj/effect/decal/cleanable/glass/plastitanium, /turf/open/floor/mineral/titanium/white/airless, @@ -987,7 +987,7 @@ pixel_x = 8 }, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "FX" = ( /obj/effect/turf_decal/tile/blue/half/contrasted, /obj/machinery/sleeper{ diff --git a/_maps/RandomZLevels/SnowCabin.dmm b/_maps/RandomZLevels/SnowCabin.dmm index 95b96c5f4b340c..a190ac27e3e198 100644 --- a/_maps/RandomZLevels/SnowCabin.dmm +++ b/_maps/RandomZLevels/SnowCabin.dmm @@ -1530,9 +1530,9 @@ /turf/open/floor/carpet, /area/awaymission/cabin/caves/mountain) "hL" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/snow, -/area/awaymission/cabin/caves/mountain) +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/ice/smooth, +/area/awaymission/cabin/caves) "hM" = ( /turf/closed/wall/mineral/snow, /area/awaymission/cabin/caves/mountain) @@ -1659,7 +1659,8 @@ /area/awaymission/cabin/caves) "iP" = ( /obj/structure/sign/picture_frame{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/awaymission/cabin/caves) @@ -2484,8 +2485,11 @@ /turf/closed/indestructible/syndicate, /area/awaymission/cabin/caves/sovietcave) "no" = ( -/obj/structure/sign/warning, -/turf/closed/indestructible/syndicate, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, /area/awaymission/cabin/caves/sovietcave) "np" = ( /turf/closed/indestructible/fakedoor{ @@ -2842,6 +2846,14 @@ }, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/caves) +"qx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) "qz" = ( /obj/effect/light_emitter{ set_cap = 3; @@ -3587,10 +3599,8 @@ /turf/open/floor/plating/snowed/snow_cabin, /area/awaymission/cabin/snowforest/sovietsurface) "yJ" = ( -/obj/structure/sign/poster/contraband/free_drone{ - desc = "This poster seems to be meant for a bunch of machines that used to be deployed on space stations." - }, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/sign/poster/contraband/free_drone/directional/west, /turf/open/indestructible, /area/awaymission/cabin/caves/mountain) "yP" = ( @@ -4042,6 +4052,13 @@ }, /turf/open/floor/plating/snowed, /area/awaymission/cabin/snowforest) +"EK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/directional/north, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) "EL" = ( /obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, @@ -4140,6 +4157,10 @@ /obj/structure/flora/tree/pine/style_random, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/caves) +"Gf" = ( +/obj/structure/sign/poster/official/soft_cap_pop_art/directional/north, +/turf/open/floor/wood, +/area/awaymission/cabin) "Gk" = ( /obj/structure/closet/crate/bin, /obj/machinery/light/small/directional/east, @@ -5525,16 +5546,12 @@ /turf/open/floor/plating/snowed/smoothed, /area/awaymission/cabin/caves) "Zb" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, /obj/effect/light_emitter{ set_cap = 3; set_luminosity = 6; light_color = "#9bbbff" }, -/turf/open/misc/asteroid/snow/snow_cabin, +/turf/closed/wall, /area/awaymission/cabin/caves) "Zf" = ( /obj/structure/fence{ @@ -5575,6 +5592,16 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood/freezing, /area/awaymission/cabin/lumbermill) +"ZZ" = ( +/obj/effect/light_emitter{ + name = "cave light"; + set_cap = 3; + set_luminosity = 6; + light_color = "#9bbbff" + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow/snow_cabin, +/area/awaymission/cabin/caves) (1,1,1) = {" ab @@ -17112,7 +17139,7 @@ vh vh vh Zb -Su +ZZ oz oz oz @@ -18911,7 +18938,7 @@ vh vh vh Zb -Su +ZZ oz oz oz @@ -29121,8 +29148,8 @@ Yp aA jj an -eg aq +eg an cN aq @@ -29378,8 +29405,8 @@ an an an an -ct -aq +Gf +eg an jE aq @@ -29635,8 +29662,8 @@ sG au ji an -eg -bh +aq +ht an cO cO @@ -48283,12 +48310,12 @@ gx gx gx gx +hM hL PV PV PV PV -PV Oe Oe Oe @@ -49311,12 +49338,12 @@ gx gx gx gx +hM hL PV PV PV PV -PV gx gx gx @@ -68750,10 +68777,10 @@ gx gx gx gx +ii +EK no -im -im -no +ii gx gx gx @@ -69264,10 +69291,10 @@ gx gx gx gx -no -im -lS -no +ii +EK +qx +ii gx gx gx diff --git a/_maps/RandomZLevels/TheBeach.dmm b/_maps/RandomZLevels/TheBeach.dmm index 6b29a5e2fc5239..cc06de9ed5dce4 100644 --- a/_maps/RandomZLevels/TheBeach.dmm +++ b/_maps/RandomZLevels/TheBeach.dmm @@ -93,7 +93,7 @@ /turf/open/floor/wood, /area/awaymission/beach) "bg" = ( -/obj/structure/no_effect_signpost{ +/obj/structure/signpost{ pixel_y = 6; desc = "Northwest: Hotel. South: Seaside Bar. East: Dressing Rooms." }, diff --git a/_maps/RandomZLevels/caves.dmm b/_maps/RandomZLevels/caves.dmm index 9891aa74685ed4..f3f34b78b3f542 100644 --- a/_maps/RandomZLevels/caves.dmm +++ b/_maps/RandomZLevels/caves.dmm @@ -152,7 +152,7 @@ /area/awaymission/caves/bmp_asteroid/level_four) "ba" = ( /obj/structure/table/wood/fancy, -/obj/item/clothing/gloves/krav_maga/combatglovesplus, +/obj/item/clothing/gloves/kaza_ruk/combatglovesplus, /turf/open/floor/engine/cult, /area/awaymission/caves/bmp_asteroid/level_four) "bf" = ( @@ -1038,7 +1038,7 @@ /turf/open/misc/asteroid/basalt, /area/awaymission/caves/bmp_asteroid) "nw" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/spider/stickyweb, /turf/open/floor/iron, /area/awaymission/caves/bmp_asteroid/level_two) @@ -1149,7 +1149,7 @@ 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 B1" }, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/misc/asteroid/basalt, /area/awaymission/caves/bmp_asteroid/level_two) "vR" = ( @@ -1190,7 +1190,7 @@ "yS" = ( /obj/structure/closet/crate, /obj/item/paper/fluff/awaymissions/caves/shipment_receipt, -/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser/soul, /obj/item/slimepotion/fireproof, /obj/item/slimepotion/fireproof, /obj/item/clothing/glasses/thermal, @@ -1314,7 +1314,7 @@ /turf/open/floor/iron, /area/awaymission/caves/research) "FS" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/spider/stickyweb, /mob/living/basic/spider/giant/hunter/away_caves, /turf/open/floor/iron, @@ -1324,7 +1324,7 @@ /turf/open/misc/asteroid/basalt, /area/awaymission/caves/bmp_asteroid/level_two) "Gt" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/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" @@ -1347,7 +1347,7 @@ /turf/open/floor/iron, /area/awaymission/caves/research) "IE" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/sign/warning/pods/directional/east{ 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" @@ -1397,7 +1397,7 @@ /turf/open/misc/asteroid/basalt, /area/awaymission/caves/bmp_asteroid/level_two) "Mk" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/wood, /area/awaymission/caves/northblock) "Mq" = ( @@ -1453,7 +1453,7 @@ }, /area/awaymission/caves/bmp_asteroid) "PS" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/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" diff --git a/_maps/RandomZLevels/heretic.dmm b/_maps/RandomZLevels/heretic.dmm new file mode 100644 index 00000000000000..f69126634259d4 --- /dev/null +++ b/_maps/RandomZLevels/heretic.dmm @@ -0,0 +1,75414 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"af" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ah" = ( +/obj/structure/statue/uranium/nuke, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"ai" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ak" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"al" = ( +/obj/item/radio/intercom/mi13/directional/north, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"am" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"an" = ( +/obj/machinery/light/directional/west, +/obj/structure/closet/crate/secure/weapon{ + name = "p90 ammo crate" + }, +/obj/item/stack/sheet/cardboard/fifty, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"ao" = ( +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack{ + pixel_y = 9; + pixel_x = 15; + anchored = 1; + name = "Sam Site Missle rack" + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"aq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/door_assembly/door_assembly_material, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"ar" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"as" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"au" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"aw" = ( +/obj/structure/fluff/tram_rail, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"ay" = ( +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"az" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"aA" = ( +/obj/structure/table, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"aB" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/turf_decal/tile/green, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"aC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"aD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"aE" = ( +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"aF" = ( +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -10; + pixel_y = 0 + }, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"aK" = ( +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"aL" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/thermoplastic/light, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 8 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"aM" = ( +/obj/structure/fluff/bus/dense, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"aO" = ( +/obj/machinery/door/airlock{ + name = "Guest Room" + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"aP" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/camera/xray/directional/east, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"aQ" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"aR" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"aV" = ( +/obj/structure/table, +/obj/item/storage/toolbox/syndicate, +/obj/item/trench_tool, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"aW" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_x = -6 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ba" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"bb" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"bc" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"be" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"bf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"bi" = ( +/obj/effect/landmark/transport/nav_beacon/tram/platform/heretic/left, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"bl" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/closet/crate/secure/trashcart/filled, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"bn" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"bq" = ( +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"br" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"bt" = ( +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"bu" = ( +/mob/living/basic/trooper/nanotrasen/peaceful, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bv" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"by" = ( +/obj/structure/fence, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"bA" = ( +/obj/structure/table, +/obj/item/binoculars, +/obj/item/binoculars, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bB" = ( +/turf/closed/mineral/ash_rock, +/area/awaymission/beach/heretic) +"bG" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"bH" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bJ" = ( +/obj/machinery/light/directional/north, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bN" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"bP" = ( +/obj/structure/chair/office/tactical{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"bR" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"bT" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"bZ" = ( +/obj/machinery/door/airlock/multi_tile{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"cb" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ce" = ( +/obj/effect/turf_decal/siding/blue/corner, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"ci" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"cj" = ( +/mob/living/basic/heretic_summon/stalker, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ck" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"cl" = ( +/turf/open/misc/beach/coast{ + dir = 9 + }, +/area/awaymission/caves/heretic_laboratory_clean) +"cp" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 10 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"cq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"cs" = ( +/obj/machinery/quantum_server, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"ct" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"cw" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"cy" = ( +/obj/structure/table, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/gauze, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"cz" = ( +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/machinery/conveyor/auto{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"cC" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"cF" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/mecha_wreckage/ripley/mk2, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"cI" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"cK" = ( +/obj/effect/turf_decal/tile/bar/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"cL" = ( +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"cN" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"cO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"cP" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"cQ" = ( +/turf/closed/wall/rock, +/area/awaymission/caves/heretic_laboratory) +"cR" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"cT" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/dresser, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"cV" = ( +/obj/structure/frame/machine/secured, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"cX" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"db" = ( +/obj/machinery/vending/games, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dd" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"de" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"df" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"dj" = ( +/mob/living/basic/construct/proteon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dk" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"dl" = ( +/obj/item/stack/sheet/mineral/sandbags, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"dm" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"do" = ( +/obj/machinery/door/airlock, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"dp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dr" = ( +/obj/structure/table, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"du" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dw" = ( +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"dy" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/magic/midas_hand, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"dA" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"dC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"dD" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dF" = ( +/obj/machinery/light/very_dim/directional/east, +/obj/machinery/suit_storage_unit/industrial, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"dG" = ( +/obj/machinery/disposal/delivery_chute{ + name = "EXTREMELY hazardous waste disposal chute" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"dI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"dL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"dO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"dP" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"dR" = ( +/turf/open/misc/beach/coast/corner{ + dir = 8 + }, +/area/awaymission/beach/heretic) +"dS" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"dU" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/spawner/surgery_tray/full, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"dW" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"dX" = ( +/obj/machinery/camera/xray/directional/south, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"dY" = ( +/obj/structure/bookcase/random, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"eg" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"eh" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"ek" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"el" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"eo" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/puzzle/keycard/biological_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ep" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"eq" = ( +/obj/structure/table, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"et" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"ev" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory) +"ew" = ( +/obj/item/radio/intercom/mi13/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ey" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"eB" = ( +/obj/structure/filingcabinet, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"eE" = ( +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"eH" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"eJ" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"eK" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"eM" = ( +/obj/machinery/computer/operating/oldstation{ + dir = 8 + }, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"eN" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"eQ" = ( +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"eS" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"eT" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"eW" = ( +/obj/structure/table, +/obj/item/ammo_box/magazine/m7mm, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"eY" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"fb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"fg" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"fh" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Beachside Inn" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"fk" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/airlock/virology, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"fl" = ( +/obj/structure/projected_forcefield, +/obj/effect/oneway, +/turf/open/floor/mineral/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"fm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"fo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"fp" = ( +/obj/machinery/door/airlock/virology, +/obj/machinery/door/puzzle/keycard/cbrn_area, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"fq" = ( +/obj/machinery/vending/hotdog, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"fu" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"fw" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"fx" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/iron/checker, +/area/awaymission/caves/heretic_laboratory) +"fz" = ( +/obj/structure/table, +/obj/item/paper/fluff/awaymissions/heretic/floorsafe, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"fA" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"fB" = ( +/obj/structure/closet/secure_closet/security/sec, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"fC" = ( +/obj/machinery/conveyor/auto{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"fD" = ( +/obj/machinery/telecomms/processor, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"fE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"fF" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dorms" + }, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"fH" = ( +/obj/machinery/light/floor, +/obj/structure/table, +/obj/item/fake_items/feddy_fazbear, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"fI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"fJ" = ( +/obj/machinery/light/small/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"fK" = ( +/obj/structure/table, +/obj/item/stack/sticky_tape{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/stack/sticky_tape{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"fL" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"fM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"fP" = ( +/obj/item/stack/sheet/mineral/uranium, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/coin/uranium, +/obj/item/stack/ore/uranium, +/obj/item/reagent_containers/cup/bottle/radium, +/obj/structure/closet/crate/wooden, +/obj/item/nuke_core{ + anchored = 1 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"fR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"fV" = ( +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"fW" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"fX" = ( +/obj/item/stack/cable_coil/thirty, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"fY" = ( +/obj/structure/closet/crate/grave, +/obj/effect/spawner/random/heretic_gateway, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"fZ" = ( +/obj/structure/flora/tree/jungle/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"ga" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/obj/machinery/computer/tram_controls/heretic_tram_computer{ + icon_state = "tram_alt_controls"; + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"gb" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/door/window/right/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"gd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gg" = ( +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/coin/uranium, +/obj/item/stack/ore/uranium, +/obj/item/reagent_containers/cup/bottle/radium, +/obj/structure/closet/crate/wooden, +/obj/item/nuke_core{ + anchored = 1 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"gh" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"gi" = ( +/obj/effect/heretic_rune/big, +/mob/living/basic/faithless, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"gj" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory_clean) +"gm" = ( +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"gp" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"gq" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gr" = ( +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"gs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/barricade/security, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"gt" = ( +/obj/structure/closet/firecloset/full, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"gu" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"gv" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"gw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/transport/tram{ + specific_transport_id = "heretic_1"; + pixel_y = 8; + id = 2 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gx" = ( +/obj/structure/mop_bucket, +/obj/effect/spawner/random/trash/bucket, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/mop/advanced, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"gy" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/structure/holosign/barrier/atmos/sturdy, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"gz" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"gA" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"gB" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"gC" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"gF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"gI" = ( +/obj/machinery/door/window/survival_pod/left/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"gJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gK" = ( +/turf/open/misc/beach/coast{ + dir = 8 + }, +/area/awaymission/beach/heretic) +"gN" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"gO" = ( +/obj/structure/bodycontainer/crematorium{ + id = "crematoriumchapel"; + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"gQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"gS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/structure/door_assembly/door_assembly_highsecurity, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gT" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"gU" = ( +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/obj/item/toy/plush/moth, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"gW" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"gX" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"gY" = ( +/obj/machinery/conveyor/auto{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ha" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"hb" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"hc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"hd" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/flare/candle/infinite, +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"he" = ( +/obj/structure/sign/poster/contraband/communist_state/directional/west, +/obj/effect/spawner/random/trash/moisture_trap, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"hf" = ( +/obj/structure/fluff/bus/passable/seat{ + pixel_y = 15 + }, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"hg" = ( +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"hi" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"hk" = ( +/turf/open/misc/beach/coast{ + dir = 4 + }, +/area/awaymission/beach/heretic) +"ho" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"hp" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"hq" = ( +/obj/structure/flora/tree/palm/style_random, +/obj/structure/flora/coconuts, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"hr" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/transport/tram{ + specific_transport_id = "heretic_1"; + pixel_y = 8; + id = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"hs" = ( +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"hu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"hv" = ( +/obj/machinery/light/directional/north, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"hB" = ( +/mob/living/basic/crab, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"hC" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"hD" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/energy/dueling, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"hE" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"hF" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"hG" = ( +/obj/structure/flora/tree/palm/style_random, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"hI" = ( +/obj/effect/turf_decal/sand/plating, +/obj/machinery/vending/snack, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"hJ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"hK" = ( +/obj/structure/table/wood/fancy, +/obj/item/plate/oven_tray, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"hL" = ( +/obj/machinery/light/directional/south, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"hM" = ( +/obj/machinery/door/airlock{ + name = "Employees Only"; + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"hQ" = ( +/obj/structure/table, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"hS" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 6 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"hU" = ( +/obj/machinery/autolathe, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"hV" = ( +/obj/machinery/door/airlock/wood{ + name = "Beach Bar" + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"hX" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"hY" = ( +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"ia" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"id" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"ie" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/structure/bed/double, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"if" = ( +/obj/machinery/cryo_cell{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"ig" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "bottomdoor" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"ih" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/dark_green, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ij" = ( +/obj/structure/table/bronze, +/obj/item/flashlight/lamp/green, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"ik" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"il" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"im" = ( +/obj/item/mop/advanced, +/obj/structure/closet, +/obj/item/reagent_containers/cup/bottle/water, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/stock_parts/water_recycler, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"in" = ( +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"ip" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"iu" = ( +/obj/machinery/light/floor, +/turf/closed/wall/mineral/titanium, +/area/awaymission/beach/heretic) +"iw" = ( +/obj/effect/turf_decal/trimline/red/filled/end, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"ix" = ( +/obj/structure/window/spawner/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"iz" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"iB" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"iC" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"iD" = ( +/mob/living/basic/heretic_summon/fire_shark/wild, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"iF" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"iH" = ( +/obj/structure/closet/secure_closet, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"iI" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/closet/cabinet, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"iJ" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medical Freezer" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"iL" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/thermoplastic/light, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"iN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"iO" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"iP" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"iQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"iR" = ( +/obj/structure/fluff/tram_rail/end, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"iS" = ( +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/obj/machinery/transport/tram_controller/heretic_tram_controller, +/obj/structure/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"iU" = ( +/obj/item/bedsheet{ + pixel_x = 19; + pixel_y = 0 + }, +/obj/structure/bed{ + pixel_x = 17; + pixel_y = 0 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"iW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"iX" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"iZ" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"ja" = ( +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"jc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"je" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/human, +/obj/structure/reagent_dispensers/fueltank/large{ + max_integrity = 1; + name = "Extremely fragile high capacity fuel tank" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jf" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jg" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/security, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ji" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"jj" = ( +/obj/effect/decal/cleanable/glass/plastitanium, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"jk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"jo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"jq" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"js" = ( +/obj/machinery/door/airlock{ + name = "Showers" + }, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"ju" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"jx" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"jy" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"jz" = ( +/obj/effect/gibspawner/human, +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"jF" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jG" = ( +/obj/effect/mob_spawn/corpse/human, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"jK" = ( +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jO" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"jP" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"jQ" = ( +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"jS" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"jT" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"jU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"jV" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/decal/remains/robot, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jW" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"jX" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/water/deep_beach, +/area/awaymission/beach/heretic) +"jY" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/robot, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"jZ" = ( +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"kc" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"kd" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 4 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"kf" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"kg" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"kj" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"kk" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"kl" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"km" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"kn" = ( +/obj/structure/chair/office/tactical{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ko" = ( +/obj/item/stack/sheet/mineral/uranium, +/obj/item/nuke_core{ + anchored = 1 + }, +/obj/item/coin/uranium, +/obj/item/coin/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/coin/uranium, +/obj/item/stack/ore/uranium, +/obj/item/toy/brokenradio, +/obj/structure/closet/crate/wooden, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"kr" = ( +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"kw" = ( +/obj/machinery/light/very_dim/directional/west, +/obj/structure/chair/comfy/shuttle/tactical, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"kz" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/item/radio/intercom/mi13/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"kD" = ( +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"kE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"kF" = ( +/obj/item/flashlight/flare/candle/infinite, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"kG" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"kH" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"kI" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"kK" = ( +/obj/machinery/light/floor, +/obj/item/slimepotion/genderchange, +/obj/structure/closet/crate/freezer, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"kO" = ( +/obj/structure/table, +/obj/item/fake_items/l6_saw, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"kQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"kR" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"kV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"kW" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Grocery Store"; + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"kX" = ( +/obj/structure/sign/poster/abductor/ayy_recruitment/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ld" = ( +/obj/structure/closet/crate/secure/weapon{ + name = "p90 ammo crate" + }, +/obj/item/ammo_box/magazine/napad, +/obj/item/ammo_box/magazine/napad, +/obj/item/ammo_box/magazine/napad, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"lh" = ( +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"lj" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/medicine, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"lm" = ( +/turf/closed/mineral/ash_rock, +/area/awaymission/caves/heretic_laboratory) +"lo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"ls" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"lt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"lu" = ( +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"lv" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"lx" = ( +/mob/living/basic/construct/juggernaut, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"lz" = ( +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"lA" = ( +/obj/item/radio/intercom/mi13/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"lB" = ( +/obj/machinery/autolathe, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"lC" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"lD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"lE" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"lH" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/mapping_helpers/damaged_window, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"lJ" = ( +/obj/effect/turf_decal/tile/dark_green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"lK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"lL" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/bananalamp, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"lO" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"lV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"lW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"lX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"lY" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/bar/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"lZ" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"ma" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"mc" = ( +/obj/structure/sink{ + dir = 8; + pixel_y = 1; + pixel_x = 13 + }, +/turf/open/floor/iron/white, +/area/awaymission/beach/heretic) +"md" = ( +/obj/machinery/shieldgen, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"me" = ( +/obj/machinery/light/floor, +/obj/structure/closet/crate/freezer, +/obj/item/organ/heart/gland, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"mg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"mi" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe" + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"mj" = ( +/obj/structure/fence/door, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"mm" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"mn" = ( +/obj/structure/fence/door{ + dir = 8 + }, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"mo" = ( +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"mq" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"mt" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"mu" = ( +/obj/structure/bed, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"mv" = ( +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"mC" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"mE" = ( +/obj/structure/bodycontainer/morgue/beeper_off, +/turf/open/floor/iron/dark/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"mF" = ( +/obj/machinery/vending/drugs, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"mG" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"mH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/curtain, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"mI" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"mJ" = ( +/obj/machinery/suit_storage_unit/open, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"mL" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"mM" = ( +/turf/open/water/jungle, +/area/awaymission/beach/heretic) +"mN" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"mO" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"mR" = ( +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"mS" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/curtain, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"mT" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"mV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"mW" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"mX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"mY" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"mZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/toxin, +/obj/item/storage/medkit/toxin, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"na" = ( +/obj/structure/flora/bush/jungle/a/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"nb" = ( +/turf/closed/wall, +/area/awaymission/caves/heretic_laboratory) +"nd" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/puzzle/keycard/cbrn_area, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"ne" = ( +/obj/item/seeds/cherry/bomb, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"ng" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/obj/machinery/door/airlock/maintenance, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"nh" = ( +/obj/machinery/conveyor/auto{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ni" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"nj" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/obj/item/stack/sheet/mineral/coal/ten, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"nk" = ( +/obj/structure/flora/tree/palm, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"np" = ( +/obj/structure/sign/poster/contraband/arc_slimes/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"nr" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/bed, +/obj/item/bedsheet/black, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"nv" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"nw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/radio/intercom/mi13/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ny" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"nz" = ( +/obj/structure/frame/machine/secured, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"nD" = ( +/obj/structure/projected_forcefield, +/obj/effect/oneway{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"nE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"nF" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"nG" = ( +/obj/structure/dresser, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"nI" = ( +/turf/open/water/deep_beach, +/area/awaymission/beach/heretic) +"nJ" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"nL" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"nM" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"nN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"nO" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"nP" = ( +/obj/item/paper/fluff/old_pirate_note{ + pixel_x = -5; + pixel_y = -7 + }, +/obj/item/pen/fountain{ + pixel_y = -11; + pixel_x = -8 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"nQ" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"nR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/shieldgen, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"nT" = ( +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"nV" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"ob" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"oc" = ( +/obj/machinery/door/airlock/public/glass{ + name = "General Store"; + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"od" = ( +/obj/machinery/conveyor/auto, +/obj/item/toy/plush/moth, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"oe" = ( +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"oi" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"oj" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"ol" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/mob/living/basic/trooper/nanotrasen/ranged/smg/peaceful, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"om" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/south, +/obj/structure/bedsheetbin, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"oo" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"op" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/light/floor, +/obj/machinery/light/directional/east, +/obj/structure/bed/double, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"os" = ( +/obj/item/toy/seashell{ + pixel_y = -15 + }, +/obj/item/toy/seashell{ + pixel_y = -3; + pixel_x = -18 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"ov" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"oz" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler/smg, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"oC" = ( +/obj/machinery/pdapainter, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"oD" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"oF" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"oI" = ( +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"oL" = ( +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"oN" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"oO" = ( +/obj/machinery/conveyor/auto{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"oP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"oQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"oS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"oW" = ( +/obj/structure/filingcabinet{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = 3; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -15; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = 12; + pixel_y = 0 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"pa" = ( +/obj/item/stack/sheet/runed_metal/five, +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"pb" = ( +/obj/machinery/door/poddoor/shutters/window/indestructible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"pc" = ( +/obj/effect/decal/cleanable/glass/plastitanium, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"pd" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"pe" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"pf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/item/mop/advanced, +/obj/effect/spawner/random/structure/closet_empty, +/obj/item/reagent_containers/cup/bucket, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pg" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pm" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"pn" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"po" = ( +/obj/structure/fluff/bus/passable/seat, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"pp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"pr" = ( +/obj/structure/safe/floor{ + desc = "A huge chunk of metal with a dial embedded in it. Fine print on the dial reads \"Hardened Marine confidential containment safe, guaranteed thermite resistant, explosion resistant, and assistant resistant.\"" + }, +/obj/effect/spawner/random/heretic_gateway, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"ps" = ( +/obj/structure/table, +/obj/structure/sink{ + dir = 8; + pixel_y = 6; + pixel_x = 13 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"pt" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 8 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"pu" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pv" = ( +/turf/open/misc/beach/coast{ + dir = 1 + }, +/area/awaymission/beach/heretic) +"pw" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank/large{ + max_integrity = 1; + name = "Extremely fragile high capacity fuel tank" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"px" = ( +/obj/effect/decal/remains/xeno, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"py" = ( +/obj/structure/mop_bucket/janitorialcart, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pB" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"pC" = ( +/obj/effect/decal/cleanable/fuel_pool, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"pD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 5 + }, +/obj/structure/marker_beacon/jade, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"pF" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit, +/obj/item/storage/medkit, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"pH" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/effect/turf_decal/delivery, +/obj/effect/gibspawner/generic/animal, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"pJ" = ( +/mob/living/basic/bot/cleanbot, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"pL" = ( +/obj/machinery/light/directional/south, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pN" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pO" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pP" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pQ" = ( +/obj/item/radio/intercom/mi13/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"pU" = ( +/obj/structure/falsewall, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"pW" = ( +/obj/structure/table, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"pX" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottomrear" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"pY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/item/stack/sheet/iron/five, +/obj/item/stack/cable_coil/thirty, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"qb" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"qc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"qe" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/spawner/random/heretic_gateway, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"qg" = ( +/obj/item/clothing/glasses/meson, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"qk" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ql" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"qm" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"qn" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"qp" = ( +/obj/structure/toilet{ + pixel_y = 18 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qq" = ( +/obj/structure/flora/bush/jungle/b/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"qr" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"qt" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"qu" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"qv" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qA" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"qB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qC" = ( +/obj/item/clothing/head/utility/radiation/cbrnhood, +/obj/item/clothing/suit/utility/radiation/cbrnsuit, +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"qE" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"qG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qI" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank/large{ + max_integrity = 1; + name = "Extremely fragile high capacity fuel tank" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"qK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"qL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"qM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"qO" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/green/double, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"qP" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"qT" = ( +/obj/structure/chair, +/obj/effect/turf_decal/box, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"qU" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"qV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"qW" = ( +/obj/structure/toilet{ + dir = 4; + pixel_x = -2 + }, +/turf/open/floor/iron/white, +/area/awaymission/beach/heretic) +"qY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_green{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"rc" = ( +/obj/machinery/door/airlock{ + name = "Employees Only"; + dir = 4 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"rf" = ( +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"rh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"ri" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"rl" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"rt" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"ru" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"rx" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ry" = ( +/obj/structure/table, +/obj/item/book/bible, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"rA" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"rB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/brute, +/obj/item/storage/medkit/brute, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"rC" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"rF" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"rG" = ( +/obj/effect/decal/cleanable/rubble, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"rK" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/puzzle/keycard/biological_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"rM" = ( +/obj/structure/fluff/beach_umbrella/syndi, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"rN" = ( +/obj/structure/rack, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"rP" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"rR" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"rS" = ( +/mob/living/basic/construct/harvester, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_red/fourcorners, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"rT" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/obj/structure/fluff/tram_rail, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"rU" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/table, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"rX" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"sa" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"sb" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"sc" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 8 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"sd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/flashlight/lantern/on, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"se" = ( +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"sf" = ( +/obj/machinery/vending/donksofttoyvendor, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"sg" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"sj" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"sk" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"so" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"sp" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"sq" = ( +/obj/machinery/light/very_dim/directional/west, +/obj/machinery/suit_storage_unit/industrial, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"sr" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ss" = ( +/obj/item/clothing/shoes/combat/swat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/mask/gas/atmos, +/obj/item/clothing/glasses/meson, +/obj/structure/closet/cabinet, +/obj/item/clothing/under/rank/centcom/military/eng, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"sw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"sx" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"sy" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"sA" = ( +/obj/machinery/door/airlock{ + name = "Employees Only" + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"sC" = ( +/obj/structure/flora/bush/jungle/a/style_random, +/mob/living/basic/venus_human_trap, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"sD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"sF" = ( +/obj/machinery/vending/medical, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"sG" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"sJ" = ( +/obj/structure/table, +/obj/item/storage/medkit/brute{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/medkit/brute, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"sK" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"sL" = ( +/obj/structure/flora/grass/jungle/a/style_random, +/obj/item/seeds/replicapod, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"sM" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"sN" = ( +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"sO" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"sS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"sU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"sZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ta" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"tb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/screwdriver, +/obj/item/crowbar, +/obj/item/multitool, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"tc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"td" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"te" = ( +/turf/closed/wall/mineral/wood/nonmetal, +/area/awaymission/beach/heretic) +"tf" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"tg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"tl" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"tm" = ( +/obj/structure/flora/rock, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"to" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"tq" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"tr" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/beach/heretic) +"ts" = ( +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"ty" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"tA" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"tB" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"tD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/stairs/right, +/area/awaymission/beach/heretic) +"tJ" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"tL" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"tM" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"tN" = ( +/obj/machinery/conveyor/auto{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"tP" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"tQ" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"tR" = ( +/obj/effect/spawner/message_in_a_bottle/low_prob, +/turf/open/water/beach, +/area/awaymission/beach/heretic) +"tS" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"tU" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"tX" = ( +/obj/machinery/shower/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/structure/curtain, +/obj/machinery/door/window/right/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"tY" = ( +/obj/item/binoculars, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"tZ" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ua" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"uc" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"ue" = ( +/obj/structure/flora/coconuts, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"uf" = ( +/obj/effect/decal/cleanable/rubble, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"ug" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"uh" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"uj" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ul" = ( +/obj/item/radio/intercom/mi13/directional/north, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"um" = ( +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"un" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"up" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"uq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"us" = ( +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"ut" = ( +/obj/structure/sink/directional/west, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"uu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"uy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"uz" = ( +/turf/closed/wall/mineral/uranium, +/area/awaymission/beach/heretic) +"uA" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"uB" = ( +/obj/structure/closet/cabinet, +/obj/item/book/random, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"uE" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/fake_items/abductor_win_stick, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"uH" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 8 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"uI" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"uJ" = ( +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"uK" = ( +/obj/effect/decal/cleanable/fuel_pool, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"uL" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"uM" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/regular, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/suture, +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"uN" = ( +/obj/machinery/light/floor, +/obj/item/slimepotion/lovepotion, +/obj/item/slimepotion/lovepotion, +/obj/structure/closet/crate/freezer, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"uO" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"uQ" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"uR" = ( +/obj/structure/sign/poster/official/here_for_your_safety/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"uS" = ( +/mob/living/basic/trooper/nanotrasen/ranged/smg/peaceful, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"uT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/stairs/left, +/area/awaymission/beach/heretic) +"uV" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"uW" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"uX" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/energy/disabler/smoothbore, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"va" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"vb" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"vd" = ( +/obj/structure/closet/crate/secure/trashcart/filled, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"vf" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"vj" = ( +/obj/machinery/vending/medical, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vk" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"vm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"vn" = ( +/obj/structure/closet/cabinet, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"vo" = ( +/obj/structure/cable, +/obj/machinery/power/floodlight, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"vp" = ( +/obj/machinery/washing_machine, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vq" = ( +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/item/reagent_containers/cup/glass/waterbottle/large, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"vr" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"vs" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vt" = ( +/obj/machinery/vending/medical, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vu" = ( +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"vv" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"vw" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"vx" = ( +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"vy" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"vB" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"vF" = ( +/obj/effect/landmark/transport/nav_beacon/tram/nav/heretic, +/obj/effect/landmark/transport/nav_beacon/tram/platform/heretic/middle, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"vI" = ( +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack{ + pixel_y = 8; + pixel_x = -15; + anchored = 1; + name = "Sam Site Missle rack" + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"vK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"vL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"vN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"vO" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"vR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"vS" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"vT" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/gibspawner/human, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"vU" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "p"; + pixel_x = -8; + pixel_y = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"vY" = ( +/obj/effect/decal/cleanable/glass/plastitanium, +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"wa" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"wb" = ( +/obj/structure/closet, +/obj/item/shovel, +/obj/item/bodybag, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"wc" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"wd" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"we" = ( +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"wf" = ( +/turf/closed/wall/mineral/titanium, +/area/awaymission/beach/heretic) +"wh" = ( +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"wi" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/heretic_laboratory_clean) +"wl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"wm" = ( +/obj/item/broken_bottle, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"wn" = ( +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"wq" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ws" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/camera/xray/directional/north, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"wt" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"wu" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"wy" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"wz" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"wC" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"wD" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"wE" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"wF" = ( +/obj/machinery/suit_storage_unit, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"wH" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/regular, +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"wI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"wJ" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/obj/structure/fluff/tram_rail, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"wL" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/transport/tram{ + specific_transport_id = "heretic_1"; + pixel_y = 8; + id = 3 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"wM" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"wN" = ( +/obj/structure/projected_forcefield, +/obj/effect/oneway{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"wO" = ( +/turf/open/misc/beach/coast/corner{ + dir = 4 + }, +/area/awaymission/caves/heretic_laboratory_clean) +"wP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"wR" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"wT" = ( +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"wX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"wY" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "d"; + pixel_x = -15; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "a"; + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "n"; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "g"; + pixel_x = 16; + pixel_y = 3 + }, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"wZ" = ( +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"xa" = ( +/obj/machinery/computer/pod/old/mass_driver_controller/feeder{ + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"xb" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"xd" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"xe" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"xi" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"xj" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"xk" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xl" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory_clean) +"xm" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xn" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "reartire" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"xo" = ( +/obj/structure/table/wood, +/obj/item/pen, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"xr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"xs" = ( +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"xu" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"xv" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/wrench/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"xx" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xB" = ( +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"xC" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"xD" = ( +/obj/machinery/deepfryer, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"xE" = ( +/obj/effect/turf_decal/weather/sand, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"xF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"xG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xH" = ( +/obj/effect/turf_decal/trimline/red/filled, +/obj/item/mecha_ammo/missiles_srm{ + pixel_y = 3; + name = "Sam Site Missiles"; + anchored = 1 + }, +/obj/item/mecha_ammo/missiles_srm{ + pixel_y = 10; + name = "Sam Site Missiles"; + anchored = 1 + }, +/obj/structure/rack, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"xI" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 6 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"xJ" = ( +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"xM" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "d"; + pixel_x = -15; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "a"; + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "n"; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "g"; + pixel_x = 16; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xO" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"xQ" = ( +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"xS" = ( +/obj/structure/window/fulltile, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/awaymission/caves/heretic_laboratory) +"xT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"xW" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"xY" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"ya" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"yb" = ( +/obj/machinery/conveyor/auto/inverted{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"yc" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"yd" = ( +/obj/structure/table, +/obj/item/ammo_box/magazine/lahtimagazine{ + anchored = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"ye" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"yg" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"yj" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"yk" = ( +/obj/structure/curtain/cloth/fancy/mechanical/start_closed, +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"yo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"yp" = ( +/obj/structure/table, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"yu" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"yw" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/clothing/shoes/gunboots/disabler, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"yx" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"yz" = ( +/obj/item/stack/ore/uranium, +/obj/item/coin/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/item/stack/sheet/mineral/uranium, +/obj/structure/closet/crate/wooden, +/obj/item/nuke_core{ + anchored = 1 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"yA" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"yD" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"yE" = ( +/obj/machinery/telecomms/hub, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"yF" = ( +/obj/item/binoculars, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"yG" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"yI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"yJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"yK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"yL" = ( +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"yM" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/radio/intercom/mi13/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"yN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"yO" = ( +/obj/structure/chair/plastic, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"yQ" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"yS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"yV" = ( +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"yW" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"yX" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"yZ" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"za" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"zb" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"zc" = ( +/obj/effect/light_emitter/fake_outdoors, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"ze" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"zh" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"zk" = ( +/mob/living/basic/trooper/nanotrasen/peaceful, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"zl" = ( +/obj/structure/falsewall, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"zo" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"zr" = ( +/obj/effect/decal/cleanable/plasma, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"zs" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"zu" = ( +/obj/item/reagent_containers/cup/soda_cans/space_mountain_wind{ + pixel_x = -17; + pixel_y = 17 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"zv" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"zE" = ( +/obj/structure/bookcase/random, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"zF" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"zH" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"zI" = ( +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"zK" = ( +/obj/effect/decal/cleanable/rubble, +/obj/structure/flora/rock, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"zO" = ( +/mob/living/basic/rabbit{ + name = "Primal force of evil"; + desc = "Why is this bunny being put in a cell this extreme and why does it have a nametag that says 'hello my name is: SATAN'" + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"zQ" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/beach/heretic) +"zR" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"zS" = ( +/obj/structure/chair/sofa/bench, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"zT" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"zV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"zW" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"zZ" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottom" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Ac" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Ae" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Af" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"Ag" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"Ai" = ( +/obj/item/seeds/nettle/death, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Am" = ( +/obj/structure/flora/bush/grassy/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Ao" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ap" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "hoodbottom" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Aq" = ( +/obj/effect/decal/cleanable/glass/plastitanium, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"As" = ( +/obj/machinery/door/window/survival_pod/left/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"At" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Av" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Aw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ax" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Ay" = ( +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Az" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"AA" = ( +/obj/structure/flora/bush/jungle/c/style_random, +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"AB" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"AC" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"AD" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"AG" = ( +/obj/structure/bookcase/random, +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"AI" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"AJ" = ( +/obj/structure/toilet{ + dir = 4; + pixel_x = -2 + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"AK" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 5 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"AL" = ( +/obj/structure/table/wood, +/obj/item/book/manual/ripley_build_and_repair, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"AM" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"AO" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"AP" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"AQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"AR" = ( +/obj/item/reagent_containers/cup/soda_cans/sol_dry{ + pixel_y = 18; + pixel_x = 9 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"AS" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"AT" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"AZ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern/on, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"Bc" = ( +/obj/item/radio/intercom/mi13/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Be" = ( +/obj/machinery/gateway, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"Bf" = ( +/obj/item/clothing/head/collectable/welding, +/obj/item/weldingtool, +/obj/item/stack/cable_coil/five, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Bg" = ( +/obj/structure/table, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Bi" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/indestructible, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Bj" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Bl" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/sign/poster/contraband/eat/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Bm" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin/empty{ + name = "Towel bin" + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Bq" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Br" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Bs" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "topdoor" + }, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"Bv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Bx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"By" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"BE" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"BM" = ( +/obj/item/weldingtool/hugetank, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"BN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"BS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"BU" = ( +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"BV" = ( +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"BW" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"BX" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"BY" = ( +/obj/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/door/poddoor/shutters, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"BZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ce" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Cf" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/turf/open/water/jungle, +/area/awaymission/beach/heretic) +"Ci" = ( +/obj/effect/baseturf_helper/beach/sand, +/turf/closed/mineral/ash_rock, +/area/awaymission/beach/heretic) +"Ck" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"Cm" = ( +/mob/living/basic/heretic_summon/stalker, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Cn" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Co" = ( +/turf/open/misc/beach/coast{ + dir = 1 + }, +/area/awaymission/caves/heretic_laboratory_clean) +"Cp" = ( +/obj/structure/toilet{ + pixel_y = 18 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"Cs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ct" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Cv" = ( +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Cx" = ( +/mob/living/basic/heretic_summon/maid_in_the_mirror, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Cy" = ( +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Cz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"CA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"CB" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"CC" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"CD" = ( +/obj/machinery/shower/directional/west, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"CG" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"CI" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"CJ" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"CP" = ( +/obj/item/radio/intercom/mi13/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"CQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"CS" = ( +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"CT" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"CU" = ( +/obj/item/holosign_creator/atmos, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"CV" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"CW" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"CX" = ( +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"CZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Dc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Df" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/hos/double, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Dg" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Di" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Dj" = ( +/turf/closed/indestructible/rock, +/area/awaymission/beach/heretic) +"Dk" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/effect/decal/remains/human, +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"Dp" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Dr" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Ds" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Dt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/blood_filter, +/obj/item/clothing/gloves/latex/nitrile, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Du" = ( +/obj/structure/table, +/obj/item/pizzabox/meat, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Dx" = ( +/turf/open/misc/beach/coast{ + dir = 5 + }, +/area/awaymission/beach/heretic) +"Dz" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"DB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"DC" = ( +/obj/structure/bookcase/random, +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"DG" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"DJ" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/door/puzzle/keycard/biological_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"DL" = ( +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"DN" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"DR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 6 + }, +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory) +"DT" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"DU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"DX" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"DY" = ( +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"DZ" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 8 + }, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"Ea" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Eb" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/mapping_helpers/damaged_window, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ec" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Eg" = ( +/obj/machinery/conveyor/auto{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ei" = ( +/obj/structure/flora/bush/jungle/b/style_random, +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Ek" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"El" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Em" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Er" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Es" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Et" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Ew" = ( +/obj/effect/spawner/random/heretic_gateway_low, +/obj/structure/closet, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ex" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ey" = ( +/obj/structure/projected_forcefield, +/obj/effect/oneway{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"Ez" = ( +/obj/machinery/vending/cigarette/beach, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"EA" = ( +/obj/structure/closet/crate/grave, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"EF" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"EG" = ( +/obj/effect/spawner/random/food_or_drink/seed_rare, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"EH" = ( +/obj/machinery/computer/shuttle/ferry/request{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"EI" = ( +/turf/open/water/beach, +/area/awaymission/caves/heretic_laboratory_clean) +"EJ" = ( +/turf/open/water/beach, +/area/awaymission/beach/heretic) +"EK" = ( +/obj/item/seeds/firelemon, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"EO" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"EP" = ( +/obj/machinery/deployable_turret/hmg, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"EQ" = ( +/obj/machinery/cryo_cell{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"ER" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"ES" = ( +/obj/machinery/shower{ + pixel_y = 15 + }, +/obj/effect/turf_decal/weather/sand, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"EX" = ( +/obj/structure/table, +/obj/item/flashlight, +/obj/item/flashlight{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/flashlight{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"EY" = ( +/obj/effect/spawner/surgery_tray/full/morgue, +/obj/structure/table, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"EZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Fa" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Fb" = ( +/obj/structure/table, +/obj/item/storage/medkit/emergency, +/obj/item/storage/medkit/emergency{ + pixel_x = 0; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Fe" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Fh" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Fi" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/robot, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Fk" = ( +/obj/structure/closet/l3closet/janitor, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Fl" = ( +/turf/open/misc/beach/coast/corner{ + dir = 1 + }, +/area/awaymission/beach/heretic) +"Fm" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Fn" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Fr" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Fs" = ( +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"Fu" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/fake_items/wabbajack, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"Fw" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/thermoplastic/light, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"Fx" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottom" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Fy" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"Fz" = ( +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"FB" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FC" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FD" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FF" = ( +/obj/machinery/light/very_dim/directional/east, +/obj/structure/chair/comfy/shuttle/tactical, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"FG" = ( +/obj/structure/flora/tree/jungle/small/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"FH" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/bar, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FM" = ( +/obj/item/toy/dodgeball{ + name = "William"; + desc = "It's just not the same thing."; + pixel_y = -4; + pixel_x = 7 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"FO" = ( +/obj/effect/mob_spawn/corpse/human/wizard/red, +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"FP" = ( +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"FQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"FR" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"FS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"FT" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"FU" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"FW" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"FX" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"FY" = ( +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"FZ" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ga" = ( +/obj/structure/bed/double{ + dir = 4 + }, +/obj/item/bedsheet/rd/double{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"Gb" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Gd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Gf" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/mapping_helpers/damaged_window, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Gg" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Gh" = ( +/turf/closed/wall/mineral/iron, +/area/awaymission/beach/heretic) +"Gi" = ( +/obj/structure/sink/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Gj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Gk" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Gm" = ( +/obj/structure/flora/tree/palm{ + pixel_y = 24; + pixel_x = -7 + }, +/obj/structure/flora/coconuts, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Go" = ( +/obj/structure/flora/bush/jungle/b/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Gp" = ( +/mob/living/basic/bot/medbot/mysterious, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Gq" = ( +/obj/structure/sign/poster/contraband/energy_swords/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Gs" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/flare/candle/infinite, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"Gt" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Gu" = ( +/obj/structure/table/wood/fancy, +/obj/item/kitchen/fork, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"Gv" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/light/floor, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Gw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Gy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Gz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"GC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"GD" = ( +/obj/structure/rack, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"GE" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"GF" = ( +/obj/structure/dresser, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"GH" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"GJ" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"GL" = ( +/obj/effect/spawner/random/trash/deluxe_garbage, +/obj/effect/spawner/random/trash/deluxe_garbage, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"GM" = ( +/obj/structure/closet/crate/secure/trashcart/filled, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"GN" = ( +/obj/machinery/light/floor, +/obj/item/slimepotion/slime/mutator, +/obj/structure/closet/crate/freezer, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"GO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"GP" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"GR" = ( +/obj/effect/turf_decal/trimline/red/arrow_cw, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack{ + pixel_y = 9; + pixel_x = 15; + anchored = 1; + name = "Sam Site Missle rack" + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"GT" = ( +/obj/machinery/light/floor, +/obj/structure/closet/crate/freezer, +/obj/item/organ/appendix/corrupt, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"GU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"GV" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"GW" = ( +/obj/structure/fluff/tram_rail, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"GY" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"GZ" = ( +/obj/structure/rack, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Hb" = ( +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"Hc" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/ammo_box/magazine/m7mm, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Hf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Hh" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Hi" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"Hj" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Hk" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Hl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Hn" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Hp" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Hq" = ( +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/sheet/iron, +/obj/item/stack/sheet/iron, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Hr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Hs" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ht" = ( +/obj/structure/filingcabinet{ + pixel_x = -1; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -10; + pixel_y = 0 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Hv" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/fakeartefact, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"Hx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"Hz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"HA" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"HC" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"HF" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HH" = ( +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"HJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HL" = ( +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HM" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"HN" = ( +/turf/open/misc/beach/coast{ + dir = 10 + }, +/area/awaymission/beach/heretic) +"HQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HR" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"HU" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/item/stack/sheet/mineral/sandbags, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"HV" = ( +/turf/open/misc/beach/coast/corner{ + dir = 4 + }, +/area/awaymission/beach/heretic) +"HW" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"HX" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"Ia" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ib" = ( +/obj/item/gun/ballistic/automatic/napad/no_mag{ + pixel_x = -3 + }, +/obj/structure/rack, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Ic" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"Id" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ie" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/wood, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"If" = ( +/turf/open/floor/carpet/neon, +/area/awaymission/caves/heretic_laboratory) +"Ii" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/closet/crate/secure/trashcart/filled, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"Ij" = ( +/obj/item/reagent_containers/cup/soda_cans/starkist{ + pixel_y = 16; + pixel_x = 10 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Ik" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Il" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"Im" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"In" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Io" = ( +/obj/machinery/door/window/right/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Ir" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "e"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "r"; + pixel_x = 5; + pixel_y = 3 + }, +/obj/machinery/light/red/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Iv" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin/empty{ + name = "Towel bin" + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Iw" = ( +/obj/structure/closet/crate/grave, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"Iz" = ( +/obj/effect/decal/cleanable/rubble, +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/plasma, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"IA" = ( +/obj/machinery/washing_machine, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"IB" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/misc/asteroid, +/area/awaymission/beach/heretic) +"ID" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"IF" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"IG" = ( +/mob/living/basic/heretic_summon/raw_prophet, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"II" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/oneway{ + dir = 4 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"IJ" = ( +/turf/open/misc/beach/coast{ + dir = 9 + }, +/area/awaymission/beach/heretic) +"IK" = ( +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"IL" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"IP" = ( +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"IQ" = ( +/obj/machinery/shower/directional/east, +/obj/structure/window/spawner/directional/north, +/obj/structure/curtain, +/obj/machinery/door/window/right/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"IS" = ( +/obj/machinery/griddle, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"IV" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"IX" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/remains/xeno, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"IZ" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ja" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Jb" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Jf" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/item/fake_items/sm_sliver, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Jg" = ( +/obj/machinery/computer/camera_advanced{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ji" = ( +/obj/structure/flora/tree/palm{ + pixel_y = 31 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Jn" = ( +/obj/structure/sign/poster/contraband/double_rainbow/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Jo" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Jp" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Jq" = ( +/obj/structure/fence/corner, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Js" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Jt" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Jv" = ( +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"Jw" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"Jy" = ( +/obj/effect/mob_spawn/corpse/human/old_pirate_captain, +/obj/structure/bed/maint, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Jz" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"JA" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"JB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"JD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"JE" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/water/beach, +/area/awaymission/beach/heretic) +"JG" = ( +/obj/structure/fluff/tram_rail/anchor, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"JH" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"JI" = ( +/obj/effect/spawner/random/food_or_drink/seed_vault, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"JK" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"JM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"JN" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"JO" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"JQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"JR" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"JS" = ( +/obj/structure/table/reinforced, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"JT" = ( +/obj/machinery/conveyor/auto{ + dir = 4 + }, +/obj/item/toy/plush/moth, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"JU" = ( +/obj/structure/falsewall, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"JW" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/fullupgrade, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"JX" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"JY" = ( +/obj/structure/table, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Ka" = ( +/obj/effect/spawner/structure/window/reinforced/indestructible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Kb" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Kd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/graffiti, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Kg" = ( +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Kj" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Kk" = ( +/obj/machinery/computer/camera_advanced{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"Kl" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/drone, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/head/utility/welding, +/obj/item/clothing/head/utility/welding, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"Km" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Kn" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/human, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ko" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"Kp" = ( +/obj/effect/landmark/transport/transport_id/heretic, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Kq" = ( +/obj/machinery/stasis{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Ks" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ku" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/obj/machinery/door/airlock/maintenance, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"Kx" = ( +/obj/item/grenade/c4, +/obj/item/grenade/c4, +/obj/item/grenade/c4, +/obj/effect/spawner/random/heretic_gateway_low, +/obj/structure/closet, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ky" = ( +/obj/structure/rack, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"KB" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory) +"KD" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"KE" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/paper_bin/bundlenatural, +/obj/item/pen, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"KF" = ( +/obj/structure/chair/plastic, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"KG" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/light/floor, +/obj/structure/bed/double, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"KH" = ( +/obj/item/radio/intercom/mi13/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"KJ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"KO" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"KQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"KR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"KS" = ( +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"KT" = ( +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"La" = ( +/obj/effect/baseturf_helper/beach/sand, +/turf/closed/indestructible/rock, +/area/awaymission/caves/heretic_laboratory_clean) +"Lb" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/fake_items/time_stopper, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"Lc" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Le" = ( +/obj/structure/table, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Lf" = ( +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Lh" = ( +/turf/closed/indestructible/rock, +/area/awaymission/caves/heretic_laboratory_clean) +"Li" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "wheredahoodat" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Lj" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ln" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"Lo" = ( +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Lp" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Lv" = ( +/obj/structure/fluff/bus/passable, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"Lw" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Lx" = ( +/obj/machinery/mass_driver/feeder{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ly" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"LC" = ( +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"LE" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"LI" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"LL" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"LN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"LS" = ( +/obj/effect/spawner/random/trash/bin, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"LU" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/structure/bed/double, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Ma" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/security, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Mb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Md" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Mf" = ( +/obj/structure/fluff/tram_rail/end, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Mg" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/remains/robot, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Mh" = ( +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Mj" = ( +/obj/effect/turf_decal/trimline/red/line, +/turf/closed/wall/mineral/iron, +/area/awaymission/beach/heretic) +"Mk" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ml" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"Mn" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Mo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Mq" = ( +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Mr" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/holosign/barrier/atmos/tram, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ms" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/sign/poster/contraband/donk_co/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Mt" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Mu" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Mw" = ( +/obj/item/stack/ore/uranium, +/turf/open/water/jungle, +/area/awaymission/beach/heretic) +"Mz" = ( +/obj/structure/bodycontainer/crematorium{ + dir = 4; + id = "crematoriumChapel" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"MB" = ( +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"MD" = ( +/obj/machinery/door/airlock/medical{ + name = "Surgery B" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"MH" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"MI" = ( +/obj/item/clothing/neck/stethoscope, +/obj/item/wrench, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ML" = ( +/obj/structure/bookcase/random, +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"MP" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/thermoplastic/light, +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"MR" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"MS" = ( +/obj/machinery/vending/donksnack, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"MT" = ( +/mob/living/basic/heretic_summon/stalker, +/obj/structure/flora/bush/fullgrass/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"MV" = ( +/turf/closed/indestructible/reinforced/titanium, +/area/awaymission/caves/heretic_laboratory_clean) +"MW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"MX" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"MY" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Na" = ( +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"Nb" = ( +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/door/airlock/security{ + name = "Armory" + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Nc" = ( +/obj/machinery/light/directional/east, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ne" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Ni" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Nj" = ( +/obj/machinery/light/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Nm" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/structure/chair/office/tactical{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Nn" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Np" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"Nq" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/access/all/service, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ns" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"Nt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Nu" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/double, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Nv" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Nz" = ( +/obj/effect/mob_spawn/corpse/human/skeleton/cultist, +/turf/open/misc/beach/sand, +/area/awaymission/caves/heretic_laboratory_clean) +"NA" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"NB" = ( +/obj/effect/spawner/random/heretic_gateway, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"ND" = ( +/obj/structure/sign/poster/contraband/babel_device/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"NG" = ( +/obj/structure/safe/floor, +/obj/item/reagent_containers/cup/glass/bottle/beer, +/obj/item/reagent_containers/cup/glass/bottle/beer, +/obj/item/cigarette/rollie/cannabis, +/obj/item/cigarette/rollie/cannabis, +/obj/item/cigarette/rollie/cannabis, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"NI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/basic/migo, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"NO" = ( +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/obj/item/toy/plush/moth, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"NQ" = ( +/obj/structure/sink/directional/east, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"NU" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"NW" = ( +/obj/effect/spawner/random/structure/shipping_container, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"NX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"NY" = ( +/obj/structure/table/optable, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"Oa" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Oc" = ( +/obj/structure/table/wood, +/obj/item/pen, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"Od" = ( +/obj/machinery/door/airlock/external/ruin, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Oe" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Of" = ( +/obj/structure/chair/wood, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"Og" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Oh" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/thermoplastic/light, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"Oi" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ok" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ol" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/neon, +/area/awaymission/caves/heretic_laboratory) +"Op" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/free_tonto/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Oq" = ( +/obj/item/seeds/organ_tree, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Or" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ot" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ow" = ( +/obj/structure/flora/grass/jungle/a/style_random, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Ox" = ( +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Oz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"OC" = ( +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/obj/structure/sign/poster/abductor/ayy_piping/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"OD" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"OG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"OJ" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"OK" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"OL" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/mi13/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"OM" = ( +/obj/item/clothing/mask/gas/welding/up, +/obj/effect/decal/cleanable/blood/tracks/xeno, +/obj/item/organ/tail/xeno, +/obj/item/stack/sheet/animalhide/xeno, +/obj/item/stack/sheet/xenochitin, +/obj/effect/decal/cleanable/blood/gibs/xeno/larva/body, +/obj/effect/decal/remains/xeno, +/obj/effect/light_emitter, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"OP" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/pod/dark, +/area/awaymission/beach/heretic) +"OQ" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"OR" = ( +/obj/structure/table/wood, +/obj/structure/curtain/cloth, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"OS" = ( +/obj/effect/temp_visual/drawing_heretic_rune, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"OW" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"OY" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"OZ" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Pa" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Pb" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Pc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/catwalk_floor/iron_dark, +/area/awaymission/caves/heretic_laboratory) +"Ph" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"Pj" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Pl" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Pp" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Pq" = ( +/obj/machinery/vending/sustenance, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Pw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Px" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Py" = ( +/turf/open/floor/carpet/blue, +/area/awaymission/beach/heretic) +"Pz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"PA" = ( +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"PC" = ( +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"PD" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"PE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/basic/faithless, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"PF" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"PG" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/puzzle/keycard/misc_anomalies, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"PK" = ( +/obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/pod/light, +/area/awaymission/beach/heretic) +"PL" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/effect/blessing/invisible, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"PN" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/west, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"PP" = ( +/obj/structure/flora/tree/palm/style_random, +/obj/structure/flora/coconuts, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"PT" = ( +/obj/machinery/light/floor, +/obj/structure/closet/crate/freezer, +/obj/item/organ/eyes/corrupt, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"PU" = ( +/obj/machinery/door/airlock{ + name = "Personal Dorm" + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"PV" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/admin, +/obj/machinery/door/puzzle/keycard/highsec_access, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"PX" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"Qb" = ( +/obj/structure/safe/floor, +/obj/item/keycard/highsec_access, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Qd" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Qf" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Qh" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Qi" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/rd/double, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"Qj" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Qk" = ( +/obj/item/bedsheet/black/double{ + dir = 4; + pixel_x = 0; + pixel_y = 6 + }, +/obj/structure/bed/double{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"Ql" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Qm" = ( +/mob/living/basic/heretic_summon/ash_spirit, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Qn" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Qo" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/obj/structure/curtain/cloth/fancy/mechanical/start_closed, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Qr" = ( +/obj/effect/spawner/random/trash/bacteria, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Qt" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Qx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"Qz" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/energy/shrink_ray/one_shot, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"QA" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"QB" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 5 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"QE" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"QF" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"QG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"QI" = ( +/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/awaymission/beach/heretic) +"QK" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"QL" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"QM" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"QN" = ( +/obj/machinery/cryo_cell{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"QO" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/window/reinforced/survival_pod/spawner/directional/south, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 4 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"QP" = ( +/mob/living/basic/venus_human_trap, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"QW" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"QZ" = ( +/obj/machinery/door/airlock/highsecurity, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Ra" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Rb" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Re" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Rf" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"Rl" = ( +/obj/structure/closet/cardboard, +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Rn" = ( +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"Rp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Rq" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Rs" = ( +/obj/structure/flora/bush/jungle/a/style_random, +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 10 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Rt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ru" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Rv" = ( +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Rw" = ( +/obj/effect/decal/cleanable/blood/tracks/xeno{ + dir = 9 + }, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Ry" = ( +/turf/open/lava, +/area/awaymission/caves/heretic_laboratory_clean) +"Rz" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_large, +/area/awaymission/beach/heretic) +"RA" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/obj/item/gun/magic/staff, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"RB" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/bar/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"RE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"RH" = ( +/obj/item/fishing_rod, +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_containers/cup/glass/bottle/rum/aged, +/obj/effect/spawner/random/heretic_gateway, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"RI" = ( +/obj/structure/window/fulltile, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/awaymission/caves/heretic_laboratory) +"RM" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"RP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"RR" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/gibspawner/human/bodypartless, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"RS" = ( +/obj/machinery/shower/directional/east, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white/smooth_large, +/area/awaymission/caves/heretic_laboratory) +"RT" = ( +/obj/structure/table/wood/fancy, +/obj/item/knife/combat, +/obj/item/knife/hunting, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"RU" = ( +/obj/structure/sign/poster/official/safety_internals/directional/west, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"RW" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass/fifty{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stack/sheet/rglass/fifty{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"RY" = ( +/obj/structure/table, +/obj/effect/spawner/random/exotic/tool, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"RZ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Sb" = ( +/obj/machinery/camera/xray/directional/north, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Sc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/small/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Sd" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Sg" = ( +/obj/structure/rack, +/obj/machinery/light/directional/north, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/shovel, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Sh" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Si" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Sk" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/decal/remains/human, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Sl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Sm" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Sn" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/obj/structure/sign/poster/contraband/blood_geometer/directional/north, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Sq" = ( +/obj/item/keycard/heretic_entrance, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"Sr" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"Ss" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/sign/poster/contraband/eistee/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"St" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Su" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Sv" = ( +/turf/closed/mineral/ash_rock, +/area/awaymission/caves/heretic_laboratory_clean) +"Sx" = ( +/obj/machinery/door/window/right/directional/south, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"SB" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"SC" = ( +/obj/structure/closet/cabinet, +/obj/item/sticker/pslime, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"SG" = ( +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"SI" = ( +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"SL" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "fronttire" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"SM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"SN" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"SP" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"SQ" = ( +/obj/item/paper/fluff/awaymissions/heretic/blackroomhint, +/turf/open/floor/black, +/area/awaymission/caves/heretic_laboratory_clean) +"SR" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ST" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"SW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"SX" = ( +/obj/structure/fluff/bus/passable, +/obj/item/reagent_containers/condiment/saltshaker, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"SY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"Tb" = ( +/obj/effect/light_emitter/fake_outdoors, +/turf/open/water/beach, +/area/awaymission/beach/heretic) +"Tc" = ( +/obj/structure/closet/cabinet, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Td" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/access/all/medical, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Te" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Tf" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Ti" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Tk" = ( +/obj/structure/table, +/obj/item/clothing/gloves/combat{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/clothing/gloves/combat{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Tl" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Tm" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Tn" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Tp" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Tq" = ( +/obj/machinery/door/window/survival_pod/left/directional/east, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Ts" = ( +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"TA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"TB" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"TD" = ( +/mob/living/basic/construct/wraith, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/fourcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"TF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"TG" = ( +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"TH" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"TI" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"TJ" = ( +/obj/machinery/shower/directional/east, +/obj/structure/window/spawner/directional/north, +/obj/machinery/door/window/right/directional/east, +/obj/structure/curtain, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory_clean) +"TL" = ( +/obj/structure/chair/plastic, +/turf/open/floor/plating/airless, +/area/awaymission/caves/heretic_laboratory_clean) +"TM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"TN" = ( +/obj/structure/table, +/obj/item/paperwork/research, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"TO" = ( +/obj/effect/decal/remains/robot, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"TQ" = ( +/obj/machinery/door/puzzle/keycard/highsec_access, +/obj/machinery/conveyor/auto{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"TT" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "hoodtop" + }, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"TV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/closed/indestructible/reinforced, +/area/awaymission/caves/heretic_laboratory) +"TY" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Ua" = ( +/turf/open/misc/beach/coast{ + dir = 8 + }, +/area/awaymission/caves/heretic_laboratory_clean) +"Uc" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"Ug" = ( +/turf/open/misc/beach/coast/corner, +/area/awaymission/beach/heretic) +"Ui" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Uj" = ( +/obj/item/stack/sheet/plasteel/twenty, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Um" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/oneway{ + dir = 4 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"Un" = ( +/obj/effect/baseturf_helper/beach/sand, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Uo" = ( +/obj/machinery/light/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"Up" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Uq" = ( +/obj/machinery/shower{ + pixel_y = 15 + }, +/obj/structure/curtain, +/turf/open/floor/iron/white, +/area/awaymission/beach/heretic) +"Ur" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/camera/xray/directional/north, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Uy" = ( +/obj/item/kirbyplants/fern, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"UA" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"UC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory_clean) +"UD" = ( +/obj/machinery/teleport/station{ + name = "Forcefield generator" + }, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"UE" = ( +/obj/structure/rack, +/obj/effect/spawner/random/armory/disablers, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"UF" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "e"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "r"; + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"UG" = ( +/obj/machinery/vending/modularpc, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"UK" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"UL" = ( +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"UN" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Telecomms" + }, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"UO" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"UQ" = ( +/obj/machinery/atmospherics/miner/oxygen, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"US" = ( +/obj/structure/closet/radiation, +/turf/open/floor/mineral/uranium, +/area/awaymission/beach/heretic) +"UT" = ( +/obj/machinery/power/shuttle_engine/propulsion/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/beach/heretic) +"UV" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"UX" = ( +/mob/living/basic/heretic_summon/stalker, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"UY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/mob/living/basic/trooper/nanotrasen/ranged/smg/peaceful, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Vb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Ve" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Vh" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Vi" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Vj" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Vl" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Vn" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Vr" = ( +/obj/machinery/door/window/right/directional/north, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Vt" = ( +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"Vy" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Vz" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/xeno, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"VA" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"VB" = ( +/obj/structure/table, +/obj/item/radio{ + pixel_x = -4 + }, +/obj/item/radio, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"VC" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/obj/structure/transport/linear/tram, +/obj/structure/thermoplastic/light, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"VD" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix/inverse{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"VF" = ( +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/machinery/conveyor/auto{ + dir = 8 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"VG" = ( +/obj/structure/table, +/obj/item/fake_items/lahti_l39{ + pixel_x = 16 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"VI" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"VJ" = ( +/obj/structure/rack, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"VQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"VR" = ( +/obj/structure/fence, +/turf/open/misc/dirt/jungle, +/area/awaymission/beach/heretic) +"VT" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"VW" = ( +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"VX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"VY" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"VZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"Wa" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Wc" = ( +/obj/effect/decal/remains/human, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Wd" = ( +/turf/open/floor/iron/checker, +/area/awaymission/caves/heretic_laboratory) +"Wi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Wj" = ( +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Wk" = ( +/obj/item/bedsheet/black{ + dir = 4 + }, +/obj/structure/bed{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/beach/heretic) +"Wl" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/clown/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Wn" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Wo" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Wr" = ( +/obj/effect/blessing/invisible, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"Ws" = ( +/obj/structure/fluff/beach_umbrella/science, +/turf/open/misc/beach/sand, +/area/awaymission/beach/heretic) +"Ww" = ( +/obj/structure/table, +/obj/item/storage/toolbox/drone, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare{ + pixel_y = 6 + }, +/obj/item/flashlight/flare{ + pixel_y = 6 + }, +/obj/item/flashlight/flare{ + pixel_y = 6 + }, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Wx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Wy" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "j"; + pixel_x = -14; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "u"; + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "m"; + pixel_x = 10; + pixel_y = 1 + }, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Wz" = ( +/obj/effect/turf_decal/trimline/red/arrow_ccw, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack{ + pixel_y = 8; + pixel_x = -15; + anchored = 1; + name = "Sam Site Missle rack" + }, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"WA" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/access/all/service, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"WD" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/puzzle/keycard/heretic_entrance, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"WF" = ( +/obj/structure/dresser, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory_clean) +"WJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/awaymission/beach/heretic) +"WK" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"WN" = ( +/obj/item/radio/intercom/mi13/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"WO" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"WP" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/holosign/barrier/atmos/sturdy, +/obj/effect/blessing/invisible, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"WR" = ( +/obj/effect/decal/cleanable/rubble, +/obj/effect/decal/cleanable/plasma, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"WT" = ( +/obj/effect/spawner/random/trash, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"WU" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/heretic_laboratory) +"WV" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"WY" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"WZ" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xa" = ( +/obj/structure/flora/bush/jungle/a/style_random, +/obj/effect/decal/cleanable/blood/tracks/xeno, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Xb" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Xc" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"Xd" = ( +/obj/structure/falsewall, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Xg" = ( +/obj/structure/closet/secure_closet, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/neck/stethoscope, +/obj/item/stack/tile/iron/small, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Xh" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Xk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Xl" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xm" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Xn" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Xo" = ( +/obj/structure/table, +/obj/item/storage/medkit/toxin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/medkit/toxin, +/obj/item/storage/pill_bottle/multiver, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xq" = ( +/obj/item/wrench, +/obj/effect/light_emitter, +/turf/open/misc/grass/jungle/station, +/area/awaymission/beach/heretic) +"Xs" = ( +/obj/machinery/stasis{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Xu" = ( +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Xv" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Xx" = ( +/obj/machinery/shower/directional/south, +/obj/structure/curtain, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Xy" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/radio/intercom/mi13/directional/west, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"XB" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/storage/pill_bottle/mannitol, +/obj/item/reagent_containers/dropper{ + pixel_y = 6 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"XC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"XI" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/camera/directional/east{ + network = list("ss13","medbay"); + c_tag = "Medical - Surgery B" + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 22; + pixel_y = -9 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"XL" = ( +/obj/machinery/door/window/survival_pod/left/directional/east, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"XO" = ( +/obj/structure/sign/poster/contraband/beekind/directional/west, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"XQ" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/item/radio/intercom/mi13/directional/east, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"XR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"XS" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"XU" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"XV" = ( +/obj/structure/fluff/bus/passable/seat/driver, +/turf/open/floor/iron/dark, +/area/awaymission/beach/heretic) +"XY" = ( +/obj/item/bedsheet/black/double{ + pixel_x = 0; + pixel_y = 10 + }, +/obj/structure/bed/double, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"XZ" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Ya" = ( +/obj/structure/mop_bucket/janitorialcart, +/obj/item/reagent_containers/cup/bucket/wooden, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Yb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/bar/half/contrasted, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Yc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"Yd" = ( +/obj/machinery/conveyor/auto{ + dir = 10 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Ye" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/awaymission/caves/heretic_laboratory) +"Yh" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Yi" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Yj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/indestructible/plating, +/area/awaymission/caves/heretic_laboratory) +"Ym" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/effect/blessing/invisible, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) +"Yn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory_clean) +"Yo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"Yp" = ( +/obj/structure/table, +/turf/open/floor/carpet/green, +/area/awaymission/caves/heretic_laboratory) +"Yq" = ( +/obj/structure/closet/cabinet, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"Yr" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/mop_bucket/janitorialcart, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Yt" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/textured, +/area/awaymission/caves/heretic_laboratory) +"Yu" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/ammo_box/magazine/lahtimagazine{ + anchored = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory_clean) +"Yv" = ( +/turf/closed/wall/mineral/plastitanium{ + color = "#000000" + }, +/area/awaymission/caves/heretic_laboratory_clean) +"Yw" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"Yx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar/half/contrasted{ + dir = 1 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Yy" = ( +/obj/structure/chair/comfy/shuttle/tactical, +/mob/living/basic/trooper/nanotrasen/ranged/smg/peaceful{ + name = "Man filled with fear"; + desc = "This man, has terror in his eyes, he stays deadset on the console and he is constantly twitching, he doesnt acknowledge you and he doesnt do anything besides sit there. This mans mind seems to be lost" + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"YA" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/medkit/regular, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"YG" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/structure/fluff/tram_rail, +/turf/open/misc/asteroid, +/area/awaymission/caves/heretic_laboratory) +"YL" = ( +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/stack/sheet/rglass/fifty{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory) +"YN" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"YO" = ( +/obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"YP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/obj/effect/light_emitter/fake_outdoors, +/turf/open/floor/wood, +/area/awaymission/beach/heretic) +"YR" = ( +/obj/machinery/oven/range, +/turf/open/floor/iron/cafeteria, +/area/awaymission/caves/heretic_laboratory_clean) +"YS" = ( +/obj/effect/landmark/transport/nav_beacon/tram/platform/heretic/right, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"YW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory_clean) +"YX" = ( +/obj/machinery/autolathe, +/turf/open/floor/carpet/royalblack, +/area/awaymission/beach/heretic) +"Za" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/heretic_laboratory) +"Zb" = ( +/obj/effect/spawner/random/heretic_gateway_low, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Zc" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/beach/heretic) +"Zd" = ( +/obj/effect/decal/cleanable/rubble, +/obj/structure/flora/rock/pile, +/turf/open/floor/asphalt, +/area/awaymission/beach/heretic) +"Zf" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/remains/human, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Zg" = ( +/turf/open/misc/beach/coast{ + dir = 6 + }, +/area/awaymission/beach/heretic) +"Zi" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Zj" = ( +/obj/machinery/shower/directional/east, +/obj/item/soap, +/turf/open/floor/iron/freezer, +/area/awaymission/caves/heretic_laboratory) +"Zk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"Zo" = ( +/obj/effect/gibspawner, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Zp" = ( +/mob/living/basic/slime/pet{ + name = "Gilbert"; + desc = "What a cute slime, they seem relieved to see you" + }, +/turf/open/floor/wood, +/area/awaymission/caves/heretic_laboratory) +"Zs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/caves/heretic_laboratory) +"Zv" = ( +/obj/machinery/shower/directional/north, +/obj/structure/curtain, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Zw" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"Zy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"ZD" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ZG" = ( +/obj/item/weldingtool/hugetank, +/obj/item/clothing/head/utility/welding, +/obj/item/wrench, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory_clean) +"ZH" = ( +/turf/open/misc/beach/coast, +/area/awaymission/beach/heretic) +"ZI" = ( +/obj/structure/falsewall, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/heretic_laboratory) +"ZK" = ( +/obj/effect/turf_decal/tile/dark_green/half{ + dir = 8 + }, +/obj/item/radio/intercom/mi13/directional/west, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ZL" = ( +/obj/machinery/door/airlock/highsecurity{ + max_integrity = 10000; + normal_integrity = 10000 + }, +/obj/effect/mapping_helpers/airlock/access/all/security, +/obj/machinery/door/puzzle/keycard/weapon_anomalies, +/turf/open/floor/iron/small, +/area/awaymission/caves/heretic_laboratory) +"ZM" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory_clean) +"ZO" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/away/general, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ZP" = ( +/obj/effect/turf_decal/trimline/red/filled, +/turf/open/floor/iron/large, +/area/awaymission/beach/heretic) +"ZQ" = ( +/obj/machinery/light/directional/east, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/blessing/invisible, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ZV" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/caves/heretic_laboratory_clean) +"ZX" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/awaymission/caves/heretic_laboratory) +"ZY" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/large, +/area/awaymission/caves/heretic_laboratory) +"ZZ" = ( +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/effect/blessing/invisible, +/turf/open/misc/grass/jungle, +/area/awaymission/caves/heretic_laboratory) + +(1,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +"} +(2,1,1) = {" +Lh +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +La +Lh +"} +(3,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(4,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +oO +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +yV +OC +yV +tN +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Eg +NO +gY +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(5,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +yb +yV +yV +yV +yV +yV +yV +wT +yV +tN +xl +JT +kF +gU +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +mE +mE +Mz +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(6,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +KB +KB +KB +KB +KB +KB +KB +xl +Mh +xl +nh +od +Yd +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +xQ +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(7,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +rA +yX +yX +yX +yX +yX +gy +IK +gy +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Ct +QG +QG +QG +Xd +cX +UX +du +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(8,1,1) = {" +Lh +Dj +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +nb +zh +YG +nb +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +ay +ay +ay +KB +xl +Mh +xl +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +ZI +KB +KB +KB +KB +Yr +yo +pf +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(9,1,1) = {" +Lh +Dj +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +ay +rF +ay +KB +wn +wh +wn +KB +Yi +GL +fW +fW +fW +ay +ay +ay +KB +lm +lm +Xk +lm +lm +lm +KB +KB +iJ +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(10,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +tR +EJ +tR +EJ +tR +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +KB +KB +KB +KB +wn +wh +wn +KB +Bf +fW +fW +fW +ay +ay +ay +ay +KB +lm +KQ +Rp +lv +Zi +lm +KB +nF +up +sk +KB +ov +up +sk +KB +ov +up +sk +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(11,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +tR +IJ +gK +gK +gK +HN +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +nb +zh +YG +nb +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +fW +Qd +nE +kg +KB +hJ +hJ +hJ +KB +lm +lO +Rp +jT +lm +lm +KB +XU +mY +Vj +KB +XU +mY +Vj +KB +XU +mY +Vj +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(12,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +pv +Gm +RH +wm +Fl +HN +tR +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +fW +qP +cL +aw +mq +xQ +xQ +xQ +KB +Zi +ay +Xk +lO +lm +lm +KB +Og +CI +mg +KB +Og +CI +mg +KB +Og +CI +mg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(13,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +tR +pv +PA +dd +Jy +os +ZH +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +ay +wz +cL +aw +mq +xQ +xQ +xQ +KB +lm +jT +Xk +KQ +lO +lm +KB +dU +Ck +Vj +KB +dU +Ck +Vj +KB +dU +Ck +Vj +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(14,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +pv +PA +nP +PA +PA +ZH +tR +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +nb +iL +Dk +nb +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +ay +wz +cL +aw +mq +xQ +xQ +xQ +KB +lm +Nc +Rp +Gb +lm +lm +KB +XI +uh +Dt +KB +XI +uh +Dt +KB +XI +uh +Dt +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(15,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +tR +pv +hB +PA +dd +PA +ZH +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +Fw +MP +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +Pj +KB +KB +KB +ZI +KB +KB +KB +KB +KB +MD +KB +KB +KB +MD +KB +KB +KB +MD +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(16,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +Dx +hk +dR +FM +PA +ZH +tR +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +hg +Fw +ER +hg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +vs +cC +sD +sD +sD +id +wd +sg +qB +qB +qB +sg +qB +qB +qB +HW +yJ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(17,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +tR +EJ +Dx +hk +hk +Zg +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +fC +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +nb +Oh +yu +nb +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +sx +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(18,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +tR +EJ +tR +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +cz +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +lB +iz +RW +KB +hg +aL +sc +hg +KB +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +JU +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Km +Xu +Xu +Xu +Km +vS +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(19,1,1) = {" +Lh +Dj +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +TQ +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +Sv +KB +Cn +mo +aV +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +KB +gN +ye +CB +tA +CB +lo +ye +Yc +CB +Mo +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +Pj +KB +KB +KB +KB +KB +KB +KB +KB +DT +Xu +Xu +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(20,1,1) = {" +Lh +Dj +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Qr +WT +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +Sv +KB +jK +cL +VW +cL +jK +KB +Sv +KB +cw +As +YL +KB +nb +zh +YG +nb +KB +Sv +Sv +Sv +KB +eT +um +df +lE +lE +vY +Yt +um +NW +JO +KB +Sv +Sv +Sv +Sv +wn +wh +wn +KB +hr +wz +bi +aw +mq +xQ +xQ +sN +KB +RS +vj +Kq +RS +Ye +Kq +KB +Xu +Xu +Xu +KB +if +Xu +if +Xu +if +vN +Md +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(21,1,1) = {" +Lh +Dj +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +WT +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +Sv +KB +IV +XL +IV +XL +IV +KB +Sv +KB +fK +mo +mo +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +KB +QF +um +lE +Vy +AO +aE +AO +vT +cq +rP +KB +xl +xl +xl +xl +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +BZ +ny +Xu +Xu +Xu +Xu +Xu +KB +Xu +Xu +Xu +KB +Gw +Vb +Vb +Vb +Vb +qG +Qj +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(22,1,1) = {" +Lh +Dj +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +Co +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +zk +zk +vu +vu +xa +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +Sv +KB +If +If +If +If +If +KB +Sv +KB +Fb +mo +mo +KB +hg +WV +GW +hg +KB +Sv +Sv +Sv +KB +QF +um +AO +AO +aE +aE +aE +aE +sj +JO +KB +bl +Ii +DN +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +BZ +nv +Xu +Dz +uM +Xu +yx +KB +bG +Xu +uI +KB +lA +Xu +Xu +Xu +Xu +Xu +XB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(23,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +EI +EI +EI +EI +EI +EI +EI +cl +Ua +wO +mv +pa +Nz +mv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +wi +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +wi +PD +PD +PD +PD +PD +Lx +wi +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +wi +vu +vu +vu +xl +Sv +Sv +Sv +KB +Ol +If +If +If +Ol +KB +Sv +KB +EX +mo +mo +KB +nb +zh +YG +nb +KB +Sv +Sv +Sv +KB +QF +um +mV +AO +uq +AO +aE +aE +cq +JO +KB +Ii +wn +wn +Ka +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +xQ +BZ +nv +Xu +CJ +By +Xu +jx +KD +jx +Xu +Vj +OY +nv +Xu +Xu +Xu +Xu +Xu +EO +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(24,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +EI +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Ua +Ua +Ua +Ua +wO +FO +mv +Nz +mv +mv +pa +mv +mv +mv +mv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +KB +KB +KB +QZ +KB +KB +KB +KB +KB +KB +QZ +QZ +KB +KB +Um +II +KB +KB +KB +KB +KB +KB +yW +wt +AO +aE +aE +uW +aE +aE +Cv +lX +KB +wn +wn +wn +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +BZ +nv +Xu +wH +ho +Xu +FX +KB +iO +Xu +zs +KB +yJ +Xu +Xu +Xu +Xu +Xu +xv +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(25,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +EI +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +jz +mv +mv +xl +Uj +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +KB +KB +KB +gt +KB +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +yK +kf +iR +mo +mo +aE +aE +Sl +aE +aE +AO +aE +aE +mV +aE +jj +aE +aE +Aq +KB +wn +wn +ji +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +BZ +yJ +Xu +Xu +Xu +Xu +Xu +KB +Xu +Xu +Xu +KB +Hr +Hr +Hr +Hr +Hr +Wi +Qj +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(26,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +Tb +EI +EI +EI +EI +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +mv +Nz +mv +mv +mv +Nz +mv +mv +mv +mv +Nz +mv +Nz +xl +ZG +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +uy +uy +uy +uy +Sr +jk +mX +VX +Gz +Gz +Gz +Gz +Gz +pp +ik +ik +to +to +ik +ik +kV +kV +kV +kV +kV +TF +Zy +jj +uq +aE +aE +uq +Yt +JO +KB +wn +TL +Oc +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +KB +CD +vt +Xs +CD +mF +Xs +KB +Xu +Xu +Xu +KB +EQ +Xu +QN +Xu +QN +vN +nN +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(27,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +Tb +EI +EI +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +pa +mv +mv +mv +mv +mv +jz +mv +mv +mv +mv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +uy +KB +KB +KB +KB +KB +KB +KB +zW +zW +KB +KB +KB +KB +FS +gm +to +gm +gm +ya +aE +aE +aE +aE +aE +um +Zy +Zy +Zy +ak +xY +zo +Ek +Fe +KB +wn +wn +AZ +Ka +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +Pj +KB +KB +KB +KB +KB +KB +KB +KB +DT +Xu +Xu +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(28,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +pa +mv +jz +mv +Nz +mv +mv +mv +mv +mv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +uy +Yj +Ku +Ae +Ae +Ae +JD +oP +Ae +GU +Ae +fE +cL +KB +OD +hQ +WU +hQ +hQ +At +KB +KB +KB +KB +Dc +um +Yt +aE +OS +fX +au +wY +um +JM +KB +wn +wn +wn +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Xu +Xu +Xu +Xu +Xu +QA +Xu +Xu +Xu +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(29,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +tR +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +pa +mv +mv +mv +mv +mv +mv +mv +mv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +JB +JB +ng +zV +VD +Nt +Nt +Nt +cO +GO +cL +fR +cL +KB +Cn +hQ +wE +gm +hQ +FW +KB +aF +Lo +KB +QF +um +um +sj +pY +Yt +qE +UF +pc +ZY +KB +wn +wn +wn +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +Xu +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(30,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +mv +mv +mv +mv +mv +mv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +KB +KB +KB +DR +Cs +wP +aD +Rq +aD +wP +aD +UK +dC +et +KB +Cn +hQ +to +gm +hQ +FW +KB +Lf +Sd +KB +QW +gW +gW +xC +Bc +dl +HU +dl +yF +cF +KB +wn +wn +wn +Ka +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +bR +Td +JA +Km +Xu +Xu +Xu +Xu +Km +Xu +Xu +vS +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(31,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +TV +ip +Zs +cL +Pz +eQ +Zs +cL +Pz +cL +cP +KB +Cn +mo +to +gm +mo +FW +KB +Tq +Yp +KB +KB +KB +KB +KB +KB +oi +WD +oi +KB +KB +KB +KB +zl +KB +KB +wn +wh +wn +KB +KB +zF +cL +JG +KB +xQ +xQ +Pj +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(32,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +nV +mC +Ry +Ry +Ry +Ry +Ry +Ry +aR +BE +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +TV +KB +Rt +Hl +Aw +KB +Rt +Hl +Ea +KB +KB +KB +mo +mo +ik +mo +mo +mo +KB +mo +mo +Ht +KB +bq +bq +bq +bq +bq +wC +bq +bq +bq +bq +bq +bq +bq +KB +wn +wh +wn +KB +xQ +wz +cL +aw +mq +xQ +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(33,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +wi +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +dS +wi +Ey +Ey +Ey +Ey +Ey +Ey +wi +Wo +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +wi +vu +vu +vu +xl +Sv +Sv +Sv +TV +KB +ql +ay +dm +KB +ql +ay +dm +KB +KB +KB +KB +KB +qm +Gk +KB +KB +KB +mo +mo +oW +KB +bq +bq +bq +bq +bq +wC +bq +bq +bq +bq +bq +bq +bq +KB +wn +wh +dk +KB +xQ +wz +cL +aw +mq +xQ +xQ +UX +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(34,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +hd +RT +Gs +KT +KT +SI +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +vu +vu +xl +Sv +Sv +Sv +TV +KB +ay +UQ +ay +KB +ay +dW +ay +KB +py +KB +Px +Fa +ik +mo +mo +mo +KB +KB +Xh +KB +KB +bq +bq +in +Gv +bq +oN +xS +El +bq +Gv +PN +bq +Br +KB +xl +Mh +xl +KB +Sh +wz +cL +aw +gq +xQ +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(35,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +Gu +KT +KT +KT +KT +rU +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +zk +vu +xl +Sv +Sv +Sv +TV +KB +KB +KB +KB +KB +KB +KB +KB +KB +ay +SB +tL +mo +ik +mo +mo +mo +mo +mo +mo +mo +Xh +bq +bq +Af +yO +bq +hX +xS +kH +bq +XS +kk +bq +bq +KB +xl +IK +xl +KB +KB +vb +BU +mN +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +gj +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(36,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +hK +KT +zO +KT +KT +im +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +vu +vu +xl +Sv +Sv +Sv +Fy +lu +lu +Sv +Sv +Sv +Sv +Sv +Sv +KB +Fk +KB +tL +ik +ik +mo +mo +mo +mo +mo +mo +mo +Xh +bq +bq +Af +yO +bq +Lc +xS +zS +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(37,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +zk +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +Gs +zT +Gs +KT +KT +KT +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +zk +vu +vu +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +tL +Et +KB +KB +KB +ix +Io +KB +KB +KB +KB +bq +bq +Af +yO +CA +Lc +xS +zS +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(38,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +KT +qU +Qk +rt +KT +KT +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +vu +vu +xl +Sv +xl +xl +xl +xl +xl +xl +xl +xl +KB +gB +Za +va +va +ty +bT +KJ +KB +lm +KB +DT +Xu +KB +Gi +iP +KB +mI +bq +Af +Gv +Wx +Lc +xS +zS +bq +Gv +kk +bq +Br +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(39,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +PD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +fl +KT +KG +ie +XY +KT +SI +wN +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +PD +vu +vu +vu +xl +Sv +xl +vu +vu +dI +iB +MH +vu +vu +KB +Qi +lD +Ic +uB +KB +tL +KJ +KB +lm +KB +Bm +vp +KB +qp +Hh +qv +bq +bq +Af +yO +bq +Lc +xS +zS +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(40,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +wi +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +kc +wi +nD +nD +nD +nD +nD +nD +wi +mC +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +wi +vu +vu +vu +xl +Sv +xl +vu +vu +Gd +Rf +jU +vu +vu +KB +KB +KB +KB +KB +KB +tL +KJ +KB +KB +KB +KB +KB +KB +KB +KB +KB +bq +bq +Af +yO +bq +Lc +xS +zS +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(41,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +OJ +Wo +Ry +Ry +Ry +Ry +Ry +Ry +dS +UD +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +vu +vu +lW +LN +UC +vu +vu +KB +gB +Za +va +va +ty +bT +KJ +KB +uB +ju +xr +Ga +KB +Gi +iP +KB +mI +bq +Af +yO +bq +bH +xS +Hs +bq +XS +kk +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(42,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +vu +vu +vu +vu +vu +vu +vu +KB +Qi +lD +Ic +uB +KB +tU +KJ +ty +va +va +Za +gB +KB +qp +Xu +qv +bq +bq +gv +Gv +bq +oN +xS +El +bq +Gv +PX +bq +Br +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(43,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +Or +Ka +Ka +Ka +Ka +Ka +Or +KB +KB +KB +KB +KB +KB +tL +KJ +KB +KB +KB +KB +KB +KB +KB +KB +KB +bq +bq +bq +bq +bq +wC +bq +bq +bq +bq +bq +bq +bq +KB +xl +IK +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(44,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +hs +hs +eq +TN +eq +hs +hs +KB +gB +xr +ju +uB +KB +tL +KJ +ty +va +va +Za +gB +KB +Gi +Xu +qv +bq +bq +xG +xG +xG +wC +CP +bq +bq +Gq +bq +bq +bq +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(45,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +hs +Pl +hs +hs +hs +Pl +hs +KB +Qi +Za +va +va +ty +bT +KJ +KB +uB +Ic +lD +Qi +KB +qp +iP +KB +KB +KB +Qn +KB +KB +Nq +KB +WA +KB +KB +pO +KB +KB +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(46,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +xl +xl +xl +Si +xl +xl +xl +KB +KB +KB +KB +KB +KB +mo +KJ +KB +KB +KB +KB +KB +KB +KB +KB +KB +he +xi +OG +KB +bq +wC +bq +bq +bq +yL +ay +ay +gx +KB +xl +IK +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(47,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +Sv +xl +mo +Tn +Yh +LI +LI +TH +LI +LI +LI +ik +ik +KJ +Hp +OG +OG +OG +OG +Kd +OG +OG +OG +OG +OG +OG +KB +bq +wC +bq +bq +bq +KB +ba +ay +Ya +KB +xl +VF +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(48,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +Sv +Sv +Sv +xl +mo +TB +sK +Ru +TB +TB +TB +TB +TB +TB +TB +uc +KB +OG +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bq +wC +xS +bq +bq +xl +xl +xl +xl +xl +xl +hC +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(49,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +Az +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Ry +Az +vu +vu +vu +xl +Sv +xl +xl +xl +xl +bn +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +KB +OG +KB +Sv +Sv +KB +CV +Xy +Sx +Xv +Ss +Xv +Hl +CA +wC +xS +bq +bq +Az +hE +Bl +Nv +Vr +Yw +gb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(50,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +wi +Az +Az +Az +Az +Az +wi +PD +PD +PD +PD +PD +wi +Az +Az +Az +Az +wi +PD +PD +PD +PD +PD +wi +Az +Az +Az +Az +Az +wi +vu +vu +vu +xl +Sv +xl +Kb +rf +Kb +Kb +Kb +rf +Kb +xl +xl +Ib +ld +an +ld +Ib +xl +KB +OG +KB +Sv +Sv +KB +xW +WY +xW +SP +Xv +Xv +Hl +Wx +wC +xS +bq +bq +Az +hE +hE +AP +Bv +Yw +Yw +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(51,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +zk +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +xl +Kb +Kb +dr +ry +dr +Kb +Kb +xl +xl +Wa +Wa +Wa +Wa +sO +xl +KB +OG +KB +Sv +Sv +KB +aW +WY +xW +SP +Xv +Xv +oI +bq +wC +xS +bq +bq +vx +hE +hE +AP +Bv +Yw +Yw +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(52,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +zk +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +xl +WP +Ka +Ka +Ka +Ka +Ka +WP +xl +xl +qC +Wa +Wa +Wa +qC +xl +KB +Oz +KB +Sv +Sv +KB +mi +WY +xW +SP +Bj +Vi +KB +mI +wC +xS +bq +bq +xl +qA +ZV +AP +Bv +Yw +GH +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(53,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Rl +vq +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +xl +Sv +xl +vk +vk +vk +vk +vk +vk +Wr +xl +xl +nd +nd +fp +nd +nd +xl +KB +OG +KB +Sv +Sv +KB +OQ +WY +xW +SP +kj +eJ +Ay +CQ +wC +RI +CQ +CQ +aq +Rb +Rb +Dr +de +zb +zb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(54,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +vu +vu +vu +vu +vu +vu +Ce +GC +Ti +vu +vu +vu +vu +vu +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +xl +vk +vk +vk +vk +vk +vk +vk +xl +FY +FY +FY +FY +FY +FY +FY +KB +OG +KB +Sv +Sv +KB +SN +WY +xW +SP +Xv +Xv +Hl +bq +wC +xS +bq +bq +Az +hE +hE +AP +Bv +Yw +zb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(55,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +GC +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Sv +xl +vk +vk +vk +gO +vk +vk +vk +xl +FY +FY +FY +kR +FY +FY +FY +KB +OG +KB +Sv +Sv +KB +JW +WY +JS +Xv +Xv +Xv +Hl +bq +wC +xS +bq +bq +Az +hE +Ms +KF +Bv +kz +zb +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(56,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +vu +vu +vu +vu +vu +GC +vu +vu +vu +vu +vu +vu +xl +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +xl +xl +xl +xl +fk +xl +xl +xl +fk +KB +OG +KB +KB +KB +KB +KB +Hj +KB +KB +KB +KB +KB +bq +wC +xS +bq +bq +xl +xl +xl +xl +xl +xl +aq +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(57,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +vu +vu +Hl +Hl +Hl +Hl +Hl +Xe +Hl +Hl +Hl +Hl +vu +vu +xl +Sv +Sv +KB +Cm +tS +tS +Nj +tS +tS +tS +tS +Ks +tS +tS +Nj +tS +tS +tS +KB +Sv +xl +WF +ss +hs +xl +WF +ss +hs +KB +OG +KB +Gi +Xu +IQ +KB +WY +WY +WY +WY +WY +KB +bq +wC +xS +bq +bq +xl +IS +YR +jy +jS +YN +fb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(58,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +HR +KB +KB +bA +bq +sr +sr +HF +Jg +UO +bA +KB +KB +HR +KB +KB +Sv +KB +tS +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +tS +KB +Sv +xl +hv +hs +hs +xl +hv +hs +hs +KB +OG +KB +qp +Km +Xu +Hn +WY +WY +iI +cT +nr +KB +bq +wC +xS +bq +bq +xl +we +we +we +we +SW +fb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(59,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +bq +bq +RU +KB +bq +kn +kn +kn +bP +kn +kn +bq +KB +RU +bq +bq +KB +Sv +KB +tS +lV +tS +tS +tS +tS +tS +tS +af +tS +tS +tS +tS +lV +tS +KB +Sv +xl +qO +hs +iF +xl +qO +hs +iF +KB +OG +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bq +Qh +HQ +bq +bq +xl +we +we +we +we +Il +fb +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(60,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +bq +bq +bq +KB +bq +bq +uS +bq +CQ +bq +bu +bq +KB +bq +bq +bq +KB +Sv +KB +tS +lV +tS +KB +KB +ci +ci +ci +ci +ci +KB +KB +tS +lV +tS +KB +Sv +xl +xl +am +xl +xl +xl +am +xl +KB +fo +OG +OG +OG +OG +OG +fW +fW +fW +fW +fW +qr +hp +bq +wC +bq +hp +xl +xD +mT +mO +pe +fz +fb +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(61,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +mI +bq +bq +HR +bq +bq +bq +UY +CQ +ol +bq +bq +HR +bq +bq +Br +KB +Sv +KB +tS +lV +tS +KB +Fh +Nm +NU +Nm +WO +Nm +Fh +KB +tS +lV +tS +KB +Sv +Sv +xl +vu +xl +Sv +xl +vu +xl +KB +KB +KB +KB +KB +KB +OG +KB +KB +KB +KB +KB +KB +KB +KB +eg +KB +KB +xl +xl +xl +xl +xl +xl +eE +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(62,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +bq +bq +bq +KB +bq +hp +CP +bq +CQ +bq +hp +bq +KB +bq +bq +bq +KB +Sv +KB +tS +lV +tS +vr +WO +YO +Xn +Id +OL +Xn +Xn +Kg +lV +lV +tS +KB +Sv +Sv +xl +vu +xl +Sv +xl +vu +xl +Sv +Sv +Sv +Sv +Sv +KB +OG +KB +Sv +Sv +Sv +Sv +Sv +KB +vB +ZX +vB +KB +NQ +Rn +TJ +xl +td +rX +Hz +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(63,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +Dp +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Kg +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Kg +KB +KB +KB +KB +KB +PV +KB +KB +KB +PV +KB +KB +KB +KB +KB +KB +KB +OG +KB +Sv +Sv +Sv +Sv +Sv +KB +Xx +ZX +Zv +KB +Cp +JH +Rn +Fz +hs +gF +Hz +xl +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +MV +MV +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(64,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +tS +lV +tS +tS +tS +tS +tS +tS +Ks +tS +tS +tS +tS +lV +tS +tS +tS +tS +tS +KB +tS +tS +tS +tS +tS +lV +tS +tS +tS +tS +tS +Ks +tS +tS +tS +tS +tS +tS +tS +tS +qL +qL +fI +OG +KB +Sv +Sv +Sv +Sv +Sv +KB +vO +ZX +Ra +KB +xl +xl +xl +xl +WF +dO +tc +pU +hI +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Sq +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +MV +MV +MV +MV +MV +MV +MV +MV +Lh +Lh +"} +(65,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +tS +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +tS +tS +tS +tS +tS +KB +tS +tS +tS +tS +tS +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +tS +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +KB +Xx +ZX +Zv +KB +lm +lm +lm +xl +hs +hs +hs +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +MV +MV +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(66,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +bJ +tS +tS +tS +CX +tS +af +tS +tS +CX +tS +tS +tS +tS +CX +tS +tS +tS +Cm +KB +Cm +tS +tS +CX +tS +tS +tS +CX +tS +tS +tS +aQ +tS +tS +tS +CX +tS +tS +tS +tS +lV +tS +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +vB +ZX +vB +KB +lm +lm +lm +xl +hs +ij +Nu +xl +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(67,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +Dg +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +sF +sf +GP +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bJ +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +pP +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(68,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +dY +ML +dY +dY +ML +dY +Kb +Kb +Kb +rf +dr +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +Vt +KB +tS +lV +tS +KB +ID +BS +ls +Jb +Jb +bc +bc +bc +TM +uj +Yb +bc +bc +bc +Jb +Jb +cV +BS +FB +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(69,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +BW +lV +lV +tS +KB +eN +Wj +EZ +Wj +Wj +tl +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +CG +EZ +Vl +JR +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(70,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +dr +Kb +Kb +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +tS +lV +tS +KB +Xl +JR +Qm +fm +xT +Lp +AQ +Lp +iN +Ml +so +Lp +dp +Lp +xT +St +iD +eN +uQ +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(71,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +FY +bZ +xl +xl +xl +dY +dY +dY +Kb +pJ +dr +Kb +Kb +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +CU +gI +MB +KB +IP +XO +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +eN +Wj +Gy +Wj +Wj +tl +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +Ds +Gy +nQ +JR +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(72,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +zE +DC +CT +CT +ts +GF +xl +dr +Kb +Kb +Kb +Kb +Kb +Kb +Kb +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +yw +IP +KB +AT +Jf +ob +KB +IP +Qz +IP +KB +IP +uN +IP +KB +tS +lV +tS +KB +WZ +Gt +Gt +Gt +Gt +Ia +Ia +Ia +TM +Ml +Yb +Ia +Ia +Ia +Gt +Gt +Gt +Gt +rx +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(73,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +CT +CT +CT +CT +CT +GF +xl +dY +AG +dY +Kb +Kb +Kb +Uo +dr +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +ze +Bq +BX +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +AC +Ml +eS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(74,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +zE +zE +CT +CT +CT +GF +xl +xl +xl +xl +pb +pb +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +yg +fw +yg +KB +FU +PG +FU +KB +yg +fw +yg +KB +rK +DJ +rK +KB +bJ +lV +tS +KB +ID +BS +ls +Jb +Jb +bc +bc +bc +TM +Ml +Yb +tl +tl +tl +Wj +Wj +Pq +pW +FB +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(75,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +iU +br +xI +CT +CT +Di +xl +xl +vf +dw +VA +VA +dw +vf +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +jW +jW +jW +CZ +AI +wI +AI +nw +jW +jc +jW +lJ +Ox +Ox +Ox +KB +tS +lV +tS +KB +eN +Wj +EZ +Wj +Wj +tl +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +Wj +EZ +Wj +JR +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(76,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +CT +op +LU +WN +TG +qe +xl +xl +VA +VA +VA +VA +VA +VA +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +tS +tS +tS +tS +tS +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +fA +lV +lV +tS +KB +Xl +JR +IG +fm +xT +Lp +AQ +Lp +iN +Ml +so +Lp +dp +Lp +xT +St +Cx +eN +uQ +KB +Sv +KB +wz +cL +aw +Yv +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(77,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +xl +VA +yd +VG +kO +eW +VA +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +UV +UV +UV +OZ +UV +UV +UV +ih +oL +sU +oL +Ly +oL +oL +oL +KB +tS +lV +tS +KB +eN +Wj +Gy +Wj +Wj +tl +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +Wj +Gy +Wj +JR +KB +Sv +KB +wz +cL +aw +sd +SQ +Jv +tY +qg +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(78,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +VA +yd +Le +eW +eW +Gp +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +yg +fw +yg +KB +xx +xk +xx +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +tS +lV +tS +KB +WZ +Gt +Gt +Gt +Gt +Ia +Ia +Ia +TM +Ml +Yb +Ia +Ia +Ia +Gt +Gt +Gt +Gt +rx +KB +Sv +KB +wz +cL +aw +Yv +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(79,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +mJ +Yu +Le +eW +Hc +GZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +QE +Ml +eS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(80,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +hD +IP +KB +IP +uX +IP +KB +IP +GN +IP +KB +IP +kK +IP +KB +tS +lV +tS +KB +RB +FD +xb +be +be +Fm +Fm +Fm +TM +Ml +Yb +tl +tl +tl +NA +NA +aa +sZ +Tc +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(81,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +Jz +cK +ua +bt +Wj +lH +tl +tl +TM +Ml +Yb +tl +tl +tl +Wj +Wj +qV +Wj +Wj +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(82,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bJ +lV +tS +KB +za +Rv +gJ +gJ +fM +gS +wX +gS +Yx +DU +so +Lp +dp +Lp +xT +lK +cj +RZ +pL +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(83,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +Jz +fV +DB +ja +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +tl +Wj +Wj +dL +Wj +Wj +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(84,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +uy +KB +IP +Fu +IP +KB +IP +RA +IP +KB +IP +Lb +IP +KB +IP +fH +IP +KB +TA +lV +tS +KB +GY +dD +dD +dD +dD +Eb +qb +qb +TM +Pc +Yb +tl +tl +tl +MY +MY +MY +MY +bv +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(85,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +uy +uy +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Jo +Pc +mL +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(86,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +dA +KB +KB +ep +lC +ep +KB +ep +lC +ep +KB +sM +Mt +sM +KB +rK +DJ +rK +KB +tS +lV +tS +KB +wy +oD +oD +oD +oD +oD +oD +Wj +XC +Pc +Wj +Fn +wq +xj +Op +Zw +MS +db +UG +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(87,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +CQ +KB +Tf +AI +AI +AI +xO +DG +DG +DG +yM +AI +RP +AI +qY +DY +DY +DY +KB +tS +lV +tS +KB +In +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Pc +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Wj +IZ +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(88,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +cI +wl +dG +ai +xM +tB +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +lV +lV +lV +lV +lV +lV +fA +lV +lV +tS +tB +In +Wj +ZZ +PL +PL +PL +Ym +Wj +Wj +Pc +HC +HC +HC +HC +HC +HC +HC +Wj +Uy +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(89,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +KB +KB +Ir +KB +Lj +xm +xm +xm +Er +UV +UV +UV +Vh +QL +MW +QL +wD +QL +QL +QL +KB +tS +lV +tS +KB +In +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Pc +Wj +Wj +Wj +Wj +Wj +Wj +Wj +Wj +IZ +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(90,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +KB +KB +KB +KB +xx +ZL +xx +KB +xx +xk +xx +KB +ep +Mt +ep +KB +sM +Nn +sM +KB +tS +lV +tS +KB +Mk +Pb +Pb +Pb +Pb +Pb +Pb +Wj +aC +Pc +Wj +aB +XQ +JX +Wl +gX +SG +fq +jO +KB +Sv +KB +wz +cL +aw +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +"} +(91,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +MX +Pc +FH +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +zF +cL +JG +xl +Yv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Jv +Yv +xl +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +Dj +"} +(92,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +uE +IP +KB +IP +dy +IP +KB +IP +Hv +IP +KB +IP +Hv +IP +KB +Ik +lV +tS +KB +pu +Hq +nz +Ot +Ot +gh +gh +gh +TM +Pc +Yb +Fm +Fm +Gf +be +be +xb +FD +cN +KB +Sv +KB +wz +cL +aw +xl +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +Yv +xl +bB +bB +bB +CS +CS +vK +CS +Iz +Dj +Dj +"} +(93,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +TY +Wj +az +xQ +xQ +tl +tl +tl +TM +Pc +Yb +tl +tl +lH +Wj +Wj +BN +Wj +Ts +KB +Sv +KB +wz +cL +aw +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +bB +bB +CS +CS +CS +CS +CS +jo +zK +Dj +Dj +"} +(94,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +bJ +lV +tS +KB +Ui +Ok +rS +yN +xT +Lp +AQ +Lp +iN +Pc +XR +Lp +AQ +Lp +xT +Bx +lx +Jz +FC +KB +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +CS +CS +CS +CS +CS +CS +CS +SM +rG +Dj +Dj +"} +(95,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +Sn +xQ +kE +Wj +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +lH +Wj +Wj +yI +Wj +Ts +KB +Sv +KB +vb +BU +mN +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +MV +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +CS +CS +CS +CS +CS +CS +CS +CS +vK +zr +WR +Dj +Dj +"} +(96,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +GT +IP +KB +IP +me +IP +KB +IP +me +IP +KB +IP +me +IP +KB +tS +lV +tS +KB +Qt +VY +VY +VY +VY +ni +ni +ni +TM +Pc +Yb +qb +qb +Eb +dD +dD +dD +dD +lY +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +MV +MV +MV +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +lz +CS +uf +Dj +Dj +"} +(97,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Xk +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +tS +lV +tS +KB +KB +KB +KB +KB +KB +KB +KB +KB +AC +Pc +eS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +vK +FQ +WR +Dj +Dj +"} +(98,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +rK +eo +rK +KB +rK +DJ +rK +KB +tS +lV +tS +KB +RB +FD +xb +be +be +Fm +Fm +Fm +TM +Pc +Yb +Fm +Fm +Fm +be +be +xb +FD +cN +KB +Sv +KB +wz +cL +aw +Es +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +SM +pC +Zd +Dj +Dj +"} +(99,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +Ox +Ox +Ox +Ox +Ox +Ox +Ox +ZK +Ox +qc +Ox +Ox +Ox +Ox +Ox +KB +tS +lV +tS +KB +Jz +Wj +BN +Wj +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +tl +Wj +Wj +BN +Wj +Ts +KB +Sv +KB +zF +cL +JG +ev +xQ +xQ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +bB +bB +Lh +Lh +Lh +Lh +Lh +Lh +Dj +Dj +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +vK +uK +zK +Dj +Dj +"} +(100,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +tS +tS +tS +tS +tS +tS +tS +tS +tS +lV +lV +lV +lV +lV +lV +fA +lV +lV +tS +KB +za +Ts +TD +JQ +xT +Lp +AQ +FZ +iN +Pc +so +Lp +AQ +Lp +xT +Bx +dj +Jz +FC +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +MV +Sv +Sv +Sv +Lh +Lh +Lh +bB +bB +bB +bB +bB +bB +nT +LE +bB +bB +bB +Lh +Lh +Lh +Lh +Dj +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +vK +rG +Dj +Dj +"} +(101,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +oL +oL +oL +Ly +oL +oL +oL +Ly +oL +sU +oL +Ly +oL +oL +oL +KB +tS +tS +tS +KB +Jz +Wj +yI +Wj +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +tl +Wj +Wj +yI +Wj +Ts +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +fF +mo +mo +mo +mo +ew +mo +mo +KB +Ag +SC +KB +Ag +HX +KB +Ag +HX +KB +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +bB +Am +LE +nT +nT +Am +nT +HM +bB +bB +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +bB +Dj +"} +(102,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zk +KB +Sv +Sv +Sv +Sv +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +rK +DJ +rK +KB +bJ +tS +tS +KB +GY +dD +dD +dD +dD +qb +qb +qb +TM +Pc +Yb +qb +qb +qb +dD +dD +dD +dD +lY +KB +Sv +KB +wz +cL +aw +Es +xQ +xQ +fF +mo +mo +mo +Jt +mo +mo +mo +KB +pd +tM +KB +pd +tM +KB +pd +tM +KB +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +bB +bB +bB +nT +LE +nT +nT +LE +nT +LE +Am +LE +bB +bB +bB +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(103,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +mH +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +AC +Pc +eS +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +zF +cL +JG +ev +xQ +xQ +KB +KB +Ma +KB +KB +KB +Js +mo +KB +LL +Hb +KB +LL +Zp +KB +LL +Hb +KB +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +nT +nT +nT +nT +nT +nT +te +te +te +te +bN +bN +te +te +te +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(104,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ia +KB +Sv +Sv +Sv +Sv +KB +IP +PT +IP +KB +IP +me +IP +KB +IP +me +IP +KB +IP +me +IP +KB +Sv +Sv +Sv +KB +RB +FD +xb +be +be +Fm +Fm +Fm +TM +Pc +Yb +Fm +Fm +Fm +be +be +xb +FD +cN +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +ay +ay +ay +pQ +KB +mo +mo +KB +KB +uJ +KB +KB +uJ +KB +KB +uJ +KB +Lh +Lh +Lh +bB +bB +bB +bB +bB +bB +nT +nT +nT +HM +nT +nT +nT +te +mt +Mq +te +eK +QM +te +Mq +mt +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(105,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ia +KB +Sv +Sv +Sv +Sv +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +IP +IP +IP +KB +Sv +Sv +Sv +KB +Jz +Wj +BN +Wj +Wj +tl +tl +tl +TM +Pc +Yb +tl +tl +tl +Wj +Wj +BN +Wj +Ts +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +ay +ay +ay +ay +KB +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +KB +Lh +Lh +Lh +bB +te +te +te +te +te +hM +te +te +te +nT +nT +nT +te +Ne +KS +aO +PC +PC +aO +KS +sp +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(106,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ia +KB +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +KB +za +Ts +PE +JQ +xT +Lp +AQ +Lp +iN +Pc +so +Lp +AQ +Lp +xT +Bx +NI +Jz +FC +KB +Sv +KB +wz +cL +aw +Es +xQ +xQ +KB +ba +ay +ay +ay +KB +mo +mo +Jt +mo +mo +Jt +np +mo +Jt +mo +mo +KB +Lh +Lh +Lh +bB +te +kD +xe +kD +kD +xs +oC +rN +te +te +nT +nT +te +mu +lL +te +PC +PC +te +lL +mu +te +Sv +bB +CS +FP +CS +FP +CS +FP +CS +FP +CS +FP +CS +FP +CS +bB +Lh +Lh +"} +(107,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +AJ +Gi +KB +AJ +Gi +KB +Sv +Sv +Sv +Sv +Sv +Sv +KB +Jz +Wj +yI +Wj +Wj +tl +tl +tl +TM +iQ +Yb +tl +tl +tl +Wj +Wj +yI +Wj +Ts +KB +Sv +KB +zF +cL +JG +ev +xQ +UX +KB +jP +jP +jP +jP +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Lh +Lh +bB +bB +te +kD +kD +fg +ce +rR +fu +yD +sb +hb +nT +nT +te +te +te +te +PC +tQ +te +te +te +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(108,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Km +Xu +KB +Ve +Km +KB +Sv +Sv +Sv +Sv +Sv +Sv +KB +GY +dD +dD +dD +dD +qb +qb +qb +TM +oQ +Yb +qb +qb +qb +dD +dD +dD +dD +lY +KB +Sv +KB +kd +ga +QO +gd +xQ +xQ +KB +ay +ay +ay +ay +KB +aA +JY +KR +KR +KB +ay +ay +ay +ay +ay +kX +KB +Lh +bB +bB +nT +sA +kD +qT +fg +xs +rN +el +VJ +hF +hb +nT +nT +Am +te +AM +gp +PC +PC +oS +om +te +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(109,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +qv +KB +wa +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +HL +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +il +Kp +ug +gd +xQ +xQ +KB +KB +xJ +xJ +KB +KB +qM +mo +mo +mo +KB +KB +KB +KB +KB +KB +KB +KB +Lh +bB +nT +nT +te +Bg +Ez +ck +yQ +rN +el +rN +hF +hb +nT +nT +nT +te +yG +gp +PC +PC +oS +IA +te +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(110,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +vp +Xu +vs +qK +Xu +Xu +tS +tS +Nj +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +tS +qL +tS +tS +tS +tS +tS +tS +tS +tS +tS +KB +Sv +KB +il +vF +ug +Es +xQ +xQ +fx +Wd +Wd +Wd +Wd +RM +Gj +mo +mo +mo +RM +ay +ay +tZ +ay +ay +KB +Lh +Lh +bB +nT +nT +te +rN +YX +nj +Hk +rN +el +rN +hF +hb +nT +nT +te +te +te +te +eh +PC +te +te +te +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(111,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Iv +qK +qK +qK +qK +qK +HJ +HJ +HJ +HJ +HJ +HJ +GE +HJ +HJ +qL +lt +qL +qL +qL +lt +qL +qL +qL +lt +qL +qL +qL +lt +qL +qL +qL +KB +Sv +KB +VC +UL +Fr +ev +ul +xQ +fx +Wd +Wd +Wd +Wd +RM +Gj +mo +mo +mo +RM +ay +ay +ay +ay +ay +KB +Lh +Lh +bB +HM +LE +te +Ur +GJ +GJ +ri +AS +sa +ek +rl +hb +nT +nT +te +mt +Mq +te +PC +PC +te +Mq +mt +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(112,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +wa +KB +wa +KB +KB +Wn +Wn +Nb +Wn +Wn +Wn +KB +KB +KB +PU +KB +KB +KB +PU +KB +KB +KB +PU +KB +KB +KB +PU +KB +KB +KB +PU +KB +Sv +KB +pt +iS +uH +gw +xQ +xQ +KB +KB +pi +pi +KB +KB +Yo +mo +mo +mo +KB +KB +KB +KB +ay +IL +KB +Lh +Lh +bB +Am +nT +te +te +MR +MR +lZ +xs +rN +rN +te +te +nT +nT +te +Ne +KS +aO +PC +PC +aO +KS +sp +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(113,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +AB +qK +KB +qK +vs +KB +Up +Vn +Vn +Vn +Vn +ZD +KB +nG +vn +xG +KB +nG +vn +xG +KB +nG +Yq +xG +KB +nG +Yq +xG +KB +nG +Yq +xG +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +ew +JK +xo +mo +KB +aA +Su +KR +KR +KB +SR +Kj +KB +ay +ay +KB +Lh +Lh +bB +nT +nT +HM +te +Sg +Ky +hF +vy +GJ +DX +te +nT +nT +nT +te +mu +lL +te +PC +PC +te +lL +mu +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(114,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Pw +tX +KB +Pw +tX +KB +al +Vn +Vn +Vn +Vn +Vn +KB +mI +Wx +vm +KB +mI +Wx +vm +KB +mI +Wx +vm +KB +mI +Wx +vm +KB +mI +Wx +vm +KB +Sv +KB +wz +cL +aw +Es +xQ +xQ +KB +Js +mo +Oa +mo +KB +KB +KB +KB +KB +KB +ay +ay +KB +ay +ay +KB +Lh +Lh +bB +LE +Am +LE +te +hb +hb +oc +kW +hb +hb +te +nT +nT +nT +te +te +te +te +PC +PC +te +te +te +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(115,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +Vn +Vn +Vn +Vn +Vn +Vn +KB +Df +fB +Jn +KB +Df +iH +El +KB +Df +iH +uR +KB +Df +Xg +NG +KB +Df +iH +El +KB +Sv +KB +zF +cL +JG +ev +xQ +xQ +KB +mo +mo +mo +mo +KB +Zj +mS +KB +mo +KB +ay +pN +KB +RM +RM +KB +Sv +Sv +bB +nT +nT +nT +nT +nT +nT +un +tJ +nT +nT +nT +nT +nT +nT +nT +nT +dX +te +PC +PC +KE +jQ +eB +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(116,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +FR +vv +ZQ +oz +UE +UE +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +mo +mo +mo +mo +KB +ut +jZ +js +mo +UN +ay +hU +KB +tb +KT +Qx +Qx +gQ +RE +vL +vL +vL +vL +vL +vL +PC +PC +vL +vL +vL +vL +vL +vL +vL +vL +vL +fh +PC +PC +Rz +wR +Ns +te +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(117,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +KB +jg +KB +KB +KB +KB +KB +KB +mo +KB +KB +KB +KB +ws +YW +iW +YW +gs +YP +NX +NX +NX +NX +NX +NX +NX +NX +NX +NX +NX +PC +PC +NX +NX +NX +NX +fh +PC +PC +Rz +jQ +jQ +te +Sv +bB +CS +aM +Fs +Lv +pX +CS +CS +aM +Fs +Lv +pX +CS +CS +bB +Lh +Lh +"} +(118,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Hf +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +Es +xQ +xQ +do +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +KB +Sv +rh +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +un +tJ +nT +nT +nT +nT +te +PC +PC +te +rc +te +te +Sv +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(119,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Pp +Mb +Mb +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +sw +yS +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +zF +cL +JG +ev +xQ +xQ +do +mo +mo +mo +mo +ND +mo +mo +mo +mo +mo +mo +KB +Sv +Sv +Sv +bB +bB +bB +bB +by +by +by +by +by +by +by +by +by +by +dP +un +tJ +nT +nT +HM +te +te +PC +PC +qu +WJ +fJ +te +bB +bB +CS +aM +po +Lv +xn +CS +CS +aM +po +Lv +xn +CS +CS +bB +Lh +Lh +"} +(120,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +KB +KB +KB +KB +KB +Hl +Hl +ZO +ZO +Hl +Hl +KB +Lh +Lh +bB +bB +zI +xB +xB +xB +zI +xB +xB +xB +zI +xB +xB +xB +zI +Ql +un +tJ +nT +nT +te +te +Hx +Hx +Hx +Hx +VZ +DL +tq +HM +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(121,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +gd +xQ +xQ +KB +Sv +Sv +Sv +Sv +KB +cy +xQ +xQ +xQ +xQ +Xo +KB +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +te +DL +DL +DL +DL +DL +DL +QK +tq +Am +Ql +CS +aM +hf +Lv +Fx +CS +CS +aM +hf +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(122,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +Es +xQ +xQ +KB +Sv +Sv +Sv +Sv +KB +YA +xQ +xQ +xQ +xQ +Tk +KB +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +gA +DL +DL +DL +DL +DL +DL +DL +tq +LE +Ql +CS +aM +po +SX +zZ +CS +CS +aM +po +SX +zZ +CS +CS +bB +Lh +Lh +"} +(123,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +vb +BU +mN +KB +KB +KB +KB +KB +KB +KB +KB +KB +sJ +OK +VB +Lw +RY +Ww +KB +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +fL +DL +DL +DL +DL +DL +as +te +te +nT +Ql +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(124,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +KB +KB +KB +Lh +Lh +bB +Ql +zI +xB +xB +UT +UT +UT +UT +UT +UT +UT +xB +xB +zI +Ql +un +tJ +nT +te +te +DL +QK +QK +QK +DL +te +te +nT +LE +Ql +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(125,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +Sm +Bi +Bi +PF +Bi +Bi +Sm +xB +xB +xB +Ql +un +tJ +nT +nT +te +tq +tq +tq +tq +tq +te +nT +LE +Am +Ql +CS +aM +XV +Bs +ig +CS +CS +aM +XV +Bs +ig +CS +CS +bB +Lh +Lh +"} +(126,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +wf +wf +wf +bb +EH +gT +wf +wf +wf +xB +xB +Ql +un +tJ +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +Ql +CS +Li +TT +Ap +SL +CS +CS +Li +TT +Ap +SL +CS +CS +bB +Lh +Lh +"} +(127,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +zF +cL +JG +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +wf +wF +gC +wf +Ph +wf +gC +GD +wf +xB +xB +Ql +un +tJ +PC +PC +PC +PC +PC +PC +PC +PC +PC +PC +PC +nT +mj +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(128,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +zI +xB +iu +wF +se +wf +PK +wf +se +Kl +wf +xB +zI +Ql +un +tJ +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +Ql +CS +aM +Fs +Lv +pX +CS +CS +aM +Fs +Lv +pX +CS +CS +bB +Lh +Lh +"} +(129,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +wf +wf +Ln +wf +BV +wf +Ln +wf +wf +xB +xB +Ql +un +tJ +nT +te +te +xu +xu +xu +te +te +te +LE +nT +LE +Ql +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(130,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +bB +bB +Ql +xB +xB +xB +wf +aK +se +BV +se +Jw +wf +xB +xB +xB +mj +un +tJ +nT +te +Sc +Of +QK +pm +tg +yj +te +nT +Am +nT +Ql +CS +aM +po +Lv +xn +CS +CS +aM +po +Lv +xn +CS +CS +bB +Lh +Lh +"} +(131,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +zF +cL +JG +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +bB +Sb +Ql +xB +xB +xB +wf +OP +BV +BV +BV +hL +wf +xB +xB +xB +Ql +un +tJ +nT +te +tJ +DL +DL +DL +un +Du +xu +LE +nT +HM +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(132,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +bB +bB +Ql +zI +xB +xB +Od +se +BV +Be +BV +BV +Od +xB +xB +zI +Ql +un +PC +vR +Ie +OW +vL +vL +vL +Tl +ct +xu +nT +nT +LE +bB +CS +aM +hf +Lv +Fx +CS +CS +aM +hf +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(133,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +eY +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +wf +OP +BV +BV +BV +hL +wf +xB +xB +xB +Ql +un +tJ +nT +te +AL +PC +QM +Xb +ps +sy +te +Am +nT +bB +bB +CS +aM +po +SX +zZ +CS +CS +aM +po +SX +zZ +CS +CS +bB +Lh +Lh +"} +(134,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +oF +aw +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +wf +aK +se +BV +se +Jw +wf +xB +xB +xB +Ql +un +tJ +nT +te +PC +PC +pn +te +te +te +te +nT +bB +bB +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(135,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +rM +AR +hG +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +zF +cL +JG +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +wf +wf +pF +rB +mZ +wf +wf +xB +xB +xB +Ql +un +tJ +nT +te +PC +PC +Tm +te +Uq +qW +te +LE +bB +Sv +bB +CS +aM +po +Lv +Fx +CS +CS +aM +po +Lv +Fx +CS +CS +bB +Lh +Lh +"} +(136,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +Py +Py +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +zI +xB +xB +xB +wf +Qo +yk +Qo +wf +yc +xB +xB +zI +Ql +un +tJ +dX +te +PC +PC +PC +Ie +tr +mc +te +nT +bB +Lh +bB +CS +aM +XV +Bs +ig +CS +CS +aM +XV +Bs +ig +CS +CS +bB +Lh +Lh +"} +(137,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +lh +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +AD +ay +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +PC +tQ +te +te +te +te +te +bB +bB +Lh +bB +CS +Li +TT +Ap +SL +CS +CS +Li +TT +Ap +SL +CS +CS +bB +Lh +Lh +"} +(138,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +hG +PA +Ws +Ij +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +HM +te +NX +sS +te +mu +Ac +uO +te +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(139,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +ue +DL +DL +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +zF +cL +JG +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +xB +Ql +un +tJ +nT +te +fL +un +te +Im +Ni +iC +te +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(140,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Ql +zI +xB +xB +xB +zI +xB +xB +xB +zI +xB +xB +xB +zI +Ql +un +tJ +nT +te +nO +un +Ie +PC +xF +mt +te +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(141,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +cL +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +Jq +by +by +by +by +by +by +by +by +by +by +by +by +by +Jq +un +tJ +nT +te +te +te +te +te +te +te +te +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(142,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +xd +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +bB +bB +bB +bB +bB +bB +nT +Am +LE +nT +nT +LE +PC +Re +Re +NX +Ja +nT +nT +nT +nT +LE +nT +bB +bB +bB +bB +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(143,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +zF +xd +JG +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +bB +bB +MT +nT +LE +nT +nT +LE +nT +nT +hc +nT +nT +nT +nT +nT +LE +nT +Am +nT +nT +bB +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(144,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +hG +ue +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +xd +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +bB +te +te +te +te +te +te +te +te +te +QI +te +te +te +Am +nT +nT +nT +nT +nT +bB +bB +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(145,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +wz +xd +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +bB +te +UA +fL +un +PC +PC +PC +PC +lj +Ax +NX +bf +te +nT +nT +nT +LE +nT +LE +bB +Lh +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(146,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +wz +xd +aw +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +bB +te +vL +vL +aP +Xc +PC +PC +PC +PC +tJ +DL +nM +xu +nT +nT +HM +nT +Am +nT +bB +Lh +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(147,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +kQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +vb +jq +mN +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +bB +te +QI +te +te +te +PC +Tm +zv +QM +tJ +DL +QK +xu +nT +nT +nT +LE +nT +nT +bB +Lh +Lh +Lh +Lh +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(148,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Yn +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Gg +wz +Pa +aw +Gg +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +bB +te +PC +hu +mu +te +QI +te +te +VI +tJ +DL +rC +xu +nT +LE +nT +Am +nT +nT +bB +Lh +Lh +Lh +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(149,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +te +te +te +te +te +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +uz +uz +IB +uz +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +ay +wz +iZ +aw +ay +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +bB +te +uu +Zc +KS +te +wc +Ko +te +Du +OW +vL +Cz +te +nT +nT +nT +nT +nT +bB +bB +Lh +Lh +Lh +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(150,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Uc +te +te +PC +PC +te +te +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +uz +uz +fP +HH +DZ +US +uz +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +wz +xd +aw +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +bB +te +mt +lL +Em +te +kG +FT +te +sy +PC +yp +eK +te +LE +nT +nT +nT +LE +bB +Lh +Lh +Lh +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(151,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +wu +hV +PC +PC +PC +ru +te +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +mM +mM +mM +ah +gg +DZ +HH +yz +uz +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +te +te +te +te +te +te +te +te +te +xu +xu +te +te +nT +nT +LE +nT +bB +bB +Lh +Lh +Lh +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(152,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +wu +OR +PC +PC +PC +mm +te +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +mM +mM +mM +mM +mM +Mw +mM +Mw +mM +mM +HH +AK +Np +mM +uz +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +LE +nT +Am +nT +Am +HM +bB +bB +bB +Lh +Lh +Lh +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(153,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +bB +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +ue +PA +PA +PA +PA +wu +OR +PC +PC +PC +yp +te +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +HH +ko +HH +mM +Mw +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +bB +bB +bB +bB +bB +bB +bB +bB +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(154,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +bB +bB +Sv +bB +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PP +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +wu +OR +PC +PC +PC +te +te +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Ow +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Mw +HH +mM +mM +mM +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +wz +xd +aw +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(155,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +bB +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +wu +OR +PC +PC +PC +te +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +nT +nT +fZ +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +bB +bB +bB +Sv +Sv +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(156,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +wu +te +OR +OR +OR +te +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +Ow +nT +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Mw +mM +mM +mM +mM +mM +bB +bB +Sv +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(157,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PP +PA +Qf +oj +oj +oj +oj +CW +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +nT +FG +us +nT +Go +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +Mw +mM +mM +mM +mM +mM +mM +mM +mM +Cf +nT +bB +bB +Sv +Sv +KB +ay +ay +wz +xd +aw +JN +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +Ci +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(158,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +ey +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +oo +uT +uT +oo +oo +oo +oo +oo +oo +kI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +Ow +nT +na +nT +nT +FG +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +Go +nT +bB +Sv +Sv +KB +ay +rF +wz +xd +aw +pg +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(159,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +SY +hY +hY +hY +hY +xl +xl +xl +uV +xl +xl +xl +xl +hY +xl +xl +uV +xl +xl +xl +BY +xH +xH +ZP +iw +hY +hY +oo +oo +kI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +fZ +nT +Go +nT +nT +na +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mW +nT +fZ +bB +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Lh +Lh +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(160,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +pB +hY +hY +hY +hY +xl +Kx +jG +vu +sq +Tp +Tp +xl +hY +xl +yE +IP +IP +kw +ZM +BY +hY +hY +ao +GR +hY +hY +hY +hY +hY +kI +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +nI +jX +nI +EJ +JE +EJ +EJ +JE +EJ +EJ +JE +EJ +EJ +JE +pv +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +EF +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +FG +na +nT +nT +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +nT +nT +nT +bB +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(161,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EP +hY +hY +hY +xl +nL +vu +gi +vu +vu +pr +xl +md +xl +cs +IP +IP +Yy +KO +BY +hY +hY +Gh +Mj +hY +hY +hY +hY +hY +hY +nR +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +FG +na +nT +Ow +nT +nT +FG +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +nT +nT +FG +bB +Sv +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(162,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Hi +hY +hY +hY +hY +xl +Ew +jG +jG +dF +Tp +Tp +xl +hY +xl +fD +IP +IP +FF +Kk +BY +hY +hY +vI +Wz +hY +hY +hY +hY +hY +CC +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hq +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +fZ +nT +nT +na +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +pD +mM +mM +Cf +qn +qn +Xa +cp +bB +Sv +Sv +KB +ay +rF +wz +xd +aw +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(163,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +SY +hY +hY +hY +hY +xl +xl +xl +km +xl +xl +xl +xl +hY +xl +xl +km +xl +xl +xl +BY +xH +xH +ZP +iw +hY +hY +VQ +VQ +CC +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +nT +FG +nT +nT +nT +fZ +nT +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +nT +FG +nT +vw +bB +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(164,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +ar +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +VQ +tD +tD +VQ +VQ +VQ +VQ +VQ +VQ +CC +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +te +te +te +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +JI +na +nT +FG +nT +sC +nT +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +Cf +nT +nT +nT +fZ +AA +bB +bB +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +EA +Na +Na +Na +Iw +Na +Na +zR +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(165,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PP +PA +PA +PA +PA +cR +te +ES +PA +PA +hG +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +fZ +ne +nT +nT +nT +FG +us +Cf +mM +mM +mM +mM +mM +mM +mM +mM +mM +mM +Cf +Go +nT +nT +nT +nT +nT +QB +Rs +bB +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(166,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +nk +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +HA +te +xE +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +FG +Ow +nT +nT +FG +Go +nT +nT +Ow +nT +Cf +mM +mM +mM +mM +mM +mM +mM +Cf +Cf +nT +nT +nT +FG +us +nT +nT +FG +vw +bB +Sv +KB +ay +rF +mG +Mu +eH +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(167,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +cR +te +ES +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +nT +na +nT +nT +FG +na +Cf +mM +mM +mM +Cf +mM +mM +Cf +Cf +nT +nT +na +nT +nT +fZ +nT +nT +Rw +hS +bB +Sv +KB +ay +KB +jf +Mu +Xm +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +zR +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(168,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +bB +bB +bB +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +te +te +te +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +fZ +nT +NB +nT +fZ +EK +nT +nT +Cf +Cf +Cf +Cf +mM +Cf +Cf +nT +nT +nT +fZ +nT +nT +nT +nT +nT +nT +vw +fZ +bB +Sv +KB +ay +ay +Wy +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(169,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +bB +bB +Sv +bB +bB +bB +EJ +IJ +gK +HN +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +TI +PA +PA +nk +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +Oq +nT +nT +FG +nT +nT +nT +FG +us +nT +na +nT +Cf +mM +nT +nT +fZ +nT +nT +us +nT +nT +FG +nT +nT +vw +nT +bB +Sv +KB +ay +ay +vU +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(170,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +PA +ZH +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +Ji +zu +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +Mn +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +na +sL +EG +na +nT +nT +nT +nT +nT +nT +Ow +nT +nT +nT +nT +nT +nT +nT +FG +nT +fZ +nT +nT +fZ +nT +vw +FG +bB +bB +KB +ay +rF +wz +mR +aw +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(171,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +bB +bB +Sv +Sv +Sv +bB +bB +bB +bB +PA +PA +Fl +HN +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Ai +nT +nT +Go +nT +nT +nT +fZ +na +nT +FG +nT +nT +FG +na +nT +qq +nT +na +nT +nT +nT +nT +nT +na +nT +Ei +nT +nT +bB +nb +ay +KB +zF +xd +XZ +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(172,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +bB +bB +bB +bB +bB +PA +PA +hG +PA +PA +PA +ZH +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +FG +nT +nT +nT +nT +FG +nT +nT +nT +nT +nT +nT +nT +nT +nT +FG +nT +nT +nT +nT +nT +FG +Ow +nT +QB +Xa +qn +OM +nb +ay +ay +hi +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Iw +Na +Na +Na +EA +Na +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +zR +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +LE +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(173,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +Dx +dR +PA +PA +PA +PA +Ug +Zg +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +fZ +nT +fZ +nT +us +nT +na +nT +nT +nT +fZ +nT +nT +FG +nT +nT +nT +nT +nT +fZ +nT +nT +us +nT +FG +nT +BM +Xq +nb +AD +ay +mG +Mu +eH +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(174,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Dx +dR +PA +PA +PA +ZH +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +nT +na +nT +nT +FG +nT +nT +nT +na +nT +nT +us +nT +nT +FG +nT +Ow +nT +Go +nT +nT +nT +nT +bB +bB +nb +ay +rF +mG +Mu +eH +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +bB +bB +bB +nT +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(175,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Dx +hk +hk +hk +Zg +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +ue +PA +PA +PA +PA +Mn +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +FG +QP +nT +FG +Ow +nT +nT +nT +FG +nT +nT +nT +fZ +nT +nT +nT +na +nT +nT +FG +nT +nT +nT +fZ +bB +Sv +KB +ay +KB +zF +xd +XZ +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +LE +bB +bB +bB +bB +nT +nT +FG +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(176,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +hG +PA +PA +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Ow +QP +na +nT +nT +nT +nT +fZ +nT +us +nT +nT +nT +nT +fZ +nT +nT +nT +fZ +nT +nT +nT +nT +nT +nT +FG +bB +bB +Sv +KB +ay +ay +wz +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Iw +Na +Na +Na +fY +Na +Na +Na +Iw +Na +Na +Na +EA +Na +Na +Na +Na +LE +nT +nT +Ql +nT +nT +Am +nT +LE +Am +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(177,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +ue +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +Mn +PA +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +us +nT +nT +nT +nT +nT +nT +FG +nT +Go +nT +nT +nT +na +nT +FG +nT +nT +nT +nT +nT +fZ +nT +nT +bB +bB +Sv +Sv +KB +ay +ay +hi +xd +wJ +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +nT +nT +LE +LE +Ql +nT +LE +nT +nT +nT +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(178,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PP +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +Go +nT +FG +nT +us +nT +nT +na +nT +nT +nT +FG +nT +nT +us +Go +nT +FG +nT +nT +nT +na +nT +bB +Sv +Sv +Sv +KB +ay +rF +wz +xd +rT +rF +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +nT +nT +nT +nT +Ql +nT +Am +nT +nT +nT +LE +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(179,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +nT +nT +nT +na +nT +nT +nT +fZ +nT +nT +nT +nT +Ow +na +nT +nT +nT +nT +nT +FG +us +nT +bB +bB +bB +Sv +Sv +KB +ay +KB +zF +xd +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +nT +nT +nT +nT +mj +nT +nT +nT +nT +nT +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(180,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +FG +nT +nT +nT +FG +nT +nT +nT +nT +FG +nT +fZ +nT +nT +nT +nT +fZ +nT +Go +bB +bB +bB +Sv +Sv +Sv +Sv +KB +ay +JN +mG +Mu +eH +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +Iw +Na +Na +Na +EA +Na +Na +Na +nT +LE +nT +nT +Ql +nT +LE +nT +nT +nT +Am +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(181,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +nT +fZ +nT +nT +nT +na +nT +nT +nT +nT +nT +nT +nT +FG +nT +na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +cb +Zf +Mu +Kn +JN +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +nT +nT +LE +Ql +nT +nT +Am +nT +LE +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(182,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +bB +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +hG +PA +PA +PA +PA +hG +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +nT +nT +Ow +nT +us +nT +nT +FG +us +Ow +nT +nT +FG +nT +nT +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +jV +mR +aw +pg +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +LE +bB +bB +bB +nT +nT +nT +nT +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(183,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +nT +nT +nT +na +nT +nT +nT +nT +nT +nT +nT +FG +us +nT +na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +zF +ha +JG +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +bB +bB +bB +bB +Sv +bB +bB +bB +nT +Am +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(184,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +nT +Go +nT +nT +nT +nT +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +JN +wz +mR +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +zR +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Iw +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +LE +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(185,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +Mn +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +cb +Wy +Zo +Sk +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +VR +VR +mn +VR +zQ +zQ +zQ +zQ +zQ +zQ +Na +Na +Na +Na +Na +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +nT +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(186,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +hG +ue +PA +PA +PA +PA +PA +PA +PA +PA +PA +te +te +te +PA +PA +PA +PA +PA +PA +Mn +PA +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +vU +xd +aw +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +vd +wM +wM +zQ +wb +zH +kr +Wk +zQ +Na +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(187,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +cR +te +ES +PA +PA +PA +PA +PA +PA +Mn +PA +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +jf +Mu +IF +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +LS +uL +zQ +EY +kr +kr +kr +zQ +Na +Na +Na +Na +Na +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(188,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +HA +te +xE +PA +PA +PA +PA +Sv +vu +iX +vu +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +Zf +Mu +Kn +JN +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +GM +zQ +kr +kr +kr +kr +zQ +Na +Na +Na +zR +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(189,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +cR +te +ES +PA +PA +PA +bB +Sv +vu +iX +vu +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +jY +gr +Ao +cb +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +zQ +NY +eM +kr +kr +ta +Na +Na +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(190,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +ue +PA +PA +PA +te +te +te +PA +PA +bB +bB +Sv +vu +iX +vu +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +jF +Mu +eH +TO +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +zQ +zQ +zQ +zQ +zQ +zQ +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(191,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +PA +PA +PA +PP +PA +PA +PA +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +Sv +zc +kl +zc +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +Ex +Vz +pH +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(192,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +nI +nI +nI +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +Sv +cQ +yZ +Av +yZ +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Cy +Cy +Mr +oe +Mg +Cy +Cy +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(193,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +nI +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +Ec +mG +Mu +Ao +Zb +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(194,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +nI +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +jF +gr +Kn +Te +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(195,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +jf +gr +IF +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(196,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +hG +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +tP +RR +yA +eH +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(197,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +IX +Mu +Ao +Ec +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(198,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +hG +ue +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +jY +gr +eH +rF +ay +KB +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(199,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +Ex +gr +IF +KB +ay +KB +xl +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(200,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PP +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +mG +LC +Ao +gz +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(201,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +jF +Mu +eH +Ec +ay +KB +xl +wZ +MB +MB +MB +MB +MB +Qb +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(202,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +EJ +EJ +EJ +EJ +EJ +EJ +EJ +pv +PA +PA +PA +PA +PA +PA +PA +PA +PA +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +px +Zf +gr +Fi +Wc +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(203,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +EJ +EJ +EJ +EJ +EJ +EJ +IJ +HV +PA +ue +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +Ex +Mu +IF +KB +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(204,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +EJ +EJ +EJ +EJ +pv +PA +PA +hG +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +Ec +mG +Mu +je +ma +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(205,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +EJ +EJ +pv +PA +PA +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +nJ +tf +GV +Ec +ay +KB +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(206,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +PA +PA +PA +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +mG +tf +GV +rF +ay +ay +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +FP +CS +FP +CS +FP +CS +FP +CS +FP +CS +FP +CS +bB +Lh +Lh +"} +(207,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +bB +bB +bB +bB +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +KB +qI +YS +Xm +KB +wL +KH +xl +wZ +MB +MB +MB +MB +MB +MB +MB +MB +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(208,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +nJ +tf +eH +ay +ay +ay +xl +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +wZ +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(209,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +mG +Mu +pw +ay +ay +KB +xl +xl +xl +sG +xl +xl +xl +xl +xl +xl +xl +xl +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(210,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +nJ +Mu +GV +ay +ay +KB +ay +ay +ay +MI +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(211,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ay +WK +tf +Mf +ay +ay +KB +ay +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(212,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Un +ay +ay +sx +ay +ay +ay +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(213,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +rF +ay +sx +ay +rF +ay +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(214,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +Cy +uA +Cy +KB +Hp +KB +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(215,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +ay +Cy +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(216,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(217,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +yZ +Av +yZ +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(218,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(219,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(220,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +sx +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(221,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Cy +uA +Cy +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(222,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +sx +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +sx +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(223,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +VT +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Oi +AD +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(224,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +vo +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(225,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +ay +ST +ay +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(226,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +ay +ST +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(227,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +Zb +qt +ay +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(228,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +KB +KB +KB +KB +KB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(229,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(230,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(231,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(232,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(233,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(234,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(235,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(236,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(237,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(238,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(239,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(240,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(241,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(242,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(243,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(244,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(245,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +CS +bB +Lh +Lh +"} +(246,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +CS +pC +CS +CS +CS +SM +CS +CS +CS +bB +Lh +Lh +"} +(247,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +SM +CS +CS +CS +CS +CS +CS +CS +CS +lz +CS +bB +Lh +Lh +"} +(248,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +lz +CS +CS +CS +CS +lz +CS +pC +CS +CS +CS +bB +Lh +Lh +"} +(249,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +pC +CS +CS +pC +CS +SM +CS +CS +CS +lz +CS +CS +bB +Lh +Lh +"} +(250,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +CS +CS +CS +lz +pC +CS +CS +pC +CS +CS +pC +CS +bB +Lh +Lh +"} +(251,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +CS +FP +lz +FP +CS +FP +lz +FP +SM +FP +lz +FP +SM +bB +Lh +Lh +"} +(252,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +bB +gu +gu +tm +gu +gu +gu +gu +gu +tm +gu +gu +tm +gu +bB +Lh +Lh +"} +(253,1,1) = {" +Lh +Dj +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +EJ +bB +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Sv +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Lh +Lh +"} +(254,1,1) = {" +Lh +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Dj +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +"} +(255,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +"} diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm index bad2d094eb4c66..7ec1338d0c0a38 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/RandomZLevels/moonoutpost19.dmm @@ -1176,9 +1176,6 @@ /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) "il" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, /obj/item/chair{ pixel_x = 5; pixel_y = 5 @@ -1191,6 +1188,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, +/obj/machinery/newscaster/directional/west, /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) "io" = ( @@ -1212,10 +1210,7 @@ /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) "is" = ( -/obj/structure/fence/post{ - dir = 4 - }, -/obj/structure/sign/warning, +/obj/structure/sign/warning/directional/north, /turf/open/misc/asteroid/moon{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, @@ -1440,12 +1435,8 @@ /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) "ki" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD"; - pixel_x = -32 - }, /obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/sign/warning/vacuum/directional/west, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) "kj" = ( @@ -1943,14 +1934,9 @@ /turf/open/floor/mineral/titanium/yellow, /area/awaymission/moonoutpost19/arrivals) "mJ" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A beacon used by a teleporter."; - icon = 'icons/obj/devices/tracker.dmi'; - icon_state = "beacon"; - name = "tracking beacon" - }, -/obj/effect/landmark/awaystart/moonoutpost, -/turf/open/floor/mineral/titanium/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/directional/north, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) "mK" = ( /obj/machinery/door/airlock/titanium{ @@ -2885,12 +2871,10 @@ }, /area/awaymission/moonoutpost19/mines) "si" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, /obj/structure/alien/weeds, /obj/effect/turf_decal/tile/purple, /obj/structure/cable, +/obj/structure/sign/warning/biohazard/directional/east, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) "sn" = ( @@ -3860,14 +3844,6 @@ }, /turf/open/floor/carpet/red, /area/awaymission/moonoutpost19/arrivals) -"yT" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) "yV" = ( /turf/open/misc/asteroid/moon, /area/awaymission/moonoutpost19/main) @@ -3983,12 +3959,8 @@ }, /area/awaymission/moonoutpost19/research) "zK" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD"; - pixel_y = 32 - }, /obj/effect/turf_decal/lunar_sand/plating, +/obj/structure/sign/warning/vacuum/directional/north, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) "zN" = ( @@ -4621,10 +4593,10 @@ }, /area/awaymission/moonoutpost19/main) "DS" = ( -/obj/structure/fence{ - dir = 4 +/obj/structure/flora/rock/style_random{ + pixel_y = -2 }, -/obj/structure/sign/warning, +/obj/structure/sign/warning/directional/north, /turf/open/misc/asteroid/moon{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, @@ -5162,13 +5134,11 @@ /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) "HY" = ( -/obj/structure/sign/departments/science{ - pixel_y = 32 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/purple/anticorner{ dir = 1 }, +/obj/structure/sign/departments/science/directional/north, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) "Ia" = ( @@ -33674,7 +33644,7 @@ My ld mc mt -mJ +mI mt mc ld @@ -35472,8 +35442,8 @@ hI My My My -yT -Ue +iM +mJ iM My My @@ -36460,7 +36430,7 @@ LG dA My My -DS +dA My My My @@ -39801,6 +39771,7 @@ My My My My +Jb is My My @@ -39814,7 +39785,6 @@ My My My My -My ea en en @@ -44688,8 +44658,8 @@ dA My My My +YX DS -Wg My My My diff --git a/_maps/RandomZLevels/museum.dmm b/_maps/RandomZLevels/museum.dmm index 4c7fe9782de328..ab6be28cdfb432 100644 --- a/_maps/RandomZLevels/museum.dmm +++ b/_maps/RandomZLevels/museum.dmm @@ -119,7 +119,7 @@ /turf/open/floor/wood/large, /area/awaymission/museum) "bg" = ( -/obj/structure/no_effect_signpost{ +/obj/structure/signpost{ name = "if youre reading this you stink and also made by jimmyl" }, /turf/open/floor/bluespace, @@ -735,7 +735,8 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/painting{ pixel_y = 32; - persistence_id = "museumgate" + persistence_id = "museumgate"; + dir = 1 }, /obj/machinery/light/floor, /obj/effect/decal/cleanable/dirt/dust, @@ -1047,16 +1048,14 @@ /obj/effect/turf_decal/stripes/asteroid/line{ dir = 1 }, -/obj/machinery/button{ - pixel_y = 32 - }, /turf/open/indestructible/plating, /area/awaymission/museum) "iI" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/painting{ pixel_y = 32; - persistence_id = "museumgate" + persistence_id = "museumgate"; + dir = 1 }, /obj/machinery/light/floor, /turf/open/floor/iron/dark, @@ -1760,7 +1759,7 @@ dir = 1 }, /obj/structure/table, -/obj/item/food/sandwich/cheese/grilled, +/obj/item/food/sandwich/grilled_cheese, /turf/open/floor/iron/dark, /area/awaymission/museum) "of" = ( @@ -2464,8 +2463,9 @@ }, /area/awaymission/museum) "tK" = ( -/obj/structure/sign/warning, -/turf/closed/indestructible/reinforced, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/warning/directional/south, +/turf/open/indestructible/plating, /area/awaymission/museum) "tM" = ( /obj/structure/table/wood, @@ -3250,6 +3250,7 @@ /obj/machinery/door/window/elevator/left/directional/south{ transport_linked_id = "museum_cargo" }, +/obj/structure/sign/warning/directional/east, /turf/open/chasm/true/no_smooth, /area/awaymission/museum) "Ak" = ( @@ -4648,6 +4649,7 @@ /obj/structure/broken_flooring/side/always_floorplane{ dir = 8 }, +/obj/structure/sign/warning/directional/east, /turf/open/indestructible/plating, /area/awaymission/museum) "Mv" = ( @@ -4756,6 +4758,7 @@ dir = 1 }, /obj/structure/closet/crate/bin, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/titanium/blue, /area/awaymission/museum) "NB" = ( @@ -5200,6 +5203,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/sign/warning/directional/west, +/obj/structure/sign/warning/directional/east, /turf/open/indestructible/plating, /area/awaymission/museum) "Rl" = ( @@ -5371,8 +5376,8 @@ /turf/open/floor/iron/white/small, /area/awaymission/museum) "Tr" = ( -/obj/structure/plaque/static_plaque/golden/commission/kilo, /obj/machinery/light/floor, +/obj/structure/plaque/static_plaque/golden/commission/kilo, /turf/open/floor/mineral/gold, /area/awaymission/museum) "Tt" = ( @@ -5443,6 +5448,7 @@ dir = 1 }, /obj/item/kirbyplants/random/fullysynthetic, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/titanium/blue, /area/awaymission/museum) "TO" = ( @@ -5478,6 +5484,7 @@ transport_linked_id = "museum_cargo" }, /obj/effect/spawner/random/maintenance/no_decals/seven, +/obj/structure/sign/warning/directional/west, /turf/open/chasm/true/no_smooth, /area/awaymission/museum) "Um" = ( @@ -5759,6 +5766,7 @@ "We" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/sign/warning/directional/south, /turf/open/indestructible/plating, /area/awaymission/museum) "Wf" = ( @@ -6026,10 +6034,6 @@ /obj/effect/mapping_helpers/airlock/access/all/away/generic3, /turf/open/indestructible/plating, /area/awaymission/museum) -"Ye" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/reinforced/titanium/nodiagonal, -/area/awaymission/museum) "Yg" = ( /obj/effect/mob_spawn/cockroach, /obj/effect/decal/cleanable/dirt/dust, @@ -29524,7 +29528,7 @@ iW go iW TN -Ye +fe FK FK FK @@ -30072,7 +30076,7 @@ Qk Ma Ma Ma -tK +FK FK FK Kh @@ -30295,7 +30299,7 @@ DU iW iW Ny -Ye +fe FK FK FK @@ -30323,7 +30327,7 @@ FK bF FK We -tK +FK Ma VE zr @@ -30586,7 +30590,7 @@ do Ma Ma Ma -tK +FK FK FK Kh @@ -32120,8 +32124,8 @@ DY FK TB ZZ -XK tK +FK Kh Kh FK @@ -32132,7 +32136,7 @@ FK lU lU lU -tK +FK FK FK Uq @@ -33406,7 +33410,7 @@ FK FK FK FK -tK +FK FK FK FK @@ -33417,7 +33421,7 @@ FK FK PB PB -tK +FK FK FK Uq diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm index 64f2a725a51ff6..c3513c00bfccdc 100644 --- a/_maps/RandomZLevels/research.dmm +++ b/_maps/RandomZLevels/research.dmm @@ -1350,7 +1350,6 @@ /turf/open/floor/iron/white, /area/awaymission/research/interior/engineering) "gP" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, @@ -1474,7 +1473,6 @@ /area/awaymission/research/interior/security) "hr" = ( /obj/machinery/light/directional/east, -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, @@ -1543,7 +1541,6 @@ /area/awaymission/research/interior/security) "hH" = ( /obj/machinery/vending/security, -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, @@ -1604,18 +1601,11 @@ /turf/open/floor/iron/white, /area/awaymission/research/interior) "hP" = ( -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -32 - }, /obj/structure/sign/directions/evac{ - pixel_x = 32; - pixel_y = -24 + pixel_y = 10 }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, +/obj/structure/sign/directions/medical, +/turf/closed/wall/r_wall, /area/awaymission/research/interior) "hQ" = ( /turf/open/floor/iron/white/corner{ @@ -1624,7 +1614,6 @@ /area/awaymission/research/interior) "hR" = ( /obj/structure/table, -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, @@ -2836,11 +2825,13 @@ }, /obj/machinery/power/apc/auto_name/directional/west, /obj/effect/mapping_helpers/apc/cell_5k, +/obj/structure/cable, /turf/open/floor/iron, /area/awaymission/research/interior/dorm) "oT" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, /turf/open/floor/iron/white, /area/awaymission/research/interior/security) "pt" = ( @@ -2906,14 +2897,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/awaymission/research/interior/gateway) -"qY" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/white, -/area/awaymission/research/interior/security) "qZ" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -3049,7 +3032,6 @@ /obj/effect/turf_decal/siding/yellow{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/iron, /area/awaymission/research/interior/dorm) "vT" = ( @@ -3140,24 +3122,18 @@ /turf/open/floor/iron/white, /area/awaymission/research/interior/security) "yj" = ( -/obj/structure/sign/directions/security{ +/obj/structure/sign/directions/science{ dir = 1; - pixel_x = 32; - pixel_y = 40 + pixel_y = 10 }, /obj/structure/sign/directions/engineering{ dir = 1; - pixel_x = 32; - pixel_y = 33 + pixel_y = -10 }, -/obj/structure/sign/directions/science{ - dir = 1; - pixel_x = 32; - pixel_y = 26 +/obj/structure/sign/directions/security{ + dir = 1 }, -/mob/living/basic/trooper/syndicate/ranged/smg, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron/white, +/turf/closed/wall/r_wall, /area/awaymission/research/interior) "yn" = ( /obj/item/ammo_casing/c45, @@ -3196,14 +3172,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/white, /area/awaymission/research/interior/cryo) -"zU" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/awaymission/research/interior/medbay) "AY" = ( /obj/structure/rack, /obj/item/clothing/suit/armor/riot, @@ -3241,7 +3209,6 @@ /turf/open/floor/iron/white, /area/awaymission/research/interior) "By" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/light/directional/north, /turf/open/floor/iron/white, @@ -3255,6 +3222,7 @@ "BQ" = ( /mob/living/basic/trooper/nanotrasen/ranged/smg, /obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, /turf/open/floor/iron/white, /area/awaymission/research/interior/security) "BY" = ( @@ -3518,6 +3486,11 @@ }, /turf/open/floor/iron, /area/awaymission/research/interior/dorm) +"Jg" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/awaymission/research/interior/security) "Jl" = ( /obj/item/kirbyplants/organic/plant20{ pixel_y = 3 @@ -3753,6 +3726,13 @@ /obj/effect/turf_decal/tile/purple/fourcorners, /turf/open/floor/iron, /area/awaymission/research/interior/genetics) +"PM" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/white, +/area/awaymission/research/interior/security) "Qd" = ( /obj/machinery/door/airlock/medical{ name = "Medical" @@ -3844,6 +3824,7 @@ dir = 4 }, /obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, /turf/open/floor/iron/white, /area/awaymission/research/interior/medbay) "SJ" = ( @@ -42258,7 +42239,7 @@ Nf eJ eJ hB -hP +kv ia ia it @@ -42269,7 +42250,7 @@ ia ia ia ia -yj +sn ut HS kv @@ -42516,7 +42497,7 @@ eJ eJ hC hM -cp +hP cp eH cp @@ -42525,7 +42506,7 @@ cp cp cp cp -cp +yj js ry ke @@ -45851,9 +45832,9 @@ jp si hF fr -LX -LX -LX +Jg +Jg +Jg ho hF si @@ -46108,10 +46089,10 @@ do do do By -QQ -QQ -QQ -ho +LX +Jg +LX +hn do do do @@ -46881,7 +46862,7 @@ hF fr BQ QQ -LX +Jg ho hF si @@ -47135,11 +47116,11 @@ do do do do -fr -Or +fq +PM Or -QQ -ho +LX +hn do do do @@ -47160,7 +47141,7 @@ kL kZ Fl Th -zU +lD iW aO aH @@ -47653,10 +47634,10 @@ fq Kg yc oT -LX -LX -LX -LX +Jg +Jg +Jg +Jg CW do bD @@ -47908,7 +47889,7 @@ ok eS fq LX -qY +wN wN LX LX diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm index b656d7b4a943f9..7169a3cc75fadf 100644 --- a/_maps/RandomZLevels/snowdin.dmm +++ b/_maps/RandomZLevels/snowdin.dmm @@ -1510,6 +1510,7 @@ /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "fS" = ( @@ -1517,10 +1518,13 @@ /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "fV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 4 @@ -1737,12 +1741,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) -"gL" = ( -/obj/structure/sink/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/awaymission/snowdin/post/hydro) "gM" = ( /obj/item/stack/cable_coil{ amount = 1 @@ -1938,10 +1936,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) -"hA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/awaymission/snowdin/post/hydro) "hB" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/weather/snow, @@ -2301,10 +2295,6 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/gateway) "iB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, /obj/effect/landmark/awaystart/snowdin, /obj/machinery/holopad, /obj/effect/decal/cleanable/dirt, @@ -2353,7 +2343,6 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "iL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 }, @@ -2372,7 +2361,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "iP" = ( @@ -2576,11 +2564,12 @@ "ju" = ( /obj/effect/landmark/awaystart/snowdin, /obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 10 + }, /turf/open/floor/iron, /area/awaymission/snowdin/post/gateway) "jv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/landmark/awaystart/snowdin, /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -2616,7 +2605,6 @@ /turf/open/floor/iron/cafeteria, /area/awaymission/snowdin/post/messhall) "jB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/structure/sink/directional/west, /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 @@ -2647,7 +2635,6 @@ }, /obj/effect/landmark/awaystart/snowdin, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "jF" = ( @@ -2658,6 +2645,7 @@ "jG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "jH" = ( @@ -2750,11 +2738,10 @@ id = "snowdin_gate" }, /obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/iron, /area/awaymission/snowdin/post/gateway) "jZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/door/poddoor/shutters/preopen{ id = "snowdin_gate" }, @@ -2797,27 +2784,14 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "ki" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/awaymission/snowdin/post/garage) -"kj" = ( -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) -"kk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/snowdin/post/garage) "km" = ( /obj/structure/sign/poster/contraband/tools/directional/east, /obj/structure/closet/crate/preopen, @@ -2844,7 +2818,9 @@ /turf/closed/wall/ice, /area/awaymission/snowdin/cave/mountain) "kv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, /obj/machinery/shower/directional/south, /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) @@ -2883,7 +2859,9 @@ /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) "kB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) "kF" = ( @@ -2909,11 +2887,10 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/iron, /area/awaymission/snowdin/post) "kK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -2979,7 +2956,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "kV" = ( @@ -2988,6 +2964,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "kW" = ( @@ -3043,7 +3020,6 @@ /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) "lj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/dorm) "lk" = ( @@ -3238,14 +3214,12 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "lH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "lI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, @@ -3259,21 +3233,16 @@ /obj/item/paper/crumpled/ruins/snowdin/foreshadowing, /turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) -"lK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/awaymission/snowdin/post/hydro) "lM" = ( /obj/machinery/door/airlock/external/glass/ruin, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "lN" = ( /obj/machinery/door/airlock/external/glass/ruin, /obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "lO" = ( @@ -3428,6 +3397,9 @@ /area/awaymission/snowdin/post) "ml" = ( /obj/effect/turf_decal/snowdin_station_sign/seven, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, /turf/open/floor/iron, /area/awaymission/snowdin/post) "mm" = ( @@ -3537,12 +3509,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/awaymission/snowdin/post/custodials) -"mI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/awaymission/snowdin/post) "mJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, @@ -3655,7 +3621,7 @@ /area/awaymission/snowdin/outside) "nd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 + dir = 4 }, /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -3669,28 +3635,12 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/awaymission/snowdin/post) -"nf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/snowdin/post) "ng" = ( /obj/structure/flora/grass/both/style_random, /obj/structure/flora/tree/pine/style_random, /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/outside) -"nh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/snowdin/post) "ni" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 10 }, @@ -3905,6 +3855,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/secpost) "oh" = ( @@ -3912,6 +3863,7 @@ dir = 1 }, /obj/item/shard, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/secpost) "ol" = ( @@ -4017,29 +3969,18 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/secpost) "oE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/snowdin/post/secpost) -"oF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/snowdin/post/secpost) -"oG" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/snowdin/post/secpost) "oH" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/awaymission/snowdin/post/secpost) "oI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + welded = 1; + dir = 4 + }, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 }, @@ -4061,7 +4002,9 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post) "oL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ @@ -4173,6 +4116,14 @@ /obj/machinery/microwave, /turf/open/floor/iron/cafeteria, /area/awaymission/snowdin/post/cavern2) +"pi" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "snowdin_gate" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/snowdin/post/gateway) "pj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -4217,15 +4168,6 @@ }, /turf/open/floor/iron, /area/awaymission/snowdin/post/secpost) -"pp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/awaymission/snowdin/post) "pq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -4246,13 +4188,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/snowdin/post) -"pt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/snowdin/post) "pu" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -5370,9 +5305,7 @@ /area/awaymission/snowdin/post/mining_main/mechbay) "tQ" = ( /obj/machinery/light/small/directional/south, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/misc/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "tR" = ( @@ -5427,10 +5360,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "un" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/machinery/light/small/broken/directional/east, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/post/cavern2) "up" = ( @@ -5703,7 +5634,6 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/cavern1) "vy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 6 }, @@ -5769,6 +5699,9 @@ /obj/effect/baseturf_helper/asteroid/snow, /turf/open/floor/plating, /area/awaymission/snowdin/post/broken_shuttle) +"vO" = ( +/turf/closed/wall, +/area/awaymission/snowdin/outside) "vP" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -5778,15 +5711,17 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/mechbay) "vR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/awaymission/snowdin/post/broken_shuttle) +/obj/structure/flora/tree/stump, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow, +/area/awaymission/snowdin/outside) "vT" = ( /obj/structure/chair, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "vU" = ( /obj/item/chair, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "vW" = ( @@ -5805,6 +5740,7 @@ /obj/structure/chair{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "wc" = ( @@ -6983,6 +6919,11 @@ slowdown = 1 }, /area/awaymission/snowdin/outside) +"AV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/snowdin/post) "AW" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating/snowed/cavern, @@ -7503,7 +7444,7 @@ /area/awaymission/snowdin/cave) "De" = ( /obj/structure/table/reinforced, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/iron/dark, /area/awaymission/snowdin/cave) "Df" = ( @@ -7589,7 +7530,7 @@ /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) "Dx" = ( -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "DA" = ( @@ -7881,7 +7822,7 @@ /area/awaymission/snowdin/cave) "ES" = ( /obj/structure/table/reinforced, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /turf/open/floor/iron/dark, /area/awaymission/snowdin/cave) "ET" = ( @@ -7894,6 +7835,15 @@ /obj/item/stack/ore/iron, /turf/closed/mineral/iron/ice, /area/awaymission/snowdin/cave/cavern) +"EW" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow, +/area/awaymission/snowdin/outside) "EX" = ( /obj/item/pickaxe/drill{ pixel_x = 3; @@ -8156,6 +8106,7 @@ dir = 4 }, /obj/structure/table, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_main/mechbay) "GJ" = ( @@ -8391,6 +8342,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/awaymission/snowdin/post/mining_main/mechbay) "HS" = ( @@ -8769,6 +8721,12 @@ "JV" = ( /turf/open/misc/ice, /area/awaymission/snowdin/outside) +"Ka" = ( +/obj/effect/landmark/awaystart/snowdin, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/snowdin/post/gateway) "Kc" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -9403,6 +9361,7 @@ /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/hydro) "Nt" = ( @@ -9558,7 +9517,6 @@ /turf/open/floor/iron/white, /area/awaymission/snowdin/post) "Oh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/broken/directional/south, /turf/open/floor/iron/showroomfloor, @@ -9814,6 +9772,7 @@ "PL" = ( /obj/structure/chair, /obj/machinery/light/small/directional/west, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "PM" = ( @@ -10333,10 +10292,6 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/research) "Sr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post) @@ -10518,6 +10473,20 @@ /mob/living/basic/bear/snow, /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/outside) +"Th" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/showroomfloor, +/area/awaymission/snowdin/post/dorm) +"Tj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/snowdin/post) "Tk" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/misc/asteroid/snow{ @@ -10693,11 +10662,11 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/mechbay) "Us" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, /obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/awaymission/snowdin/post/garage) "Ut" = ( @@ -10783,10 +10752,8 @@ /turf/open/misc/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "Va" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, +/obj/structure/flora/grass/both/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/outside) "Vb" = ( @@ -10853,6 +10820,16 @@ /obj/machinery/light/broken/directional/south, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) +"Vs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/snowdin/post) "Vt" = ( /obj/docking_port/stationary{ dir = 4; @@ -10867,6 +10844,7 @@ /area/awaymission/snowdin/post/mining_main) "Vu" = ( /obj/machinery/light/broken/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "Vw" = ( @@ -10879,16 +10857,17 @@ /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/cave) "Vy" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 +/obj/effect/turf_decal/weather/snow, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 }, -/turf/open/misc/asteroid/snow/ice, -/area/awaymission/snowdin/cave/cavern) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/dark/snowdin, +/area/awaymission/snowdin/outside) "Vz" = ( /obj/machinery/light/small/directional/east, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/post/cavern2) "VB" = ( @@ -10918,9 +10897,7 @@ /area/awaymission/snowdin/post/hydro) "VO" = ( /obj/machinery/light/small/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "VP" = ( @@ -11157,6 +11134,7 @@ dir = 1 }, /obj/machinery/light/small/directional/east, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/titanium/blue, /area/awaymission/snowdin/post/broken_shuttle) "Xk" = ( @@ -11294,7 +11272,6 @@ "Yd" = ( /obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "Ye" = ( @@ -11311,6 +11288,10 @@ }, /turf/open/misc/asteroid/snow, /area/awaymission/snowdin/outside) +"Yg" = ( +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow, +/area/awaymission/snowdin/outside) "Yh" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -11474,7 +11455,9 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/gateway) "Zj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 @@ -17291,7 +17274,7 @@ eQ je aS kw -lf +Th lV aK Zy @@ -20188,9 +20171,9 @@ Zy Zy Zy vL -vR +vL vX -vR +vL vL Zy Zy @@ -20249,8 +20232,8 @@ eo Zy Zy YE +vO Va -TI Zy Zy Zy @@ -20634,7 +20617,7 @@ jU js jU me -mI +jo nd nF Ob @@ -21149,7 +21132,7 @@ jU lp mg mK -nf +nL nH og oE @@ -21216,9 +21199,9 @@ Zy Zy Zy vL -vR +vL vX -vR +vL vL Zy Zy @@ -21406,10 +21389,10 @@ jU lq mh mL -nf +nL QZ oh -oF +oz pn pL qq @@ -21663,10 +21646,10 @@ kG lr mi mM -nf +nL nF Zj -oG +po po pM qq @@ -21761,8 +21744,8 @@ Zy Zy Zy Zy -Va -Tr +SS +Vy YT YT YT @@ -21791,8 +21774,8 @@ Qj Zy YE Zy -Va -Qj +vO +EW Zy Zy Zy @@ -21938,8 +21921,8 @@ dX dX Zy Zy -Va -Zy +SS +Yg Zy Zy Cu @@ -22177,11 +22160,11 @@ kI lt mk mL -nh +js nJ hM oI -pp +kF pN dK qM @@ -22433,7 +22416,7 @@ jY kJ lu ml -jU +Tj ni nK HU @@ -22620,8 +22603,8 @@ Zy Zy Zy Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -22691,7 +22674,7 @@ kK lv js jW -nM +jm nL dK js @@ -22942,12 +22925,12 @@ fG hn hT iC -ju -jY -kJ +Ka +pi +Vs lw -jo -js +AV +rm rm nM QN @@ -23209,7 +23192,7 @@ jX jm hM oL -pt +jX pR dK qM @@ -23303,8 +23286,8 @@ YE Zy Zy Zy -Va -Zy +SS +Yg Zy Zy Qj @@ -23480,8 +23463,8 @@ Cu Zy Zy dX -Va -Zy +SS +Yg Zy Zy Zy @@ -24162,8 +24145,8 @@ Zy Zy Wp Zy -Va -ZX +SS +vR Zy Zy Zy @@ -27314,7 +27297,7 @@ iJ gI hz gI -lK +iK ms hz nA @@ -27564,14 +27547,14 @@ bf bf bf fV -gL -hA -lK +mv +mt +iK iL jB iL iL -lK +iK mv iK nA @@ -29367,7 +29350,7 @@ gP hD id Us -iW +my ki kV lN @@ -29625,7 +29608,7 @@ Oe ie iP jF -kj +hE kW id ld @@ -29882,7 +29865,7 @@ Oe if iQ jG -kk +jJ kX ie mz @@ -35536,8 +35519,8 @@ ai ai ai Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -35807,8 +35790,8 @@ Zy dX dX Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -37335,8 +37318,8 @@ ai ai ai Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -37349,8 +37332,8 @@ Zy ZK Zy Zy -Va -Zy +SS +Yg Zy Zy Zy @@ -59379,7 +59362,7 @@ WN WN WN WN -Vy +WN Gk GI Hc @@ -61435,7 +61418,7 @@ WN WN Nz WN -Vy +WN Gk HR Hi diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index 12aa7f7458b573..624f05678ace14 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -112,12 +112,6 @@ /turf/open/floor/iron/grimy, /area/awaymission/undergroundoutpost45/central) "az" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A beacon used by a teleporter."; - icon = 'icons/obj/devices/tracker.dmi'; - icon_state = "beacon"; - name = "tracking beacon" - }, /obj/effect/landmark/awaystart/underground, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -258,7 +252,6 @@ req_access = list("away_maintenance") }, /obj/item/clothing/under/suit/black/skirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) "ba" = ( @@ -474,7 +467,6 @@ "cw" = ( /obj/structure/table/wood, /obj/machinery/newscaster/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) "cA" = ( @@ -503,7 +495,7 @@ /area/awaymission/undergroundoutpost45/central) "cH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /obj/structure/chair/wood{ dir = 1 @@ -526,7 +518,7 @@ /area/awaymission/undergroundoutpost45/central) "cK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /obj/structure/bed, /obj/item/bedsheet, @@ -876,7 +868,6 @@ /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "ed" = ( @@ -917,6 +908,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "ek" = ( @@ -957,7 +949,7 @@ "eq" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) @@ -1122,6 +1114,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "fa" = ( @@ -1193,7 +1186,9 @@ /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "fp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -1206,7 +1201,9 @@ /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "fr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -1306,7 +1303,6 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "fI" = ( @@ -1917,7 +1913,7 @@ /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/gateway) "ig" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4; req_access = null }, @@ -2144,7 +2140,9 @@ /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/gateway) "iT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /obj/structure/chair{ dir = 8 }, @@ -2262,6 +2260,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/gateway) "jz" = ( @@ -2497,7 +2496,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "kr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 2 }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, @@ -2554,7 +2553,7 @@ /area/awaymission/undergroundoutpost45/gateway) "kB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 2 }, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -2566,7 +2565,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/gateway) "kF" = ( @@ -2630,7 +2628,7 @@ /area/awaymission/undergroundoutpost45/research) "kU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 2 }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/purple{ @@ -2697,7 +2695,7 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "le" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) @@ -2748,6 +2746,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/gateway) "lu" = ( @@ -2893,7 +2892,7 @@ /area/awaymission/undergroundoutpost45/research) "lL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2913,6 +2912,7 @@ }, /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) "lO" = ( @@ -3013,7 +3013,6 @@ /area/awaymission/undergroundoutpost45/gateway) "mc" = ( /obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron{ dir = 8 }, @@ -4411,14 +4410,13 @@ "qU" = ( /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/side{ dir = 4 }, /area/awaymission/undergroundoutpost45/research) "qV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 2 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, @@ -4662,8 +4660,8 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/side{ dir = 4 }, @@ -4774,7 +4772,6 @@ /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) "rW" = ( @@ -5840,11 +5837,8 @@ /turf/open/floor/iron/checker, /area/awaymission/undergroundoutpost45/engineering) "vQ" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, /obj/effect/decal/cleanable/dirt, +/obj/structure/noticeboard/directional/south, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) "vR" = ( @@ -6540,7 +6534,6 @@ /obj/structure/chair/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) "Bz" = ( @@ -6837,6 +6830,8 @@ /obj/machinery/airalarm/directional/west, /obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron{ dir = 8 }, @@ -6876,6 +6871,11 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) +"GS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) "Hp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6971,7 +6971,6 @@ /obj/effect/turf_decal/tile/purple{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) "Ji" = ( @@ -6983,6 +6982,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/gateway) "Jm" = ( @@ -7121,25 +7121,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/gateway) -"LX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) "LZ" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Mg" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) "Mo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -7286,6 +7275,7 @@ "ON" = ( /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) "OO" = ( @@ -7312,6 +7302,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) +"Px" = ( +/obj/structure/sign/warning/vacuum{ + desc = "A beacon used by a teleporter."; + icon = 'icons/obj/devices/tracker.dmi'; + icon_state = "beacon"; + name = "tracking beacon" + }, +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/central) "PB" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7362,7 +7361,6 @@ /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) "Qu" = ( @@ -7606,11 +7604,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/gateway) -"Vo" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) "VF" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 @@ -7734,6 +7727,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) "Xd" = ( @@ -7751,6 +7745,11 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) +"XD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) "XF" = ( /obj/structure/ore_box, /turf/open/misc/asteroid/plasma, @@ -7773,10 +7772,6 @@ /obj/structure/glowshroom/single, /turf/open/misc/asteroid/plasma, /area/awaymission/undergroundoutpost45/caves) -"XU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) "Yb" = ( /obj/structure/alien/weeds, /obj/structure/bed/nest, @@ -28313,8 +28308,8 @@ gU gv gv kA -cA -XU +Qb +mb mF gv ad @@ -28566,12 +28561,12 @@ hw ib ib iT -LX +gJ gK Rx kB lt -XU +mb mG gw zq @@ -35251,7 +35246,7 @@ zq zq zq hH -Mg +mU lM hH mR @@ -35776,7 +35771,7 @@ lu gx Ap qV -YF +XD sw gz tR @@ -37787,7 +37782,7 @@ aK aC aP aP -aC +Px aC bv aC @@ -37800,7 +37795,7 @@ cH ae aF Gc -IV +GS ej LZ LZ @@ -38057,14 +38052,14 @@ fB cZ gf gf -zJ -zJ -zJ -zJ -zJ -zJ +aS +aS +aS +aS +aS Ai aS +aS aC fO gr @@ -38320,7 +38315,7 @@ ez eN fa fp -Ai +aS aS da gA @@ -38577,7 +38572,7 @@ el el el fq -Ai +aS aS da gs @@ -38591,8 +38586,8 @@ WD WD Ij HA -HA -Ug +zA +gs lQ gs nG @@ -38834,7 +38829,7 @@ eA eB el fq -Ai +aS fU ae fK @@ -38849,7 +38844,7 @@ gg gg jR Ro -Ug +gs gA mp fN @@ -39091,7 +39086,7 @@ eB eO el fq -Ai +aS fV ae zq @@ -39348,7 +39343,7 @@ el el el fq -Ai +aS aF aP zq @@ -39605,7 +39600,7 @@ eC eC aY fr -Ai +aS fW aP zq @@ -42446,7 +42441,7 @@ iH jc jz hK -Vo +hK lj lU fN diff --git a/_maps/doppler/automapper/templates/metastation/metastation_cryo.dmm b/_maps/doppler/automapper/templates/metastation/metastation_cryo.dmm index 83810e4d897fef..2c9b4a646568e3 100644 --- a/_maps/doppler/automapper/templates/metastation/metastation_cryo.dmm +++ b/_maps/doppler/automapper/templates/metastation/metastation_cryo.dmm @@ -95,10 +95,6 @@ "N" = ( /turf/closed/wall, /area/station/commons/cryopods) -"O" = ( -/obj/machinery/airalarm/directional/west, -/turf/template_noop, -/area/template_noop) "U" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -147,7 +143,7 @@ N a a U -O +a a "} (6,1,1) = {" diff --git a/_maps/map_files/CatwalkStation/CatwalkStation_2023.dmm b/_maps/map_files/CatwalkStation/CatwalkStation_2023.dmm index 793a8e79c6fd55..02508b9de0f21c 100644 --- a/_maps/map_files/CatwalkStation/CatwalkStation_2023.dmm +++ b/_maps/map_files/CatwalkStation/CatwalkStation_2023.dmm @@ -2,20 +2,21 @@ "aad" = ( /turf/closed/wall, /area/station/service/hydroponics) -"aah" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/science/server) -"aat" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"aaq" = ( /obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/catwalk_floor, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/firealarm_sanity, +/turf/open/floor/catwalk_floor/iron_smooth, /area/station/engineering/main) +"aas" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Laundromat" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured, +/area/station/commons/dorms/laundry) "aau" = ( /obj/structure/railing{ dir = 1 @@ -23,6 +24,13 @@ /obj/structure/showcase/machinery/implanter, /turf/open/floor/wood, /area/station/command/corporate_showroom) +"aaN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "aaO" = ( /obj/structure/plaque/static_plaque/golden{ desc = "Come get your own gold plaque!"; @@ -31,56 +39,28 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"aaS" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/structure/fluff/paper/corner{ - dir = 8 - }, -/obj/item/paper/crumpled{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "aaV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/port/fore) -"abi" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 5 - }, -/obj/item/holosign_creator/atmos{ - pixel_x = -1; - pixel_y = -5 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "abm" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown/fourcorners, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/cargo/storage) "abp" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, @@ -89,14 +69,13 @@ /turf/open/floor/plating, /area/station/maintenance/space_hut) "abs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; + dir = 1; + id = "Rcommissaryshutter"; name = "Vacant Commissary Shutter" }, -/obj/effect/turf_decal/tile/dark_green/fourcorners, -/turf/open/floor/iron/dark, +/turf/open/floor/plating, /area/station/commons/vacant_room/office) "abE" = ( /obj/machinery/door/airlock/maintenance, @@ -119,25 +98,17 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "abI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/shaft_miner, +/obj/machinery/autolathe, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "abM" = ( +/obj/structure/railing, /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/closet/crate, -/obj/item/storage/belt/fannypack/yellow, -/obj/structure/railing{ - dir = 1 + dir = 6 }, -/obj/structure/railing, /turf/open/floor/iron, /area/station/cargo/storage) "abT" = ( @@ -149,6 +120,28 @@ }, /turf/open/floor/iron, /area/station/science/robotics) +"acc" = ( +/obj/item/flashlight/lamp{ + pixel_y = 7 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) +"acd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "acl" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -159,22 +152,11 @@ /turf/open/floor/carpet/stellar, /area/station/maintenance/hallway/abandoned_recreation) "acx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 8 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 8; - pixel_y = 26 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 8; - pixel_y = 38 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) "acI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -187,7 +169,7 @@ "acL" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/ladder, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "acN" = ( /obj/structure/flora/rock/pile/style_2, @@ -202,21 +184,6 @@ }, /turf/open/misc/asteroid, /area/station/science/robotics) -"acQ" = ( -/obj/structure/table, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "acS" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -228,12 +195,6 @@ /obj/machinery/light/floor, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"acU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 5 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "acV" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/table, @@ -243,18 +204,17 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron, /area/station/science/research) -"ade" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"adg" = ( +/obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/item/trash/tray, -/turf/open/water, -/area/station/maintenance/starboard/fore) -"ado" = ( -/obj/machinery/light/directional/west, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"adq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/security/detectives_office) "adv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, @@ -285,11 +245,6 @@ }, /turf/open/openspace, /area/station/science/xenobiology) -"aej" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "aep" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -315,13 +270,6 @@ }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"afj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "afk" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/ferny/style_random, @@ -348,20 +296,29 @@ }, /area/station/medical/cryo) "afn" = ( -/obj/structure/railing{ - dir = 4 - }, /obj/effect/turf_decal/siding/blue{ dir = 5 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"afr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "aft" = ( /obj/structure/stairs/west, /obj/structure/railing, @@ -370,14 +327,23 @@ "afu" = ( /turf/open/openspace, /area/station/commons/dorms) -"afB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 15 +"afA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, +/obj/structure/table, +/obj/item/stack/sheet/iron, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"afI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "afK" = ( /obj/machinery/turretid{ name = "AI Chamber turret control"; @@ -400,21 +366,18 @@ }, /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "afL" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/science/lobby) -"afP" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +"afQ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "afR" = ( /turf/open/openspace, /area/station/hallway/primary/aft) @@ -429,18 +392,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison/mess) -"agh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera/autoname/directional/south, +"agq" = ( /obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) "agu" = ( /obj/structure/sign/departments/medbay/alt/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "agy" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ @@ -455,15 +416,31 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/engineering/lobby) +"agB" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) "agF" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"agO" = ( -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"agL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"agX" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/west, +/turf/open/space/openspace, +/area/space/nearstation) "ahf" = ( /turf/closed/wall/r_wall, /area/station/medical/chemistry) @@ -472,6 +449,13 @@ /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"ahl" = ( +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "ahx" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ @@ -514,12 +498,6 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/hallway/primary/aft) -"ahT" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) "ahU" = ( /obj/effect/turf_decal/delivery, /obj/effect/spawner/random/vending/snackvend, @@ -540,16 +518,18 @@ /turf/open/floor/iron/dark, /area/station/science/cytology) "aia" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"aii" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) +/obj/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/circuit, +/area/station/command/bridge) +"aim" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "aiq" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/doppler_array{ @@ -565,18 +545,11 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"aiv" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/machinery/camera/autoname/directional/east, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "aiA" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/emcloset, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aiE" = ( /obj/structure/railing, /obj/structure/cable, @@ -595,7 +568,11 @@ /area/station/science/robotics/lab) "aiP" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, +/obj/structure/chair/sofa/middle/brown{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, /area/station/cargo/storage) "aiY" = ( /obj/structure/railing{ @@ -605,15 +582,13 @@ /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"ajl" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"ajw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/icecream_vat, +/obj/structure/light_construct/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) "ajB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -648,7 +623,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ajU" = ( /obj/effect/turf_decal/trimline/blue/warning{ dir = 1 @@ -687,6 +662,13 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/grimy, /area/station/security/interrogation) +"akk" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "ako" = ( /obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -712,6 +694,16 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) +"akv" = ( +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) "akE" = ( /obj/structure/chair{ dir = 1 @@ -729,35 +721,13 @@ codes_txt = "patrol;next_patrol=8-Kitchen"; location = "7-Gateway" }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"akK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "akL" = ( /obj/machinery/telecomms/server/presets/engineering, /obj/effect/turf_decal/tile/yellow/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"akS" = ( -/obj/structure/rack, -/obj/item/storage/crayons{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 5 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "akU" = ( /obj/effect/landmark/start/hangover, /obj/structure/disposalpipe/segment{ @@ -766,7 +736,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "akW" = ( /obj/effect/turf_decal/trimline/dark_blue/line{ @@ -783,7 +755,16 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"alb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "alh" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -792,9 +773,11 @@ /obj/structure/railing/corner/end/flip{ dir = 8 }, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "ali" = ( /obj/structure/plaque/static_plaque/golden/commission/pubby{ pixel_y = 32 @@ -819,19 +802,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"alk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"alm" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/masks, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "als" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -846,14 +816,12 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"alx" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) +"alA" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "alF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table_frame, @@ -864,30 +832,36 @@ /obj/effect/spawner/random/maintenance/no_decals, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"alG" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"alI" = ( +"alM" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/port) +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmoslowersm" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/supermatter/room) "alT" = ( /obj/structure/disposalpipe/segment, /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"amd" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + anchored = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "ame" = ( /obj/machinery/newscaster/directional/west, /obj/machinery/light/directional/west, @@ -901,16 +875,24 @@ /turf/open/floor/iron/dark, /area/station/security/warden) "ams" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 +/obj/machinery/door/window/left/directional/west, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "Privacy Shutters" }, -/obj/effect/landmark/navigate_destination/hop, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/obj/machinery/door/window/brigdoor/right/directional/east{ + name = "Head of Personnel's Desk"; + req_access = list("hop") + }, +/obj/item/pen, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) "amt" = ( /obj/effect/decal/cleanable/dirt, /obj/item/reagent_containers/cup/bucket{ @@ -931,13 +913,12 @@ }, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "amJ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/cargo/miningoffice) "amU" = ( @@ -973,6 +954,11 @@ "anm" = ( /turf/closed/wall, /area/station/service/library/printer) +"ano" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "anp" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -990,43 +976,40 @@ }, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"anB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/vending/engivend, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "anG" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/openspace, /area/station/security/detectives_office) -"anJ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "anY" = ( /turf/open/floor/engine/hull/air, /area/station/maintenance/port/fore) -"aof" = ( -/obj/structure/table, -/obj/machinery/status_display/ai/directional/north, -/obj/item/analyzer, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +"aod" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering" }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room/upper) "aoh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/engineering/tank, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"aoi" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/closet/crate, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "aoz" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -1038,27 +1021,28 @@ dir = 1 }, /area/station/medical/morgue) -"aoF" = ( -/obj/structure/cable, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"aoK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/athletic_mixed, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "aoQ" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) +"aoY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/closet/radiation, +/obj/structure/sign/warning/no_smoking/directional/west, +/turf/open/floor/iron, +/area/station/engineering/lobby) "apa" = ( /obj/structure/rack, /obj/machinery/door/window/left/directional/east{ - name = "Jetpack Storage" + name = "Magboot Storage"; + req_access = list("eva") }, /obj/item/clothing/shoes/magboots{ pixel_x = -4; @@ -1069,8 +1053,8 @@ pixel_x = 4; pixel_y = -3 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "apf" = ( /obj/machinery/status_display/evac/directional/north, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -1093,12 +1077,30 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) -"apE" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"apv" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"apy" = ( +/obj/item/ammo_casing/spent{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "apK" = ( /turf/closed/wall/r_wall, /area/station/security/range) @@ -1152,18 +1154,19 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"aqj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"aqi" = ( +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/arrow_ccw, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "aqk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aqm" = ( /turf/closed/mineral/random/stationside/asteroid/porus, /area/space/nearstation) @@ -1172,33 +1175,33 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/holopad, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) -"aqy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"aqp" = ( +/obj/structure/railing/corner{ + dir = 8 }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/station/engineering/main) +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "aqD" = ( /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) -"aqG" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aqQ" = ( -/obj/item/kirbyplants/photosynthetic, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) +"aqE" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"aqP" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) "aqS" = ( /obj/item/cigbutt{ pixel_x = -15 @@ -1214,14 +1217,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"arl" = ( -/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ - pixel_x = 5; - pixel_y = 9 +"arc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 }, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "ars" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1274,21 +1276,6 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/wood, /area/station/service/chapel) -"arL" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"arN" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = 6 - }, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/wood, -/area/station/security/courtroom) "arT" = ( /turf/closed/wall/r_wall, /area/station/science/xenobiology) @@ -1304,6 +1291,14 @@ /obj/effect/landmark/start/cook, /turf/open/floor/glass, /area/station/service/kitchen) +"asl" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/grass, +/area/station/commons/dorms) "asx" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -1319,22 +1314,20 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"asA" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "asI" = ( /obj/structure/railing/corner{ dir = 4 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "asK" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/airalarm/directional/south, @@ -1343,6 +1336,28 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/port) +"asM" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Mix Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"asU" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/upper) +"asV" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "!"; + pixel_x = 9; + pixel_y = -1 + }, +/turf/closed/wall, +/area/station/maintenance/starboard/aft/upper) "asY" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -1354,6 +1369,13 @@ }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) +"asZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ata" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -1378,13 +1400,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"atj" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "atm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -1419,6 +1434,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/medical/break_room) +"atJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "atV" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/tile/purple, @@ -1442,19 +1463,11 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"aud" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"aug" = ( -/obj/machinery/vending/games, +"auf" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/holopad, /turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/area/station/commons/storage/primary) "aum" = ( /obj/structure/sign/poster/official/random/directional/south, /obj/effect/turf_decal/siding/wood, @@ -1476,21 +1489,19 @@ /obj/effect/turf_decal/tile/purple/full, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"aur" = ( +/obj/structure/chair{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "aut" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ dir = 6 }, /turf/open/space/openspace, /area/space/nearstation) -"auA" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "auF" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -1500,15 +1511,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/brig) -"auP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) "auS" = ( /obj/item/toy/plush/moth{ name = "Goofy Greg"; @@ -1538,6 +1540,30 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/cargo/storage) +"avj" = ( +/obj/structure/table, +/obj/item/gavelhammer{ + pixel_y = 3 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/station/security/courtroom) +"avw" = ( +/obj/machinery/vatgrower, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"avI" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) +"avJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/hangover, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "avZ" = ( /obj/structure/railing{ dir = 4 @@ -1551,11 +1577,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/research) -"awv" = ( -/obj/structure/cable, -/obj/item/assembly/mousetrap/armed, -/turf/open/floor/plating, -/area/station/maintenance/port) +"awk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "aww" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1573,9 +1600,16 @@ /turf/open/floor/iron, /area/station/hallway/primary/aft) "awD" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/obj/structure/sign/directions/command/directional/north{ + dir = 2; + pixel_y = 0 + }, +/obj/structure/sign/directions/security/directional/north{ + dir = 2; + pixel_y = 7 + }, +/turf/closed/wall, +/area/station/maintenance/port/greater) "awG" = ( /turf/open/misc/asteroid/airless, /area/station/science/ordnance/bomb) @@ -1585,22 +1619,33 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"awK" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "awP" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"axn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/storage) +"awR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"awV" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"awX" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"axj" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, +/area/station/commons/fitness/recreation) "axr" = ( /obj/structure/railing{ dir = 4 @@ -1616,12 +1661,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"axF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "axN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1646,21 +1685,14 @@ /obj/effect/turf_decal/bot/right, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"ayn" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 9 - }, -/obj/effect/turf_decal/siding/brown/corner, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) -"ayr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/skub{ - pixel_x = 7; - pixel_y = 18 +"ayi" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/door/firedoor, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "ayA" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -1675,16 +1707,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"ayD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/water, -/area/station/maintenance/port/fore) "ayF" = ( /obj/structure/closet/crate/trashcart/filled, /obj/item/poster/random_contraband{ @@ -1692,6 +1714,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"ayI" = ( +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "ayR" = ( /obj/structure/table, /obj/item/storage/crayons{ @@ -1701,6 +1730,18 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/wood, /area/station/service/library/printer) +"ayU" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/structure/hoop{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "ayZ" = ( /obj/docking_port/stationary/escape_pod{ dir = 2 @@ -1725,12 +1766,16 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"azj" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron, +/area/station/commons/locker) "azn" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/medical/abandoned) "azo" = ( @@ -1759,10 +1804,22 @@ /turf/open/space/basic, /area/station/solars/port/aft) "azx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"azG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/flag/mars/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "azI" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -1799,18 +1856,21 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/research) -"aAk" = ( -/obj/structure/table/wood, -/obj/item/paper/crumpled{ - pixel_x = 2; - pixel_y = 7 +"aAg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 1 +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"aAn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron, +/area/station/engineering/lobby) "aAr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -1828,6 +1888,16 @@ }, /turf/open/floor/iron, /area/station/science/robotics) +"aAM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small/directional/east, +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft) "aBc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1857,10 +1927,27 @@ /obj/structure/cable, /turf/open/openspace, /area/station/hallway/primary/port) -"aBv" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/break_room) +"aBu" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 11 + }, +/obj/machinery/cell_charger{ + pixel_x = -2 + }, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = -5 + }, +/obj/item/multitool{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "aBy" = ( /obj/item/storage/medkit/regular{ pixel_x = 3; @@ -1884,6 +1971,13 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) +"aBz" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/aft) "aBF" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/firealarm/directional/south, @@ -1916,10 +2010,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) -"aBV" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/wood, -/area/station/commons/dorms) "aBW" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ dir = 4 @@ -1959,11 +2049,11 @@ }, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aCD" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aCE" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/trimline/blue/filled/line, @@ -1982,6 +2072,32 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"aDb" = ( +/obj/machinery/button/elevator{ + id = "catwalk_engi"; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"aDd" = ( +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"aDk" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/obj/structure/sign/poster/official/no_erp/directional/east, +/turf/open/floor/plating, +/area/station/commons/dorms) "aDm" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/holopad, @@ -1989,12 +2105,14 @@ dir = 1 }, /area/station/medical/morgue) -"aDp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 +"aDw" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "aDF" = ( /obj/structure/reagent_dispensers/watertank, @@ -2035,6 +2153,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"aEg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "aEm" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -2044,14 +2166,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/explab) -"aEr" = ( -/obj/machinery/atmospherics/components/binary/pump/off{ - dir = 8; - name = "O2 To Port" +"aEA" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 1; + initialize_directions = 1 }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "aEG" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/closet/emcloset, @@ -2072,21 +2195,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aEZ" = ( /turf/open/floor/iron, /area/station/science/breakroom) -"aFg" = ( -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"aFe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "aFi" = ( /obj/structure/ladder, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"aFm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"aFn" = ( +/obj/structure/table/wood/fancy/cyan, +/obj/item/book/manual/wiki/atmospherics{ + pixel_y = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "aFt" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -2112,28 +2242,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"aFN" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/boxinggloves, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aFP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/dark/arrow_ccw{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark/arrow_ccw{ - dir = 4 - }, -/turf/open/floor/iron/edge{ - dir = 4 - }, -/area/station/hallway/primary/fore) "aFV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, @@ -2148,25 +2256,41 @@ dir = 4 }, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "aGb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/railing, /obj/structure/fake_stairs/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) +"aGe" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_y = 6 + }, +/obj/item/cigbutt{ + pixel_x = -11; + pixel_y = 15 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/aft/upper) "aGf" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/secondary/entry) -"aGp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"aGx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft) "aGG" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -2178,41 +2302,22 @@ "aGR" = ( /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"aGX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/rnd/production/protolathe/department/engineering, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"aHc" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "SM_Outside_shutters"; - name = 4 +"aHb" = ( +/obj/structure/sign/poster/contraband/grey_tide/directional/north, +/obj/structure/rack, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = -13 }, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"aHe" = ( -/obj/machinery/button/door/directional/west{ - id = "Cabin5"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, -/obj/item/storage/box/lights/mixed, -/obj/item/kirbyplants/random/dead{ - name = "dead plant" +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical{ + pixel_y = -2 }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"aHo" = ( -/obj/structure/safe, -/obj/item/storage/fancy/pickles_jar, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron, +/area/station/commons/storage/primary) "aHp" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/trimline/dark/arrow_cw{ @@ -2226,32 +2331,22 @@ dir = 8 }, /area/station/hallway/primary/fore) -"aHx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"aHB" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/soda_cans/cola{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/cigbutt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"aHH" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/west, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"aHD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Virology Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "aHO" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, @@ -2283,17 +2378,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/security/courtroom) -"aIt" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/camera/autoname/directional/west, -/obj/structure/railing{ - dir = 4 +"aIh" = ( +/obj/machinery/camera/preset/ordnance{ + c_tag = "Cannon's exit" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) "aIA" = ( /obj/structure/railing{ dir = 8 @@ -2319,6 +2409,13 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/security/brig) +"aIJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "aIL" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -2347,10 +2444,37 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/detectives_office/private_investigators_office) +"aIR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window{ + dir = 8; + name = "Cargo Bay Shutters"; + id = "qm_cargobay" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/cargo/storage) "aIU" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) +"aIY" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/modular_computer/preset/engineering{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) +"aIZ" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/engineering/atmos) "aJg" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/service/theatre, @@ -2371,12 +2495,28 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"aJn" = ( +/obj/structure/sign/poster/official/fruit_bowl, +/turf/closed/wall, +/area/station/maintenance/starboard/aft/upper) +"aJs" = ( +/obj/effect/turf_decal/trimline/dark_green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "aJu" = ( /obj/structure/sign/poster/official/random/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"aJA" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "aJD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -2419,8 +2559,16 @@ /area/station/maintenance/port) "aKc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner{ + dir = 1 + }, /area/station/hallway/primary/central) +"aKj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "aKk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -2430,12 +2578,15 @@ }, /turf/open/floor/iron/airless, /area/station/maintenance/starboard/aft) -"aKq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 +"aKo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "aKz" = ( /obj/structure/railing{ dir = 8 @@ -2449,19 +2600,12 @@ pixel_y = -3 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aKA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, /area/station/service/chapel) -"aKB" = ( -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "aKE" = ( /obj/machinery/door/airlock/virology, /obj/effect/turf_decal/tile/dark_green/fourcorners, @@ -2479,6 +2623,14 @@ /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) +"aKJ" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 4 + }, +/obj/item/cigbutt, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "aKR" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 @@ -2510,9 +2662,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"aLd" = ( -/turf/open/floor/glass/airless, -/area/station/maintenance/starboard/lesser) "aLl" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -2527,6 +2676,17 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"aLq" = ( +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/mail_sorting/supply/disposals, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "aLu" = ( /obj/item/paint/white{ pixel_x = 11; @@ -2534,6 +2694,25 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"aLA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"aLB" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"aLG" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing, +/obj/machinery/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "aLJ" = ( /turf/open/floor/carpet, /area/station/security/courtroom) @@ -2545,28 +2724,14 @@ /turf/open/space/openspace, /area/space/nearstation) "aLT" = ( -/obj/machinery/computer/records/medical{ - dir = 1 - }, /obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aLW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"aLX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "aLY" = ( /obj/item/stack/cable_coil{ pixel_y = -12 @@ -2574,13 +2739,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"aMa" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "aMd" = ( /obj/machinery/door/firedoor/border_only{ dir = 8 @@ -2604,30 +2762,20 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) -"aMq" = ( +"aMl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"aMs" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "aMw" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron/dark, /area/station/engineering/storage) -"aMz" = ( -/obj/item/restraints/legcuffs/beartrap/prearmed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aMD" = ( -/obj/item/flashlight/lantern{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "aMK" = ( /obj/effect/turf_decal/siding/dark_blue/inner_corner{ dir = 8 @@ -2650,27 +2798,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "aNc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/zoo) -"aNf" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) -"aNg" = ( -/obj/structure/chair/sofa/corner/brown, -/obj/item/instrument/eguitar, -/obj/structure/sign/poster/contraband/space_cube/directional/north, -/obj/machinery/light/small/broken/directional/east, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "aNB" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -2691,6 +2827,19 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"aNE" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/horrific_experiment, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) +"aNI" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "aNL" = ( /obj/effect/turf_decal/tile/dark_blue{ dir = 1 @@ -2699,10 +2848,13 @@ /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"aNT" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"aNP" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/folder/yellow, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "aNU" = ( /obj/structure/chair/office{ dir = 4 @@ -2728,11 +2880,27 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"aOo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "aOs" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/burgundy, /turf/open/space/openspace, /area/space/nearstation) +"aOE" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/science/lobby) +"aOI" = ( +/obj/effect/spawner/random/clothing/wardrobe_closet_colored, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "aOK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -2763,28 +2931,16 @@ /turf/open/floor/plating, /area/station/maintenance/port/greater) "aPg" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/table, -/obj/item/megaphone/cargo{ - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/railing, +/turf/open/floor/iron, +/area/station/cargo/storage) "aPq" = ( /obj/structure/table/wood, /obj/item/gavelblock, /obj/item/gavelhammer, /turf/open/floor/wood, /area/station/security/courtroom) -"aPr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "aPv" = ( /obj/structure/railing/corner{ dir = 8 @@ -2818,7 +2974,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/machinery/newscaster/directional/south, /obj/machinery/light/directional/south, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) @@ -2826,30 +2981,19 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"aQa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ladder, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "aQc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/service/library/printer) -"aQj" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ +"aQq" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ dir = 4 }, /turf/open/floor/iron, -/area/station/commons/dorms) +/area/station/commons/fitness/recreation) "aQu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -2870,20 +3014,11 @@ /obj/structure/table, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"aQM" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"aQS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +"aQO" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "aRa" = ( /obj/effect/turf_decal/trimline/red/corner{ dir = 1 @@ -2897,31 +3032,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"aRb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/science/server) "aRc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output, /turf/open/floor/engine/plasma, /area/station/engineering/atmos/upper) -"aRg" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"aRs" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/custom_shuttle, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "aRy" = ( /obj/structure/railing/corner/end/flip{ dir = 4 @@ -2931,24 +3045,32 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aSd" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/machinery/shower/directional/east, -/obj/item/razor, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) +/area/station/ai/satellite/interior) +"aSc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ + dir = 8 + }, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) "aSg" = ( /turf/closed/wall, /area/station/command/heads_quarters/cmo) +"aSk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "aSq" = ( /obj/structure/cable, /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"aSB" = ( -/turf/open/floor/engine/hull/air, -/area/station/engineering/break_room) "aSD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2962,7 +3084,9 @@ /obj/effect/turf_decal/trimline/red/filled/mid_joiner{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "aSF" = ( /obj/structure/lattice/catwalk, @@ -2972,6 +3096,37 @@ }, /turf/open/openspace, /area/station/command/gateway) +"aSH" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) +"aSL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) +"aSP" = ( +/obj/structure/rack, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/under/color/red, +/obj/item/clothing/neck/tie/red{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/soft/red, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"aSU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor, +/area/station/cargo/storage) "aSW" = ( /turf/closed/wall, /area/station/service/hydroponics/garden/abandoned) @@ -2980,7 +3135,7 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aSY" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -3021,11 +3176,14 @@ /obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/open/floor/iron/dark, /area/station/science/lobby) -"aTH" = ( -/obj/effect/spawner/random/structure/crate, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"aTB" = ( +/obj/structure/lattice/catwalk, +/obj/item/toy/plush/lizard_plushie/green{ + name = "Hides-In-Rafters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "aTS" = ( /obj/structure/table, /obj/item/wrench{ @@ -3038,13 +3196,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"aTV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "aTW" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/effect/turf_decal/trimline/red/filled/warning{ @@ -3089,37 +3240,15 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"aUD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"aUF" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/rack, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "aUO" = ( /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/stripes{ dir = 4 }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/textured, +/area/station/command/eva) "aUU" = ( /obj/structure/closet/crate/freezer, /obj/item/food/grown/tomato, @@ -3183,21 +3312,17 @@ /area/station/maintenance/starboard/aft) "aVm" = ( /obj/structure/disposalpipe/segment{ - dir = 10 + dir = 9 }, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "aVy" = ( /obj/structure/sign/directions/security/directional/north{ dir = 2; - pixel_y = 38 + pixel_y = 0 }, -/turf/open/openspace, +/turf/closed/wall/r_wall, /area/station/maintenance/port) -"aVD" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/lobby) "aVG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -3215,19 +3340,27 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "aVN" = ( -/turf/closed/wall, -/area/station/command/teleporter) -"aVP" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/hallway/primary/central) +"aVQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "aVT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/fore) +"aVZ" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "aWa" = ( /obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, /obj/structure/chair/sofa/left/brown{ @@ -3270,6 +3403,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"aWA" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"aWE" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "aWH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3279,22 +3433,32 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"aWN" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 +"aWM" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"aWN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/railing/corner{ dir = 8 }, /obj/structure/cable, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/storage) "aWP" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"aWU" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "aWV" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/captain/private) @@ -3314,15 +3478,6 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) -"aXn" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/horrific_experiment, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "aXN" = ( /obj/structure/rack, /obj/item/storage/box/lights/mixed, @@ -3342,6 +3497,12 @@ /obj/structure/reagent_dispensers/wall/peppertank/directional/west, /turf/open/openspace, /area/station/security/checkpoint/customs) +"aXY" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) "aXZ" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -3349,24 +3510,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"aYk" = ( -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree{ - pixel_x = 3 - }, -/obj/item/canvas/twentythree_twentythree{ - pixel_x = 3 - }, -/obj/item/canvas/twentythree_twentythree{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) "aYm" = ( /obj/structure/cable, /obj/effect/spawner/random/trash/cigbutt, @@ -3375,15 +3518,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/chem_storage) -"aYq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/fluff/paper/corner, -/obj/structure/fluff/paper/stack{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "aYt" = ( /obj/machinery/light/directional/north, /obj/structure/railing{ @@ -3407,6 +3541,13 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/plating, /area/station/security/execution/education) +"aYF" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "aYR" = ( /obj/item/kirbyplants/random, /obj/machinery/light/directional/south, @@ -3419,36 +3560,54 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) +"aYU" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"aZa" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "nay"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "aZd" = ( -/obj/effect/turf_decal/siding/green, /obj/effect/spawner/random/engineering/tracking_beacon, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, /mob/living/basic/bot/cleanbot/autopatrol, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=6-Courtroom"; location = "5-Litterbox" }, -/turf/open/floor/iron/dark/smooth_large, +/obj/effect/turf_decal/tile/dark_green, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, /area/station/hallway/primary/central) "aZf" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/maintenance/port/aft) "aZo" = ( -/obj/effect/turf_decal/siding/wood, /obj/machinery/firealarm/directional/south, -/obj/structure/tank_holder/extinguisher, /obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes, +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "aZs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) +"aZy" = ( +/obj/effect/spawner/random/trash/grime, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "aZA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3474,6 +3633,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) "aZG" = ( @@ -3485,14 +3645,6 @@ }, /turf/open/floor/plating, /area/station/medical/office) -"aZQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/air_sensor/incinerator_tank, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ - dir = 6 - }, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) "aZT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, @@ -3504,18 +3656,10 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) -"bag" = ( -/obj/machinery/computer/atmos_control/oxygen_tank, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"bam" = ( -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"bab" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ban" = ( /obj/structure/closet/lasertag/red, /obj/effect/decal/cleanable/dirt, @@ -3527,6 +3671,19 @@ /obj/structure/ladder, /turf/open/openspace, /area/station/medical/medbay/central) +"bau" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/engineering/main) +"bav" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/fire/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "baw" = ( /obj/structure/sink/directional/east, /obj/structure/mirror/directional/west, @@ -3535,26 +3692,32 @@ }, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) +"bax" = ( +/obj/effect/decal/cleanable/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "baA" = ( /obj/machinery/light/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "baD" = ( /obj/structure/cable/layer3, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"baF" = ( -/obj/structure/reagent_dispensers/plumbed{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/foyer) "baI" = ( /obj/structure/sign/warning/cold_temp/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -3568,6 +3731,12 @@ /obj/structure/ladder, /turf/open/openspace, /area/station/maintenance/port/fore) +"baY" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "bba" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner{ @@ -3580,23 +3749,9 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/primary/central) -"bbm" = ( -/obj/item/clothing/under/color/grey, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = -13 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = -13 - }, -/obj/structure/rack, -/obj/machinery/camera/autoname/directional/west, -/obj/item/flashlight, -/obj/item/radio/intercom/directional/north, -/obj/item/wrench, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +"bbn" = ( +/turf/closed/wall, +/area/station/commons/dorms/laundry) "bbx" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -3610,15 +3765,6 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/security/eva) -"bbO" = ( -/obj/item/flashlight/flashdark{ - name = "Envy Flashlight" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "bbV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc/auto_name/directional/west, @@ -3626,6 +3772,14 @@ /obj/effect/mapping_helpers/apc/unlocked, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"bbX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) "bbY" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /obj/machinery/navbeacon{ @@ -3657,12 +3811,35 @@ /turf/open/floor/wood/large, /area/station/service/kitchen) "bcg" = ( -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 1 +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast-2"; + name = "Bridge Blast Door" }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + id_tag = "innerbridge" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, /area/station/command/bridge) +"bch" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/obj/item/circuitboard/machine/cyborgrecharger, +/obj/structure/sign/poster/contraband/energy_swords/directional/north, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) +"bci" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "cargocatwalkmaint" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "bcl" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -3671,7 +3848,7 @@ dir = 8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bcH" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/table/reinforced, @@ -3683,15 +3860,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) -"bcI" = ( -/obj/machinery/meter{ - name = "Mix Meter" - }, -/obj/machinery/atmospherics/pipe/multiz/violet/visible{ - name = "Mix Multideck Adapter" - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "bcQ" = ( /obj/structure/sign/warning/vacuum/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -3707,10 +3875,6 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) -"bcW" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "bda" = ( /obj/effect/spawner/random/structure/grille, /obj/effect/decal/cleanable/dirt, @@ -3724,11 +3888,14 @@ dir = 1 }, /area/station/science/ordnance/storage) -"bdh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"bdf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/athletic_mixed, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "bdi" = ( /obj/machinery/light/directional/south, /obj/structure/rack, @@ -3736,13 +3903,16 @@ /obj/structure/cable, /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bdn" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 }, /turf/open/floor/engine, /area/station/medical/chemistry) +"bdq" = ( +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "bdw" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -3769,7 +3939,15 @@ }, /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"bdM" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "SM_shutters"; + name = "Supermatter Radiation Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter) "bdT" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -3786,28 +3964,55 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) +"bdW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/dim/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/central) +"bdX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "bea" = ( /obj/structure/railing{ dir = 5 }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"beb" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/commons/dorms) "bec" = ( /obj/machinery/door/airlock/command{ name = "Emergency Communication Console" }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/hallway/secondary/entry) "beg" = ( /turf/closed/wall/r_wall, /area/station/security/prison/safe) +"ber" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) +"bex" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "beF" = ( /obj/structure/table/wood/fancy, /obj/item/lead_pipe{ @@ -3823,14 +4028,11 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"bfc" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"beT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "bfh" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -3847,6 +4049,12 @@ /obj/structure/sign/poster/official/safety_internals/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"bfl" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/commons/dorms) "bfo" = ( /obj/item/storage/backpack{ pixel_x = 5; @@ -3855,12 +4063,9 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "bfq" = ( +/obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/dark_blue{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) @@ -3874,34 +4079,76 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/security/interrogation) +"bfC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"bfH" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "bfN" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron, +/area/station/cargo/storage) +"bfQ" = ( +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"bfY" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bge" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"bgs" = ( +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/railing{ + dir = 4 + }, /obj/structure/table, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = 3 +/obj/item/pen{ + pixel_x = 5; + pixel_y = 6 }, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = 3 +/obj/item/stamp/granted{ + pixel_x = -7; + pixel_y = 2 }, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = 3 +/turf/open/floor/wood/large, +/area/station/service/library/private) +"bgx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, +/turf/open/floor/iron/textured, /area/station/cargo/storage) -"bgm" = ( -/obj/structure/stairs/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"bgA" = ( -/obj/machinery/suit_storage_unit{ - storage_type = /obj/item/clothing/shoes/magboots - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "bgB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -3909,10 +4156,6 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) -"bgE" = ( -/obj/machinery/suit_storage_unit/atmos, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "bgT" = ( /obj/structure/railing{ dir = 8 @@ -3925,9 +4168,14 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 }, -/obj/machinery/vending/assist, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, +/obj/structure/table/reinforced, +/obj/machinery/button/door/directional/west{ + id = "Lcommissaryshutter"; + name = "Left Shutter Control"; + pixel_x = 0 + }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "bhc" = ( @@ -3953,16 +4201,25 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"bhy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "bhJ" = ( /obj/structure/easel, /turf/open/floor/plating, /area/station/maintenance/disposal) -"bhN" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" +"bhM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 }, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"bhN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/cargo/storage) "bhQ" = ( @@ -3978,19 +4235,17 @@ /turf/open/floor/engine/vacuum, /area/station/science/ordnance/burnchamber) "bic" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/command) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) "bie" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/service/chapel/office) -"bij" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "bio" = ( /obj/effect/turf_decal/arrows/white{ color = "#F7F707"; @@ -3998,12 +4253,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"bit" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/textured_large, -/area/station/medical/abandoned) "bix" = ( /obj/machinery/camera/autoname/directional/east, /turf/open/floor/engine, @@ -4022,6 +4271,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"biI" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "biO" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -4073,7 +4326,7 @@ name = "Armory Shutters" }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "biZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4088,15 +4341,30 @@ "bjq" = ( /turf/open/floor/plating, /area/station/maintenance/department/science/central) +"bjr" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "bjD" = ( /obj/effect/spawner/random/maintenance, /obj/structure/rack, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"bjH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/engineering/engine_smes) "bjK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bkc" = ( /obj/machinery/light/warm/directional/west, /obj/machinery/computer/mech_bay_power_console{ @@ -4123,7 +4391,24 @@ /obj/structure/rack, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"bkk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) +"bkr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "bkt" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner, @@ -4138,6 +4423,19 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) +"bkv" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/rack, +/obj/item/pipe_dispenser{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "bkA" = ( /obj/effect/turf_decal/delivery, /obj/effect/spawner/random/entertainment/arcade{ @@ -4145,6 +4443,14 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"bkC" = ( +/obj/machinery/atmospherics/components/binary/pump/on/supply/hidden/layer4{ + dir = 1; + name = "Airlock Supply Pump"; + target_pressure = 300 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "bkD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -4164,18 +4470,13 @@ }, /turf/open/floor/iron/small, /area/station/security/mechbay) -"blb" = ( -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/fire/directional/east, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) -"blh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +"blm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor, +/area/station/cargo/storage) "bln" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -4189,13 +4490,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"blq" = ( -/obj/effect/decal/cleanable/glitter, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"bly" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "blz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4237,7 +4540,6 @@ /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, -/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -4249,6 +4551,14 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron, /area/station/construction/storage_wing) +"blF" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/aft/upper) +"blI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "blJ" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/line{ @@ -4257,12 +4567,13 @@ /obj/effect/turf_decal/trimline/green/filled/corner, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"bmc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"blW" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "bmg" = ( /obj/effect/turf_decal/trimline/dark_blue/line{ dir = 4 @@ -4280,7 +4591,12 @@ pixel_y = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"bmw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) "bmx" = ( /obj/structure/transport/linear/public, /turf/open/openspace, @@ -4295,11 +4611,12 @@ /obj/effect/mapping_helpers/mail_sorting/service/bar, /obj/effect/mapping_helpers/mail_sorting/service/theater, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "bmH" = ( /obj/machinery/barsign{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -4315,10 +4632,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/courtroom) -"bmO" = ( -/obj/structure/closet/radiation, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +"bmK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) "bmP" = ( /obj/structure/railing{ dir = 8 @@ -4343,6 +4663,13 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"bnh" = ( +/obj/effect/spawner/random/trash/graffiti{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "bnl" = ( /obj/effect/turf_decal/tile/dark/anticorner/contrasted{ dir = 8 @@ -4372,30 +4699,60 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bnW" = ( /obj/structure/cable, /obj/machinery/door/airlock/engineering, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"boh" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/lattice/catwalk, -/turf/open/floor/engine/hull/air, -/area/station/engineering/break_room) "boj" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/light_switch/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"bop" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1; + pixel_y = -2 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "boq" = ( /obj/item/toy/snappop, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"bor" = ( +/obj/structure/safe/floor{ + name = "Critical Supplies Safe" + }, +/obj/item/reagent_containers/cup/glass/bottle/wine_voltaic{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/vodka{ + pixel_y = 15; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/juice/orangejuice{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/reagent_containers/cup/glass/flask{ + pixel_x = -6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "bot" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, @@ -4412,6 +4769,24 @@ /obj/structure/sign/departments/chemistry/directional/south, /turf/open/floor/engine/hull/air, /area/station/medical/medbay/central) +"boF" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clothing/under/costume/seifuku/teal{ + pixel_x = -1; + pixel_y = -9 + }, +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_midori{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/instrument/piano_synth/headphones{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/sign/poster/contraband/syndicate_pistol/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "boP" = ( /obj/item/chair, /obj/machinery/light/small/red/dim/directional/south, @@ -4434,6 +4809,25 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) +"boY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) +"bpf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper{ + dir = 8 + }, +/obj/item/paper/crumpled{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "bpl" = ( /obj/structure/railing{ dir = 8 @@ -4480,12 +4874,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"bpB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "bpK" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/hos) @@ -4493,13 +4881,13 @@ /obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood/large, /area/station/medical/break_room) -"bpZ" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/light_switch/directional/east, -/obj/effect/mapping_helpers/turn_off_lights_with_lightswitch, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"bqd" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "bqk" = ( /obj/effect/turf_decal/siding/dark/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4507,7 +4895,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bqm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4524,26 +4912,15 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"bqv" = ( -/obj/effect/turf_decal/siding, -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 +"bqO" = ( +/obj/structure/chair/office{ + dir = 1 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"bqA" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/artistic, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/depsec/supply, +/obj/effect/landmark/event_spawn, +/turf/open/openspace, +/area/station/security/checkpoint/supply) "bqR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4553,6 +4930,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"bqU" = ( +/obj/machinery/computer/security/telescreen/minisat/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "bqV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4571,12 +4953,23 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) +"brb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "brf" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"brh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) "brm" = ( /obj/effect/turf_decal/stripes/red/line, /obj/effect/turf_decal/stripes/red/line{ @@ -4591,6 +4984,11 @@ }, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) +"brz" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/clothing/mask/joy, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "brP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/north, @@ -4623,17 +5021,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/smooth_edge, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bsx" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bsy" = ( /obj/effect/decal/cleanable/crayon/rune2, /turf/open/floor/plating, /area/station/maintenance/port) +"bsC" = ( +/obj/structure/chair/sofa/right/brown, +/obj/item/pillow, +/obj/item/toy/plush/moth{ + name = "Mender Moff" + }, +/obj/structure/sign/poster/official/get_your_legs/directional/north, +/turf/open/floor/carpet/black, +/area/station/medical/psychology) "bsE" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -4642,15 +5049,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/medical/abandoned) -"bsH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "bsK" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -4682,10 +5080,6 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) -"btb" = ( -/obj/machinery/roulette, -/turf/open/floor/engine, -/area/station/engineering/break_room) "btc" = ( /obj/item/paper_bin/carbon, /obj/structure/closet, @@ -4693,10 +5087,6 @@ /obj/item/hand_labeler_refill, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"btj" = ( -/obj/machinery/vending/donksnack, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "btv" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -4737,6 +5127,20 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"btU" = ( +/obj/item/bouquet/sunflower{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/contraband/atmosia_independence/directional/north{ + desc = "Welcome."; + name = "Welcome." + }, +/obj/item/clothing/glasses/orange{ + pixel_y = 5 + }, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) "btV" = ( /obj/machinery/door/poddoor/preopen{ id = "cmoprivacy"; @@ -4773,36 +5177,32 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"buu" = ( +"bup" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/obj/effect/decal/cleanable/crayon{ + icon_state = "nay"; + pixel_y = 32 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"buA" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"but" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/button/door/directional/east{ + id = "Cabin6"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"buF" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 9 +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"buA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/megaphone/cargo{ + pixel_y = 3 }, -/turf/open/floor/engine, -/area/station/engineering/atmos/project) -"buP" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light_switch/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "buZ" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "outerbrig"; @@ -4829,9 +5229,12 @@ /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) "bvv" = ( -/obj/structure/cable, /obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) "bvz" = ( /obj/effect/decal/cleanable/dirt, @@ -4840,6 +5243,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"bvE" = ( +/obj/effect/spawner/random/trash/botanical_waste, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "bvG" = ( /obj/item/toy/snappop, /obj/structure/cable, @@ -4856,11 +5263,9 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"bvI" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +"bvJ" = ( +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "bvN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4889,8 +5294,11 @@ /area/station/science/research) "bvY" = ( /obj/machinery/wall_healer/directional/north, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "bvZ" = ( /obj/structure/railing{ dir = 8 @@ -4898,25 +5306,34 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/wood, /area/station/commons/toilet/restrooms) -"bwd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "bwg" = ( -/obj/structure/bed, -/obj/item/bedsheet/hop, /obj/structure/secure_safe/directional/south, /obj/machinery/airalarm/directional/east, /obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/carpet, +/obj/structure/bed/double, +/obj/item/bedsheet/hop/double, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "bwi" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/primary/port) +"bwv" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass{ + name = "Security Post - Cargo" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) "bwx" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -4963,11 +5380,30 @@ req_access = list("medical"); name = "Medbay Reception" }, +/obj/item/folder/white, +/obj/item/folder/blue{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/pen, /turf/open/floor/iron/white/textured_large, /area/station/medical/office) "bxd" = ( /turf/closed/wall/r_wall, /area/station/engineering/atmos/hfr_room) +"bxg" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/medical) +"bxv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/aft) "bxx" = ( /turf/open/floor/engine/n2o, /area/station/engineering/atmos/upper) @@ -5057,15 +5493,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"byA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) "byC" = ( /obj/machinery/button/door/directional/east{ id = "Prison Gate"; @@ -5075,34 +5502,16 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) "byE" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Abandoned Hallway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"byJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small/directional/east, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/structure/lattice/catwalk, +/obj/machinery/vending/games, +/turf/open/openspace, +/area/station/cargo/storage) "byR" = ( -/obj/machinery/door/airlock/command{ - name = "Council Chamber" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/obj/machinery/door/firedoor, -/turf/open/floor/carpet, -/area/station/command/bridge) +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) "byU" = ( /obj/structure/railing{ dir = 4 @@ -5115,9 +5524,29 @@ /obj/machinery/computer/mech_bay_power_console, /turf/open/floor/iron/smooth, /area/station/science/robotics) +"byW" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "byY" = ( /turf/open/floor/wood, /area/station/hallway/primary/central) +"bzd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) "bzk" = ( /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, @@ -5153,27 +5582,29 @@ /area/station/maintenance/central) "bzS" = ( /obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 4 }, -/obj/item/disk/nuclear{ - pixel_x = 1; - pixel_y = -2 +/obj/item/reagent_containers/cup/glass/flask/gold{ + pixel_x = 5 }, -/obj/item/pen/fourcolor{ - pixel_x = -15; - pixel_y = 1 +/obj/item/toy/figure/captain{ + pixel_x = 7; + pixel_y = 10 }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "bzV" = ( /obj/structure/lattice/catwalk, /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/hallway/primary/central) +"bAf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "bAh" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Foyer" @@ -5184,7 +5615,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"bAo" = ( +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "bAq" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/computer/shuttle/mining{ @@ -5223,6 +5661,16 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/openspace, /area/station/science/xenobiology) +"bAS" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/station_engineer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "bAW" = ( /turf/open/floor/iron, /area/station/engineering/lobby) @@ -5244,12 +5692,14 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"bBu" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/cable, -/obj/machinery/light_switch/directional/north, +"bBq" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow, /turf/open/floor/iron, -/area/station/engineering/main) +/area/station/engineering/atmos/upper) "bBv" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -5266,18 +5716,6 @@ dir = 1 }, /area/station/science/robotics) -"bBy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "bBB" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/shrink_ccw{ dir = 1 @@ -5287,26 +5725,45 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bBK" = ( -/obj/effect/landmark/observer_start, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"bBL" = ( +/obj/structure/table/wood, +/obj/item/clothing/under/misc/burial, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "bBV" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/openspace, /area/station/science/explab) -"bCa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +"bBZ" = ( +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = -24; + pixel_y = -4; + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "hop"; + name = "Lockdown Blast Doors"; + pixel_y = 6; + req_access = list("hop") + }, +/obj/machinery/requests_console/directional/north{ + department = "Head of Personnel's Desk"; + name = "Head of Personnel's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/modular_computer/preset/id, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) "bCb" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; @@ -5356,17 +5813,15 @@ /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/red{ +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/structure/table, -/obj/item/radio/intercom/directional/west{ - pixel_x = -1 - }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/item/pen{ + pixel_y = 9; + pixel_x = -4 }, -/turf/open/floor/iron/dark, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "bCx" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -5377,42 +5832,33 @@ /turf/open/floor/iron, /area/station/hallway/secondary/construction) "bCC" = ( -/obj/machinery/suit_storage_unit/captain, /obj/machinery/status_display/evac/directional/north, -/turf/open/floor/wood, +/obj/structure/table/wood, +/obj/machinery/fax{ + fax_name = "Captain's Office"; + name = "Captain's Fax Machine" + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "bCD" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, /obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 38 + dir = 1; + pixel_y = 10 }, -/obj/structure/sign/directions/medical/directional/north{ - dir = 8 +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_y = 4 }, -/obj/structure/sign/directions/evac/directional/north{ - dir = 8; - pixel_y = 26 +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = -2 }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bDm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/welded, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/station/maintenance/port) -"bDn" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2 to Port" +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -8 }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/turf/closed/wall, +/area/station/science/lab) "bDq" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -5446,29 +5892,27 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"bDQ" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/station/commons/dorms) "bDS" = ( /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"bEi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "bEp" = ( /obj/machinery/firealarm/directional/south, /turf/open/floor/plating, /area/station/engineering/storage_shared) "bEr" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/item/trash/can{ - pixel_x = -10; - pixel_y = -14 +/obj/structure/railing, +/obj/machinery/conveyor_switch/oneway{ + dir = 1; + id = "mining"; + pixel_y = 10 }, /turf/open/floor/iron/textured, /area/station/cargo/storage) @@ -5482,6 +5926,12 @@ }, /turf/open/floor/iron, /area/station/science/lab) +"bEA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) "bEB" = ( /obj/machinery/computer/mecha{ dir = 8 @@ -5489,6 +5939,13 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/checkpoint/science) +"bEH" = ( +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "bEI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5496,12 +5953,18 @@ /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) "bEJ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/wall_healer/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/obj/item/cigbutt, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"bEP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "bEU" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/machinery/camera/autoname/directional/south, @@ -5513,6 +5976,10 @@ dir = 4 }, /area/station/medical/surgery) +"bEV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/station/commons/dorms) "bFb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -5525,15 +5992,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/large, /area/station/hallway/primary/central) -"bFc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "bFe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5543,6 +6001,18 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"bFl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"bFm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/engineering/lobby) "bFn" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input, /turf/open/floor/engine/air, @@ -5553,6 +6023,31 @@ /obj/item/surgical_drapes, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) +"bFx" = ( +/obj/structure/table, +/obj/item/storage/toolbox/artistic{ + pixel_x = -1; + pixel_y = 12 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = -7 + }, +/obj/item/stamp/granted{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/station/service/library/printer) "bFI" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, @@ -5571,6 +6066,12 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/security/brig) +"bFW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "bGa" = ( /obj/structure/railing{ dir = 4 @@ -5578,6 +6079,10 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/science/xenobiology) +"bGe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "bGh" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/mid_joiner, @@ -5600,14 +6105,22 @@ /obj/structure/sign/poster/official/random/directional/east, /turf/open/floor/plating, /area/station/construction/storage_wing) -"bGs" = ( -/obj/item/biopsy_tool{ - pixel_x = -9; - pixel_y = 2 +"bGv" = ( +/obj/structure/closet/crate, +/obj/item/gps, +/obj/item/assembly/timer, +/obj/item/gps, +/obj/item/assembly/signaler, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "bGF" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -5664,6 +6177,10 @@ pixel_y = 6 }, /obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/south{ + c_tag = "Cargo Bay - Security Post (High)"; + pixel_x = 14 + }, /turf/open/openspace, /area/station/security/checkpoint/supply) "bHn" = ( @@ -5683,7 +6200,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bHr" = ( /obj/machinery/atmospherics/pipe/smart/manifold/supply/visible, /obj/machinery/computer/security/telescreen/isolation/directional/west{ @@ -5695,30 +6212,44 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) +"bHC" = ( +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/maintenance/starboard) "bHG" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"bHM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) +"bHJ" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"bHL" = ( +/obj/structure/sign/poster/contraband/communist_state/directional/south, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "bHN" = ( /obj/structure/railing{ dir = 4 }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"bHO" = ( -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "bHV" = ( /turf/closed/wall, /area/station/medical/medbay/lobby) +"bIf" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "bIi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood, @@ -5728,12 +6259,25 @@ /obj/machinery/light/floor, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) +"bIm" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/computer/turbine_computer, +/obj/effect/mapping_helpers/airalarm/all_access, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "bIp" = ( -/obj/structure/dresser, /obj/machinery/status_display/ai/directional/north, /obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, +/obj/structure/dresser, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) +"bIq" = ( +/obj/machinery/suit_storage_unit{ + storage_type = /obj/item/clothing/shoes/magboots + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "bIF" = ( /obj/machinery/atmospherics/components/binary/pump/layer4, /obj/item/storage/box/matches{ @@ -5784,31 +6328,12 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/warden) -"bIP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -2 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"bIS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"bIX" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 5 }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/closed/wall, +/area/station/maintenance/aft) "bIZ" = ( /obj/structure/reagent_dispensers/wall/peppertank/directional/east, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -5834,36 +6359,15 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"bJs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/commons/dorms) +"bJo" = ( +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) "bJt" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"bJA" = ( -/obj/effect/turf_decal/tile/red/opposingcorners, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/obj/machinery/meter{ - name = "N2O meter" - }, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "N2O Multideck Adapter"; - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"bJB" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "bJJ" = ( /obj/machinery/vending/cigarette, /obj/structure/disposalpipe/segment{ @@ -5878,19 +6382,6 @@ /obj/structure/stairs/north, /turf/open/floor/wood, /area/station/security/courtroom) -"bKb" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) "bKd" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 @@ -5899,15 +6390,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bKh" = ( -/obj/structure/table/glass, -/obj/item/flashlight/flare/candle{ - pixel_x = 9; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "bKj" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -5923,11 +6406,11 @@ /obj/structure/chair/office{ dir = 8 }, -/obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /obj/effect/landmark/start/depsec/supply, +/obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "bKt" = ( @@ -5945,13 +6428,26 @@ }, /obj/structure/plasticflaps/kitchen, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) -"bKC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, +/area/station/ai/satellite/maintenance/storage) +"bKw" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner{ + dir = 4 + }, /obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"bKI" = ( +/obj/machinery/vending/autodrobe, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "bKK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5976,45 +6472,38 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"bKY" = ( -/obj/machinery/requests_console/directional/west, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/structure/chair/office, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"bLf" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/mob/living/basic/pet/cat/space{ - name = "Tomas" - }, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) "bLh" = ( /obj/effect/landmark/start/scientist, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) +"bLm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"bLp" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "space-outpost" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "bLu" = ( /obj/machinery/light/directional/east, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"bLx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "bLE" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/aft) -"bLG" = ( -/obj/structure/table, -/obj/item/petri_dish{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/petri_dish, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "bLL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, @@ -6025,13 +6514,19 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"bLP" = ( +/obj/effect/turf_decal/trimline/yellow/filled, +/obj/item/kirbyplants/random/fullysynthetic, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "bMa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/dim/directional/east, /obj/machinery/button/crematorium{ id = "crematoriumChapel"; - pixel_x = 26 + pixel_x = 26; + dir = 4 }, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, @@ -6044,15 +6539,12 @@ /turf/open/floor/plating, /area/station/security/prison/shower) "bMd" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/railing{ +/obj/structure/ladder, +/obj/effect/turf_decal/stripes{ dir = 4 }, -/obj/structure/ladder, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/textured, +/area/station/command/eva) "bMe" = ( /obj/machinery/door/airlock/external{ name = "Arrival Airlock" @@ -6069,29 +6561,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"bMh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) "bMi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/cargo/miningoffice) -"bMl" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Telecomms - Storage" - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) "bMo" = ( /obj/machinery/door/airlock/public/glass{ name = "Arrivals Lounge" @@ -6099,18 +6572,32 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"bMq" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "bMw" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/security/office) +"bMx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"bMR" = ( +/obj/machinery/power/emitter{ + dir = 4 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"bNe" = ( +/obj/structure/chair/stool/directional/east, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "bNk" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 8 @@ -6120,49 +6607,59 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"bNl" = ( +/obj/vehicle/ridden/wheelchair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "bNt" = ( /turf/closed/wall, /area/station/maintenance/port/greater) -"bNu" = ( -/obj/structure/table, -/obj/item/hand_labeler{ - pixel_y = 7 - }, -/obj/item/camera_film{ - pixel_y = 3 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) -"bNC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "bNH" = ( /obj/machinery/power/shieldwallgen, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/obj/structure/cable, /obj/machinery/firealarm/directional/east, /turf/open/floor/wood, /area/station/command/teleporter) +"bNO" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "bNX" = ( /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"bNY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"bOa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + filter_type = list(/datum/gas/nitrogen) + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bOb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/commons/vacant_room/office) +"bOf" = ( +/obj/structure/chair/sofa/middle/brown{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "bOi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -6178,6 +6675,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/tcommsat/server) +"bOt" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 6 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/wood, +/area/station/security/courtroom) "bOw" = ( /turf/closed/wall, /area/station/construction/mining/aux_base) @@ -6194,6 +6699,14 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/brig) +"bOK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "bOO" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, @@ -6209,11 +6722,13 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bPj" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/area/station/ai/satellite/interior) +"bPq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "bPr" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -6222,12 +6737,18 @@ /turf/open/floor/iron/dark, /area/station/medical/chemistry) "bPw" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/obj/machinery/disposal/delivery_chute{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) "bPC" = ( /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -6261,6 +6782,23 @@ /obj/effect/mapping_helpers/mail_sorting/science/xenobiology, /turf/open/floor/iron/dark/smooth_large, /area/station/science/explab) +"bPO" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"bPS" = ( +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"bPT" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "bPW" = ( /turf/closed/wall, /area/station/commons/fitness/recreation) @@ -6278,15 +6816,16 @@ /obj/item/clothing/mask/breath, /turf/open/floor/wood, /area/station/command/teleporter) -"bQz" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "bQC" = ( -/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; + dir = 8 + }, /turf/open/floor/plating, -/area/station/maintenance/disposal) +/area/station/security/checkpoint/supply) "bQF" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/structure/closet/secure_closet, @@ -6345,19 +6884,6 @@ }, /turf/open/openspace, /area/station/science/xenobiology) -"bRd" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"bRl" = ( -/obj/structure/table, -/obj/item/clothing/suit/utility/fire/firefighter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "bRm" = ( /obj/machinery/chem_dispenser, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -6368,45 +6894,22 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"bRv" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/library/printer) "bRx" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"bRC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"bRD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/pai_card{ - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "bRQ" = ( -/obj/item/cigbutt, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/machinery/door/airlock/mining{ - name = "Quartermaster's Office" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "bRT" = ( /obj/machinery/conveyor_switch/oneway{ dir = 8; @@ -6417,26 +6920,14 @@ /turf/open/floor/plating, /area/station/maintenance/disposal) "bRW" = ( -/obj/effect/turf_decal/arrows{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 9 }, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/smooth_corner, /area/station/command/gateway) -"bSe" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"bSg" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "bSk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6460,6 +6951,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/eva) +"bSt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/construction) "bSu" = ( /obj/item/paint/red{ pixel_x = -7; @@ -6549,12 +7044,25 @@ /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/iron, /area/station/maintenance/hallway/abandoned_recreation) +"bTl" = ( +/obj/structure/closet/firecloset, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/warning/electric_shock/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "bTo" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"bTp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "bTq" = ( /obj/structure/chair/sofa/corp, /turf/open/floor/carpet/blue, @@ -6581,11 +7089,11 @@ /turf/open/floor/iron, /area/station/engineering/lobby) "bTU" = ( -/obj/effect/turf_decal/siding/green/corner, /obj/machinery/disposal/bin/tagger, -/obj/structure/disposalpipe/trunk{ +/obj/effect/turf_decal/siding/green{ dir = 4 }, +/obj/structure/disposalpipe/trunk, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "bTW" = ( @@ -6595,25 +7103,10 @@ /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/plating, /area/station/construction/storage_wing) -"bTZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=21-Central"; - location = "20-Genetics" - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "bUa" = ( /obj/machinery/computer/dna_console, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"bUb" = ( -/obj/machinery/camera/autoname/directional/west, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) "bUf" = ( /obj/effect/turf_decal/trimline/dark/arrow_cw{ dir = 8 @@ -6626,28 +7119,13 @@ dir = 8 }, /area/station/hallway/primary/fore) -"bUp" = ( -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/obj/structure/urinal/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) -"bUr" = ( -/obj/effect/turf_decal/siding{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "bUO" = ( -/obj/machinery/computer/records/security, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/carpet, +/obj/machinery/photocopier/prebuilt, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "bUQ" = ( /obj/effect/spawner/random/trash/graffiti, @@ -6662,34 +7140,37 @@ /obj/structure/table, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"bVq" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "bVs" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 10 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "bVB" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) "bVI" = ( -/obj/machinery/requests_console/directional/north{ - department = "Head of Security's Desk"; - name = "Head of Security Requests Console"; - pixel_y = -30 - }, /obj/effect/mapping_helpers/requests_console/information, /obj/effect/mapping_helpers/requests_console/announcement, /obj/effect/mapping_helpers/requests_console/assistance, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, +/obj/machinery/requests_console/directional/south{ + department = "Head Of Security's Desk"; + name = "Head Of Security Requests Console" + }, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) "bVK" = ( @@ -6706,11 +7187,11 @@ /turf/open/floor/engine/hull/air, /area/station/science/research) "bVS" = ( -/obj/structure/bookcase/random/reference, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) "bVV" = ( /obj/effect/turf_decal/siding/dark, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6718,7 +7199,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bVW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -6729,6 +7210,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/glass, /area/station/science/zoo) +"bWe" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/firealarm/directional/south, +/turf/open/openspace, +/area/station/engineering/atmos/office) +"bWm" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "bWo" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -6747,13 +7241,7 @@ }, /obj/effect/turf_decal/trimline/dark_blue/mid_joiner, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bWC" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/area/station/ai/satellite/interior) "bWE" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 5 @@ -6768,11 +7256,16 @@ /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/dark, /area/station/medical/cryo) -"bWQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +"bWR" = ( +/obj/structure/fluff/paper/stack{ + dir = 10 + }, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "bWY" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, @@ -6784,20 +7277,23 @@ name = "Abandoned Arcade" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/maintenance/hallway/abandoned_recreation) -"bXg" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 6 - }, -/obj/effect/turf_decal/siding/brown/corner{ +"bXk" = ( +/obj/machinery/duct, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"bXl" = ( +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +/obj/effect/spawner/random/trash/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office/private_investigators_office) "bXn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6810,20 +7306,11 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) -"bXp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/open/openspace, -/area/station/engineering/lobby) "bXt" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/miningoffice) "bXy" = ( @@ -6837,13 +7324,6 @@ "bXA" = ( /turf/closed/wall/r_wall, /area/station/security/warden) -"bXH" = ( -/obj/machinery/camera/autoname/directional/west, -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "bXO" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -6856,6 +7336,12 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"bYd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "bYe" = ( /obj/structure/table, /obj/item/paper_bin/carbon{ @@ -6882,6 +7368,15 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/port/aft) +"bYt" = ( +/obj/effect/spawner/random/techstorage/ai_all, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/rack, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "bYz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/south, @@ -6927,6 +7422,11 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, /area/station/science/explab) +"bZf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/station/maintenance/starboard) "bZo" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/mid_joiner, @@ -6936,16 +7436,29 @@ /obj/machinery/door/window/right/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"bZq" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) "bZs" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 5 }, -/obj/structure/reagent_dispensers/fueltank, +/obj/structure/rack, +/obj/item/gps/mining{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/gps/mining, +/obj/item/gps/mining{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/structure/railing{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/miningoffice) "bZt" = ( @@ -6962,6 +7475,30 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) +"bZu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "N2O Multideck Adapter"; + dir = 4 + }, +/obj/machinery/meter{ + name = "N2O meter" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"bZw" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "bZx" = ( /obj/structure/table, /obj/item/stock_parts/subspace/transmitter, @@ -6981,7 +7518,7 @@ pixel_y = 2 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bZD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/computer/crew{ @@ -6992,38 +7529,46 @@ }, /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) +"bZI" = ( +/obj/structure/table/wood, +/obj/item/paper/crumpled{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "bZJ" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"bZK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/area/station/cargo/storage) "bZN" = ( /obj/machinery/light/directional/south, /turf/open/openspace, /area/station/science/xenobiology) -"bZQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"bZR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) -"cac" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) "cai" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 1 @@ -7045,6 +7590,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/science/central) +"cal" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/engineering_all, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "cam" = ( /obj/structure/table/wood, /obj/machinery/light_switch, @@ -7064,36 +7620,42 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) -"cay" = ( +"caB" = ( +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "caE" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) +"caF" = ( +/obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"caF" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +"caK" = ( /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, -/area/station/maintenance/port/fore) +/area/station/maintenance/starboard/fore/upper) "caO" = ( /obj/structure/table, /turf/open/floor/plating, /area/station/maintenance/disposal) "caQ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/autolathe, -/obj/structure/sign/poster/official/do_not_question/directional/north, -/obj/machinery/wall_healer/directional/west, -/turf/open/floor/iron, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/dark/textured_large, /area/station/cargo/storage) "caS" = ( /obj/structure/railing, @@ -7117,22 +7679,26 @@ /area/station/solars/starboard/fore) "cbm" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) +"cbn" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "cbo" = ( /obj/item/radio/intercom/directional/south, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/office) -"cbq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner/end, -/obj/structure/railing/corner/end{ - pixel_y = 2 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "cbt" = ( /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/telecomms, @@ -7141,29 +7707,31 @@ /obj/machinery/vending/cigarette, /turf/open/floor/plating, /area/station/maintenance/port) -"cbB" = ( -/obj/machinery/requests_console/directional/west{ - department = "Security"; - name = "Security Requests Console" - }, +"cbA" = ( /obj/structure/table, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/machinery/recharger{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/item/geiger_counter{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "cbC" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/box, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "cbI" = ( /obj/machinery/vatgrower{ dir = 4 @@ -7185,23 +7753,37 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"cbS" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/pale/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) "cbT" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/ce) "cbV" = ( +/obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/conveyor{ dir = 8; id = "HoPsToy" }, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/carpet, +/obj/machinery/door/window/brigdoor/right/directional/east{ + req_access = list("hop") + }, +/turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) +"cca" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 8 + }, +/obj/structure/sign/warning/no_smoking/directional/north, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "ccc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7245,11 +7827,7 @@ req_access = list("ai_upload") }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"ccy" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/starboard/aft) +/area/station/ai/upload/chamber) "ccH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7267,11 +7845,6 @@ "ccN" = ( /turf/closed/wall, /area/station/medical/surgery) -"ccV" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "ccY" = ( /obj/machinery/door/airlock/medical{ name = "Coroner's Office" @@ -7282,22 +7855,6 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/morgue, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"ccZ" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=18-Bathroom"; - location = "17-Dorms" - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "cdc" = ( /turf/closed/wall, /area/station/service/kitchen/coldroom) @@ -7309,9 +7866,15 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"cdi" = ( -/turf/closed/wall, -/area/station/engineering/gravity_generator) +"cdo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) "cdq" = ( /obj/effect/turf_decal/weather/dirt{ dir = 8 @@ -7329,22 +7892,14 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, /area/station/service/library) -"cdP" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/crayon{ - icon_state = "revolution"; - name = "graffiti"; - paint_colour = "#FF0000"; - pixel_y = 32 +"cdJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cea" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "ceb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, @@ -7357,9 +7912,6 @@ "ceh" = ( /obj/structure/chair, /obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "cel" = ( @@ -7375,17 +7927,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/cytology) -"cer" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "ces" = ( /obj/structure/toilet{ dir = 8; @@ -7401,12 +7942,23 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) -"ceB" = ( -/obj/structure/chair/comfy{ +"cet" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"ceC" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +/area/station/cargo/storage) "ceG" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/customs) @@ -7466,20 +8018,6 @@ /obj/machinery/light/dim/directional/south, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"cfs" = ( -/obj/machinery/button/elevator{ - id = "catwalk_engi"; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "cfx" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -7497,38 +8035,12 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"cfI" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/west, +"cfS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"cfP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"cfQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"cfT" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/light/warm/directional/east, /turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/cargo/storage) "cgg" = ( /obj/effect/decal/remains/human, /obj/item/clothing/head/utility/hardhat/welding/atmos{ @@ -7544,39 +8056,75 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/small, /area/station/security/mechbay) +"cgG" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) +"cgI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/navigate_destination/incinerator, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "cgK" = ( /obj/structure/cable, /turf/closed/wall, /area/station/maintenance/solars/port/aft) "cgX" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/ladder, /obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/railing, +/obj/item/multitool{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/hand_labeler_refill{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "chb" = ( /obj/item/vending_refill/coffee, /turf/open/floor/plating, /area/station/maintenance/disposal) -"chc" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/upper) "chd" = ( /obj/structure/ladder, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "chf" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/security/office) +"chg" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "chr" = ( /obj/machinery/holopad, /turf/open/floor/wood/tile, @@ -7586,23 +8134,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"chz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"chv" = ( +/turf/open/floor/iron/stairs{ + dir = 1 }, -/obj/effect/spawner/structure/window/reinforced/tinted, +/area/station/maintenance/aft) +"chz" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"chG" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"chI" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) "chO" = ( /obj/structure/table/glass, /obj/item/reagent_containers/cup/glass/coffee{ @@ -7618,36 +8159,18 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/turf_decal/arrows{ - dir = 1 - }, /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"chR" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Bypass" - }, -/obj/effect/turf_decal/trimline/blue, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"chU" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters Access" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 2 +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 }, -/obj/effect/landmark/navigate_destination/dorms, -/turf/open/floor/iron/edge, -/area/station/commons/dorms) +/area/station/command/gateway) +"chV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/basketball, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "chX" = ( /obj/machinery/camera/directional/south{ c_tag = "Science - Xenobiology Big Pen Top"; @@ -7655,11 +8178,6 @@ }, /turf/open/openspace, /area/station/science/xenobiology) -"chZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "cib" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7667,26 +8185,37 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "cif" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "cil" = ( /obj/item/radio/intercom/directional/south, /turf/closed/wall/r_wall, /area/station/engineering/main) -"ciS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 +"ciN" = ( +/obj/effect/turf_decal/siding{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port) +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"ciT" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "cjb" = ( /obj/structure/frame/computer{ anchored = 1 @@ -7711,16 +8240,47 @@ /turf/open/floor/wood/large, /area/station/medical/psychology) "cjE" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"cjL" = ( -/obj/machinery/computer/station_alert{ +"cjQ" = ( +/obj/item/clothing/under/color/grey, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = -13 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = -13 + }, +/obj/structure/rack, +/obj/machinery/camera/autoname/directional/west, +/obj/item/flashlight, +/obj/item/radio/intercom/directional/north, +/obj/item/wrench, +/obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"cjW" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) +"cjY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/engineering/lobby) "cjZ" = ( /obj/machinery/computer/security/telescreen/cmo/directional/north, /obj/effect/landmark/start/chief_medical_officer, @@ -7741,13 +8301,19 @@ }, /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) +"cka" = ( +/obj/structure/frame, +/obj/structure/sign/poster/contraband/shamblers_juice/directional/east, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "ckd" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 +/obj/effect/turf_decal/siding/dark{ + dir = 6 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "cke" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -7760,10 +8326,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"ckn" = ( -/obj/machinery/light/floor, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "ckp" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo" @@ -7774,6 +8336,14 @@ /obj/machinery/hydroponics/soil, /turf/open/misc/sandy_dirt, /area/station/service/hydroponics/garden/abandoned) +"ckF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/closet/firecloset, +/turf/open/floor/iron, +/area/station/engineering/lobby) "ckG" = ( /obj/structure/table, /obj/item/clothing/glasses/sunglasses/big{ @@ -7796,7 +8366,9 @@ /area/station/hallway/primary/port) "ckZ" = ( /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) "cla" = ( /obj/effect/turf_decal/trimline/red/filled/line{ @@ -7824,38 +8396,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"clh" = ( -/obj/effect/mapping_helpers/broken_floor, +"clk" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/fluff/paper/stack{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/yellow, -/obj/item/hand_labeler_refill{ - pixel_x = -1 - }, -/obj/structure/fluff/paper{ - dir = 1 - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"clq" = ( +/obj/structure/sign/warning/vacuum/directional/north, +/turf/open/floor/plating/airless, /area/station/maintenance/starboard/aft) "cly" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/plating, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/loading_area/red{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, /area/station/cargo/storage) "clB" = ( /obj/structure/lattice/catwalk, /obj/machinery/light/directional/west, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"clF" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/sign/poster/contraband/the_big_gas_giant_truth/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) +/area/station/ai/satellite/chamber) "clG" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -7871,20 +8435,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "clT" = ( /obj/item/geiger_counter, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"clX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "clZ" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"cme" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "cmf" = ( /obj/item/radio/intercom/directional/north, /turf/open/openspace, @@ -7896,11 +8466,20 @@ /turf/open/floor/iron, /area/station/science/robotics/lab) "cmp" = ( -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/chair/office/light{ + dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"cmt" = ( +/obj/structure/table, +/obj/structure/sign/poster/contraband/energy_swords/directional/north, +/obj/item/clothing/head/costume/tv_head{ + pixel_y = 8 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "cmK" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/pale/style_random, @@ -7920,10 +8499,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/service/chapel) -"cmO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) "cmS" = ( /turf/closed/wall/r_wall, /area/station/security/mechbay) @@ -7935,15 +8510,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/courtroom) +"cmW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "cnw" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/open/openspace, /area/station/hallway/primary/starboard) +"cny" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "cnL" = ( -/obj/effect/turf_decal/siding/white{ - dir = 10 +/obj/effect/turf_decal/siding/blue{ + dir = 8 }, +/obj/effect/turf_decal/arrows, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "cnP" = ( @@ -7952,6 +8538,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) +"cnT" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/modular_computer/preset/cargochat/engineering{ + dir = 1 + }, +/obj/machinery/requests_console/directional/west{ + name = "Engineering Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) +"cnU" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "coc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/bounty, @@ -7970,13 +8572,6 @@ /obj/structure/railing/corner, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"cot" = ( -/obj/machinery/atmospherics/components/trinary/filter/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "cox" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -8016,6 +8611,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"cpl" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "cps" = ( /obj/machinery/newscaster/directional/west, /obj/structure/hedge, @@ -8023,29 +8628,21 @@ /turf/open/floor/wood/large, /area/station/medical/break_room) "cpy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +/obj/structure/chair/comfy/black{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "cpA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"cpD" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/musical_instrument, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cpE" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"cpF" = ( +/obj/item/cigbutt, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "cpG" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -8059,17 +8656,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/cytology) -"cpN" = ( -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "cpQ" = ( -/obj/structure/chair{ - dir = 1 +/obj/machinery/airalarm/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/sign/clock/directional/west, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 }, -/obj/machinery/light/directional/west, /turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/area/station/cargo/miningoffice) "cqe" = ( /obj/effect/landmark/start/medical_doctor, /obj/effect/turf_decal/siding/dark_blue{ @@ -8167,7 +8765,7 @@ /turf/open/floor/iron/white/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "crh" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/ferny/style_random, @@ -8190,16 +8788,10 @@ /area/station/service/library/private) "crk" = ( /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"crn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 +/turf/open/floor/iron/edge{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/hallway/primary/central) "crs" = ( /obj/structure/lattice/catwalk, /obj/structure/window/reinforced/spawner/directional/south, @@ -8213,18 +8805,10 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/herringbone, /area/station/commons/lounge) -"crE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"crG" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +"crP" = ( +/obj/effect/spawner/random/engineering/tank, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/department/crew_quarters/dorms) "crS" = ( /obj/structure/sign/poster/contraband/atmosia_independence/directional/north{ desc = "The captain is expressely FORBIDDEN here. Only those who took from him are allowed."; @@ -8245,11 +8829,12 @@ /turf/open/floor/engine, /area/station/service/hydroponics) "csb" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_cargobay"; - name = "Cargo Bay Shutters" - }, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window{ + dir = 8; + name = "Cargo Bay Shutters"; + id = "qm_cargobay" + }, /turf/open/floor/plating, /area/station/cargo/storage) "csd" = ( @@ -8290,6 +8875,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/hallway/secondary/service) +"csr" = ( +/obj/structure/stairs/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "cst" = ( /obj/effect/turf_decal/trimline/red/filled/mid_joiner{ dir = 1 @@ -8318,7 +8907,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "csC" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -8330,19 +8919,13 @@ /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "csE" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 4 }, -/obj/machinery/conveyor_switch/oneway{ - id = "cargounload"; - name = "Unloading Conveyor"; - pixel_x = -13; - pixel_y = -4 - }, /turf/open/floor/iron, /area/station/cargo/storage) "csF" = ( @@ -8363,39 +8946,21 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, /area/station/cargo/storage) -"csN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 10 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/lobby) -"csP" = ( -/obj/structure/sign/poster/contraband/grey_tide/directional/north, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_y = -2 - }, -/obj/item/storage/box/shipping{ - pixel_x = -11; - pixel_y = 6 +"csS" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "Outside Cargo" }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = -13 +/obj/effect/turf_decal/delivery, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"csS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/structure/sign/departments/cargo/directional/east, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) "csW" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -8422,20 +8987,6 @@ dir = 8 }, /area/station/hallway/primary/fore) -"cth" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "ctl" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, @@ -8446,6 +8997,9 @@ "ctm" = ( /obj/machinery/light/directional/west, /obj/structure/sign/departments/aiupload/directional/west, +/obj/effect/turf_decal/trimline/dark/arrow_cw{ + dir = 8 + }, /turf/open/floor/iron, /area/station/hallway/primary/aft) "ctE" = ( @@ -8463,6 +9017,12 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"ctL" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "ctN" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -8480,31 +9040,29 @@ /area/station/maintenance/port/aft) "cud" = ( /obj/machinery/conveyor{ - dir = 4; + dir = 1; id = "cargoload" }, -/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/stripes/end, /turf/open/floor/iron, /area/station/cargo/storage) +"cuL" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "cuQ" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron/dark, /area/station/science/lobby) -"cuT" = ( -/obj/machinery/light/directional/east, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "cuY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "cvj" = ( /obj/machinery/door/airlock/external{ @@ -8513,6 +9071,15 @@ /obj/effect/landmark/navigate_destination/dockescpod, /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"cvq" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "cvH" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -8520,6 +9087,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"cvM" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "cvP" = ( /turf/closed/wall/r_wall, /area/station/command/meeting_room/council) @@ -8541,6 +9114,16 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar/backroom) +"cwe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) "cwf" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -8560,7 +9143,9 @@ /area/station/hallway/secondary/entry) "cwq" = ( /obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "cwu" = ( /obj/structure/filingcabinet, @@ -8569,6 +9154,22 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) +"cwy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"cwA" = ( +/obj/structure/sign/directions/engineering/directional/east{ + dir = 1; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/maintenance/starboard/central) "cwL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall, @@ -8624,6 +9225,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"cxs" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Storage Room" + }, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) "cxD" = ( /obj/effect/turf_decal/trimline/blue/filled/end{ dir = 1 @@ -8646,19 +9257,6 @@ /obj/structure/sign/poster/contraband/missing_gloves, /turf/closed/wall, /area/station/maintenance/port) -"cxL" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/black, -/area/station/service/library/private) -"cxQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) "cxU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -8672,8 +9270,12 @@ }, /obj/structure/rack, /obj/effect/spawner/random/armory/disablers, +/obj/machinery/camera/motion{ + c_tag = "Armory - Internal"; + dir = 8 + }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cyd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bodycontainer/crematorium{ @@ -8694,6 +9296,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"cyD" = ( +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "cyG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8729,32 +9339,19 @@ /obj/structure/sign/eyechart/directional/east, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"cyN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, +"cyO" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/bot_white, /turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/area/station/engineering/supermatter/room/upper) "cyT" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"cyW" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "czk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8763,6 +9360,7 @@ "czp" = ( /obj/machinery/light/floor, /obj/structure/cat_house, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "czs" = ( @@ -8802,6 +9400,10 @@ dir = 1 }, /area/station/hallway/secondary/entry) +"czx" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "czF" = ( /obj/structure/railing/corner{ dir = 1 @@ -8810,13 +9412,17 @@ dir = 1 }, /obj/structure/cable, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"czG" = ( +/obj/machinery/duct, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "czK" = ( /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, @@ -8837,18 +9443,9 @@ name = "\improper APLU \"Cargostormer 3\"" }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, /turf/open/floor/iron/recharge_floor, /area/station/cargo/warehouse) -"cAc" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/railing/corner/end, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "cAh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/cloth, @@ -8871,14 +9468,6 @@ /obj/machinery/light/directional, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"cAv" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "cAz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8892,18 +9481,23 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/brig) +"cAG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "cAH" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 }, -/obj/structure/table/reinforced, -/obj/machinery/microwave/engineering, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"cAI" = ( -/obj/structure/fireaxecabinet/directional/east, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "cAM" = ( /obj/structure/railing{ dir = 8 @@ -8923,18 +9517,13 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "cAW" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "HoPsToy" - }, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/right/directional/east{ - req_access = list("hop") +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 9 }, -/turf/open/floor/carpet, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "cBc" = ( /obj/effect/turf_decal/siding/wood, @@ -8973,10 +9562,36 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/wood, /area/station/service/library/printer) -"cBu" = ( -/obj/structure/sign/warning/vacuum/directional/north, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) +"cBl" = ( +/obj/effect/decal/cleanable/glitter, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"cBs" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"cBv" = ( +/obj/machinery/power/emitter/prototype{ + desc = "Hell yeah."; + dir = 4; + name = "Betsy" + }, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "cBA" = ( /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; @@ -9010,6 +9625,14 @@ }, /turf/open/floor/iron/dark, /area/station/commons/storage/art) +"cBF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "cBT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9032,14 +9655,24 @@ }, /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) -"cBY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 +"cBU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster's Office" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) +"cCb" = ( +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "cCj" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -9068,6 +9701,22 @@ }, /turf/open/floor/iron/dark/diagonal, /area/station/service/theater) +"cCo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) +"cCp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4; + initialize_directions = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/structure/sign/warning/hot_temp/directional/west, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "cCq" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 @@ -9078,11 +9727,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) -"cCr" = ( -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "cCt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9098,12 +9742,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"cCv" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/water, -/area/station/maintenance/starboard/fore) "cCx" = ( /obj/structure/stairs/west, /obj/structure/railing, @@ -9112,29 +9750,15 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) -"cCA" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/station/service/library/printer) -"cCI" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "cCM" = ( /turf/open/openspace, /area/station/engineering/lobby) "cCN" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/chair/sofa/left/brown{ - dir = 1 - }, /obj/machinery/newscaster/directional/south, -/obj/effect/landmark/start/shaft_miner, +/obj/machinery/conveyor{ + dir = 8; + id = "mining" + }, /turf/open/floor/iron/textured, /area/station/cargo/storage) "cCX" = ( @@ -9153,6 +9777,15 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/science/robotics/lab) +"cDd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "cDq" = ( /obj/machinery/chem_master, /obj/structure/sign/warning/secure_area/directional/west, @@ -9172,30 +9805,18 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"cDA" = ( -/obj/effect/spawner/random/trash/janitor_supplies, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "cDB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/holopad, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) -"cDC" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ +"cDF" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"cDU" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "cDY" = ( /obj/machinery/light/small/directional/west, /obj/structure/rack, @@ -9227,13 +9848,23 @@ }, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"cEf" = ( -/obj/structure/chair/pew/right{ - dir = 4 +"cEj" = ( +/obj/structure/table/reinforced, +/obj/item/stamp/denied{ + pixel_x = 7; + pixel_y = 8 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/obj/item/stamp/granted{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron, +/area/station/cargo/storage) "cEm" = ( /obj/structure/rack, /obj/item/storage/box/gloves{ @@ -9242,11 +9873,6 @@ /obj/item/storage/box/disks, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"cEn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) "cEH" = ( /obj/structure/table, /obj/item/stock_parts/power_store/cell/high{ @@ -9270,11 +9896,21 @@ /turf/open/floor/wood, /area/station/command/teleporter) "cER" = ( -/obj/effect/turf_decal/tile/brown{ +/obj/effect/turf_decal/siding/green{ dir = 1 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"cET" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "cFa" = ( /turf/open/openspace, /area/station/service/kitchen) @@ -9286,14 +9922,6 @@ /obj/effect/mapping_helpers/airlock/access/any/science/ordnance, /turf/open/floor/engine, /area/station/science/ordnance/burnchamber) -"cFc" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/horrific_experiment, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "cFp" = ( /obj/structure/urinal/directional/east, /obj/effect/decal/cleanable/dirt, @@ -9346,6 +9974,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"cFN" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "cFY" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -9371,17 +10006,25 @@ }, /area/station/hallway/secondary/exit/departure_lounge) "cGp" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/plating, -/area/station/cargo/storage) +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 8; + name = "Cargo Bay"; + shuttle_id = "cargo_home"; + width = 13 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) "cGB" = ( /obj/machinery/light/directional/east, /obj/machinery/camera/autoname/directional/east, -/obj/machinery/button/door/directional/south{ - id = "lawyer_shutters"; +/obj/machinery/button/door/directional/east{ name = "law office shutter control"; - pixel_x = 24; - pixel_y = 7 + id = "lawyer_shutters" }, /turf/open/floor/carpet, /area/station/service/lawoffice) @@ -9412,29 +10055,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"cGS" = ( -/obj/structure/sign/warning/radiation/rad_area, -/turf/closed/wall/r_wall, -/area/station/engineering/hallway) -"cHp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table, -/turf/open/openspace, -/area/station/hallway/secondary/exit/departure_lounge) -"cHq" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 3 +"cHt" = ( +/obj/effect/landmark/start/quartermaster, +/obj/structure/chair/office{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "cHv" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, /area/station/maintenance/solars/port/aft) +"cHx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "cHz" = ( /obj/structure/chair/sofa/left/brown, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -9444,14 +10079,6 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron, /area/station/science/breakroom) -"cHC" = ( -/obj/structure/railing, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/grass, -/area/station/hallway/primary/starboard) "cHD" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9464,39 +10091,40 @@ /obj/structure/closet/toolcloset, /turf/open/floor/wood, /area/station/commons/storage/tools) -"cHK" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 +"cHL" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "cHP" = ( -/obj/machinery/computer/atmos_alert{ +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 1 }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "cHS" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 8 +/obj/item/dest_tagger{ + pixel_x = 8; + pixel_y = 8 }, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/item/dest_tagger{ + pixel_x = -6; + pixel_y = 8 }, -/obj/structure/railing, -/turf/open/floor/iron, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/item/dest_tagger, +/obj/item/clothing/head/soft{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/cable, +/obj/structure/table, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "cHZ" = ( /obj/effect/turf_decal/tile/red/half/contrasted, @@ -9507,17 +10135,12 @@ /area/station/medical/morgue) "cIl" = ( /obj/machinery/disposal/bin, -/obj/machinery/camera/autoname/directional/south, /obj/machinery/light/directional/south, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) -"cIp" = ( -/obj/item/binoculars, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "cIq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -9569,48 +10192,12 @@ specific_transport_id = "catwalk_ai" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"cIH" = ( -/obj/machinery/light/directional/east, -/obj/structure/railing, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/storage) -"cIN" = ( -/obj/structure/table/reinforced, -/obj/item/stamp/denied{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, -/area/station/cargo/storage) +/area/station/ai/satellite/chamber) "cIT" = ( /obj/structure/lattice/catwalk, /obj/effect/spawner/random/trash/grille_or_waste, /turf/open/openspace, /area/station/maintenance/port/aft) -"cIX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"cJb" = ( -/obj/item/trash/can, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) "cJk" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/shrink_cw, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, @@ -9619,7 +10206,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/smooth_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "cJp" = ( /obj/item/kirbyplants/random, /obj/machinery/light/dim/directional/east, @@ -9656,11 +10243,6 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/wood, /area/station/security/detectives_office) -"cJE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "cJI" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -9671,25 +10253,28 @@ /turf/closed/wall/r_wall, /area/station/security/prison) "cJK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/warning{ - dir = 1 +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"cJZ" = ( +/obj/structure/chair/pew/right{ + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"cJU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper{ - dir = 8 +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"cKa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "Cabin7"; + name = "Cabin 7" }, -/obj/item/paper/crumpled{ - pixel_x = 2; - pixel_y = 6 +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) "cKc" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -9710,7 +10295,9 @@ /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) "cKs" = ( /obj/effect/decal/cleanable/dirt, @@ -9724,22 +10311,19 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) +"cKK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/commons/dorms) "cKO" = ( /obj/structure/chair, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/start/prisoner, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"cKR" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/lobby) "cKX" = ( /obj/machinery/smartfridge, /obj/effect/turf_decal/tile/green/full, @@ -9767,10 +10351,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"cLq" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "cLF" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line, @@ -9782,47 +10362,25 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"cLP" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 8; - listening = 0; - name = "Station Intercom (Court)" - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/courtroom) "cLQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/storage/tcomms) -"cLV" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 9 - }, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "cMb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/north, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"cMj" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "cMq" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment{ @@ -9838,6 +10396,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel) +"cME" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/modular_computer/preset/engineering{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "cMI" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -9847,24 +10415,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"cMW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 8; - name = "Waste Release" +"cMJ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"cMR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "cMY" = ( /obj/effect/turf_decal/box/white{ color = "#9FED58" }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"cNl" = ( -/obj/effect/spawner/random/structure/tank_holder, +"cNf" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/warning/vacuum/directional/north, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/aft) "cNq" = ( /obj/structure/table/wood, /obj/item/book/bible{ @@ -9873,11 +10447,12 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark, /area/station/service/chapel) -"cNt" = ( -/obj/structure/sign/warning/radiation/rad_area, -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/engineering/main) +"cNr" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "cNu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9892,20 +10467,13 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"cNH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cNO" = ( +"cNK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "cNS" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -9925,6 +10493,12 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"cOj" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/plasma{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "cOm" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/freezer, @@ -9941,12 +10515,35 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/station/solars/starboard/fore) +"cOz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"cOE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) +"cOJ" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/glitter, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "cOP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/glass, /area/station/maintenance/port) +"cOR" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "cOS" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/camera/directional/north{ @@ -9961,6 +10558,7 @@ dir = 4 }, /obj/machinery/camera/autoname/directional/west, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) "cPk" = ( @@ -9980,6 +10578,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"cPr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "cPz" = ( /obj/structure/railing{ dir = 4 @@ -9995,20 +10602,27 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"cPW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +"cPB" = ( +/obj/structure/flora/tree/palm/style_random, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) +"cPD" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, /obj/structure/disposalpipe/segment{ - dir = 6 + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "cPX" = ( /obj/item/radio/intercom/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cPY" = ( /obj/machinery/door/airlock/research{ name = "Research and Development Lab" @@ -10029,6 +10643,24 @@ /obj/structure/chair/comfy/black, /turf/open/floor/glass, /area/station/security/brig) +"cQd" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/east{ + id = "officecommissarydoor"; + name = "Office Door Lock"; + normaldoorcontrol = 1; + pixel_x = 0; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) +"cQi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) "cQu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, @@ -10037,6 +10669,13 @@ /obj/effect/mapping_helpers/airlock/access/all/service/general, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"cQv" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "cQF" = ( /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /obj/machinery/door/firedoor, @@ -10054,11 +10693,12 @@ /turf/open/openspace, /area/station/maintenance/port/fore) "cRa" = ( -/obj/effect/turf_decal/siding/red, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/turf/open/floor/iron/dark, +/obj/item/kirbyplants/random, +/obj/structure/railing, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "cRb" = ( /obj/structure/disposalpipe/segment{ @@ -10080,9 +10720,6 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"cRk" = ( -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) "cRn" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -10094,7 +10731,6 @@ /turf/open/floor/iron/dark, /area/station/security/brig) "cRL" = ( -/obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/stairs/medium{ dir = 8 }, @@ -10110,6 +10746,7 @@ /obj/structure/disposalpipe/sorting/mail{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) "cRX" = ( @@ -10122,16 +10759,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"cRZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "cSf" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/airalarm/directional/south, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" - }, -/obj/structure/railing{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/cargo/miningoffice) "cSg" = ( @@ -10145,16 +10781,11 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) -"cSq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"cSs" = ( +/obj/effect/spawner/structure/window, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "cSt" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 1 @@ -10189,6 +10820,16 @@ }, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"cSD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/science/research) "cSF" = ( /obj/structure/chair/office{ dir = 8 @@ -10222,7 +10863,11 @@ /obj/structure/disposalpipe/junction/flip{ dir = 8 }, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "cSW" = ( /obj/structure/chair{ @@ -10250,18 +10895,20 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"cTv" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 +"cTk" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_half, +/area/station/service/library) +"cTo" = ( +/obj/machinery/computer/cargo{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 1 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron, +/area/station/cargo/storage) "cTJ" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/maintenance/two, @@ -10274,22 +10921,12 @@ }, /turf/open/floor/plating, /area/station/construction/storage_wing) -"cTM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) "cTR" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 1 }, /turf/open/floor/engine/hull, /area/space/nearstation) -"cTS" = ( -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "cTU" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/corner{ dir = 4 @@ -10308,14 +10945,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"cTX" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "cTZ" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/machinery/portable_atmospherics/canister/air, @@ -10324,21 +10953,21 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "cUf" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/station/maintenance/port) -"cUo" = ( -/obj/effect/turf_decal/siding{ - dir = 1 +"cUj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 9 }, -/obj/effect/turf_decal/trimline/white/corner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"cUl" = ( +/obj/structure/cable, +/turf/open/floor/iron/textured_edge, +/area/station/command/gateway) "cUp" = ( /obj/structure/table, /obj/item/clothing/suit/jacket/straight_jacket{ @@ -10368,11 +10997,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"cUA" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "cUJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -10415,6 +11039,11 @@ /obj/effect/decal/cleanable/confetti, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"cVq" = ( +/obj/effect/spawner/random/structure/crate, +/obj/structure/sign/poster/contraband/hacking_guide/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "cVr" = ( /obj/structure/chair/comfy/black{ dir = 1 @@ -10441,27 +11070,56 @@ /obj/structure/reagent_dispensers/wall/peppertank/directional/north, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"cVH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 +"cVQ" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 }, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/storage/art) +"cVW" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/hangover, /turf/open/openspace, -/area/station/maintenance/starboard/aft) -"cVN" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 8 +/area/station/maintenance/starboard/upper) +"cWb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage) +"cWc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" }, -/turf/open/floor/iron, -/area/station/commons/dorms) +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) "cWd" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = 7; + pixel_y = 11 }, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet, +/obj/item/pinpointer/nuke{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood/end, +/obj/item/disk/nuclear{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "cWg" = ( /obj/structure/railing{ @@ -10495,7 +11153,17 @@ /obj/effect/turf_decal/siding/dark, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"cWr" = ( +/obj/structure/lattice/catwalk, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/table, +/obj/machinery/airalarm/directional/south, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "cWt" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -10508,6 +11176,11 @@ dir = 8 }, /area/station/commons/lounge) +"cWu" = ( +/obj/structure/broken_flooring/singular/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "cWF" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 @@ -10517,14 +11190,10 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) -"cWG" = ( -/obj/machinery/vending/cola/pwr_game, -/turf/open/floor/wood, -/area/station/commons/dorms) "cWL" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cWN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10533,15 +11202,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"cWS" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/lasertag/red, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"cWU" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) "cWW" = ( /obj/effect/turf_decal/trimline/red/arrow_ccw{ dir = 1 @@ -10563,6 +11223,14 @@ /obj/item/bedsheet/cmo/double, /turf/open/floor/carpet/cyan, /area/station/command/heads_quarters/cmo) +"cXf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/engine/hull, +/area/station/maintenance/starboard/upper) "cXj" = ( /obj/structure/table/reinforced/rglass, /obj/machinery/fax{ @@ -10571,19 +11239,24 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"cXw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"cXk" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) +"cXm" = ( +/obj/effect/landmark/carpspawn, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cXF" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7-Gateway"; - location = "6-Courtroom" - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/washing_machine, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "cXM" = ( /obj/effect/mapping_helpers/airlock/access/all/service/general, /obj/machinery/door/airlock/maintenance{ @@ -10592,6 +11265,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"cXO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "cXV" = ( /obj/machinery/vending/cigarette, /obj/machinery/firealarm/directional/east, @@ -10605,6 +11286,10 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, /area/station/cargo/storage) +"cYn" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "cYo" = ( /obj/structure/table, /obj/item/reagent_containers/condiment/enzyme{ @@ -10628,21 +11313,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"cYq" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight{ - pixel_y = 14 - }, -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cYx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "cYB" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/lattice/catwalk, @@ -10661,7 +11331,7 @@ /obj/structure/ladder, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "cYT" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -10678,6 +11348,13 @@ dir = 1 }, /area/station/science/lab) +"cZg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Freezer to Loop" + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "cZh" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -10703,6 +11380,11 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/openspace, /area/station/command/heads_quarters/rd) +"cZn" = ( +/obj/structure/musician/piano, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) "cZo" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -10714,12 +11396,42 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/maintenance/port) +"cZr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"cZz" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"cZD" = ( +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "cZE" = ( /obj/effect/turf_decal/tile/dark/half/contrasted{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"cZI" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/station/maintenance/starboard/fore/upper) "cZN" = ( /obj/structure/railing{ dir = 4 @@ -10742,13 +11454,11 @@ dir = 8 }, /area/station/science/ordnance/storage) -"daw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"dal" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "dax" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -10758,37 +11468,9 @@ /obj/structure/cable, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"daz" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "daC" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) -"daE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"daQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/ai/satellite/interior) "daW" = ( /obj/structure/ladder, /obj/structure/sign/poster/contraband/space_cola/directional/north, @@ -10849,22 +11531,22 @@ }, /turf/open/floor/wood, /area/station/service/lawoffice) -"dbT" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 +"dch" = ( +/obj/structure/chair/office{ + dir = 1 }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"dcv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/tile, -/area/station/security/detectives_office/private_investigators_office) +/obj/structure/sign/poster/contraband/pwr_game/directional/west, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "dcE" = ( /turf/open/space/basic, /area/space) +"dcO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/starboard) "dde" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -10885,16 +11567,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/zoo) -"ddw" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +"ddu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/openspace, +/area/station/engineering/lobby) "ddz" = ( /obj/effect/turf_decal/siding/white, /obj/item/kirbyplants/organic/plant21{ @@ -10904,45 +11583,42 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"ddM" = ( -/obj/structure/cable, +"ddI" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/bin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ddW" = ( -/obj/structure/railing, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore) "dea" = ( /obj/machinery/door/window/left/directional/west{ name = "Gateway Chamber" }, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "deg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "dej" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 }, -/obj/structure/closet/secure_closet/miner, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Mining" +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 10 }, -/obj/machinery/light/directional/north, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/hallway/primary/starboard) +"dep" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "dex" = ( /obj/structure/railing/corner{ dir = 1 @@ -10955,6 +11631,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"dey" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "deC" = ( /obj/structure/ladder, /obj/effect/decal/cleanable/dirt, @@ -10972,9 +11652,8 @@ /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "deJ" = ( -/obj/effect/turf_decal/siding/green/corner{ - dir = 4 - }, +/obj/effect/turf_decal/siding/white, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "deR" = ( @@ -11010,11 +11689,18 @@ /turf/open/openspace, /area/station/hallway/primary/central) "dft" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/machinery/light_switch/directional/north, +/obj/structure/sign/clock/directional/east, +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) +"dfy" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "dfC" = ( /obj/item/paper_bin{ pixel_x = -6; @@ -11042,21 +11728,12 @@ /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, /area/station/hallway/secondary/entry) -"dfG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "dfK" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) "dfL" = ( @@ -11066,11 +11743,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"dfO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/flag/nanotrasen/directional/north, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "dfR" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -11085,6 +11757,15 @@ /obj/effect/turf_decal/box/white, /turf/open/floor/iron/dark/textured_corner, /area/station/science/ordnance/storage) +"dgl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "dgy" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -11099,18 +11780,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/black, /area/station/medical/psychology) -"dgR" = ( -/obj/structure/table/reinforced, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/item/toy/crayon/spraycan, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"dhf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/surgicaldrill, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "dho" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -11129,6 +11805,10 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) +"dht" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "dhx" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/siding/wood{ @@ -11136,13 +11816,15 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"dhL" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, +"dhy" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) +"dhZ" = ( +/obj/structure/lattice, +/turf/open/openspace, /area/station/commons/dorms) "dic" = ( /obj/effect/turf_decal/trimline/dark_blue/corner{ @@ -11150,7 +11832,7 @@ }, /obj/machinery/light/directional/west, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dig" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -11193,7 +11875,7 @@ }, /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dir" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -11242,14 +11924,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) -"diE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) "diJ" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/railing{ @@ -11266,16 +11940,14 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "diP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, /obj/item/cigbutt, -/mob/living/simple_animal/bot/mulebot{ - name = "Old Yeller" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - location = "Cargo Storage" +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/industrial/loader, +/obj/machinery/button/door/directional/south{ + id = "qm_warehouse"; + name = "Warehouse Shutters"; + pixel_x = -6 }, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) @@ -11292,6 +11964,10 @@ /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/iron/smooth, /area/station/engineering/main) +"djn" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "djt" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -11314,13 +11990,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"djE" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "djG" = ( /obj/structure/lattice/catwalk, /obj/machinery/light_switch/directional/east, +/obj/machinery/firealarm/directional/south, /turf/open/openspace, /area/station/security/checkpoint/supply) "djL" = ( @@ -11330,6 +12003,20 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"djM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/upper) +"djX" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"dkb" = ( +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "dkd" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -11338,9 +12025,14 @@ /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "dkm" = ( +/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/command/meeting_room/council) +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/turf/open/floor/plating, +/area/station/command/bridge) "dko" = ( /obj/structure/disposalpipe/sorting/mail{ dir = 8 @@ -11363,7 +12055,7 @@ /obj/machinery/light/directional/west, /obj/effect/spawner/random/armory/barrier_grenades/six, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dkz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11376,25 +12068,12 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"dkN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/light/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "dkO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/security/courtroom) -"dkQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "dkY" = ( /obj/machinery/disposal/bin, /obj/machinery/light/directional/north, @@ -11420,14 +12099,6 @@ /obj/structure/disposalpipe/segment, /turf/open/openspace, /area/station/hallway/secondary/construction) -"dlk" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"dll" = ( -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "dlo" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -11435,6 +12106,28 @@ "dlt" = ( /turf/open/floor/plating/airless, /area/station/maintenance/starboard/aft) +"dlv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dlx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) +"dlK" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/stool/directional/east, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "dlW" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/caution/stand_clear, @@ -11448,16 +12141,48 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"dmn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ +"dmj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"dmk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"dmn" = ( +/obj/machinery/light/warm/dim/directional/east, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "dmp" = ( /turf/open/floor/wood, /area/station/command/corporate_showroom) +"dmC" = ( +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/station/commons/dorms) +"dmI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) "dmJ" = ( /obj/structure/table/wood, /obj/item/radio/intercom, @@ -11484,35 +12209,36 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"dnb" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Showers" - }, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 8 - }, -/area/station/engineering/main) "dnj" = ( /obj/effect/spawner/random/structure/grille, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"dno" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/light/very_dim/directional/south, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"dns" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "dnx" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/security/court, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"dnC" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "dnE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11530,6 +12256,21 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/station/command/corporate_showroom) +"dnJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) +"dnK" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) "dnM" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -11541,15 +12282,6 @@ /obj/structure/disposalpipe/segment, /turf/open/openspace, /area/station/medical/abandoned) -"dnO" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/obj/structure/chair{ - dir = 4; - pixel_y = -2 - }, -/obj/item/binoculars, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "dnW" = ( /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/plating, @@ -11611,12 +12343,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"doH" = ( -/obj/item/trash/can{ - pixel_x = 3 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "doK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11626,11 +12352,13 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"doL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) +"doM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "doO" = ( /obj/machinery/light/directional/north, /obj/machinery/airalarm/directional/north, @@ -11638,19 +12366,16 @@ /obj/machinery/cell_charger{ pixel_y = 3 }, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_y = 8 - }, /obj/item/stock_parts/power_store/cell/high{ charge = 100; maxcharge = 15000; pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "dpo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -11674,10 +12399,9 @@ dir = 6 }, /obj/machinery/computer/shuttle/mining{ - dir = 1; - req_access = null + dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/station/cargo/miningoffice) "dpR" = ( @@ -11725,16 +12449,6 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, /area/station/science/lobby) -"dqo" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "dqB" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -11744,19 +12458,13 @@ dir = 1 }, /obj/machinery/light/small/directional/south, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "dqC" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/security/interrogation) -"dqF" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/table, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "dqH" = ( /obj/structure/table, /obj/item/gun/grenadelauncher{ @@ -11774,7 +12482,14 @@ /obj/machinery/light_switch/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"dqI" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "dqJ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -11796,6 +12511,14 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/primary/aft) +"dqZ" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"dra" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "drb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -11803,6 +12526,22 @@ /obj/machinery/vending/cigarette, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"drg" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/button/door/directional/south{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + req_access = list("command") + }, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"dri" = ( +/obj/structure/sign/poster/contraband/missing_gloves/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "drk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11813,24 +12552,19 @@ /turf/open/floor/plating, /area/station/construction/storage_wing) "drn" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/structure/chair/plastic{ dir = 1 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "drt" = ( /obj/structure/sign/poster/official/fruit_bowl/directional/north, /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) -"drA" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "drC" = ( /turf/open/floor/iron/stairs/medium{ dir = 8 @@ -11838,7 +12572,7 @@ /area/station/hallway/secondary/service) "drI" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -11863,19 +12597,9 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) -"drW" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 9 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "drX" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"dsg" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/area/station/command/eva) "dso" = ( /obj/structure/stairs/east, /obj/structure/railing, @@ -11894,7 +12618,7 @@ "dsx" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dsD" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/trimline/dark_blue/warning{ @@ -11906,11 +12630,16 @@ /obj/machinery/telecomms/broadcaster/preset_left, /turf/open/floor/iron/dark/textured_large, /area/station/tcommsat/server) -"dsR" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"dsN" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "dsV" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -11922,21 +12651,11 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/hallway/primary/central) -"dsY" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"dtj" = ( -/obj/machinery/light/directional/south, -/obj/machinery/shower/directional/east, -/obj/structure/fluff/shower_drain, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 4 - }, -/area/station/engineering/main) +"dsZ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "dtn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11954,25 +12673,14 @@ dir = 1 }, /area/station/science/cytology) -"dto" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"dtu" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "holodeck" +"dtv" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Air Supply"; + name = "atmospherics camera" }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/air, +/area/station/engineering/atmos/upper) "dtx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -11980,12 +12688,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/central) -"dtC" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +"dtL" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/computer/security{ + dir = 4 }, -/turf/open/openspace, -/area/station/engineering/lobby) +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "dtO" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 4 @@ -11994,10 +12704,23 @@ /turf/open/floor/iron/dark, /area/station/science/cytology) "dtP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/structure/sign/directions/medical/directional/east{ + dir = 2; + pixel_y = 9; + pixel_x = 0 + }, +/obj/structure/sign/directions/science/directional/east{ + dir = 2; + pixel_y = 3; + pixel_x = 0 + }, +/obj/structure/sign/directions/security/directional/east{ + dir = 2; + pixel_y = -3; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/commons/vacant_room/office) "dtR" = ( /obj/effect/decal/cleanable/food/egg_smudge{ pixel_x = -7; @@ -12005,6 +12728,16 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"dtT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "dua" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -12014,18 +12747,19 @@ /obj/structure/table, /turf/open/openspace, /area/station/construction/storage_wing) -"dux" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/brown/corner{ +"duf" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/floor/iron, -/area/station/commons/dorms) +/turf/open/floor/wood/large, +/area/station/engineering/lobby) +"duw" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/holodeck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "duz" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 6 @@ -12058,53 +12792,64 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"duC" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "duE" = ( -/obj/machinery/light_switch/directional/west{ - pixel_x = -24; - pixel_y = 27 +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"duQ" = ( -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/machinery/light/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +"duG" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "dvn" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron, /area/station/science/research) +"dvr" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "dvs" = ( /obj/structure/sign/poster/contraband/random/directional/north, -/obj/item/storage/bag/trash/filled, /turf/open/floor/plating, /area/station/maintenance/disposal) -"dvu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/pen/red{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"dvt" = ( +/obj/machinery/door/airlock{ + name = "Emergency Storage" }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft) "dvw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/iron/dark, /area/station/science/ordnance) "dvK" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/computer/security/mining{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/cargo/miningoffice) "dvL" = ( @@ -12148,14 +12893,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"dwq" = ( -/obj/structure/ladder, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "dwB" = ( /obj/structure/cable, /obj/structure/closet/syndicate{ @@ -12180,6 +12917,35 @@ }, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) +"dwQ" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) +"dwU" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "Chief Engineers Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) +"dwY" = ( +/obj/structure/table, +/obj/item/clothing/under/costume/seifuku/tan{ + pixel_x = -14; + pixel_y = -2 + }, +/obj/item/trash/boritos{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/clothing/glasses/sunglasses/gar/orange{ + pixel_x = 4 + }, +/obj/structure/sign/poster/contraband/energy_swords/directional/north, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "dxf" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -12187,20 +12953,6 @@ }, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) -"dxh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"dxv" = ( -/obj/machinery/atmospherics/pipe/multiz/orange/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/structure/railing/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "dxx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12225,40 +12977,33 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"dxL" = ( -/obj/machinery/button/door/directional/south{ - id = "ceprivacy"; - name = "Privacy Shutters Control"; - pixel_y = -2; - pixel_x = -7 - }, -/obj/machinery/button/door/directional/west{ - id = "transitlockdown"; - name = "Transit Tube Lockdown"; - pixel_x = 7; - pixel_y = -2 - }, -/obj/machinery/button/door{ - id = "securestoragecw"; - name = "Secure Storage"; - pixel_y = 8 - }, -/obj/structure/table/reinforced/rglass, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) "dxN" = ( /obj/effect/turf_decal/trimline/purple/filled/corner, /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"dxQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/openspace, +/area/station/engineering/lobby) +"dxU" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "dyd" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/science/xenobiology) -"dyg" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/security/detectives_office) "dyi" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -12279,6 +13024,11 @@ /obj/machinery/suit_storage_unit/engine, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) +"dyu" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/spear, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "dyx" = ( /obj/machinery/door/airlock/public/glass{ name = "Farewell Room" @@ -12305,31 +13055,18 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"dyG" = ( -/obj/item/pickaxe{ - pixel_x = -5; - pixel_y = -7 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) +"dyM" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "dyN" = ( /turf/open/openspace, /area/station/command/heads_quarters/rd) -"dyQ" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/landmark/firealarm_sanity, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) "dyS" = ( -/obj/structure/chair/office{ - dir = 1 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) @@ -12344,6 +13081,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"dzn" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating/airless, +/area/station/maintenance/aft/upper) "dzo" = ( /mob/living/basic/spider/giant/tarantula{ name = "Mr Johnson" @@ -12352,15 +13094,20 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"dzt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/yjunction{ +"dzw" = ( +/turf/open/floor/wood/large, +/area/station/engineering/lobby) +"dzx" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/iron/textured_edge{ dir = 1 }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) -"dzx" = ( -/turf/open/floor/iron/dark, /area/station/command/gateway) "dzH" = ( /obj/machinery/camera/autoname/directional/north, @@ -12368,14 +13115,11 @@ /obj/machinery/light/directional/east, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"dzI" = ( -/turf/open/openspace, -/area/station/maintenance/starboard/fore) "dzK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dzP" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12405,23 +13149,13 @@ /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) "dAV" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/item/radio/intercom/directional/south, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" - }, -/obj/machinery/bouldertech/refinery/smelter, -/obj/structure/railing{ - dir = 1 +/obj/structure/sign/poster/random/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 }, /turf/open/floor/iron, -/area/station/cargo/miningoffice) -"dAW" = ( -/obj/structure/sink/directional/east, -/obj/structure/mirror/directional/west, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/area/station/cargo/storage) "dAY" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/highsecurity{ @@ -12431,11 +13165,6 @@ /obj/effect/turf_decal/stripes/end{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock_note_placer{ - note_info = "Access with authorization only. The Controlled Hazard Chamber is designed to withstand incidents you cannot. Essential safety equipment has been provided to ensure your work may continue without compromising station integrity"; - note_name = "Projects" - }, /turf/open/floor/engine, /area/station/medical/chemistry) "dBd" = ( @@ -12444,10 +13173,6 @@ /obj/effect/spawner/random/structure/musician/piano/random_piano, /turf/open/floor/iron/dark/diagonal, /area/station/service/theater) -"dBe" = ( -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "dBk" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -12461,6 +13186,14 @@ "dBm" = ( /turf/closed/wall, /area/station/hallway/primary/central) +"dBo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) "dBp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -12485,6 +13218,13 @@ /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/chem_storage) +"dBz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/medical/virology) "dBB" = ( /obj/structure/lattice/catwalk, /obj/item/stack/rods, @@ -12495,10 +13235,15 @@ /obj/effect/spawner/random/structure/barricade, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"dBG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) +"dBE" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "dBM" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -12510,7 +13255,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dCg" = ( /obj/effect/turf_decal/arrows/red{ dir = 4; @@ -12534,12 +13279,16 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/library) -"dCE" = ( -/obj/effect/turf_decal/siding/brown/end{ +"dCs" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/effect/turf_decal/siding/yellow{ dir = 4 }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "dCY" = ( /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, @@ -12550,17 +13299,26 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"dDf" = ( -/obj/machinery/camera/autoname/directional/south, -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass, -/area/station/medical/medbay/central) -"dDq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"dDg" = ( /obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard) +"dDx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"dDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 15 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "dDL" = ( /obj/structure/lattice, /turf/open/space/openspace, @@ -12571,10 +13329,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/brig) -"dDV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "dEk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -12610,6 +13364,10 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"dEr" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "dEu" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -12649,11 +13407,6 @@ }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"dEX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "dEY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12687,11 +13440,6 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"dFo" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "dFt" = ( /obj/structure/stairs/north, /turf/open/floor/iron, @@ -12716,15 +13464,11 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "dGi" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Abandoned Hallway" - }, -/obj/machinery/door/firedoor, /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 }, /turf/open/floor/iron, -/area/station/hallway/secondary/construction) +/area/station/hallway/primary/starboard) "dGu" = ( /obj/structure/frame/computer{ anchored = 1 @@ -12739,8 +13483,9 @@ /obj/effect/turf_decal/siding/blue{ dir = 1 }, +/obj/machinery/camera/autoname/directional/north, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "dGy" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, @@ -12752,10 +13497,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) -"dGM" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "dGQ" = ( /obj/machinery/door/airlock/engineering/glass{ name = "Primary Tool Storage" @@ -12764,36 +13505,18 @@ /obj/effect/landmark/navigate_destination/tools, /turf/open/floor/iron, /area/station/commons/storage/primary) -"dGS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Shared Storage" +"dGX" = ( +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + name = "decommissioned sleeper" }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"dHb" = ( -/obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, -/obj/item/encryptionkey/headset_service{ - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dHh" = ( -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) +"dGY" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "dHm" = ( /obj/machinery/door/airlock/virology{ name = "Abandoned Bathroom" @@ -12802,39 +13525,32 @@ /turf/open/floor/iron/freezer, /area/station/maintenance/port) "dHq" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter" - }, -/obj/effect/turf_decal/tile/dark_green/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/office) -"dHC" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight, -/obj/item/pipe_dispenser, -/obj/item/analyzer, -/obj/item/storage/toolbox/mechanical, -/obj/item/pipe_dispenser, /obj/effect/turf_decal/stripes/line{ - dir = 9 + dir = 4 }, -/obj/item/pipe_dispenser{ - pixel_y = 8 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dHK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/structure/sign/poster/contraband/singletank_bomb/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/area/station/command/gateway) +"dHx" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"dHD" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "dHL" = ( /turf/closed/wall, /area/station/maintenance/central) @@ -12845,11 +13561,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"dHS" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/commons/dorms) "dIt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12894,12 +13605,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/service/cafeteria) -"dJn" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 +"dJp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft/upper) "dJt" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12912,17 +13625,13 @@ /turf/open/floor/iron, /area/station/engineering/storage_shared) "dJC" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/loading_area/red{ + dir = 4 }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Cargo Bay Shutters"; - id = "qm_cargobay"; +/turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, -/turf/open/floor/plating, /area/station/cargo/storage) "dJE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12937,19 +13646,26 @@ "dJF" = ( /obj/structure/railing/corner, /obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) +"dJH" = ( +/obj/machinery/door/airlock/command{ + name = "Auxiliary E.V.A. Storage" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "dJJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, /turf/open/floor/engine, /area/station/service/hydroponics) -"dJR" = ( -/obj/effect/spawner/random/structure/girder, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "dJV" = ( /obj/machinery/camera/autoname/directional/east, /obj/machinery/vending/cigarette, @@ -12962,15 +13678,6 @@ "dJW" = ( /turf/open/floor/glass/reinforced/airless, /area/station/solars/starboard/aft) -"dKa" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/cup/soda_cans/cola{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/cigbutt, -/turf/open/floor/wood, -/area/station/commons/dorms) "dKq" = ( /obj/structure/mirror/directional/north, /obj/structure/sink/directional/south, @@ -13029,10 +13736,11 @@ /area/station/commons/storage/art) "dKD" = ( /obj/structure/filingcabinet, -/obj/item/radio/intercom/directional/south, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "dKG" = ( @@ -13042,22 +13750,38 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"dKH" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "dKL" = ( -/obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/window/reinforced/spawner/directional/west, /obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"dKM" = ( +/obj/machinery/holopad, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) "dKN" = ( /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dKT" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 +/obj/machinery/conveyor{ + id = "mining" }, -/obj/structure/chair/sofa/middle/brown{ +/obj/structure/railing{ dir = 8 }, /turf/open/floor/iron/textured, @@ -13095,15 +13819,11 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"dLO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "CE's Maintenance Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/engineering/lobby) +"dLS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "dLU" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Maintenance" @@ -13139,20 +13859,19 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) -"dMp" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) -"dMJ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 10 +"dMG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "dMK" = ( /obj/structure/table/wood, /obj/item/instrument/guitar{ @@ -13192,10 +13911,10 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "dNc" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/camera/autoname/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "dNj" = ( /obj/structure/cable, @@ -13217,16 +13936,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/service) -"dNu" = ( -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"dNw" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/three, -/obj/item/circuitboard/machine/cyborgrecharger, -/obj/structure/sign/poster/contraband/energy_swords/directional/north, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) +"dNx" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "dNA" = ( /obj/machinery/door/airlock{ id_tag = "courtlockdown"; @@ -13237,20 +13952,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/security/courtroom) -"dNL" = ( -/obj/item/bouquet/sunflower{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/structure/sign/poster/contraband/atmosia_independence/directional/north{ - desc = "Welcome."; - name = "Welcome." - }, -/obj/item/clothing/glasses/orange{ - pixel_y = 5 - }, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) "dNP" = ( /turf/open/floor/wood, /area/station/command/heads_quarters/rd) @@ -13276,7 +13977,9 @@ dir = 8 }, /obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "dNW" = ( /obj/machinery/modular_computer/preset/civilian, @@ -13314,11 +14017,6 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"dOl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/openspace, -/area/station/engineering/break_room) "dOm" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -13329,19 +14027,36 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"dOq" = ( -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) +"dOC" = ( +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/obj/structure/table, +/obj/item/food/hotcrossbun{ + pixel_x = 10; + pixel_y = 12 + }, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"dOE" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/machinery/wall_healer/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "dOH" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 4 }, -/obj/item/pushbroom, -/obj/structure/rack, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/supply{ - pixel_x = 32 +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, /turf/open/floor/iron, /area/station/cargo/storage) @@ -13357,6 +14072,51 @@ /obj/machinery/light/directional/south, /turf/open/openspace, /area/station/cargo/storage) +"dPj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) +"dPl" = ( +/turf/open/floor/glass/airless, +/area/station/maintenance/aft) +"dPq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"dPv" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"dPC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"dPM" = ( +/obj/item/kirbyplants/random, +/obj/machinery/button/door/directional/east{ + id = "Cabin3"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "dPP" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/disposalpipe/trunk{ @@ -13367,23 +14127,17 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"dPQ" = ( -/obj/structure/railing, -/turf/open/openspace, -/area/station/engineering/storage_shared) "dPR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"dQb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ +"dQk" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "dQx" = ( /obj/structure/railing{ dir = 4 @@ -13394,13 +14148,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"dQz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "dQM" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "dQP" = ( /obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) "dQQ" = ( /obj/effect/turf_decal/siding/dark/corner{ @@ -13415,7 +14179,7 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dQV" = ( /obj/machinery/holopad, /turf/open/floor/iron, @@ -13441,18 +14205,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) -"dRk" = ( -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/area/station/ai/satellite/teleporter) "dRl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/smooth, /area/station/science/robotics) +"dRx" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "dRU" = ( /obj/structure/table/wood, /obj/effect/spawner/random/maintenance, @@ -13472,6 +14239,12 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"dSq" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) "dSs" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/stripes/line{ @@ -13481,6 +14254,14 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance) +"dSu" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "dSA" = ( /obj/structure/railing{ dir = 1 @@ -13503,27 +14284,25 @@ /obj/structure/ladder, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"dSX" = ( -/obj/effect/decal/cleanable/dirt, +"dSY" = ( +/obj/structure/railing{ + dir = 8 + }, /obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"dTb" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/booze, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/aft/upper) +"dTa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "dTc" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, /turf/open/floor/iron, /area/station/science/research) -"dTi" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "dTo" = ( /obj/structure/chair/pew{ dir = 8 @@ -13540,6 +14319,12 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/station/science/robotics/lab) +"dTs" = ( +/obj/machinery/duct, +/obj/effect/spawner/random/structure/grille, +/obj/effect/spawner/random/structure/barricade, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "dTv" = ( /obj/structure/table/reinforced, /obj/machinery/newscaster/directional/east, @@ -13552,6 +14337,14 @@ "dTL" = ( /turf/closed/wall, /area/station/commons/locker) +"dTQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "dTT" = ( /obj/structure/railing{ dir = 4 @@ -13563,16 +14356,25 @@ }, /turf/open/openspace, /area/station/science/xenobiology) +"dTX" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "dUb" = ( /turf/open/openspace, /area/station/hallway/primary/central) "dUe" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor, +/area/station/cargo/storage) "dUo" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 @@ -13581,7 +14383,7 @@ /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dUw" = ( /obj/effect/turf_decal/siding/blue/corner{ dir = 1 @@ -13591,29 +14393,10 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"dUG" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ - pixel_x = 8; - pixel_y = 16 - }, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_y = 6 - }, -/obj/item/cigbutt{ - pixel_x = -11; - pixel_y = 15 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"dUH" = ( -/obj/machinery/vending/cola/pwr_game, -/turf/open/floor/eighties, -/area/station/engineering/lobby) +"dUK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "dUN" = ( /obj/machinery/door/poddoor/shutters/window{ dir = 4; @@ -13623,7 +14406,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dUP" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/ferny/style_random, @@ -13658,13 +14441,13 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"dVg" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/yellow/filled/warning/corner{ +"dVd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/turf/open/openspace, +/area/station/commons/dorms) "dVh" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 8 @@ -13703,6 +14486,18 @@ }, /turf/open/floor/wood/large, /area/station/service/library) +"dVq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/warning/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "dVs" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 @@ -13750,11 +14545,12 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"dWg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ +"dWe" = ( +/obj/structure/railing{ dir = 4 }, -/turf/open/floor/iron/smooth, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, /area/station/engineering/atmos/upper) "dWi" = ( /obj/machinery/door/airlock/maintenance{ @@ -13762,19 +14558,12 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"dWj" = ( -/obj/effect/spawner/random/decoration/showcase, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "dWp" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -13807,19 +14596,17 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"dWM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/cup/beaker, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "dXh" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "Lcommissaryshutter"; + name = "Vacant Commissary Shutter" }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) "dXi" = ( /obj/machinery/vending/cigarette, /turf/open/floor/engine/hull, @@ -13845,14 +14632,32 @@ /obj/structure/railing/corner{ dir = 4 }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) +"dXq" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/north, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"dXu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "dXy" = ( /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "dXA" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -13861,13 +14666,9 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"dXD" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/graffiti, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port) +"dXE" = ( +/turf/open/floor/wood, +/area/station/maintenance/aft) "dXM" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -13877,12 +14678,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) -"dXN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "dXP" = ( /obj/structure/chair/stool/bar/directional/west, /obj/effect/landmark/start/hangover, @@ -13924,11 +14719,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"dYl" = ( -/obj/structure/weightmachine/weightlifter, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "dYq" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner, @@ -13962,13 +14752,18 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"dZs" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/fluff/paper/stack{ - dir = 4 +"dZn" = ( +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_y = 24 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_y = 40 + }, +/obj/machinery/button/ignition/incinerator/atmos{ + pixel_y = 9 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) "dZv" = ( /obj/structure/railing{ dir = 6 @@ -13989,7 +14784,7 @@ name = "AI Satellite Teleporter room" }, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dZA" = ( /obj/machinery/light/floor, /turf/open/floor/carpet/black, @@ -14009,11 +14804,28 @@ /obj/structure/closet/crate/wooden/toy, /turf/open/floor/wood/large, /area/station/service/theater_dressing) +"dZI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"dZJ" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/south, +/turf/open/space/basic, +/area/space/nearstation) "dZM" = ( /obj/structure/girder/reinforced, /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"dZS" = ( +/obj/structure/sign/warning/radiation/rad_area/directional/east, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) "dZZ" = ( /obj/machinery/atmospherics/components/unary/passive_vent{ dir = 1; @@ -14036,6 +14848,10 @@ "eaj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, /turf/open/floor/plating, /area/station/hallway/secondary/command) "eak" = ( @@ -14046,36 +14862,15 @@ dir = 8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eao" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/east{ - name = "Cargo Desk"; - req_access = list("shipping") - }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/arrows, +/turf/open/floor/iron/dark/textured_large, /area/station/cargo/sorting) "eap" = ( /turf/closed/wall, /area/station/hallway/secondary/entry) -"eas" = ( -/obj/machinery/wall_healer/directional/east, -/obj/machinery/camera/autoname/directional/east, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"eaw" = ( -/obj/effect/turf_decal/siding/brown, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "eaL" = ( /obj/structure/table/reinforced, /obj/structure/displaycase/forsale{ @@ -14099,8 +14894,22 @@ /area/station/science/lobby) "eaM" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, /turf/open/floor/plating, /area/station/commons/vacant_room/office) +"eaN" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "eaO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -14110,15 +14919,13 @@ /obj/item/hemostat, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) -"eaT" = ( -/obj/effect/turf_decal/siding/wood{ +"eaU" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/item/cigbutt, -/obj/effect/landmark/start/hangover, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "eaV" = ( /turf/closed/wall/r_wall, /area/station/engineering/supermatter/room) @@ -14127,42 +14934,27 @@ /obj/item/flashlight/lamp, /turf/open/floor/plating, /area/station/security/detectives_office/private_investigators_office) -"ebA" = ( -/obj/structure/chair/sofa/left/brown{ - dir = 8 +"ebK" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/assembly/flash/handheld{ + pixel_x = 7; + pixel_y = 2 }, -/obj/item/cigbutt{ - pixel_x = -8; - pixel_y = 4 +/obj/machinery/recharger{ + pixel_y = 3 }, -/obj/structure/sign/poster/contraband/kudzu/directional/east, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) -"ebC" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ebD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/item/cigarette/cigar{ + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "ebL" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark/textured_corner, /area/station/science/ordnance/storage) -"ebM" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/holodeck, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "ebO" = ( /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 4 @@ -14173,10 +14965,6 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"ebS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) "ebY" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -14201,10 +14989,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"ech" = ( -/obj/machinery/camera/autoname/directional/west, -/turf/open/openspace, -/area/station/commons/dorms) "ecu" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -14227,6 +15011,19 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"ecz" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/firealarm/directional/west{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west{ + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "ecB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -14244,7 +15041,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/smooth_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ecJ" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 @@ -14262,10 +15059,6 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"ecP" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "ecS" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -14298,51 +15091,28 @@ /area/station/science/lobby) "edf" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"edl" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/water, -/area/station/maintenance/port/fore) -"eds" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ - dir = 6 - }, -/turf/open/floor/iron/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"edu" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"edm" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "edz" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L12" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"edC" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "edJ" = ( /obj/effect/landmark/start/assistant, /obj/structure/disposalpipe/segment{ @@ -14355,32 +15125,45 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"edY" = ( -/obj/effect/turf_decal/stripes/line{ +"edR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ dir = 1 }, -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "eeb" = ( /obj/structure/chair/greyscale, /obj/effect/landmark/start/hangover, /turf/open/floor/glass/reinforced, /area/station/hallway/secondary/construction) +"eeg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"eeh" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/stripes/box, +/obj/structure/ladder, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "eej" = ( /obj/structure/secure_safe/directional/south, /obj/effect/turf_decal/siding/wood, /turf/open/floor/carpet/orange, /area/station/command/heads_quarters/ce) +"eel" = ( +/obj/machinery/shower/directional/south, +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/item/mail/junkmail{ + pixel_y = -6; + pixel_x = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "een" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14404,14 +15187,24 @@ /obj/machinery/wall_healer/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"eeE" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "eeH" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) "eeN" = ( @@ -14421,11 +15214,38 @@ }, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) +"eeO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "eeW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/hallway/secondary/service) +"efc" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) +"efg" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/table, +/obj/machinery/status_display/evac/directional/north, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "efh" = ( /obj/item/cigbutt{ pixel_x = -9; @@ -14452,10 +15272,13 @@ /turf/open/floor/wood, /area/station/command/heads_quarters/hos) "efC" = ( -/obj/effect/turf_decal/siding/red{ - dir = 8 +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/iron/dark, +/obj/item/paper_bin/bundlenatural, +/obj/item/pen, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "efD" = ( /obj/structure/extinguisher_cabinet/directional/east, @@ -14485,27 +15308,40 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"efM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "efN" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, -/obj/machinery/button/elevator{ - id = "catwalk_sec"; - pixel_y = 25 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/machinery/button/elevator/directional/north{ + id = "catwalk_sec" + }, /turf/open/floor/iron/dark, /area/station/security/brig) -"efZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/project) +"efQ" = ( +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "ega" = ( /obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/space/nearstation) +"egg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "egi" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -14515,7 +15351,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "egk" = ( /obj/item/trash/candy, /obj/structure/cable, @@ -14524,23 +15360,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) -"egp" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"ego" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/trunk/multiz{ dir = 4 }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"egp" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"egr" = ( -/obj/structure/lattice/catwalk, -/obj/item/clothing/shoes/wheelys/rollerskates{ - pixel_x = 3; - pixel_y = -5 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) "egw" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/railing/corner{ @@ -14551,6 +15385,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/hallway/primary/central) +"egA" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "egD" = ( /obj/structure/table/reinforced, /turf/open/floor/engine/vacuum, @@ -14565,6 +15405,17 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"egH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/science/lobby) "egK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14601,7 +15452,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ehi" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -14609,12 +15460,14 @@ }, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/aft) -"ehO" = ( -/obj/item/trash/can{ - pixel_x = -8 +"ehu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "ehX" = ( /obj/effect/spawner/random/trash/garbage{ spawn_scatter_radius = 1 @@ -14627,10 +15480,13 @@ /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) "ehZ" = ( -/obj/effect/turf_decal/siding/blue{ +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, -/obj/machinery/light/directional/south, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "eia" = ( @@ -14648,27 +15504,18 @@ dir = 4 }, /area/station/hallway/primary/fore) -"eij" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "eis" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"eiG" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/space/basic, -/area/space/nearstation) +"eiu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/explab) "eiW" = ( /obj/item/beacon, /turf/open/floor/engine/vacuum, @@ -14679,7 +15526,18 @@ /obj/item/paper_bin, /obj/item/pen, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"ejc" = ( +/obj/structure/cable, +/obj/structure/sign/nanotrasen{ + pixel_y = 32; + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "ejh" = ( /obj/effect/turf_decal/stripes/asteroid/corner, /obj/effect/spawner/random/engineering/atmospherics_portable, @@ -14688,13 +15546,25 @@ "ejo" = ( /turf/closed/wall, /area/station/science/xenobiology/hallway) -"ejA" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"ejz" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ejB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper{ + dir = 4 + }, +/obj/structure/fluff/paper/stack{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/wood, +/area/station/maintenance/aft) "ejP" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 @@ -14703,7 +15573,7 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ejQ" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -14759,22 +15629,20 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"eku" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron{ - amount = 30 +"ekw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ekB" = ( -/obj/structure/bed, -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/effect/spawner/random/bedsheet, -/turf/open/floor/wood, +/turf/open/floor/iron/dark/smooth_large, /area/station/commons/dorms) +"ekH" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/toilet, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "ekL" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -14816,16 +15684,11 @@ name = "Inner Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, /area/station/construction/storage_wing) -"els" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "elw" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -14865,13 +15728,19 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"elH" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Catwalk Access" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "elO" = ( /obj/structure/chair/sofa/corp/corner{ dir = 4 }, /obj/item/radio/intercom/directional/north, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "elP" = ( /obj/effect/turf_decal/bot_white{ color = "#52B4E9" @@ -14894,26 +15763,40 @@ /obj/structure/table, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) +"emb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"emd" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "emh" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 10 }, -/obj/structure/table/reinforced, -/obj/item/storage/photo_album/qm, -/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/textured, /area/station/cargo/storage) "emj" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 8; - name = "Cargo Bay"; - shuttle_id = "cargo_home"; - width = 13 +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/arrows/red{ + dir = 4 }, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/obj/effect/turf_decal/arrows/red{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "emn" = ( /obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -14956,19 +15839,14 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "emH" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/dark_green, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"emL" = ( -/obj/effect/turf_decal/siding/brown/end{ - dir = 1 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "emM" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -14978,20 +15856,15 @@ /turf/open/floor/iron, /area/station/science/robotics/lab) "emR" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/effect/turf_decal/bot_white, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"emS" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "ene" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15002,6 +15875,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"enk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + pixel_y = 2 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "eny" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty{ @@ -15010,17 +15895,17 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/wood, /area/station/commons/storage/tools) +"enA" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "enE" = ( /obj/effect/turf_decal/siding/green/corner{ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"enK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "enN" = ( /obj/structure/urinal/directional/east, /obj/effect/decal/cleanable/dirt/dust, @@ -15034,6 +15919,11 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"enY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "eoe" = ( /obj/vehicle/ridden/atv{ dir = 4; @@ -15064,6 +15954,11 @@ }, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) +"eot" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "eoF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/decoration/paint, @@ -15083,6 +15978,15 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) +"eoN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table, +/obj/item/stack/rods{ + pixel_y = 3 + }, +/obj/structure/sign/poster/contraband/lizard/directional/south, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "epi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15108,14 +16012,25 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/teleporter) -"epE" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/effect/landmark/event_spawn, -/turf/open/floor/grass, -/area/station/commons/dorms) +/area/station/ai/satellite/teleporter) +"epn" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"epv" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/hot_temp/directional/south, +/turf/open/space/basic, +/area/space/nearstation) +"epH" = ( +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "epR" = ( /obj/effect/turf_decal/trimline/dark_blue/line{ dir = 4 @@ -15130,7 +16045,7 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "epY" = ( /obj/structure/plaque/static_plaque/golden/commission/efficiency{ pixel_y = 32 @@ -15151,6 +16066,7 @@ pixel_x = 3; pixel_y = 9 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "eqi" = ( @@ -15173,11 +16089,6 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"eqp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "eqt" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, @@ -15189,13 +16100,21 @@ /obj/effect/turf_decal/siding/dark/corner, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eqx" = ( /obj/structure/railing{ dir = 6 }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) +"eqR" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "eqU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -15217,40 +16136,17 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"eri" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/engine, -/area/station/engineering/atmos/project) -"erj" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/maintenance/starboard/lesser) "erp" = ( -/obj/structure/lattice, -/obj/machinery/camera/directional/west, -/turf/open/openspace, -/area/station/hallway/primary/central) -"err" = ( -/obj/structure/sign/poster/official/no_erp/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"ers" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, /obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/courtroom) +/turf/open/floor/iron/dark, +/area/station/command/bridge) "eru" = ( /obj/structure/stairs/east, /obj/structure/railing, +/obj/machinery/newscaster/directional/east, /turf/open/floor/iron/stairs/medium{ dir = 8 }, @@ -15272,7 +16168,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -15285,11 +16181,6 @@ /obj/structure/fake_stairs/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"erI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bookcase/random/religion, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "erM" = ( /obj/machinery/vending/autodrobe, /obj/item/clothing/head/cone{ @@ -15310,32 +16201,36 @@ }, /turf/open/floor/wood/large, /area/station/service/theater_dressing) +"erV" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmoslowersm" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/supermatter/room) "esb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/security/medical) -"esk" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 +"esr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/skub{ + pixel_x = 7; + pixel_y = 18 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"esn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/structure/sign/warning/electric_shock/directional/west, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "esu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -15351,19 +16246,20 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/construction) +"esD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "esH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/medical) -"esK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "esR" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -15383,16 +16279,6 @@ /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/white, /area/station/medical/storage) -"etf" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin7"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/commons/dorms) "etl" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -15410,28 +16296,26 @@ pixel_y = 3 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "etp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) -"etu" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "abandoned_kitchen"; - name = "Kitchen Shudders" +/obj/effect/turf_decal/stripes{ + dir = 1 }, -/obj/item/rag, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "etN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer4, /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) +"etQ" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Malpractice Tower" + }, +/obj/effect/turf_decal/tile/green/full, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/virology) "etU" = ( /obj/structure/lattice/catwalk, /obj/structure/closet/crate/cardboard, @@ -15451,6 +16335,24 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/detectives_office/private_investigators_office) +"euu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"eux" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - co2 Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos/upper) "euD" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -15458,19 +16360,17 @@ "euG" = ( /turf/closed/wall, /area/station/cargo/bitrunning/den) +"euH" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/stairs/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "euI" = ( /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"euN" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/spawner/random/trash/cigbutt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/tile, -/area/station/security/detectives_office/private_investigators_office) "eva" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/official/random/directional/west, @@ -15492,13 +16392,6 @@ /obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) -"evv" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped/layer5{ - dir = 8; - name = "air mixer" - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "evC" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 8 @@ -15510,25 +16403,13 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) -"evH" = ( -/obj/structure/broken_flooring/singular/directional/east, -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"evO" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/lesser) -"ewf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +"ewg" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ewi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15544,7 +16425,7 @@ pixel_x = 6 }, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ewl" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -15558,17 +16439,16 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"ewm" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored{ - cable_layer = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 +"ewt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"ewu" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "ewA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15578,7 +16458,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "ewD" = ( /turf/closed/wall, /area/station/service/cafeteria) @@ -15586,21 +16466,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"ewK" = ( -/obj/machinery/power/turbine/inlet_compressor{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"ewY" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "exb" = ( /obj/structure/lattice/catwalk, /obj/machinery/door/firedoor, @@ -15618,6 +16483,14 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"exk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) "exn" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 8 @@ -15637,30 +16510,27 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/lab) -"exM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/item/stack/rods/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"exS" = ( -/obj/structure/railing{ +"exr" = ( +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "N2 Multideck Adapter"; dir = 8 }, -/obj/structure/table/glass, -/obj/machinery/digital_clock/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 +/obj/machinery/meter{ + name = "N2 meter" }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"exV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"exS" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "exY" = ( /obj/item/storage/box/evidence{ pixel_x = 7; @@ -15677,42 +16547,75 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"eyg" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "eys" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/office) +"eyC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "eyD" = ( /obj/structure/toilet/greyscale{ pixel_y = 17 }, /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) -"eza" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ladder, -/obj/structure/railing{ - dir = 6 +"eyP" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/turf/open/openspace, -/area/station/commons/dorms) -"ezm" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"eyQ" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/urinal/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) +"ezh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"ezm" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "ezq" = ( /obj/structure/reflector/single/anchored{ dir = 5 }, /turf/open/floor/iron/dark/textured, /area/station/engineering/supermatter/room) +"ezt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"ezz" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "ezE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15723,12 +16626,6 @@ /obj/effect/turf_decal/trimline/yellow/filled/line, /turf/open/floor/iron, /area/station/engineering/lobby) -"ezL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "ezP" = ( /obj/structure/training_machine, /obj/machinery/airalarm/directional/east, @@ -15737,16 +16634,11 @@ }, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) -"ezT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "ezW" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) "ezX" = ( @@ -15757,33 +16649,35 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"eAd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, +"ezY" = ( +/obj/structure/sign/warning/fire/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eAg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"eAh" = ( /obj/structure/railing{ - dir = 5 + dir = 1 }, -/obj/structure/railing/corner{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/engineering/lobby) -"eAg" = ( -/obj/structure/table/wood, -/obj/item/clipboard{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/machinery/recharger{ - pixel_x = -6; - pixel_y = 4 +"eAl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 }, -/obj/item/toy/figure/captain{ - pixel_x = 7; - pixel_y = 10 +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) +/turf/open/floor/iron, +/area/station/engineering/lobby) "eAH" = ( /obj/effect/spawner/random/trash/garbage, /turf/open/floor/plating, @@ -15812,18 +16706,6 @@ }, /turf/open/openspace, /area/station/medical/medbay/central) -"eAP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/item/surgicaldrill, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) -"eAT" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/engineering/tank, -/turf/open/water, -/area/station/maintenance/port/fore) "eAV" = ( /obj/structure/railing/corner/end{ dir = 4 @@ -15842,27 +16724,29 @@ "eBc" = ( /obj/structure/table/reinforced/rglass, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eBd" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"eBf" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) +"eBi" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"eBo" = ( +/turf/open/floor/iron, +/area/station/commons/locker) "eBt" = ( /obj/structure/tank_dispenser/oxygen{ pixel_x = -1; pixel_y = 2 }, /obj/structure/window/reinforced/spawner/directional/west, -/turf/open/floor/carpet, +/turf/open/floor/carpet/purple, /area/station/command/gateway) "eBu" = ( /obj/structure/flora/bush/flowers_br/style_random, @@ -15894,6 +16778,12 @@ }, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) +"eBF" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/engine/hull/air, +/area/station/commons/fitness/recreation) "eBP" = ( /obj/structure/cable, /obj/structure/mirror/broken/directional/west, @@ -15908,26 +16798,32 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"eBX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/oven, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "eBZ" = ( /obj/effect/spawner/random/structure/closet_empty/crate, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) -"eCu" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +"eCa" = ( +/obj/structure/frame/machine/secured, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) "eCy" = ( /obj/structure/lattice, /turf/open/floor/engine/hull, /area/space/nearstation) +"eCA" = ( +/obj/effect/turf_decal/siding/brown/corner, +/obj/structure/railing/corner, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) "eCD" = ( /obj/item/kirbyplants/random, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -15938,21 +16834,18 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"eCF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/station/commons/dorms) "eCM" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/exotic/technology, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"eCO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "eCV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -15961,7 +16854,7 @@ "eDj" = ( /obj/machinery/camera/autoname/motion/directional/north, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "eDl" = ( /obj/item/clothing/head/cone{ pixel_x = -7; @@ -15983,6 +16876,13 @@ /obj/effect/landmark/start/detective, /turf/open/floor/carpet, /area/station/security/detectives_office) +"eDI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/commons/dorms) "eDO" = ( /obj/machinery/telecomms/bus/preset_four, /obj/effect/turf_decal/tile/yellow/fourcorners, @@ -15994,13 +16894,39 @@ /obj/effect/landmark/start/chief_engineer, /turf/open/floor/carpet/orange, /area/station/command/heads_quarters/ce) +"eEf" = ( +/obj/structure/railing, +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/folder/blue{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/folder{ + pixel_x = 2 + }, +/obj/item/taperecorder{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/private) "eEi" = ( /obj/structure/ladder, /obj/machinery/light_switch/directional/south, /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eEv" = ( /turf/open/floor/plating, /area/station/maintenance/starboard/aft) @@ -16022,10 +16948,14 @@ }, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"eEN" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, +"eER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/athletic_mixed, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard) "eES" = ( /obj/item/food/pie/cream, /obj/structure/closet/crate/coffin, @@ -16042,25 +16972,23 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"eEW" = ( -/obj/machinery/light/directional/north, -/obj/structure/lattice/catwalk, +"eFk" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"eFm" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/directional/west, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "eFq" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "eFs" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, @@ -16072,6 +17000,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) +"eFE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "eFJ" = ( /obj/item/kirbyplants/photosynthetic, /obj/effect/turf_decal/trimline/dark_blue/filled/line{ @@ -16082,7 +17015,7 @@ }, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eGc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16102,15 +17035,11 @@ /area/station/security/checkpoint/customs) "eGk" = ( /obj/structure/sign/plaques/kiddie/perfect_drone{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/openspace, /area/station/command/corporate_showroom) -"eGq" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/east, -/turf/open/openspace, -/area/station/engineering/break_room) "eGs" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16136,13 +17065,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"eGE" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/yellow/filled/end{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "eGM" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -16196,24 +17118,11 @@ }, /turf/open/openspace, /area/station/hallway/primary/central) -"eHz" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/item/clothing/under/costume/seifuku/teal{ - pixel_x = -1; - pixel_y = -9 - }, -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/cigpack_midori{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/instrument/piano_synth/headphones{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/sign/poster/contraband/syndicate_pistol/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"eHF" = ( +/obj/structure/ladder, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "eHO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/broken_flooring/pile/always_floorplane/directional/west, @@ -16229,7 +17138,17 @@ pixel_y = 6 }, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"eHZ" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) "eIh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16263,6 +17182,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"eIq" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "eIs" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -16307,15 +17231,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"eIN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "eIO" = ( /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) -"eIR" = ( -/obj/machinery/airalarm/directional/north, +"eIQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/structure/chair/sofa/left/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"eJa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "eJb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16330,6 +17266,31 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) +"eJp" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"eJx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"eJS" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "eJX" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -16340,77 +17301,38 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"eJZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"eKc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/trash/moisture_trap, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "eKh" = ( /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, /turf/closed/wall, /area/station/medical/cryo) +"eKq" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Port to Engine" + }, +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "eKz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"eKF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clothing/shoes/magboots{ - desc = "Magnetic boots, for the solar enthusiasts. Idential to a regular magboot in everything but soul."; - name = "Solars' Magboots"; - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/crowbar, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/gloves/color/yellow{ - pixel_x = 0; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/machinery/camera/autoname/directional/west, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"eKH" = ( -/obj/effect/turf_decal/tile/neutral/opposingcorners{ +"eKA" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"eKL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/east, +/obj/structure/bed/maint, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "eKW" = ( /obj/structure/railing, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -16433,17 +17355,6 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) -"eLh" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) "eLl" = ( /obj/machinery/door/airlock/command{ name = "Captain's Office" @@ -16453,7 +17364,8 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/command/captain, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "eLp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16469,6 +17381,16 @@ "eLU" = ( /turf/closed/wall/r_wall, /area/station/command/gateway) +"eLV" = ( +/obj/item/storage/toolbox/artistic, +/obj/item/storage/toolbox/artistic, +/obj/structure/rack, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "eMa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -16484,6 +17406,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"eMf" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "eMi" = ( /obj/machinery/door/airlock/public/glass{ name = "Arrivals Lounge" @@ -16504,12 +17431,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"eMo" = ( -/obj/structure/table, -/obj/machinery/camera/autoname/directional/west, -/obj/structure/sign/departments/aisat/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "eME" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /obj/structure/table, @@ -16536,10 +17457,30 @@ /obj/effect/landmark/navigate_destination/sec, /turf/open/floor/plating, /area/station/security/brig) +"eMN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/crayon{ + icon_state = "revolution"; + name = "graffiti"; + paint_colour = "#FF0000"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "eNb" = ( /obj/effect/spawner/random/trash, /turf/open/floor/plating, /area/station/maintenance/port) +"eNg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/commons/dorms) "eNz" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -16553,14 +17494,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) -"eND" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/sofa/right/brown{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "eNE" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 @@ -16571,6 +17504,26 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/port) +"eNH" = ( +/obj/item/bedsheet/qm/double, +/obj/structure/bed/double, +/obj/effect/landmark/start/quartermaster, +/obj/item/stack/spacecash/c10{ + pixel_x = -5 + }, +/obj/item/toy/plush/lizard_plushie/greyscale{ + name = "Steals-The-Crates"; + pixel_y = 7 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) "eNO" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -16605,13 +17558,6 @@ /mob/living/basic/pet/dog/pug/mcgriff, /turf/open/floor/iron/dark, /area/station/security/warden) -"eNY" = ( -/obj/structure/table/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "eOa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16619,17 +17565,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) -"eOh" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) -"eOn" = ( -/obj/item/cigbutt{ - pixel_x = -11; - pixel_y = -5 +"eOf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/fore/upper) +"eOh" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/white, +/area/station/hallway/secondary/entry) "eOo" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -16654,16 +17605,6 @@ /obj/machinery/chem_master, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"eOy" = ( -/obj/structure/sign/clock/directional/west, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "eOA" = ( /obj/effect/turf_decal/tile/dark_green{ dir = 4 @@ -16677,25 +17618,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, /area/station/medical/virology) -"eOB" = ( -/obj/structure/flora/bush/jungle{ - pixel_y = -7 - }, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/ladder, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) "eOG" = ( /obj/effect/mapping_helpers/damaged_window, /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/security/detectives_office/private_investigators_office) -"eOM" = ( -/obj/structure/broken_flooring/corner/directional/west, -/obj/effect/decal/cleanable/dirt, +"eOH" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, /turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/area/station/maintenance/starboard) "eOS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/official/random/directional/south, @@ -16715,35 +17653,38 @@ /obj/effect/turf_decal/tile/purple/full, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"ePM" = ( -/obj/structure/railing, -/obj/effect/decal/cleanable/dirt, +"ePz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/transit_tube/station/dispenser/flipped{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/transit_tube) +"ePI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ePT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/medical, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"ePX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"eQg" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "eQj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -16779,29 +17720,21 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"eQC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "eQF" = ( /turf/open/floor/iron, /area/station/commons/storage/primary) -"eQO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/light/directional/west, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"eQW" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/ladder, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"eQZ" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/backpack, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "eRb" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" @@ -16812,37 +17745,29 @@ /obj/effect/mapping_helpers/airlock/access/all/security/brig, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"eRd" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 +"eRc" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"eRg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/area/station/commons/fitness/recreation) +"eRd" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"eRm" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/effect/turf_decal/plaque{ + icon_state = "L7" }, -/turf/open/floor/plating, -/area/station/commons/dorms) +/obj/effect/landmark/observer_start, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) "eRs" = ( -/obj/effect/turf_decal/siding/green, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L5" }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) @@ -16868,17 +17793,16 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) "eRC" = ( -/obj/structure/table, -/obj/item/rag{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/reagent_containers/cup/bucket{ - pixel_x = -7; - pixel_y = 12 +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "HoPsToy"; + name = "Loading Conveyor"; + pixel_y = 8 }, -/obj/structure/window/reinforced/spawner/directional/east, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "eRE" = ( /obj/structure/displaycase/labcage, @@ -16902,6 +17826,14 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"eRO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Engine"; + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "eRT" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -16928,13 +17860,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/construction/storage_wing) -"eSh" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/closet/radiation, -/turf/open/floor/iron, -/area/station/engineering/lobby) +"eSk" = ( +/obj/structure/railing/corner, +/obj/structure/railing, +/obj/structure/lattice/catwalk, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "eSm" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -16958,20 +17889,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"eSK" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1 +"eSG" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + pixel_x = 8 }, -/obj/effect/mapping_helpers/mail_sorting/supply/disposals, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"eSO" = ( -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"eSI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"eSK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "eSV" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/brown/corner, @@ -16982,18 +17927,29 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"eSW" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, +"eSY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/lattice/catwalk, /obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "eTe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) +"eTi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"eTm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/wall_healer/directional/south, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "eTr" = ( /obj/machinery/door/airlock/grunge{ name = "Under The Stairs" @@ -17001,21 +17957,11 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, /area/station/maintenance/department/medical) -"eTt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) "eTD" = ( /obj/machinery/vending/medical, /obj/effect/turf_decal/bot_white{ @@ -17047,14 +17993,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/service/cafeteria) +"eTP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/openspace, +/area/station/engineering/lobby) "eTY" = ( /turf/open/floor/iron/freezer, /area/station/maintenance/port) -"eTZ" = ( -/obj/machinery/light_switch/directional/east, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "eUa" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -17065,22 +18017,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"eUh" = ( -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"eUl" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "eUr" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17118,6 +18054,10 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"eUT" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "eUV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -17190,12 +18130,6 @@ }, /turf/open/floor/plating, /area/station/medical/pharmacy) -"eVu" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "eVx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood/corner{ @@ -17204,12 +18138,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"eVy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "eVF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17232,16 +18160,47 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/wood/tile, /area/station/maintenance/port/aft) +"eVY" = ( +/obj/structure/cable, +/obj/item/stack/sticky_tape{ + pixel_x = 12; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "!"; + pixel_x = 2; + pixel_y = 29 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "!"; + pixel_x = -5; + pixel_y = 27 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "eWb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/wood, /area/station/service/lawoffice) -"eWq" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/project) +"eWc" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"eWn" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage/tech) "eWt" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -17258,6 +18217,13 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) +"eWD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) "eWJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17268,6 +18234,13 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/science/genetics) +"eWS" = ( +/obj/effect/spawner/random/structure/chair_flipped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/detectives_office/private_investigators_office) "eWU" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark/textured_large, @@ -17277,22 +18250,24 @@ /obj/effect/turf_decal/trimline/yellow/warning, /turf/open/floor/engine/hull, /area/space/nearstation) +"eWZ" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/camera/autoname/directional/west, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "eXe" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/science/lobby) -"eXf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/layer1, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "eXp" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -17361,16 +18336,38 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) +"eXJ" = ( +/obj/machinery/computer/apc_control{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "eXS" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"eYe" = ( -/obj/structure/displaycase/captain{ - pixel_y = 5 +"eXT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/carpet, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Quartermaster's Office"; + name = "Quartermaster's Fax Machine" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) +"eYe" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "eYm" = ( /obj/effect/turf_decal/stripes/line{ @@ -17396,11 +18393,12 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"eYH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) +"eYN" = ( +/obj/structure/chair/office{ + dir = 3 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) "eYP" = ( /obj/structure/showcase/machinery/tv/broken, /turf/open/floor/plating, @@ -17413,11 +18411,12 @@ fair_market_price = 0; name = "\improper Jim Norton's Quebecois Coffee" }, -/obj/structure/disposalpipe/broken{ - dir = 8 - }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"eZk" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "eZt" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -17448,10 +18447,13 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "eZF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "eZL" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -17489,6 +18491,47 @@ }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"eZU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clothing/shoes/magboots{ + desc = "Magnetic boots, for the solar enthusiasts. Idential to a regular magboot in everything but soul."; + name = "Solars' Magboots"; + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/crowbar, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/gloves/color/yellow{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/machinery/camera/autoname/directional/west, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tank/jetpack{ + pixel_y = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "fai" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -17509,15 +18552,6 @@ }, /turf/open/floor/plating, /area/station/engineering/supermatter/room) -"faw" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Air to Distro" - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "fbe" = ( /obj/structure/bed, /obj/item/bedsheet/ce, @@ -17547,6 +18581,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"fbq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central) "fbu" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input, /turf/open/floor/engine/o2, @@ -17587,24 +18625,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"fct" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "fcw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -17626,15 +18648,6 @@ "fcK" = ( /turf/closed/wall/r_wall, /area/station/security/detectives_office/private_investigators_office) -"fcT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "fdb" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -17656,23 +18669,27 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"fdz" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/science/lab) "fdE" = ( /obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, /turf/open/floor/engine, /area/station/science/xenobiology) -"fdI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper{ - dir = 4 - }, -/obj/structure/fluff/paper/stack{ - dir = 5 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/camera_film, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "fdJ" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/railing{ @@ -17689,6 +18706,12 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"fdN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/commons/dorms) "fdT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17698,12 +18721,16 @@ }, /turf/open/floor/glass, /area/station/science/zoo) -"fdY" = ( -/obj/effect/turf_decal/tile/dark/half{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"fdV" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"fef" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/urinal/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "fei" = ( /obj/machinery/door/airlock/research{ glass = 1; @@ -17731,30 +18758,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) -"feR" = ( -/obj/effect/spawner/random/trash/grime, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ffj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/area/station/ai/satellite/chamber) +"feM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"ffg" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ffn" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +/obj/structure/chair/office{ + dir = 3 }, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/area/station/security/checkpoint/engineering) "ffp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -17762,9 +18780,19 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/customs) -"ffr" = ( -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) +"ffs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "ffC" = ( /obj/machinery/atmospherics/components/trinary/mixer/flipped{ dir = 8 @@ -17772,11 +18800,13 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance/storage) -"ffI" = ( -/obj/item/statuebust, -/obj/machinery/light/cold/no_nightlight/directional/west, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +"ffE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "ffN" = ( /obj/structure/stairs/north, /turf/open/floor/wood, @@ -17791,10 +18821,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/science/lab) -"ffR" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) "ffT" = ( /obj/structure/railing/corner/end/flip, /obj/effect/turf_decal/stripes/corner, @@ -17816,19 +18842,9 @@ "fgd" = ( /obj/structure/table/glass, /obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/west{ - id = "commissaryshutter"; - name = "Office Shutter Control"; - pixel_x = 0 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"fgg" = ( -/obj/structure/lattice, -/obj/effect/spawner/random/maintenance, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "fgq" = ( /obj/machinery/vending/cigarette, /turf/open/floor/iron, @@ -17838,10 +18854,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"fgx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "fgz" = ( /obj/machinery/door/airlock{ name = "Law Office" @@ -17861,7 +18873,7 @@ "fgH" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -17881,17 +18893,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"fha" = ( -/obj/structure/chair/sofa/middle/brown{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"fhd" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/engine, -/area/station/engineering/break_room) "fhf" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -17918,6 +18919,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) +"fht" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "fhw" = ( /obj/structure/table/reinforced/rglass, /obj/item/reagent_containers/cup/glass/mug/nanotrasen{ @@ -17925,15 +18930,7 @@ pixel_y = 4 }, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fhA" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "fhF" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 @@ -17945,7 +18942,7 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fhJ" = ( /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/entry) @@ -18004,6 +19001,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"fiZ" = ( +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + name = "decommissioned sleeper" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/light_construct/directional/east{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "fjc" = ( /obj/effect/turf_decal/trimline/dark_blue/corner{ dir = 8 @@ -18022,15 +19030,49 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fji" = ( /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"fjl" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/closet/crate/medical, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp/granted{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/effect/spawner/random/maintenance, +/obj/item/pen/red{ + pixel_y = 10 + }, +/obj/structure/curtain/cloth/fancy/mechanical{ + name = "Psychologist's Office Curtains"; + id = "psychpriv" + }, +/turf/open/floor/wood/large, +/area/station/medical/psychology) "fjn" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"fjo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "fjp" = ( /obj/item/survivalcapsule, /obj/item/pickaxe/mini, @@ -18044,7 +19086,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "fjv" = ( /obj/effect/turf_decal/trimline/red/warning{ @@ -18052,12 +19094,19 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"fjy" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ +"fjz" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/turf/closed/wall, +/area/station/maintenance/starboard/central) +"fjO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "fjP" = ( /obj/structure/lattice/catwalk, /obj/item/clothing/accessory/clown_enjoyer_pin{ @@ -18080,10 +19129,10 @@ name = "Abandoned Room" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) "fjY" = ( @@ -18094,16 +19143,16 @@ }, /turf/open/floor/iron/textured, /area/station/security/brig) -"fke" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"fkh" = ( -/obj/structure/ladder, +"fkd" = ( +/obj/structure/sign/warning/directional/west, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"fki" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central) "fko" = ( /obj/structure/table, /obj/item/storage/medkit/brute{ @@ -18113,9 +19162,9 @@ /turf/open/floor/iron/kitchen, /area/station/maintenance/port/aft) "fkp" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/station/hallway/primary/central) "fkr" = ( /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, @@ -18164,20 +19213,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/primary/central) -"fkP" = ( -/obj/item/kirbyplants/synthetic/plant26{ - pixel_x = 10; - pixel_y = 18 - }, -/obj/item/kirbyplants/synthetic/plant27{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/morgue) "fkX" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, @@ -18212,7 +19247,7 @@ dir = 1 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "flH" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 8 @@ -18225,6 +19260,16 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) +"flK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "flS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -18233,6 +19278,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"flU" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/structure/sign/poster/contraband/the_big_gas_giant_truth/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "flY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18267,17 +19318,24 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"fmq" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"fms" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "fmw" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ dir = 4 }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"fmN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/openspace, -/area/station/commons/dorms) "fmO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -18300,15 +19358,14 @@ /obj/structure/cable, /turf/closed/wall, /area/station/security/interrogation) -"fnp" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "space-outpost" +"fno" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "fnv" = ( /obj/machinery/porta_turret/ai{ dir = 4 @@ -18317,17 +19374,23 @@ dir = 10 }, /turf/open/floor/engine/hull/reinforced/air, -/area/station/ai_monitored/turret_protected/ai) -"fnD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "CE's Maintenance Access" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/turf/open/floor/plating, +/area/station/ai/satellite/chamber) +"fnF" = ( +/obj/machinery/duct, +/turf/open/floor/iron/large, /area/station/engineering/lobby) +"fnH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "fnT" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/random/directional/east, @@ -18342,18 +19405,6 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) -"fnW" = ( -/obj/item/stack/sheet/iron{ - amount = 34 - }, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fnY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -18372,6 +19423,12 @@ }, /turf/open/floor/wood/large, /area/station/service/kitchen) +"foi" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) "foj" = ( /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, @@ -18386,8 +19443,28 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) +"fop" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) +"for" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/graffiti, +/turf/open/floor/plating, +/area/station/maintenance/port) "fou" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -18401,19 +19478,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/science/research) -"foH" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/disposal/incinerator) -"foJ" = ( -/obj/machinery/meter/monitored/distro_loop, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible/layer2{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) "foN" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, @@ -18424,13 +19488,6 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) -"foZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/openspace, -/area/station/engineering/break_room) "fpe" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -18443,6 +19500,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"fpf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "fpj" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/plating, @@ -18482,13 +19543,12 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"fpz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/chair{ - dir = 1 +"fpw" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/edge{ + dir = 4 }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/area/station/hallway/primary/central) "fpB" = ( /obj/structure/table, /obj/item/storage/photo_album/prison, @@ -18517,12 +19577,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/space_hut) -"fpM" = ( -/obj/structure/table, -/obj/machinery/firealarm/directional/west, -/obj/effect/spawner/random/clothing/gloves, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "fpN" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 1 @@ -18530,12 +19584,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull, /area/space/nearstation) -"fpZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "fqc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18547,22 +19595,12 @@ }, /turf/open/floor/wood, /area/station/service/library/printer) -"fqj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fqn" = ( /obj/structure/stairs/east, /turf/open/floor/iron/stairs/medium{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fqr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/cola/shamblers, @@ -18622,26 +19660,48 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) -"fro" = ( -/obj/machinery/computer/records/security{ - dir = 4 +"frc" = ( +/obj/structure/chair/sofa/middle/brown, +/obj/item/clothing/under/costume/seifuku/red{ + pixel_y = -7 }, +/obj/item/clothing/head/costume/crown{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/sign/poster/official/pda_ad/directional/north, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) +"fro" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/bookcase/random/reference, +/obj/item/book/manual/wiki/surgery{ + pixel_x = -14; + pixel_y = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "fry" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/railing, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 2 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "frB" = ( /obj/structure/railing/corner{ dir = 1 @@ -18684,6 +19744,12 @@ /obj/structure/sign/poster/random/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"frN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "frP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18698,6 +19764,18 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"frT" = ( +/obj/machinery/atmospherics/pipe/multiz/purple/visible{ + dir = 8; + name = "mix to recycle multi-deck adapter" + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "frY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/airalarm/directional/north, @@ -18705,24 +19783,13 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) -"fsf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/area/station/command/vault) "fsj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, /obj/machinery/light/directional/south, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"fso" = ( -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "fsw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18738,6 +19805,15 @@ /obj/effect/landmark/navigate_destination/research, /turf/open/floor/iron/dark, /area/station/science/lobby) +"fsy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "fsM" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -18756,7 +19832,7 @@ name = "Warden's Place" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fsO" = ( /obj/structure/rack, /obj/item/storage/crayons{ @@ -18777,6 +19853,18 @@ /obj/structure/closet/secure_closet/security/science, /turf/open/openspace, /area/station/security/checkpoint/science) +"fsW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/air_sensor/incinerator_tank, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 6 + }, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) +"fsX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "ftk" = ( /obj/structure/table, /obj/item/stock_parts/micro_laser, @@ -18801,33 +19889,16 @@ /area/station/construction/storage_wing) "ftA" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"ftF" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) "ftG" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/engine/n2, /area/station/engineering/atmos/upper) -"ftK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner{ - dir = 8 - }, -/obj/structure/fluff/paper/stack{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "ftR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -18848,17 +19919,10 @@ /obj/machinery/door/airlock/maintenance{ name = "Storage Room" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) -"fus" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fut" = ( /obj/machinery/door/airlock/research{ name = "Testing Labs" @@ -18884,18 +19948,34 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/glass, /area/station/hallway/secondary/entry) -"fuU" = ( -/obj/machinery/firealarm/directional/east, -/obj/structure/reagent_dispensers/foamtank, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) +"fuV" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - co2 Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos/upper) "fuW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, /turf/open/floor/carpet, /area/station/service/chapel) +"fva" = ( +/obj/structure/table, +/obj/item/clothing/suit/utility/fire/firefighter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"fvb" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "fve" = ( /obj/structure/chair, /obj/effect/turf_decal/tile/dark_blue{ @@ -18904,14 +19984,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"fvg" = ( -/obj/machinery/light/directional/east, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/atmos/project) "fvh" = ( /obj/structure/chair/office{ dir = 4 @@ -18934,7 +20006,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fvk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -18942,38 +20014,6 @@ /obj/structure/window/spawner/directional/north, /turf/open/floor/wood, /area/station/service/library) -"fvu" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) -"fvG" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/machinery/door/airlock/maintenance_hatch, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/aft) -"fvM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/can{ - pixel_x = -8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"fwd" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fwn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18997,25 +20037,26 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) "fwq" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/commons/dorms) +"fwv" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/office) "fwx" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"fwz" = ( -/obj/item/kirbyplants/fern{ - pixel_x = -3; - pixel_y = 18 - }, -/obj/structure/sign/flag/nanotrasen/directional/north, -/obj/structure/fluff/paper/stack, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/chamber) "fwB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -19041,6 +20082,10 @@ /turf/open/floor/wood, /area/station/command/teleporter) "fwP" = ( +/obj/machinery/door/window/brigdoor/right/directional/north{ + req_access = list("command"); + name = "Conference Room" + }, /turf/open/floor/iron/stairs/medium{ dir = 1 }, @@ -19052,12 +20097,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fxc" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) +/area/station/ai/satellite/interior) "fxi" = ( /obj/machinery/door/airlock/public/glass{ name = "Vault Storage" @@ -19067,11 +20107,17 @@ /obj/structure/cable, /obj/effect/landmark/navigate_destination/vault, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"fxp" = ( -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/command/vault) +"fxL" = ( +/obj/structure/table, +/obj/item/toy/gun{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/aft) "fxS" = ( /obj/structure/railing{ dir = 8 @@ -19118,6 +20164,18 @@ /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"fyo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "fyp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/smartfridge/drying, @@ -19127,12 +20185,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"fyw" = ( -/obj/machinery/newscaster/directional/north, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "fyx" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/red/opposingcorners, @@ -19147,48 +20199,13 @@ /obj/item/poster/random_contraband, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"fyz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/yjunction, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9-Bridge"; - location = "8-Kitchen" - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"fyD" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fyH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/railing/corner, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/lobby) "fyY" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/table/wood/fancy/orange, -/obj/item/gun/energy/recharge/kinetic_accelerator{ - name = "the QM's Accelerator"; - pixel_y = 6 +/obj/machinery/conveyor{ + id = "cargounload" }, -/obj/item/cigbutt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/structure/sign/departments/cargo/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "fzd" = ( /obj/structure/ladder, /turf/open/floor/plating, @@ -19199,42 +20216,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fzl" = ( -/obj/structure/table, -/obj/item/clothing/suit/hazardvest{ - pixel_x = -13; - pixel_y = 3 - }, -/obj/item/clothing/suit/hazardvest{ - pixel_y = 4 - }, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 10; - pixel_y = 3 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/obj/item/clothing/head/cone{ - pixel_x = -10; - pixel_y = -11 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/ai/satellite/interior) "fzv" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -19277,13 +20259,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"fzS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/engineering/lobby) "fzT" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -19308,30 +20283,14 @@ dir = 8 }, /area/station/hallway/primary/central) -"fAb" = ( -/obj/machinery/computer/atmos_control/nocontrol/incinerator{ - dir = 8 - }, -/obj/machinery/airlock_controller/incinerator_atmos{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "fAl" = ( /turf/closed/wall/r_wall, /area/station/science/lab) -"fAB" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) +"fAD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) "fAI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19342,10 +20301,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"fAV" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "fAW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, @@ -19365,14 +20320,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"fBn" = ( -/obj/item/clothing/head/utility/hardhat/red{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"fBs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "fBB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19380,6 +20331,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/service/library/printer) +"fBI" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "fBQ" = ( /obj/structure/sign/directions/upload, /turf/closed/wall, @@ -19393,18 +20349,18 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"fBT" = ( +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "fBU" = ( /obj/machinery/photocopier/prebuilt, /obj/structure/sign/clock/directional/east, /turf/open/floor/wood/large, /area/station/medical/psychology) -"fBX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "fBY" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/structure/table, @@ -19418,11 +20374,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/station/engineering/supermatter/room) -"fCe" = ( -/obj/structure/ladder, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "fCk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19433,19 +20384,30 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"fCp" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank In" +"fCx" = ( +/obj/machinery/power/emitter{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "fCL" = ( /obj/structure/lattice/catwalk, /obj/structure/rack, /obj/effect/spawner/random/maintenance/five, /turf/open/openspace, /area/station/hallway/secondary/entry) +"fCM" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"fCQ" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "fCV" = ( /turf/closed/wall/r_wall, /area/station/science/robotics/lab) @@ -19467,11 +20429,14 @@ dir = 4 }, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "fDd" = ( /obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/large, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "fDk" = ( /obj/effect/turf_decal/trimline/blue/filled/line, @@ -19506,6 +20471,10 @@ /obj/structure/cable, /turf/open/openspace, /area/station/hallway/primary/central) +"fDH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/commons/dorms) "fDQ" = ( /obj/structure/railing{ dir = 8 @@ -19519,6 +20488,16 @@ }, /turf/open/floor/iron, /area/station/science/research) +"fDV" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/west, +/obj/effect/spawner/random/clothing/gloves, +/obj/item/reagent_containers/cup/soda_cans/cola{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "fEc" = ( /obj/machinery/door/airlock/public/glass{ name = "Community Center" @@ -19526,6 +20505,14 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/station/service/library) +"fEf" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "fEs" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -19533,23 +20520,18 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) "fEA" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/airalarm/directional/north, -/obj/structure/tank_holder/extinguisher, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/structure/closet/secure_closet/security/cargo, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"fEO" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fEQ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 @@ -19572,15 +20554,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/port) -"fEU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/research) "fEW" = ( /obj/structure/sign/poster/random/directional/east, /turf/open/floor/plating, @@ -19597,7 +20570,7 @@ /obj/machinery/door/airlock/medical{ name = "Abandoned Room" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron/textured_large, /area/station/maintenance/department/medical) "fFm" = ( @@ -19616,6 +20589,7 @@ dir = 8 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/machinery/newscaster/directional/west, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "fFq" = ( @@ -19625,7 +20599,7 @@ "fFA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fFE" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -19638,6 +20612,13 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"fFF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "fFG" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law{ @@ -19647,6 +20628,20 @@ /obj/machinery/light/directional/north, /turf/open/openspace, /area/station/security/checkpoint/science) +"fFN" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"fGg" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "fGj" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -19672,39 +20667,73 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"fGn" = ( +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "fGo" = ( /obj/structure/lattice, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/space/openspace, /area/space/nearstation) -"fGD" = ( -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/upper) -"fGL" = ( -/obj/structure/disposaloutlet{ - dir = 4 +"fGI" = ( +/obj/structure/closet/crate/engineering{ + name = "Basic Materials" }, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/structure/disposalpipe/trunk, -/obj/structure/railing{ - dir = 10 +/obj/item/stock_parts/power_store/cell/high, +/obj/item/stock_parts/power_store/cell/high, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" }, -/obj/machinery/status_display/supply{ - pixel_y = 32 +/obj/item/stack/rods{ + amount = 50 }, -/turf/open/floor/iron, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/iron{ + amount = 50 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"fGL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot/right, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Cargo Storage4" + }, +/mob/living/simple_animal/bot/mulebot{ + name = "Old Yeller" + }, +/turf/open/floor/iron/recharge_floor, /area/station/cargo/sorting) -"fGM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"fGT" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"fGQ" = ( +/obj/structure/broken_flooring/corner/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fGU" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"fHb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "fHc" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -19730,25 +20759,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) -"fHg" = ( -/obj/structure/sign/poster/contraband/missing_gloves/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fHi" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"fHk" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/turf/open/floor/eighties, -/area/station/engineering/lobby) "fHp" = ( /obj/structure/table/wood, /obj/machinery/airalarm/directional/west, @@ -19760,6 +20770,12 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, /area/station/hallway/secondary/entry) +"fHO" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "fHR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19775,7 +20791,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/carpet, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "fIf" = ( /obj/structure/cable, @@ -19785,15 +20803,12 @@ }, /turf/open/floor/wood/large, /area/station/medical/break_room) -"fIg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "fIh" = ( /obj/effect/mapping_helpers/ianbirthday, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "fIl" = ( /obj/structure/lattice/catwalk, @@ -19846,12 +20861,10 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/service/hydroponics) -"fJc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ - dir = 8 - }, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) +"fIS" = ( +/obj/structure/sign/departments/medbay/alt/directional/west, +/turf/open/floor/iron/stairs/medium, +/area/station/medical/medbay/central) "fJx" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -19892,12 +20905,15 @@ "fJL" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/engineering) -"fJN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"fJY" = ( +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) "fKi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19911,38 +20927,27 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/hallway/secondary/construction) -"fKm" = ( -/obj/machinery/meter{ - name = "C02 meter" +"fKl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/terminal{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "CO2 Multideck Adapter"; - dir = 8 +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 }, -/obj/effect/turf_decal/tile/dark/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "fKA" = ( /obj/structure/sign/departments/chemistry/directional/south, /turf/open/floor/engine/hull/air, /area/station/medical/medbay/central) -"fKJ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) "fKO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/newscaster/directional/west, /turf/open/floor/plating, /area/station/medical/virology) -"fKS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "fLb" = ( /obj/effect/turf_decal/trimline/yellow/filled/warning{ dir = 1 @@ -19954,24 +20959,20 @@ /turf/open/openspace, /area/station/science/xenobiology) "fLr" = ( -/turf/open/floor/iron/large, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "fLs" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/radio/off{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/machinery/recharger{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/yellow, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "fLv" = ( /obj/effect/turf_decal/siding/dark{ dir = 6 @@ -19985,13 +20986,6 @@ /obj/machinery/telecomms/broadcaster/preset_right, /turf/open/floor/iron/dark/textured_large, /area/station/tcommsat/server) -"fLC" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) "fLX" = ( /obj/structure/table/reinforced, /obj/item/storage/crayons{ @@ -20002,17 +20996,33 @@ /obj/item/poster/random_contraband, /turf/open/floor/plating, /area/station/maintenance/port) -"fMe" = ( -/obj/structure/barricade/sandbags, +"fMd" = ( /obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, /turf/open/openspace, -/area/station/maintenance/starboard/aft) +/area/station/medical/abandoned) "fMl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"fMr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/right/brown{ + dir = 4 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "fMu" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -20029,6 +21039,15 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"fMH" = ( +/turf/closed/wall, +/area/station/maintenance/department/crew_quarters/dorms) +"fMS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "fNe" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 1 @@ -20048,13 +21067,16 @@ /obj/structure/cable, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"fNp" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +"fNn" = ( +/obj/structure/chair/sofa/corner/brown, +/obj/effect/spawner/random/maintenance, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) +"fNr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "fNw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner{ @@ -20066,18 +21088,18 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) +"fNx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "fNB" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/maintenance/central) -"fNG" = ( -/obj/structure/safe/floor, -/obj/item/food/fortunecookie, -/obj/item/lead_pipe, -/obj/item/reagent_containers/hypospray/medipen/methamphetamine, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/machinery/door/firedoor, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) "fNL" = ( /obj/structure/railing{ dir = 1 @@ -20085,6 +21107,11 @@ /obj/structure/showcase/machinery/cloning_pod, /turf/open/floor/wood, /area/station/command/corporate_showroom) +"fNP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/departments/maint/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "fNS" = ( /obj/structure/lattice/catwalk, /obj/structure/table/reinforced, @@ -20092,6 +21119,13 @@ /obj/machinery/light/directional/north, /turf/open/openspace, /area/station/security/checkpoint/customs) +"fNW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "fNX" = ( /obj/machinery/cell_charger, /obj/structure/table, @@ -20105,15 +21139,12 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fNZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) +"fNY" = ( +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "fOb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -20122,6 +21153,15 @@ }, /turf/open/floor/plating, /area/station/command/heads_quarters/hop) +"fOc" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing, +/obj/machinery/duct, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "fOe" = ( /obj/structure/railing{ dir = 1 @@ -20137,9 +21177,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"fOM" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/engine, +"fOs" = ( +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"fOF" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"fOY" = ( +/obj/machinery/shower/directional/east, +/obj/structure/fluff/shower_drain, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, /area/station/engineering/main) "fPb" = ( /obj/effect/turf_decal/siding/thinplating/dark{ @@ -20149,20 +21208,43 @@ /turf/open/floor/wood, /area/station/service/library) "fPf" = ( -/obj/effect/landmark/event_spawn, +/obj/structure/chair/sofa/middle/brown{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/bitrunner, /turf/open/openspace, /area/station/cargo/storage) -"fPi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"fPl" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"fPn" = ( +/obj/structure/table, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"fPo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Auxiliary Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "fPs" = ( /obj/structure/lattice/catwalk, /obj/machinery/power/tracker, @@ -20184,6 +21266,13 @@ /obj/machinery/holopad, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"fPv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) "fPy" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -20213,6 +21302,10 @@ }, /turf/open/floor/plating, /area/station/security/brig) +"fPN" = ( +/obj/effect/turf_decal/stripes/line, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room/upper) "fPR" = ( /obj/structure/closet/secure_closet/hos, /obj/item/clothing/glasses/hud/security/sunglasses/gars, @@ -20220,36 +21313,14 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) -"fPT" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "fPX" = ( +/obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 10 }, -/obj/structure/rack, -/obj/item/gps/mining{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/gps/mining{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/gps/mining, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/item/pickaxe{ - pixel_x = 5 - }, +/obj/structure/sign/poster/random/directional/south, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "fQb" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 8 @@ -20258,7 +21329,14 @@ /area/station/security/office) "fQp" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) +"fQG" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "fQI" = ( /obj/structure/table, /obj/machinery/cell_charger{ @@ -20270,22 +21348,21 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/science/explab) "fQL" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "fQQ" = ( /obj/machinery/vending/games, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"fQR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 +"fQT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "fRd" = ( /obj/effect/turf_decal/siding/dark_blue{ dir = 4 @@ -20293,12 +21370,6 @@ /obj/machinery/light/floor, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"fRe" = ( -/obj/structure/railing/corner/end/flip{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "fRg" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ dir = 4 @@ -20314,16 +21385,35 @@ /obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"fRE" = ( -/obj/machinery/computer/security/qm{ +"fRo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/siding/blue{ dir = 4 }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/machinery/light/small/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/catwalk_floor{ + initial_gas_mix = "n2=100;TEMP=80" }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/area/station/science/server) +"fRy" = ( +/obj/machinery/light/directional/south, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"fRE" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/obj/machinery/light/warm/dim/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "fRG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20381,10 +21471,10 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "fSg" = ( @@ -20397,7 +21487,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/bed/medical/emergency, /obj/item/storage/medkit/regular, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "fSm" = ( /obj/structure/cable, @@ -20412,7 +21502,7 @@ /turf/open/floor/iron/white/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fSO" = ( /obj/structure/lattice/catwalk, /obj/structure/light_construct/directional/east{ @@ -20426,9 +21516,18 @@ /obj/structure/sign/poster/contraband/shamblers_juice/directional/north, /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) +"fTa" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "fTf" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "fTi" = ( /turf/open/floor/carpet/royalblack, @@ -20454,6 +21553,18 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/iron/smooth, /area/station/science/robotics) +"fTu" = ( +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) +"fTw" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "fTx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/glass, @@ -20471,10 +21582,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/cafeteria) -"fTF" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/main) +"fTC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "fTM" = ( /obj/structure/chair, /obj/effect/turf_decal/tile/dark_blue{ @@ -20491,39 +21603,22 @@ /obj/structure/sign/departments/aisat/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"fTZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/foyer) +"fTV" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/central/upper) "fUb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"fUd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"fUg" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fUh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"fUc" = ( +/obj/structure/table/wood, +/obj/item/food/grown/harebell, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "fUi" = ( /obj/structure/lattice/catwalk, /obj/item/stack/cable_coil/thirty, @@ -20538,12 +21633,18 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"fUu" = ( +"fUr" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "fUv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20553,19 +21654,16 @@ }, /turf/open/floor/wood, /area/station/hallway/secondary/service) -"fUE" = ( -/obj/machinery/vending/clothing, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fUJ" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/turf/open/floor/wood, -/area/station/commons/dorms) +"fUy" = ( +/obj/machinery/duct, +/obj/structure/rack, +/obj/machinery/light_switch/directional/south, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "fUL" = ( /obj/machinery/computer/rdservercontrol, /obj/machinery/airalarm/directional/east, -/obj/effect/mapping_helpers/airalarm/tlv_cold_room, /turf/open/floor/iron/dark, /area/station/science/server) "fUM" = ( @@ -20587,17 +21685,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) -"fVa" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fVd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) "fVh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20607,16 +21694,6 @@ }, /turf/open/floor/engine/hull/air, /area/station/science/research) -"fVj" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin6"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/commons/dorms) "fVk" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20626,10 +21703,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"fVn" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) +"fVp" = ( +/obj/structure/girder/reinforced, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "fVq" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 @@ -20641,7 +21719,7 @@ /turf/open/floor/iron/white/smooth_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fVs" = ( /obj/structure/chair{ dir = 1 @@ -20652,23 +21730,13 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "fVx" = ( -/obj/structure/table/wood, -/obj/item/hand_labeler{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/stack/package_wrap{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/stamp/denied{ - pixel_x = -15; - pixel_y = 11 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "fVC" = ( /obj/structure/chair/stool/bar/directional/west, @@ -20683,11 +21751,17 @@ "fVD" = ( /turf/closed/wall, /area/station/maintenance/solars/port/aft) -"fVM" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, +"fVE" = ( +/obj/structure/table/glass, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door/directional/west{ + id = "commissaryshutter"; + name = "Office Shutter Control"; + pixel_x = 0 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) "fVQ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/left/directional/east{ @@ -20698,6 +21772,13 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/checkpoint/customs) +"fVR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "fVX" = ( /obj/structure/table, /obj/machinery/door/poddoor/shutters/preopen{ @@ -20707,14 +21788,11 @@ }, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"fWc" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/spawner/random/clothing/backpack, -/turf/open/floor/iron, -/area/station/commons/dorms) +"fWe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "fWt" = ( /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ dir = 4 @@ -20727,11 +21805,18 @@ dir = 4 }, /area/station/hallway/primary/fore) -"fWz" = ( -/obj/machinery/holopad, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) +"fWy" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"fWB" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "fWG" = ( /obj/structure/cable/layer3, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20740,7 +21825,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "fWI" = ( /obj/structure/girder, /obj/effect/spawner/random/structure/grille, @@ -20750,6 +21835,10 @@ /obj/effect/spawner/random/engineering/tank, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"fWL" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "fWQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -20768,7 +21857,7 @@ "fWW" = ( /obj/machinery/flasher/directional/south, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fWY" = ( /turf/closed/wall, /area/station/service/bar) @@ -20792,14 +21881,13 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"fXp" = ( -/obj/machinery/light/floor, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"fXr" = ( +/turf/open/floor/glass, +/area/station/maintenance/starboard/aft/upper) "fXB" = ( /obj/machinery/status_display/evac/directional/north, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fXD" = ( /obj/effect/spawner/random/trash/crushed_can, /obj/structure/broken_flooring/side/always_floorplane/directional/east, @@ -20812,15 +21900,21 @@ /obj/effect/mapping_helpers/broken_machine, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"fXG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 +"fXF" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/folder/yellow{ + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "fXJ" = ( /obj/structure/table/reinforced, /obj/item/binoculars, @@ -20848,34 +21942,39 @@ }, /turf/open/floor/iron, /area/station/science/robotics) -"fXO" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "fXP" = ( /turf/closed/wall, /area/station/hallway/primary/aft) -"fXT" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "fXW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) +"fYa" = ( +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) "fYd" = ( /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"fYo" = ( +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/sign/directions/evac/directional/north{ + dir = 8; + pixel_y = -5 + }, +/turf/closed/wall, +/area/station/commons/locker) "fYq" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -20884,13 +21983,23 @@ /obj/effect/turf_decal/trimline/neutral, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"fYt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) "fYu" = ( /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"fYy" = ( +/obj/machinery/requests_console/directional/south{ + department = "Engineering"; + name = "Engineering Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/pipedispenser, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) "fYF" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -20900,20 +22009,44 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"fYG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "fYH" = ( -/obj/structure/table, -/obj/structure/sign/poster/contraband/energy_swords/directional/north, -/obj/item/clothing/head/costume/tv_head{ - pixel_y = 8 +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/virology) +"fYR" = ( +/obj/structure/railing{ + dir = 1 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) +/obj/structure/lattice/catwalk, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "fYS" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 4 }, /turf/closed/wall, /area/station/service/lawoffice) +"fZb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "fZc" = ( /obj/effect/turf_decal/siding/red{ dir = 4 @@ -20927,20 +22060,29 @@ /turf/open/floor/wood, /area/station/security/courtroom) "fZg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"fZh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/stamp/granted{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/stamp/denied{ + pixel_x = 7 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "fZn" = ( /obj/effect/spawner/random/trash/food_packaging, /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"fZq" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/head/costume/foilhat, -/turf/open/floor/wood, -/area/station/commons/dorms) "fZy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -20948,13 +22090,6 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"fZB" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/machinery/modular_computer/preset/engineering{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "fZD" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 5 @@ -20978,24 +22113,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/research) -"fZP" = ( -/obj/structure/chair{ - dir = 4; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fZR" = ( -/obj/effect/spawner/random/structure/tank_holder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) "gaa" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 @@ -21009,42 +22126,6 @@ }, /turf/open/water/jungle, /area/station/science/genetics) -"gaf" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"gaj" = ( -/obj/effect/turf_decal/trimline/red, -/obj/effect/turf_decal/trimline/red/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/mid_joiner, -/obj/effect/turf_decal/trimline/red/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/mid_joiner{ - dir = 4 - }, -/obj/item/cigbutt{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/cigbutt{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/cigbutt{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/cigbutt{ - pixel_x = -9; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "gal" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21054,11 +22135,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"gav" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "gaE" = ( /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/smooth_large, @@ -21119,6 +22195,24 @@ }, /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) +"gbo" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"gbw" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "gby" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21128,10 +22222,11 @@ /area/station/security/interrogation) "gbE" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/storage) "gbH" = ( @@ -21150,6 +22245,12 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) +"gbN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "gbR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -21158,6 +22259,18 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/security/prison/mess) +"gcb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner{ + dir = 8 + }, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/wood, +/area/station/maintenance/aft) "gcc" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -21181,27 +22294,11 @@ /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) "gcf" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/assembly/signaler{ - pixel_x = -9; - pixel_y = 4 - }, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/food/chocolatebar{ - pixel_x = 6; - pixel_y = -3 +/obj/structure/chair/comfy/beige{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "gch" = ( /obj/machinery/door/airlock/virology/glass{ name = "Entrance to Malpractice Tower" @@ -21231,16 +22328,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"gcm" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/chair/sofa/corp{ +"gco" = ( +/obj/machinery/computer/security/telescreen/minisat/directional/south{ + name = "AI Ministat Camera Monitor" + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/modular_computer/preset/engineering{ dir = 1 }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "gct" = ( /obj/effect/turf_decal/box/white, /turf/open/floor/engine, @@ -21254,6 +22353,10 @@ /obj/effect/turf_decal/trimline/purple/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"gcx" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "gcE" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -21271,8 +22374,19 @@ /obj/effect/turf_decal/trimline/green/filled/line, /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"gcT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "gde" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/cable, @@ -21287,6 +22401,17 @@ /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"gdt" = ( +/obj/structure/window/spawner/directional/east, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light/very_dim/directional/north, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "gdu" = ( /obj/item/toy/plush/moth{ name = "Stockpile Sammy"; @@ -21318,21 +22443,24 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) -"gdP" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "gdS" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"gef" = ( -/obj/structure/chair/office, -/turf/open/floor/iron, -/area/station/engineering/lobby) +"gdW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 6 + }, +/obj/machinery/meter{ + name = "O2 meter" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"ged" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/structure/fireaxecabinet/directional/south, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "gei" = ( /obj/structure/railing{ dir = 4 @@ -21344,15 +22472,6 @@ /obj/structure/railing/corner, /turf/open/floor/engine/hull, /area/space/nearstation) -"gex" = ( -/obj/structure/railing, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/warm/directional/west, -/turf/open/floor/grass, -/area/station/hallway/primary/starboard) "geA" = ( /obj/effect/turf_decal/siding/red/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21367,19 +22486,12 @@ /obj/machinery/door/poddoor/incinerator_ordmix, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/burnchamber) -"geE" = ( -/obj/structure/closet/crate/secure/engineering{ - name = "Advanced Materials" - }, -/obj/item/stack/sheet/plasteel, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" +"geJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 }, -/turf/open/floor/engine, -/area/station/engineering/break_room) +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "geK" = ( /turf/open/floor/iron, /area/station/cargo/storage) @@ -21416,12 +22528,19 @@ /obj/structure/sign/poster/contraband/microwave/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"gfd" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "gfh" = ( /obj/structure/railing{ dir = 4 }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) +"gfi" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "gfo" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -21431,17 +22550,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"gfs" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/obj/machinery/computer/turbine_computer, -/obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "gfz" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/disposalpipe/segment, @@ -21463,7 +22571,8 @@ "gfG" = ( /obj/machinery/light/directional/west, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/service/library) @@ -21490,46 +22599,24 @@ }, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"ggj" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination/tools, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "ggl" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, -/obj/machinery/button/elevator{ - id = "catwalk_sec"; - pixel_y = 25 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /obj/machinery/camera/autoname/directional/north, +/obj/machinery/button/elevator/directional/north{ + id = "catwalk_sec" + }, /turf/open/floor/iron/dark, /area/station/security/brig) -"ggp" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/random/medical/memeorgans, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) "ggq" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "ggt" = ( @@ -21541,42 +22628,55 @@ /obj/structure/lattice/catwalk, /obj/structure/ladder, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"ggA" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "SM_Outside_shutters"; + name = "Outside Shutters"; + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"ggD" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) "ggE" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ggH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/effect/landmark/start/depsec/supply, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"ggJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 +"ggK" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 }, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/medical/virology) -"ggN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/large, -/area/station/service/theater_dressing) +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "ggQ" = ( /obj/structure/sign/poster/contraband/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "ggR" = ( @@ -21588,19 +22688,15 @@ /obj/machinery/light/floor, /turf/open/floor/iron/white, /area/station/medical/office) -"ggW" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "ggX" = ( -/obj/structure/cable/multilayer/multiz, -/obj/machinery/firealarm/directional/east, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/engineering/hallway) +/area/station/engineering/engine_smes) "ghb" = ( /obj/machinery/light/directional/east, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ghe" = ( /obj/structure/table, /obj/item/pen/fountain{ @@ -21634,12 +22730,28 @@ /turf/open/floor/iron/dark/diagonal, /area/station/service/theater) "ghA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/edge{ + dir = 4 }, -/turf/open/openspace, /area/station/hallway/primary/central) +"ghI" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Telecomms - Storage" + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "ghO" = ( /obj/item/coin/antagtoken, /obj/item/coin/antagtoken{ @@ -21668,11 +22780,12 @@ /turf/open/floor/iron/dark, /area/station/science/lobby) "ghZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, /area/station/cargo/storage) "gie" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -21692,7 +22805,7 @@ name = "Armory" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gih" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -21712,13 +22825,11 @@ }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"gim" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"gij" = ( +/obj/machinery/duct, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "gir" = ( /obj/effect/decal/cleanable/blood/old, /obj/structure/disposalpipe/trunk/multiz{ @@ -21732,33 +22843,57 @@ }, /turf/open/floor/carpet/black, /area/station/service/theater) -"giB" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Secure Tech Storage" - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "giE" = ( -/obj/structure/railing{ +/obj/effect/turf_decal/siding/blue{ dir = 8 }, -/obj/effect/turf_decal/siding/blue{ +/obj/structure/railing{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"giG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"gjd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gji" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible, +/obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, -/area/station/command/bridge) -"giT" = ( -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) -"gjb" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/hallway) +/area/station/engineering/atmos/upper) +"gjj" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "gjn" = ( /obj/item/kirbyplants/random, /obj/machinery/airalarm/directional/south, @@ -21790,20 +22925,11 @@ "gjH" = ( /turf/open/openspace, /area/station/hallway/secondary/service) -"gjM" = ( -/obj/structure/fluff/paper/stack, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"gjU" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/security/courtroom) +"gjR" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "gjW" = ( /obj/effect/decal/cleanable/food/tomato_smudge, /obj/effect/decal/cleanable/dirt/dust, @@ -21813,29 +22939,17 @@ /obj/structure/railing{ dir = 8 }, -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/toy/figure/cargotech, -/obj/item/toy/figure/cargotech, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gki" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ +/obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "gkn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21851,7 +22965,22 @@ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"gkB" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Bridge Escape" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "gkN" = ( /obj/structure/closet/crate/trashcart/filled, /obj/effect/spawner/random/maintenance, @@ -21861,21 +22990,6 @@ /obj/effect/landmark/start/botanist, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"gkP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 to Port" - }, -/obj/effect/turf_decal/tile/dark/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"gkW" = ( -/obj/machinery/shower/directional/west, -/obj/structure/fluff/shower_drain, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 1 - }, -/area/station/engineering/main) "gla" = ( /obj/structure/railing/corner{ dir = 4 @@ -21899,10 +23013,6 @@ }, /turf/open/floor/glass, /area/station/service/kitchen) -"gll" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/science/research) "glm" = ( /obj/structure/ladder, /obj/structure/lattice/catwalk, @@ -21914,7 +23024,20 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) +"glw" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "glz" = ( /turf/open/floor/iron/chapel{ dir = 1 @@ -21924,6 +23047,10 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"glF" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "glH" = ( /obj/effect/spawner/structure/window, /obj/structure/disposalpipe/trunk/multiz{ @@ -21931,22 +23058,9 @@ }, /turf/open/floor/plating, /area/station/medical/cryo) -"glJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) "glL" = ( /turf/closed/wall/mineral/plastitanium, /area/space/nearstation) -"glN" = ( -/obj/machinery/camera/preset/ordnance{ - c_tag = "Cannon's exit" - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "glU" = ( /obj/machinery/door/airlock/mining{ name = "Cargo Bay" @@ -21955,19 +23069,10 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) -"gmc" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "gmd" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -22036,16 +23141,22 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/dark, /area/station/science/lobby) -"gmh" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +"gmq" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron, +/area/station/engineering/lobby) "gmt" = ( /obj/item/clothing/head/wig/random, /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, /area/space/nearstation) +"gmu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gmy" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -22057,10 +23168,21 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) +"gmD" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room/upper) "gmE" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/hallway/primary/central) +"gmF" = ( +/obj/structure/lattice/catwalk, +/obj/item/clothing/shoes/wheelys/rollerskates{ + pixel_x = 3; + pixel_y = -5 + }, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "gmJ" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/iron/smooth_large, @@ -22086,35 +23208,37 @@ /turf/open/floor/iron, /area/station/science/xenobiology/hallway) "gnf" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/structure/chair/plastic{ dir = 1 }, -/turf/open/floor/iron/dark, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) -"gng" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/west, -/turf/open/space/openspace, -/area/space/nearstation) "gnk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"gnm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "gnp" = ( /obj/structure/showcase/machinery/tv, /obj/structure/table, /turf/open/floor/plating, /area/station/maintenance/port/greater) "gnt" = ( -/obj/structure/cable, -/obj/structure/railing/corner/end/flip{ - dir = 8 - }, -/obj/structure/railing/corner/end{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "gnu" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/decal/cleanable/dirt, @@ -22123,10 +23247,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"gnw" = ( -/obj/structure/ladder, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) "gnx" = ( /obj/structure/table/reinforced, /obj/machinery/recharger{ @@ -22151,7 +23271,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gnK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/closed/wall/r_wall, @@ -22169,24 +23289,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"gnU" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"gnV" = ( -/obj/structure/cable, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark/arrow_ccw, -/obj/effect/turf_decal/trimline/dark/arrow_ccw, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "gnY" = ( /obj/structure/railing{ dir = 4 @@ -22226,7 +23328,7 @@ name = "Private Channel" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "got" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -22243,19 +23345,15 @@ dir = 8 }, /area/station/cargo/storage) -"goI" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) -"goM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ - dir = 1 +"goK" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "goN" = ( /obj/machinery/light/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -22273,10 +23371,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"goU" = ( -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "goW" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/decal/cleanable/dirt, @@ -22285,6 +23379,21 @@ }, /turf/open/floor/wood, /area/station/hallway/primary/central) +"gpb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) +"gpd" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "gpk" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 1 @@ -22311,6 +23420,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"gpD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "gpI" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/effect/turf_decal/bot, @@ -22324,8 +23441,13 @@ id = "qm_cargobay"; dir = 8 }, +/obj/structure/cable, /turf/open/floor/plating, /area/station/security/checkpoint/supply) +"gpS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) "gpT" = ( /obj/machinery/door/airlock/grunge{ name = "Morgue" @@ -22334,9 +23456,11 @@ /turf/open/floor/iron/dark/small, /area/station/medical/morgue) "gpU" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/dorms) +/obj/structure/closet/emcloset, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) "gqa" = ( /obj/structure/mop_bucket/janitorialcart{ dir = 8 @@ -22349,19 +23473,17 @@ }, /turf/open/floor/iron/checker, /area/station/service/janitor) -"gqb" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 +"gqc" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Chief Engineer's Office"; + name = "Chief Engineer's Fax Machine" }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"gqh" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/trunk/multiz, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/effect/turf_decal/siding/yellow/end{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "gqj" = ( /obj/machinery/door/airlock/wood{ name = "Curator Office" @@ -22370,16 +23492,24 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) +"gql" = ( +/obj/machinery/atmospherics/pipe/multiz/orange/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "gqn" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) "gqp" = ( @@ -22389,20 +23519,26 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"gqv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "gqz" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ dir = 5 }, /turf/open/space/openspace, /area/space/nearstation) +"gqH" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "gqI" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/station/security/warden) -"gqM" = ( -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "gqT" = ( /obj/structure/railing{ dir = 8 @@ -22411,11 +23547,19 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "grb" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"grc" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/catwalk_floor{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/station/science/server) "grd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -22426,13 +23570,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"gro" = ( -/obj/structure/cable/layer1, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"grm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "grr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -22440,11 +23582,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"grx" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/clothing/mask/joy, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "grJ" = ( /obj/item/kirbyplants/random, /obj/structure/sign/poster/official/random/directional/south, @@ -22458,6 +23595,13 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"gsd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "gse" = ( /turf/open/floor/wood, /area/station/hallway/secondary/service) @@ -22476,18 +23620,6 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"gtd" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"gti" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/structure/sign/directions/supply/directional/east{ - dir = 2 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "gtk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -22495,6 +23627,17 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"gtm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosmaintedge" + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) "gtq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22502,6 +23645,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood/tile, /area/station/science/robotics) +"gts" = ( +/obj/structure/sign/poster/official/random/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "gtt" = ( /obj/structure/railing{ dir = 8 @@ -22511,9 +23665,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"gtw" = ( -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) "gty" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -22531,6 +23682,15 @@ /obj/structure/bed, /turf/open/floor/plating, /area/station/security/execution/education) +"gtC" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "gtO" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood, @@ -22550,28 +23710,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"gtW" = ( -/obj/structure/table/wood, -/obj/item/book/bible{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "gtZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/siding/wood, /obj/machinery/firealarm/directional/west, /turf/open/floor/wood, /area/station/hallway/primary/central) -"gug" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" +"guh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "guk" = ( /obj/effect/landmark/start/scientist, /turf/open/floor/iron/dark, @@ -22588,7 +23740,7 @@ /obj/structure/cable, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port) "gup" = ( @@ -22600,18 +23752,12 @@ }, /turf/open/floor/iron, /area/station/science/research) -"guy" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "guD" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "guO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -22625,14 +23771,12 @@ "guV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/machinery/conveyor_switch/oneway{ - dir = 1; - id = "mining" +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 1 }, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "gvb" = ( /obj/machinery/light/directional/west, /obj/structure/cable, @@ -22655,23 +23799,19 @@ /obj/item/radio/intercom/prison/directional/west, /turf/open/floor/iron/freezer, /area/station/security/prison/shower) -"gvk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +"gvi" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/engineering/atmos/office) "gvI" = ( /obj/effect/turf_decal/stripes/end, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"gvK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/holosign/barrier/engineering, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/atmos/project) +"gvM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "gvR" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -22691,6 +23831,17 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"gwk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/captain/private) "gwD" = ( /obj/item/stack/ore/gold{ pixel_x = -8; @@ -22710,11 +23861,21 @@ "gwK" = ( /turf/open/floor/engine/hull/air, /area/station/security/courtroom) -"gxi" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/ladder, +"gwN" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/commons/fitness/recreation) +"gxb" = ( +/obj/structure/table/reinforced, +/obj/item/binoculars, +/obj/item/binoculars, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "gxl" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -22739,7 +23900,9 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner{ + dir = 8 + }, /area/station/hallway/primary/central) "gyc" = ( /obj/structure/table/wood, @@ -22757,6 +23920,8 @@ dir = 1 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) "gyh" = ( @@ -22767,6 +23932,11 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"gyi" = ( +/obj/structure/dresser, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms) "gym" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -22796,6 +23966,15 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"gyr" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "gys" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -22807,8 +23986,13 @@ /area/station/security/brig) "gyw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "gyz" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/floor/plating, @@ -22895,29 +24079,27 @@ /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) "gzt" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/pen/fountain/captain{ - pixel_y = -6 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 10 +/obj/effect/landmark/start/captain, +/obj/structure/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "gzH" = ( /obj/item/kirbyplants/photosynthetic, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"gzJ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/detectives_office/private_investigators_office) "gAa" = ( /obj/machinery/modular_computer/preset/id{ dir = 1 @@ -22930,6 +24112,9 @@ "gAb" = ( /obj/structure/chair/office, /obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/lobby) "gAd" = ( @@ -22941,52 +24126,35 @@ "gAf" = ( /turf/closed/wall/r_wall, /area/station/hallway/secondary/entry) +"gAh" = ( +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "gAl" = ( /obj/item/restraints/legcuffs/beartrap/prearmed, /turf/open/floor/plating, /area/station/maintenance/port) -"gAq" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - co2 Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos/upper) -"gAt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"gAy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) -"gAC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +"gAz" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "gAI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"gAM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"gAS" = ( +/obj/item/ammo_casing/spent{ + pixel_x = -11; + pixel_y = -5 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -6; + pixel_y = 2 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central/upper) "gAT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/trimline/red/warning{ @@ -23028,11 +24196,11 @@ /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) -"gBf" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/rods, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +"gBe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack, +/turf/open/floor/wood, +/area/station/maintenance/aft) "gBg" = ( /obj/structure/flora/rock/pile, /obj/structure/flora/bush/jungle/b/style_2, @@ -23052,12 +24220,39 @@ /obj/effect/spawner/random/maintenance/four, /turf/open/floor/plating, /area/station/construction/storage_wing) +"gBr" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"gBu" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/button/door/directional/east{ + id = "Cabin7"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "gBA" = ( /obj/machinery/camera/directional/south{ c_tag = "Science - Xenobiology Big Pen" }, /turf/open/floor/engine, /area/station/science/xenobiology) +"gBC" = ( +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "O2 Multideck Adapter"; + dir = 2 + }, +/obj/machinery/meter{ + name = "O2 meter" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "gBE" = ( /obj/structure/chair/sofa/right/brown{ dir = 8 @@ -23076,11 +24271,17 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "gBG" = ( -/obj/machinery/computer/communications{ - dir = 1 +/obj/machinery/firealarm/directional/east, +/obj/machinery/modular_computer/preset/id{ + dir = 8 }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/carpet, +/obj/machinery/button/door/directional/south{ + id = "capshut"; + name = "Captain Shutters"; + pixel_x = -6; + pixel_y = -28 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "gBR" = ( /obj/structure/lattice/catwalk, @@ -23095,39 +24296,17 @@ }, /turf/open/openspace, /area/station/command/gateway) -"gBV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"gBY" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) -"gCa" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"gCn" = ( -/obj/structure/lattice, -/obj/item/toy/figure/ninja{ - name = "Space Ninja"; - desc = "How did he get there??"; - pixel_x = -8; - pixel_y = 7 +"gBZ" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ + dir = 8 }, -/turf/open/space/basic, -/area/space/nearstation) -"gCv" = ( -/obj/structure/ladder, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"gCu" = ( +/obj/structure/broken_flooring/side/directional/east, +/obj/machinery/light_switch/directional/north, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/storage_shared) "gCx" = ( /obj/structure/table/reinforced/rglass, /obj/item/megaphone/sec{ @@ -23146,23 +24325,6 @@ /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, /turf/open/floor/plating, /area/station/security/interrogation) -"gCL" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/atmospherics, -/obj/machinery/requests_console/directional/south{ - department = "Engineering"; - name = "Engineering Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/mapping_helpers/requests_console/assistance, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) -"gCQ" = ( -/obj/machinery/shower/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "gCU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23172,11 +24334,37 @@ /area/station/security/prison) "gDc" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" }, +/obj/structure/cable, /turf/open/floor/plating, /area/station/command/heads_quarters/captain/private) +"gDe" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"gDk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) +"gDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gDs" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -23232,6 +24420,16 @@ }, /turf/open/floor/iron, /area/station/science/research) +"gDZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gEb" = ( /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/dark_blue{ @@ -23270,12 +24468,6 @@ /obj/machinery/grill, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) -"gEE" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "gEN" = ( /obj/machinery/porta_turret/ai{ dir = 4 @@ -23284,27 +24476,7 @@ dir = 5 }, /turf/open/floor/engine/hull/reinforced/air, -/area/station/ai_monitored/turret_protected/ai) -"gER" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"gEZ" = ( -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/item/food/hotcrossbun{ - pixel_x = 10; - pixel_y = 12 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/ai/satellite/chamber) "gFa" = ( /obj/structure/table/reinforced, /obj/item/plant_analyzer, @@ -23326,15 +24498,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) -"gFk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "gFm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -23351,21 +24514,12 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"gFp" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "gFt" = ( /obj/structure/bodycontainer/morgue{ dir = 1 }, /obj/machinery/light/small/directional/south, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) "gFx" = ( @@ -23375,23 +24529,27 @@ /turf/open/floor/iron/dark, /area/station/security/brig) "gFB" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/machinery/light_switch/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Security Post (Low)" - }, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) +"gFF" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/starboard/aft/upper) "gFI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/camera/autoname/directional/south{ network = list("minisat") }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gFU" = ( /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/trimline/blue/filled/line, @@ -23403,20 +24561,6 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, /area/station/security/medical) -"gFW" = ( -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gGc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"gGl" = ( -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/maintenance/starboard/lesser) "gGx" = ( /obj/structure/railing/corner{ dir = 1 @@ -23427,10 +24571,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/station/science/cytology) -"gGB" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) "gGF" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/wood/corner, @@ -23497,12 +24637,6 @@ /obj/effect/mapping_helpers/airlock/access/all/science/xenobio, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"gHH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/icecream_vat, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) "gHJ" = ( /obj/structure/table, /obj/machinery/requests_console/directional/west{ @@ -23559,17 +24693,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"gIz" = ( +/obj/item/statuebust, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) "gIE" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/storage/art) -"gIN" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ +"gIQ" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "SM_Outside_shutters"; + name = "Outside Shutters"; dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"gIR" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "gJg" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ dir = 8 @@ -23586,11 +24731,13 @@ }, /turf/open/space/basic, /area/space/nearstation) -"gJi" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/north, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +"gJm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "gJp" = ( /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/trimline/dark_blue/filled/line, @@ -23600,18 +24747,28 @@ /obj/item/kirbyplants/organic/plant10, /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) -"gJT" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/meson, -/obj/item/geiger_counter, -/obj/item/clothing/head/utility/radiation, -/obj/item/clothing/suit/utility/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"gJv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 8 }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"gJw" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"gJY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/engineering) "gKa" = ( /obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/tile/dark_blue{ @@ -23620,62 +24777,37 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"gKk" = ( -/obj/item/stack/sticky_tape{ - pixel_x = 8; - pixel_y = 14 - }, -/obj/structure/table, -/obj/item/stack/sticky_tape{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/screwdriver, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "gKo" = ( /obj/structure/flora/bush/flowers_br/style_random, /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/station/hallway/secondary/entry) -"gKs" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"gKu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/sign/warning/radiation/rad_area/directional/south, +"gKq" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"gKw" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/hot_temp/directional/north, +/turf/open/space/basic, +/area/space/nearstation) +"gKE" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"gKL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/command/bridge) "gKN" = ( /obj/machinery/holopad/secure{ pixel_y = -1 }, /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) -"gKO" = ( -/obj/structure/chair/pew/right{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/security/armory) +"gKT" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "gKX" = ( /obj/machinery/portable_atmospherics/canister/anesthetic_mix, /obj/effect/turf_decal/weather/snow/corner{ @@ -23701,7 +24833,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gLs" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -23715,21 +24847,10 @@ /turf/open/floor/iron/dark, /area/station/science/cytology) "gLD" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/requests_console/directional/east{ - name = "Quartermaster's Requests Console"; - department = "Quartermaster's Desk" - }, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/mapping_helpers/requests_console/ore_update, -/obj/effect/mapping_helpers/requests_console/announcement, -/obj/effect/mapping_helpers/requests_console/information, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "gLE" = ( /obj/machinery/digital_clock/directional/south, /turf/open/floor/glass/reinforced, @@ -23747,24 +24868,25 @@ /turf/open/floor/iron/white, /area/station/maintenance/department/medical) "gLT" = ( -/obj/structure/railing/corner/end{ - dir = 8 +/obj/machinery/holopad, +/obj/structure/railing{ + dir = 1 }, -/obj/effect/turf_decal/trimline/brown/filled/warning{ +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ dir = 1 }, /turf/open/floor/iron/textured, /area/station/cargo/storage) "gLU" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/structure/sign/directions/engineering/directional/north{ - dir = 2 + dir = 2; + pixel_y = 0 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/closed/wall, +/area/station/commons/toilet/auxiliary) "gLW" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, @@ -23784,6 +24906,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) +"gMB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "gMI" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -23796,25 +24925,52 @@ /obj/structure/window/reinforced/spawner/directional/south, /turf/open/space/openspace, /area/space/nearstation) -"gMP" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room" +"gMW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/atmos/project) +/turf/open/floor/wood, +/area/station/commons/dorms) "gNf" = ( /obj/structure/light_construct/directional/east, /obj/effect/mapping_helpers/broken_floor, +/obj/structure/table/wood, +/obj/effect/spawner/random/maintenance, /turf/open/floor/wood, /area/station/maintenance/starboard/central) +"gNg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"gNh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) "gNi" = ( /turf/open/floor/carpet, /area/station/security/detectives_office) +"gNp" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "gNq" = ( /obj/structure/table/reinforced, /turf/open/floor/wood, @@ -23822,16 +24978,20 @@ "gNr" = ( /turf/closed/wall, /area/station/service/library) +"gNx" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/aft) "gNy" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, +/turf/open/floor/iron/textured, /area/station/cargo/storage) "gND" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -23852,31 +25012,37 @@ /area/station/hallway/primary/aft) "gNL" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L10" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"gNR" = ( +/obj/effect/spawner/random/trash/mess, +/obj/item/toy/crayon/spraycan{ + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "gNS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gNU" = ( -/obj/structure/railing{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"gNU" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/aicard{ + pixel_x = 5 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/item/assembly/timer{ + pixel_x = -7 }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "gNX" = ( /obj/machinery/computer/security/hos{ dir = 4 @@ -23893,17 +25059,27 @@ }, /turf/open/floor/plating, /area/station/science/lobby) -"gOd" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/pai_card, +"gOp" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/briefcase/secure{ + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gOv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"gOE" = ( -/obj/machinery/atmospherics/components/unary/passive_vent, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) +/area/station/maintenance/starboard/fore/upper) "gOH" = ( /obj/structure/sink/kitchen/directional/west, /obj/machinery/light_switch/directional/east, @@ -23913,14 +25089,12 @@ /area/station/service/kitchen/coldroom) "gOK" = ( /obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) -"gOL" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2{ - dir = 8 +/obj/effect/turf_decal/siding/dark{ + dir = 9 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "gOR" = ( /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron, @@ -23944,12 +25118,13 @@ /obj/machinery/drone_dispenser, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"gPj" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Nitrogen Cell"; - name = "atmospherics camera" +"gPk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 }, -/turf/open/floor/engine/n2, +/obj/effect/turf_decal/bot_white, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark, /area/station/engineering/atmos/upper) "gPu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23976,12 +25151,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"gPA" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) +"gPz" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "gPC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24010,6 +25184,35 @@ /obj/machinery/airalarm/directional/north, /turf/open/openspace, /area/station/hallway/secondary/service) +"gPP" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 11 + }, +/obj/item/stamp/granted{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/stamp/denied{ + pixel_x = 6 + }, +/obj/item/pen{ + pixel_x = -1; + pixel_y = 13 + }, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gPS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "N2 to Mix" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "gPW" = ( /turf/closed/wall, /area/station/maintenance/hallway/abandoned_recreation) @@ -24025,19 +25228,15 @@ /turf/open/floor/carpet/black, /area/station/maintenance/hallway/abandoned_recreation) "gQa" = ( -/obj/machinery/door/airlock/mining{ - name = "Quartermaster's Quarters" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "gQc" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gQf" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 8 @@ -24047,21 +25246,18 @@ }, /obj/structure/sign/flag/nanotrasen/directional/south, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"gQi" = ( -/obj/machinery/vatgrower, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) +"gQj" = ( +/obj/structure/table/wood, +/obj/item/book/bible, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "gQu" = ( /obj/structure/railing{ dir = 1 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gQA" = ( /obj/effect/turf_decal/trimline/dark/arrow_cw{ dir = 8 @@ -24084,14 +25280,25 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"gQH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "gQI" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/railing/corner/end{ dir = 8 }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/storage) "gQL" = ( @@ -24115,10 +25322,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"gQW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/engine, -/area/station/engineering/break_room) "gQY" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners, /obj/effect/decal/cleanable/dirt, @@ -24126,13 +25329,13 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"gRx" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/delivery/white{ - color = "#ff6600" +"gRv" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/break_room) +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "gRB" = ( /obj/machinery/door/airlock/research{ name = "Research and Development Lab" @@ -24157,7 +25360,7 @@ /area/station/service/chapel) "gRG" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gRH" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -24169,18 +25372,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"gRQ" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"gRT" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/effect/decal/cleanable/glitter, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "gRZ" = ( /obj/effect/turf_decal/bot, /obj/item/robot_suit, @@ -24206,17 +25397,38 @@ }, /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) -"gSn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ +"gSh" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, -/turf/open/floor/iron, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) +"gSn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, /area/station/cargo/storage) "gSq" = ( /obj/machinery/light/directional/west, /turf/open/floor/wood/large, /area/station/hallway/primary/central) +"gSF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen/directional/east{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink" + }, +/obj/structure/mirror/directional/west, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gSG" = ( /obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -24226,8 +25438,15 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) +"gSH" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating/airless, +/area/station/maintenance/aft) "gSK" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 @@ -24253,27 +25472,6 @@ }, /turf/open/floor/carpet/cyan, /area/station/command/heads_quarters/cmo) -"gTe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"gTm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/light/directional/north, -/obj/structure/rack, -/obj/item/lightreplacer{ - pixel_y = 7 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) "gTn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -24294,14 +25492,14 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"gTH" = ( -/obj/structure/table, -/obj/item/reagent_containers/cup/glass/mug{ - pixel_x = -3; - pixel_y = 4 +"gTu" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/turf/open/floor/plating, +/area/station/maintenance/starboard) "gTL" = ( /obj/machinery/door/airlock/public/glass{ name = "Circle Center" @@ -24311,6 +25509,15 @@ dir = 1 }, /area/station/hallway/primary/aft) +"gTP" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "SM_Outside_shutters"; + name = "Outside Shutters"; + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "gTW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -24324,16 +25531,31 @@ }, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"gTX" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"gUc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/item/lightreplacer{ + pixel_y = 7 + }, +/obj/structure/sign/poster/contraband/missing_gloves/directional/north, +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "gUh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/red/dim/directional/south, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"gUr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/lobby) "gUv" = ( /obj/machinery/holopad, /turf/open/floor/carpet, @@ -24346,6 +25568,25 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/wood, /area/station/service/library) +"gUE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/rack, +/obj/structure/cable, +/obj/item/radio/intercom/directional/west, +/obj/item/multitool{ + pixel_x = 8 + }, +/obj/item/flatpack{ + board = /obj/item/circuitboard/machine/flatpacker; + pixel_x = -5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) +"gUI" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/upper) "gUQ" = ( /obj/machinery/door/airlock/public/glass{ name = "Nanotrasen Museum" @@ -24355,10 +25596,30 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/station/command/corporate_showroom) -"gVi" = ( -/obj/structure/window/spawner/directional/west, +"gUV" = ( +/obj/machinery/door/airlock{ + name = "Commentator Stand Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/aft/upper) +"gVf" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"gVj" = ( +/obj/item/clothing/head/cone{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "gVn" = ( /obj/machinery/light/directional/south, /turf/open/floor/engine, @@ -24368,12 +25629,13 @@ dir = 4 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "gVv" = ( -/obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "gVB" = ( @@ -24385,6 +25647,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"gVQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/dorms/laundry) "gVZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -24400,13 +25666,7 @@ network = list("minisat") }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"gWm" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/foyer) "gWo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -24422,8 +25682,20 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) +"gWI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "gWM" = ( /obj/machinery/camera/autoname/directional/south, +/obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/primary/central) "gWO" = ( @@ -24467,7 +25739,7 @@ dir = 6 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gXj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/easel, @@ -24480,24 +25752,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/openspace, /area/station/maintenance/port) -"gXy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/medical/abandoned) "gXG" = ( /turf/closed/wall, /area/station/science/robotics) -"gXQ" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/station/engineering/atmos/upper) +"gXH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/station/maintenance/aft) "gXR" = ( /obj/machinery/atmospherics/components/binary/tank_compressor{ dir = 8 @@ -24526,7 +25788,7 @@ /obj/item/grenade/chem_grenade/holy, /obj/structure/safe, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gYz" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp{ @@ -24539,7 +25801,7 @@ }, /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gYG" = ( /obj/machinery/atmospherics/pipe/multiz/dark/visible{ dir = 8 @@ -24556,22 +25818,28 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "gYP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron/textured, -/area/station/cargo/storage) -"gYS" = ( -/obj/structure/table/reinforced, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"gYY" = ( -/obj/effect/spawner/random/structure/girder, -/obj/effect/spawner/random/structure/grille, +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/closet/crate, +/obj/item/toy/figure/cargotech, +/obj/item/toy/figure/cargotech, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/cargo/storage) +"gYU" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/dinner, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "gYZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -24591,6 +25859,13 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"gZi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "gZj" = ( /obj/structure/table/reinforced/rglass, /obj/effect/spawner/surgery_tray/full, @@ -24605,10 +25880,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) -"gZu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) "gZy" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/airalarm/directional/south, @@ -24628,10 +25899,6 @@ }, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"gZD" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "gZO" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/engine/n2o, @@ -24730,37 +25997,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"hbO" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/tank/jetpack/oxygen{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"hbS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"hce" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/space/basic, -/area/space/nearstation) -"hcf" = ( -/obj/machinery/atmospherics/components/binary/crystallizer{ - dir = 4 +"hch" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "hci" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24771,21 +26017,15 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/central) "hcj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/warm/dim/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) -"hcn" = ( -/obj/machinery/pdapainter/engineering, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "hcx" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "hcC" = ( /obj/machinery/door/airlock/public/glass{ name = "Community Center" @@ -24818,12 +26058,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"hcL" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "hcZ" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -24890,6 +26124,10 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) +"hdK" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/maintenance/starboard) "hdN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -24898,6 +26136,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"hdV" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/upper) "hdX" = ( /obj/machinery/light/dim/directional/north, /obj/structure/closet/secure_closet/personal, @@ -24930,31 +26171,16 @@ dir = 1 }, /area/station/service/chapel) -"heo" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"heq" = ( -/obj/structure/chair/plastic{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, +"hew" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard) "heC" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"heO" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "heR" = ( /obj/structure/lattice, /turf/open/space/basic, @@ -24962,27 +26188,23 @@ "hfr" = ( /obj/structure/railing/corner, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"hfx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hfz" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/wood, -/area/station/commons/dorms) +/area/station/ai/satellite/chamber) "hfF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/medical/minor_healing, /turf/open/floor/iron, /area/station/maintenance/department/medical) +"hfL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/meter/monitored/distro_loop, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "hfM" = ( -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "hfX" = ( @@ -24991,13 +26213,26 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/wood, +/turf/open/floor/plating, /area/station/maintenance/starboard/central) "hfZ" = ( /obj/effect/spawner/random/maintenance, /obj/structure/light_construct/directional/east, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"hgb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/mecha_wreckage/ripley, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"hgi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "hgm" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -25007,7 +26242,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hgs" = ( /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/machinery/door/airlock/maintenance{ @@ -25017,7 +26252,10 @@ /turf/open/floor/plating, /area/station/maintenance/department/science/central) "hgu" = ( -/obj/structure/sign/poster/contraband/eat/directional/north, +/obj/machinery/barsign{ + pixel_y = 32; + dir = 1 + }, /turf/open/floor/iron/stairs/medium{ dir = 8 }, @@ -25037,18 +26275,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"hgC" = ( -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/structure/hoop{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "hgG" = ( /obj/structure/table/wood, /obj/item/book/bible{ @@ -25063,6 +26289,10 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"hgJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "hgL" = ( /obj/machinery/vending/snack/orange, /turf/open/floor/wood, @@ -25113,17 +26343,13 @@ /turf/open/floor/wood, /area/station/command/heads_quarters/rd) "hhw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 - }, -/obj/machinery/button/door/directional/west{ - pixel_y = -8; - id = "qm_warehouse"; - name = "Warehouse Shutters" +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/turf/open/floor/iron/dark/textured, -/area/station/cargo/warehouse) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "hhz" = ( /obj/structure/railing/corner{ dir = 1 @@ -25131,13 +26357,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/siding/dark, /turf/open/floor/catwalk_floor/iron_white, -/area/station/ai_monitored/turret_protected/aisat_interior) -"hhE" = ( -/obj/effect/turf_decal/tile/red/anticorner{ - dir = 1 +/area/station/ai/satellite/interior) +"hhG" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 8 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "hhH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -25153,6 +26381,17 @@ /obj/item/surgicaldrill, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) +"hhJ" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "hhL" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -25171,10 +26410,10 @@ /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) "hhP" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/science/explab) "hhT" = ( @@ -25191,20 +26430,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"hig" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"hik" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin3"; - name = "Cabin 6" - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "hip" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -25215,6 +26440,18 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) +"his" = ( +/obj/structure/table, +/obj/item/shard{ + pixel_x = 9 + }, +/obj/item/clothing/glasses/regular{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/structure/sign/poster/official/corporate_perks_vacation/directional/south, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "hiu" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/engine/hull/air, @@ -25231,6 +26468,19 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/station/security/medical) +"hiA" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/security/courtroom) "hiK" = ( /obj/structure/railing/corner{ dir = 4 @@ -25238,21 +26488,37 @@ /obj/effect/turf_decal/siding/blue/corner{ dir = 4 }, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hja" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/burnt_floor, /obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "hjG" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/station/hallway/secondary/construction) +"hjH" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) "hjL" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/tile/dark_green{ @@ -25272,6 +26538,11 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) +"hkr" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/ghetto_containers, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "hkv" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -25302,6 +26573,16 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"hkO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "hkZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -25312,7 +26593,7 @@ /area/station/maintenance/hallway/abandoned_recreation) "hld" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hlg" = ( /obj/structure/table, /obj/item/stock_parts/matter_bin{ @@ -25324,23 +26605,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"hlh" = ( -/obj/structure/lattice/catwalk, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/decal/cleanable/cobweb, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"hlm" = ( -/mob/living/basic/axolotl{ - name = "The Lost Axolotl" - }, -/obj/structure/sink/directional/west, -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/obj/structure/mirror/broken/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "hls" = ( /obj/structure/railing{ dir = 10 @@ -25362,10 +26626,19 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"hlD" = ( +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "hlE" = ( /obj/machinery/airalarm/directional/north, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hlF" = ( /obj/effect/decal/cleanable/crayon{ icon_state = "revolution"; @@ -25379,15 +26652,18 @@ }, /turf/open/floor/wood, /area/station/maintenance/starboard/central) -"hlJ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 +"hmb" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_y = 4 }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/wood/tile, -/area/station/security/detectives_office/private_investigators_office) +/obj/item/trash/can{ + pixel_x = -10; + pixel_y = -14 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) "hmc" = ( /obj/structure/lattice/catwalk, /obj/item/toy/figure/assistant, @@ -25406,6 +26682,13 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"hmp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "hmw" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -25419,25 +26702,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"hmG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/soviet_propaganda/directional/north, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"hmM" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hmT" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "hmX" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -25448,42 +26712,11 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/smooth, /area/station/engineering/main) -"hmY" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 6 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "hmZ" = ( /obj/effect/spawner/random/vending/snackvend, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) -"hnb" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=22-Mech-Bay"; - location = "21-Central" - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) -"hng" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Air Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos/upper) -"hnh" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "hni" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25544,6 +26777,13 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"hnI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "hnK" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -25552,15 +26792,13 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"hnU" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 +"hnO" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_red, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/atmos/upper) "hnV" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -25575,6 +26813,10 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, /area/station/science/lobby) +"hoe" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "hof" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -25590,10 +26832,13 @@ }, /turf/open/floor/wood/large, /area/station/service/library) +"hop" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/commons/dorms) "hoq" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "hoJ" = ( @@ -25607,13 +26852,6 @@ /obj/machinery/smartfridge/organ, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"hpe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/lobby) "hpk" = ( /obj/structure/lattice, /obj/machinery/camera/autoname/directional/south, @@ -25623,10 +26861,16 @@ /obj/effect/spawner/random/trash/graffiti, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"hpo" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/commons/dorms) +"hpr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"hpw" = ( +/obj/effect/turf_decal/tile/red/anticorner{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "hpz" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/money_medium, @@ -25635,13 +26879,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"hpC" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/lasertag/blue, -/obj/effect/landmark/start/hangover, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "hpH" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -25664,30 +26901,36 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "hqf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/caution{ + pixel_y = -14 + }, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) -"hqg" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "hqh" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 10 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) -"hqi" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) +"hqj" = ( +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hql" = ( -/obj/effect/turf_decal/stripes/line, -/turf/closed/wall/r_wall, -/area/station/engineering/break_room) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "hqr" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -25722,25 +26965,15 @@ }, /turf/open/floor/iron/dark, /area/station/security/medical) -"hqZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/wood, -/obj/structure/fluff/paper/corner{ - dir = 1 - }, -/obj/item/paper/crumpled{ - pixel_x = 7 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"hqV" = ( +/obj/structure/railing/corner{ + dir = 8 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "hri" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/vending/snackvend, @@ -25749,7 +26982,7 @@ "hrk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hrm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /obj/effect/turf_decal/trimline/blue/warning, @@ -25760,19 +26993,36 @@ dir = 4 }, /area/station/medical/cryo) +"hrC" = ( +/obj/item/ammo_casing/spent{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/ammo_casing/spent{ + pixel_x = 2; + pixel_y = -9 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "hrD" = ( /turf/open/openspace, /area/station/command/heads_quarters/hop) -"hrT" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm/directional/east, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 7 +"hrE" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/item/hand_labeler, /turf/open/floor/iron, -/area/station/commons/storage/primary) +/area/station/commons/fitness/recreation) +"hrN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "hrX" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -25780,14 +27030,12 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"hsd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"hsg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/turf/open/floor/iron, +/area/station/commons/dorms) "hsh" = ( /obj/effect/mapping_helpers/airlock/access/any/service/library, /obj/machinery/door/airlock/wood{ @@ -25803,6 +27051,14 @@ /obj/structure/table, /turf/open/floor/plating, /area/station/solars/starboard/aft) +"hsj" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "hsx" = ( /obj/effect/landmark/start/roboticist, /turf/open/floor/iron/white/textured_large, @@ -25873,35 +27129,12 @@ }, /turf/closed/wall, /area/station/hallway/primary/central) -"hsW" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) -"hsY" = ( -/obj/machinery/meter{ - name = "Mix Meter" - }, -/obj/machinery/atmospherics/pipe/multiz/violet/visible{ - dir = 8; - name = "Mix Multideck Adapter" - }, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"htb" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 4 +"hsU" = ( +/obj/structure/chair/sofa/corner/brown{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"htc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/turf/open/floor/wood/large, +/area/station/commons/dorms) "htj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /obj/machinery/light/floor{ @@ -25911,18 +27144,12 @@ /turf/open/floor/iron/dark, /area/station/medical/cryo) "htm" = ( +/obj/machinery/light/directional/east, /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 + dir = 4 }, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "htn" = ( /obj/effect/turf_decal/box/white{ color = "#F7F707" @@ -25933,7 +27160,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "htD" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -25941,9 +27168,7 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) "htF" = ( -/obj/machinery/computer/pod/old/mass_driver_controller/trash{ - pixel_x = -24 - }, +/obj/structure/chair/stool/directional/south, /turf/open/floor/plating, /area/station/maintenance/disposal) "htH" = ( @@ -25951,17 +27176,42 @@ /obj/structure/cable, /turf/open/openspace, /area/station/hallway/primary/central) +"htN" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/bot/right, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "htV" = ( /obj/structure/transit_tube, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"hua" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin3"; + name = "Cabin 6" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "hub" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "hue" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -25971,7 +27221,7 @@ /obj/structure/cable, /obj/structure/cable/layer3, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hui" = ( /obj/structure/railing{ dir = 8 @@ -26007,6 +27257,21 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) +"huv" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "huz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -26014,11 +27279,6 @@ }, /turf/open/floor/plating, /area/station/construction/storage_wing) -"huR" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "hvc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -26034,12 +27294,19 @@ /obj/item/binoculars, /turf/open/space/openspace, /area/space/nearstation) -"hvE" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/obj/structure/sign/warning/radiation/rad_area/directional/north, +"hvy" = ( +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/command{ + name = "Abandoned Lab" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/area/station/maintenance/starboard/upper) "hvG" = ( /obj/structure/railing{ dir = 1 @@ -26051,6 +27318,21 @@ /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"hvL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/mining{ + name = "Mining Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "hvS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -26067,10 +27349,42 @@ }, /turf/open/floor/wood/large, /area/station/service/library) +"hwe" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small/directional/east, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/toilet/restrooms) "hwn" = ( /obj/effect/spawner/random/trash/crushed_can, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"hwu" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/obj/structure/sign/warning/directional/west, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hwL" = ( +/obj/structure/table, +/obj/item/t_scanner{ + pixel_y = 8 + }, +/obj/item/multitool{ + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/multitool{ + pixel_x = -5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "hwP" = ( /obj/structure/chair/sofa/middle/brown, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -26080,14 +27394,21 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron, /area/station/science/breakroom) +"hwQ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/station/maintenance/aft) "hwR" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 + dir = 6 }, -/obj/effect/turf_decal/arrows{ - dir = 1 +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 }, -/turf/open/floor/iron/dark, /area/station/command/gateway) "hwT" = ( /obj/structure/chair/sofa/left/brown{ @@ -26096,14 +27417,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/carpet/black, /area/station/medical/psychology) -"hwU" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "hwV" = ( /obj/structure/closet/firecloset, /obj/machinery/camera/autoname/directional/north, @@ -26126,13 +27439,19 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "hxd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/floor/iron/dark, +/obj/item/paper/fluff/junkmail_redpill, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) +"hxf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "hxg" = ( /obj/machinery/door/airlock/external{ name = "Transport Airlock" @@ -26152,13 +27471,16 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, /obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) +"hxA" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron, +/area/station/commons/dorms) "hxC" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -26167,34 +27489,38 @@ }, /turf/open/floor/carpet/stellar, /area/station/maintenance/hallway/abandoned_recreation) -"hxJ" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera/autoname/directional/east, +"hxM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, /turf/open/openspace, -/area/station/commons/toilet/restrooms) +/area/station/maintenance/starboard/upper) "hxT" = ( /obj/machinery/door/airlock/grunge{ name = "Under The Stairs" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"hxU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "hxV" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/range) "hxW" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/cargo/storage) +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine/hull, +/area/space/nearstation) "hyc" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron/chapel, @@ -26209,11 +27535,6 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/science/zoo) -"hye" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "hyf" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -26239,14 +27560,12 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"hyv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) +"hyw" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "hyx" = ( /obj/effect/decal/cleanable/dirt, /obj/item/restraints/legcuffs/beartrap/prearmed, @@ -26277,7 +27596,7 @@ /obj/structure/flora/grass/jungle/b/style_3, /obj/structure/flora/bush/flowers_br/style_2, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hzq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -26286,6 +27605,7 @@ }, /obj/item/clothing/shoes/wheelys/rollerskates, /obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "hzv" = ( @@ -26322,36 +27642,17 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "hzY" = ( -/obj/effect/turf_decal/siding/red{ - dir = 10 - }, -/obj/machinery/door/window/brigdoor/left/directional/south{ - name = "Trial Cell"; - req_one_access = list("brig", "command") +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/command/heads_quarters/hop) +"hAb" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"hAd" = ( -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/structure/hoop{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"hAh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/item/wrench, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/engineering/storage/tech) "hAi" = ( /obj/machinery/door/airlock/public/glass{ name = "Circle Center" @@ -26403,17 +27704,33 @@ /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) "hAt" = ( -/obj/machinery/computer/security/telescreen/minisat/directional/west{ - name = "Minisat Monitor" +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "hAx" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/sustenance, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison) +"hAy" = ( +/obj/machinery/duct, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/east, +/obj/structure/cable, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "hAz" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -26425,8 +27742,12 @@ /turf/open/floor/iron/dark, /area/station/medical/chemistry) "hAC" = ( -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/machinery/computer/accounting{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "hAH" = ( /obj/machinery/door/airlock/public/glass{ name = "Science Store" @@ -26449,26 +27770,28 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/medical/chem_storage) "hBh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/structure/sign/poster/random/directional/north, -/obj/item/paper_bin/carbon{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_x = -8 +/obj/structure/sign/clock/directional/east, +/obj/effect/turf_decal/stripes{ + dir = 5 }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) -"hBw" = ( -/obj/structure/railing{ +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"hBj" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"hBs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/turf/open/floor/plating, +/area/station/maintenance/starboard) "hBy" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -26502,11 +27825,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/explab) -"hBS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "hBY" = ( /obj/machinery/elevator_control_panel/directional/east{ linked_elevator_id = "catwalk_cafe"; @@ -26515,12 +27833,6 @@ pixel_y = 26; preset_destination_names = list("2"="Lower Deck","3"="Upper Deck") }, -/obj/structure/sign/directions/upload/directional/north{ - desc = "It stands for Up Le Dable"; - dir = 2; - name = "Button Indicator"; - pixel_y = 40 - }, /obj/structure/railing{ dir = 4 }, @@ -26531,9 +27843,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"hCg" = ( -/turf/open/floor/engine, -/area/station/engineering/break_room) "hCj" = ( /obj/effect/spawner/random/entertainment/arcade, /obj/structure/sign/poster/party_game/directional/north, @@ -26555,45 +27864,24 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"hCt" = ( -/obj/effect/turf_decal/tile/dark/half{ - dir = 1 - }, -/obj/machinery/meter{ - name = "C02 meter" - }, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "CO2 Multideck Adapter"; - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "hCy" = ( -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/gavelblock, -/obj/item/gavelhammer{ - pixel_x = -5; - pixel_y = -1 - }, /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/structure/chair/plastic, +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/turf/open/floor/iron/dark, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) -"hCB" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"hCL" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "hCP" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/disposal) "hCQ" = ( @@ -26601,7 +27889,7 @@ dir = 1 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hCY" = ( /obj/machinery/camera/directional/east{ c_tag = "Interrogation room"; @@ -26632,7 +27920,7 @@ /area/station/science/lab) "hDg" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "hDk" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -26653,16 +27941,11 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/engine, /area/station/service/hydroponics) -"hDw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "hDF" = ( /obj/structure/closet/emcloset, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "hDG" = ( @@ -26676,7 +27959,7 @@ dir = 1 }, /turf/open/floor/catwalk_floor/iron_white, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hDT" = ( /obj/effect/turf_decal/trimline/red/filled/line, /turf/open/floor/iron, @@ -26707,7 +27990,7 @@ }, /obj/effect/mapping_helpers/mail_sorting/service/hop_office, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "hEf" = ( /obj/structure/cable, @@ -26720,39 +28003,18 @@ /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) +"hEu" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/fore/upper) "hEE" = ( -/obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/event_spawn, -/obj/structure/railing/corner/end/flip{ - dir = 8 - }, -/obj/structure/railing/corner/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"hEN" = ( -/obj/structure/chair/sofa/right/brown, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/poster/contraband/pwr_game/directional/north, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) -"hET" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ +/obj/effect/turf_decal/stripes{ dir = 2 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) +/turf/open/floor/iron/textured, +/area/station/command/eva) "hEU" = ( /obj/effect/turf_decal/trimline/dark_blue/end{ dir = 4 @@ -26769,14 +28031,14 @@ }, /obj/effect/turf_decal/trimline/dark_blue/mid_joiner, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hEW" = ( /obj/structure/cable/layer3, /obj/effect/turf_decal/siding/dark{ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hFc" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -26799,17 +28061,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"hFq" = ( -/obj/structure/rack, -/obj/item/clothing/suit/utility/radiation, -/obj/item/clothing/head/utility/radiation, -/obj/item/geiger_counter, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +"hFp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Shared Storage" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/station/engineering/lobby) "hFy" = ( /obj/structure/ladder, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -26817,10 +28078,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/department/science/central) -"hFA" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "hFG" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -26849,10 +28106,16 @@ /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"hFW" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/station/commons/dorms) "hFZ" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency{ @@ -26869,6 +28132,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"hGh" = ( +/obj/effect/decal/cleanable/glitter, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "hGl" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -26888,22 +28155,17 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"hGD" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +"hGy" = ( +/obj/item/trash/can{ + pixel_x = -8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/wood/large, +/area/station/commons/dorms) "hGH" = ( /obj/machinery/flasher/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hGJ" = ( /obj/structure/lattice/catwalk, /obj/item/trash/can{ @@ -26938,10 +28200,23 @@ /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) "hHd" = ( -/obj/structure/window/reinforced/spawner/directional/west, /obj/effect/landmark/navigate_destination/teleporter, /turf/open/floor/iron/stairs/medium, /area/station/hallway/primary/central) +"hHi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"hHj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) "hHr" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 10 @@ -26958,20 +28233,9 @@ "hHA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, /area/station/cargo/storage) -"hHE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "hHF" = ( /obj/machinery/disposal/bin/tagger, /obj/machinery/airalarm/directional/south, @@ -26998,16 +28262,6 @@ }, /turf/open/floor/wood, /area/station/command/corporate_showroom) -"hHP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "hIc" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, @@ -27019,34 +28273,16 @@ name = "Head of Personnel's Fax Machine" }, /obj/structure/table/wood, -/turf/open/floor/wood, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) -"hIn" = ( -/obj/structure/cable, -/obj/item/stack/sticky_tape{ - pixel_x = 12; - pixel_y = 14 - }, -/obj/structure/sign/poster/contraband/fake_bombable/directional/south, -/obj/effect/decal/cleanable/crayon{ - icon_state = "!"; - pixel_x = 2; - pixel_y = 29 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "!"; - pixel_x = -5; - pixel_y = 27 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "hIt" = ( /obj/machinery/door/airlock/grunge, /obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hIA" = ( /turf/closed/wall, /area/station/cargo/miningoffice) @@ -27065,7 +28301,7 @@ /obj/machinery/airalarm/directional/east, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hIQ" = ( /obj/effect/turf_decal/siding/red{ dir = 4 @@ -27079,27 +28315,49 @@ /turf/open/floor/wood, /area/station/security/courtroom) "hIS" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hIZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/closed/wall, +/area/station/cargo/sorting) "hJa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) +"hJc" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "hJm" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) +"hJp" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/folder/yellow{ + pixel_x = 2; + pixel_y = -12 + }, +/obj/structure/table, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"hJx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) "hJz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27111,11 +28369,13 @@ /turf/open/floor/iron/kitchen, /area/station/hallway/secondary/service) "hJA" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L8" +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/edge{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "hJB" = ( /obj/structure/lattice/catwalk, @@ -27129,12 +28389,6 @@ /obj/structure/window/reinforced/plasma/spawner/directional/south, /turf/open/space/basic, /area/space/nearstation) -"hJL" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "hJS" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line, @@ -27161,10 +28415,13 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"hKh" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"hKe" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "hKm" = ( /obj/machinery/light/small/directional/north, /obj/effect/landmark/firealarm_sanity, @@ -27176,20 +28433,62 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) +"hKr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"hKs" = ( +/obj/effect/landmark/start/station_engineer, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"hKt" = ( +/obj/machinery/requests_console/directional/west{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/structure/table, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/obj/item/wrench, +/obj/item/radio/off{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/screwdriver{ + pixel_y = 2 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "hKw" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "hKy" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 4 +/obj/item/stamp/head/hop{ + pixel_x = 8; + pixel_y = 4 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/obj/item/stamp/denied{ + pixel_y = 11 + }, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) "hKE" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -27206,48 +28505,38 @@ /obj/machinery/suit_storage_unit/security, /turf/open/floor/iron/dark/smooth_large, /area/station/security/eva) -"hKS" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/structure/table/reinforced, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/pipe_dispenser{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/meson/engine{ - pixel_y = 4 - }, -/obj/machinery/cell_charger, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "hLd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall/r_wall, /area/station/security/prison) -"hLp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"hLu" = ( -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 +"hLe" = ( +/obj/item/bikehorn/rubberducky, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"hLi" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"hLl" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"hLr" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/pai_card, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "hLC" = ( -/obj/machinery/computer/prisoner/management, /obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) @@ -27305,12 +28594,20 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"hMc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/clock/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"hLW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/package_wrap{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "hMd" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -27328,6 +28625,18 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"hMp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"hMq" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/south, +/turf/open/space/openspace, +/area/space/nearstation) "hMs" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, @@ -27336,16 +28645,17 @@ /obj/machinery/portable_atmospherics/canister/plasma, /turf/open/floor/engine/plasma, /area/station/engineering/atmos/upper) -"hMv" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/ladder, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "hMw" = ( /obj/effect/turf_decal/trimline/dark/arrow_cw, /obj/effect/turf_decal/trimline/dark/arrow_cw, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"hMz" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "hMC" = ( /turf/open/floor/iron, /area/station/science/robotics) @@ -27374,40 +28684,34 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"hMF" = ( -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_y = 24 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_y = 40 - }, -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"hMI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"hMJ" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"hML" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, +/obj/structure/plasticflaps, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"hMU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/area/station/cargo/storage) +"hMS" = ( +/obj/effect/spawner/random/techstorage/rnd_secure_all, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/small/directional/south, +/obj/structure/rack, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/storage/tech) "hMV" = ( /obj/structure/table, /obj/item/binoculars{ @@ -27427,12 +28731,21 @@ /turf/open/floor/glass, /area/station/security/brig) "hNa" = ( -/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/item/reagent_containers/cup/bucket{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/rag{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/window/reinforced/spawner/directional/east, /obj/effect/turf_decal/siding/wood{ - dir = 8 + dir = 1 }, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) "hNb" = ( /obj/item/kirbyplants/organic/plant9{ @@ -27440,26 +28753,11 @@ pixel_x = 4 }, /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hNf" = ( /obj/structure/cable, /turf/open/floor/plating, /area/station/security/interrogation) -"hNj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "hNs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27477,25 +28775,6 @@ /obj/structure/stairs/west, /turf/open/floor/plating, /area/station/security/courtroom) -"hNJ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 8 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"hNV" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O to Port" - }, -/obj/effect/turf_decal/tile/red/opposingcorners, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "hNW" = ( /obj/effect/spawner/structure/window, /obj/effect/turf_decal/stripes/line{ @@ -27511,8 +28790,19 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "hOe" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -27525,19 +28815,30 @@ }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) +"hOo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "hOw" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/camera/directional/south, +/obj/machinery/computer/security/mining{ + dir = 4 }, -/obj/structure/closet/emcloset, /turf/open/floor/iron, /area/station/cargo/miningoffice) "hOC" = ( -/obj/effect/turf_decal/siding/red{ - dir = 6 +/obj/structure/railing{ + dir = 4 }, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "hOG" = ( /obj/structure/disposalpipe/segment{ @@ -27545,6 +28846,16 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"hOJ" = ( +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/arrow_ccw, +/obj/effect/turf_decal/trimline/dark/arrow_ccw, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "hOO" = ( /obj/structure/table/wood, /turf/open/floor/glass/reinforced, @@ -27557,7 +28868,14 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"hOV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "hPa" = ( /obj/structure/railing{ dir = 1 @@ -27572,36 +28890,42 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"hPD" = ( -/obj/effect/spawner/random/techstorage/service_all, -/obj/structure/rack, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +"hPj" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/item/storage/box/lights/mixed{ + pixel_x = 8; + pixel_y = 8 }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"hPH" = ( -/obj/machinery/door/airlock/external{ - name = "Welcome." +/obj/item/electronics/airlock, +/obj/item/electronics/airlock{ + pixel_x = -6; + pixel_y = -4 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "space-outpost" +/obj/item/stock_parts/power_store/cell/emproof{ + pixel_x = -4; + pixel_y = 6 }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"hPL" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin5"; - name = "Cabin 3" +/obj/item/stock_parts/power_store/cell/emproof{ + pixel_x = -4; + pixel_y = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/item/stock_parts/power_store/cell/emproof{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"hPq" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "hPP" = ( /obj/structure/stairs/north, /obj/structure/railing{ @@ -27609,6 +28933,14 @@ }, /turf/open/floor/iron/stairs/left, /area/station/engineering/lobby) +"hPQ" = ( +/obj/structure/lattice/catwalk, +/obj/item/kirbyplants/random, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"hPR" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "hPU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -27626,6 +28958,10 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"hPW" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "hPY" = ( /obj/effect/turf_decal/trimline/dark/arrow_cw{ dir = 10 @@ -27652,6 +28988,19 @@ /obj/machinery/light/directional/south, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"hQh" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "hQk" = ( /obj/item/reagent_containers/cup/soup_pot{ pixel_x = 6; @@ -27679,29 +29028,17 @@ }, /turf/open/floor/wood, /area/station/service/chapel) -"hQQ" = ( -/obj/structure/broken_flooring/singular/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "hQU" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, /obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/pen{ + pixel_x = 8 + }, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) -"hQV" = ( -/obj/effect/turf_decal/siding/brown/corner, -/obj/structure/railing/corner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) -"hQZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "hRd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -27755,9 +29092,6 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /turf/open/floor/plating, /area/station/security/execution/education) -"hRD" = ( -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "hRH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -27781,6 +29115,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/courtroom) +"hRV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "hRW" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -27819,6 +29158,17 @@ /obj/machinery/vending/games, /turf/open/floor/wood, /area/station/service/library) +"hSe" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"hSg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "hSh" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -27832,20 +29182,21 @@ "hSk" = ( /turf/closed/wall, /area/station/security/checkpoint/medical) +"hSq" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner{ + dir = 4 + }, +/obj/structure/fluff/paper/stack, +/turf/open/floor/plating, +/area/station/maintenance/aft) "hSu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) -"hSv" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "hSy" = ( /obj/structure/table, /obj/item/clothing/glasses/welding{ @@ -27869,6 +29220,10 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/wood, /area/station/commons/storage/tools) +"hSJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) "hSW" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -27878,11 +29233,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"hTc" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "hTr" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -27897,10 +29247,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"hTt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "hTy" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -27949,7 +29295,24 @@ "hTN" = ( /obj/structure/cable/layer3, /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"hUb" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"hUg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/engineering/lobby) +"hUh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/structure/light_construct/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) "hUs" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, @@ -27961,46 +29324,15 @@ /obj/effect/spawner/random/structure/closet_empty/crate, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"hUM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hUU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"hUV" = ( -/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ - dir = 1; - name = "Unfiltered" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"hVc" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/item/radio/intercom/directional/north, -/obj/effect/mapping_helpers/burnt_floor, +"hUP" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"hVd" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"hVi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) -"hVk" = ( -/obj/structure/railing/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/area/station/commons/dorms) "hVr" = ( /obj/structure/sign/warning/cold_temp/directional/west{ desc = "A sign that notes the room within is the Cold Room. Not that it's actually cold."; @@ -28023,17 +29355,33 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/grimy, /area/station/security/interrogation) +"hVx" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + c_tag = "Medbay - Upper Chief Medical Office South"; + network = list("ss13","medbay") + }, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "hVz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"hVH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 +"hVC" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 6 }, -/obj/machinery/light/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/turf/open/floor/iron/textured_corner, +/area/station/command/gateway) "hWb" = ( /obj/structure/chair{ dir = 1; @@ -28051,10 +29399,17 @@ /obj/structure/railing, /turf/open/floor/grass, /area/station/science/zoo) -"hWw" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/wood, -/area/station/security/courtroom) +"hWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "hWA" = ( /obj/effect/turf_decal/trimline/dark_blue/warning{ dir = 1 @@ -28069,7 +29424,38 @@ /turf/open/floor/iron/white/smooth_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"hWF" = ( +/obj/structure/lattice/catwalk, +/obj/item/clothing/under/costume/seifuku{ + pixel_y = -1 + }, +/obj/structure/table, +/obj/structure/sign/poster/official/pda_ad/directional/south, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) +"hWJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"hWN" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/nanotrasen{ + pixel_y = 32; + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "hWU" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -28083,11 +29469,9 @@ /area/station/maintenance/starboard/aft) "hXc" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L4" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "hXe" = ( @@ -28103,21 +29487,33 @@ }, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) +"hXi" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ + dir = 4; + name = "Atmos to Engine" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "hXm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/effect/landmark/start/shaft_miner, +/obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"hXp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/landmark/blobstart, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) "hXr" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/machinery/firealarm/directional/south, +/obj/machinery/conveyor{ + dir = 8; + id = "mining" }, /turf/open/floor/iron/textured, /area/station/cargo/storage) @@ -28135,22 +29531,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) -"hXA" = ( -/obj/machinery/light/directional/west, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_y = 5 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/area/station/ai/satellite/chamber) "hXD" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -28160,11 +29541,6 @@ }, /turf/open/floor/iron/white/smooth_half, /area/station/hallway/secondary/entry) -"hXE" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "hXT" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, @@ -28173,58 +29549,56 @@ }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"hYa" = ( +"hXV" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/smooth_large, -/area/station/engineering/main) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"hXW" = ( +/obj/structure/table/reinforced, +/obj/item/wirecutters, +/obj/item/screwdriver, +/obj/item/stack/cable_coil, +/obj/item/crowbar, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "hYc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, /turf/open/floor/carpet, /area/station/service/abandoned_gambling_den) +"hYd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/medical/psychology) "hYf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron/dark, /area/station/security/brig) -"hYg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"hYj" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +"hYl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "hYo" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"hYu" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "hYx" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -28234,7 +29608,12 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"hYE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "hYF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -28251,7 +29630,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hYK" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -28263,19 +29642,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"hYT" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/office) -"hYV" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/engine/hull/air, -/area/station/engineering/break_room) +"hYW" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "hZa" = ( /obj/effect/landmark/carpspawn, /turf/open/floor/engine/hull, @@ -28293,15 +29663,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"hZi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) "hZq" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hZx" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -28331,7 +29696,9 @@ /obj/effect/turf_decal/trimline/red/filled/mid_joiner{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) "hZE" = ( /obj/effect/decal/cleanable/dirt, @@ -28347,6 +29714,9 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/hop, /obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/command/heads_quarters/hop) "hZZ" = ( @@ -28356,15 +29726,23 @@ /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/plating, /area/station/maintenance/port) -"iak" = ( -/obj/structure/railing{ - dir = 1 +"iah" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 }, -/turf/open/openspace, -/area/station/engineering/lobby) +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"iai" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "iar" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, @@ -28372,25 +29750,16 @@ /obj/machinery/chem_dispenser, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"iaC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "iaF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) -"iaG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/command/gateway) -"iaR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "iaY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28412,25 +29781,9 @@ /turf/open/floor/iron, /area/station/science/research) "ibo" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/obj/effect/turf_decal/siding/white/corner, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) -"ibq" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 4 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) -"ibr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "ibs" = ( /obj/structure/chair{ dir = 8 @@ -28440,19 +29793,6 @@ dir = 4 }, /area/station/service/chapel) -"ibt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"ibw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "iby" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28478,6 +29818,26 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"ibC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"ibE" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/wood, +/obj/item/paper/crumpled{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "ibF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28487,7 +29847,7 @@ /area/station/service/cafeteria) "ibI" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ibJ" = ( /obj/machinery/light/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -28516,41 +29876,28 @@ /obj/structure/chair/comfy/brown{ dir = 8 }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"ibY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"ich" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/mapping_helpers/airalarm/engine_access, -/obj/effect/mapping_helpers/airalarm/link{ - chamber_id = "engine" +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/effect/mapping_helpers/airalarm/tlv_no_checks, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"ibZ" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ dir = 4 }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"icj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/poster/contraband/rebels_unite/directional/west, -/obj/item/ammo_casing/spent{ - pixel_x = 8; - pixel_y = 6 +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 }, -/obj/item/ammo_casing/spent{ - pixel_x = -11; - pixel_y = -5 +/turf/open/floor/iron/dark/textured_half{ + dir = 1 }, -/obj/structure/disposalpipe/segment, +/area/station/cargo/storage) +"icg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard/upper) "icw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -28606,6 +29953,17 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"idf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/storage/box/lights/mixed{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/emergency, +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/aft) "idj" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -28618,20 +29976,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/lab) -"idm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "idq" = ( /turf/open/floor/iron/stairs/medium{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "idI" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -28643,29 +29992,17 @@ /turf/closed/wall/r_wall, /area/station/engineering/storage/tech) "idO" = ( -/obj/effect/turf_decal/siding/white{ - dir = 6 +/turf/open/floor/iron/edge{ + dir = 1 }, -/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"idQ" = ( -/obj/structure/table/wood, -/obj/item/book/bible, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) -"iea" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +"idV" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) -"iee" = ( -/obj/structure/table/reinforced, -/obj/item/radio/headset, -/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard) "iei" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -28674,38 +30011,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"iem" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/mecha_wreckage/ripley, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"ien" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) -"iep" = ( -/obj/structure/table, -/obj/item/geiger_counter{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "iev" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark/arrow_cw{ + dir = 8 + }, /turf/open/floor/iron, /area/station/hallway/primary/aft) "ieD" = ( @@ -28717,45 +30029,31 @@ dir = 4 }, /area/station/medical/abandoned) +"ifk" = ( +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "ifn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/cobweb, /obj/machinery/light/small/dim/directional/north, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) -"ifs" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/landmark/navigate_destination/minisat_access_ai, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "transitlockdown" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"ifA" = ( -/obj/effect/spawner/random/trash/moisture_trap, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "ifC" = ( /obj/structure/sign/poster/contraband/blood_geometer, /turf/closed/wall, /area/station/maintenance/port) -"ifF" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/plumbing/input, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +"ifU" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/openspace, +/area/station/commons/dorms) "ifV" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -28795,19 +30093,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"igm" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 12 - }, -/obj/item/stack/cable_coil{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/extinguisher/mini, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "igo" = ( /obj/effect/turf_decal/siding/wideplating_new{ dir = 9 @@ -28833,18 +30118,27 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) -"igK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"igR" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/plumbing/input, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "ihd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sink/directional/east, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"ihj" = ( +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ihl" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -28856,6 +30150,18 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"ihn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Storage Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) "ihv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -28863,19 +30169,10 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"ihE" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/misc/burial, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"ihF" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +"ihJ" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ihP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28938,8 +30235,16 @@ /turf/open/floor/wood/large, /area/station/service/theater_dressing) "iis" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/captain/private) +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/conveyor{ + dir = 8; + id = "HoPsToy" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) "iiF" = ( /obj/structure/railing/corner{ dir = 4 @@ -28950,17 +30255,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"iiS" = ( -/obj/item/trash/can{ - pixel_x = -8 +"iiN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) +"iiO" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/command/gateway) "iiV" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/cigarette_pack, @@ -28990,13 +30303,24 @@ }, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"ijs" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "iju" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) +/obj/machinery/conveyor_switch/oneway{ + id = "cargounload"; + name = "Unloading Conveyor"; + pixel_x = 5; + pixel_y = -10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/iron, +/area/station/cargo/storage) +"ijv" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "ijB" = ( /obj/machinery/light/directional/east, /obj/structure/railing/corner/end{ @@ -29004,18 +30328,30 @@ }, /turf/open/floor/wood, /area/station/command/corporate_showroom) -"ijE" = ( -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "ijF" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/airalarm/directional/south, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"ijJ" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_half, +/area/station/science/robotics) +"ijL" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) "ikc" = ( /obj/structure/railing, /turf/open/openspace, @@ -29047,13 +30383,6 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/station/service/library) -"ikK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "ikL" = ( /obj/structure/disposalpipe/trunk{ dir = 2 @@ -29068,13 +30397,10 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"ikZ" = ( -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "ilg" = ( /obj/machinery/vending/cart, /obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "ils" = ( /obj/structure/mop_bucket, @@ -29088,25 +30414,22 @@ /obj/effect/spawner/random/maintenance/no_decals, /turf/open/floor/engine/hull, /area/space/nearstation) -"ilB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/starboard/aft) +"ily" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "ilE" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"ilP" = ( -/obj/machinery/computer/atmos_control/nitrogen_tank, -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"ilO" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "ilV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -29115,10 +30438,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) -"imd" = ( -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) "ime" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/railing, @@ -29126,11 +30445,19 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"imo" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/service/kitchen) +"imf" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/obj/structure/chair{ + dir = 4; + pixel_y = -2 + }, +/obj/item/binoculars, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) +"imi" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, +/area/station/commons/dorms) "imq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29154,6 +30481,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"imH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) +"imI" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "imJ" = ( /obj/structure/railing/corner{ dir = 4 @@ -29171,6 +30513,14 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar/backroom) +"imN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) "imQ" = ( /obj/structure/table, /obj/item/storage/medkit/toxin{ @@ -29197,28 +30547,47 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"ing" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "inh" = ( -/turf/open/openspace, -/area/station/command/bridge) -"inp" = ( -/obj/effect/turf_decal/tile/dark_green{ +/obj/structure/table/wood, +/obj/item/stack/package_wrap{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/hand_labeler{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/machinery/recharger, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) +"ini" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/effect/decal/cleanable/generic, /turf/open/floor/iron, -/area/station/maintenance/starboard/fore) +/area/station/commons/locker) +"inm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "int" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/ladder, /turf/open/floor/plating, /area/station/solars/starboard/aft) -"inu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/upper) +"inv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft/upper) "inw" = ( /obj/structure/transit_tube/curved/flipped, /turf/open/space/openspace, @@ -29235,11 +30604,10 @@ dir = 8 }, /area/station/medical/abandoned) -"inG" = ( -/obj/structure/sign/poster/official/get_your_legs/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/carpet/black, -/area/station/service/library/private) +"inD" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/service/library) "inI" = ( /obj/machinery/shower/directional/west, /obj/structure/fluff/shower_drain, @@ -29251,12 +30619,32 @@ }, /area/station/engineering/main) "inK" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" +/obj/machinery/conveyor_switch/oneway{ + id = "cargoload"; + name = "Loading Conveyor"; + pixel_x = 5; + pixel_y = -5 }, -/turf/open/floor/iron, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, /area/station/cargo/storage) +"inL" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"inQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser{ + pixel_y = 8 + }, +/obj/item/pipe_dispenser, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "inT" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel" @@ -29267,7 +30655,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/hop, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, -/turf/open/floor/wood, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "inU" = ( /obj/structure/railing{ @@ -29275,6 +30663,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) +"inZ" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4; + name = "killroom vent" + }, +/turf/open/floor/circuit/telecomms, +/area/station/science/xenobiology) "ioc" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted, /turf/open/floor/iron/dark, @@ -29286,6 +30681,16 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"ion" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ioo" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -29302,13 +30707,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"ios" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin4"; - name = "Cabin 5" - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "iox" = ( /obj/machinery/vending/wardrobe/sec_wardrobe, /obj/structure/cable, @@ -29328,7 +30726,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ioN" = ( /obj/structure/sign/warning/vacuum/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -29384,6 +30782,13 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"ipi" = ( +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) "ipm" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -29391,6 +30796,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"ipo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/vending/coffee, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"ipr" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/effect/spawner/random/bedsheet{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms) "ipt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/public/glass{ @@ -29404,6 +30825,20 @@ }, /turf/open/floor/iron/edge, /area/station/hallway/primary/fore) +"ipv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/station/commons/locker) +"ipL" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering" + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) "ipQ" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/wood/large, @@ -29412,17 +30847,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/structure/table, -/obj/item/clothing/head/soft{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/stamp/denied{ - pixel_x = 7; - pixel_y = 8 - }, /obj/machinery/airalarm/directional/north, -/obj/item/stamp/granted, /turf/open/floor/iron, /area/station/cargo/storage) "ipS" = ( @@ -29436,7 +30861,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ipW" = ( /obj/machinery/computer/telecomms/server{ dir = 1; @@ -29449,36 +30874,32 @@ dir = 8 }, /area/station/tcommsat/server) -"iqf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ +"ipY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"iqe" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation) "iqj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output, /turf/open/floor/engine/n2, /area/station/engineering/atmos/upper) -"iqo" = ( -/obj/structure/table/reinforced, -/obj/item/toy/redbutton{ - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"iqs" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste to Filter"; - dir = 4 - }, -/obj/effect/turf_decal/trimline/red, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) "iqv" = ( /obj/structure/railing{ dir = 8 @@ -29504,10 +30925,18 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/broken/directional/east, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/plating, /area/station/maintenance/central) +"iqF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"iqX" = ( +/obj/structure/closet/wardrobe/grey, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "ire" = ( /obj/machinery/restaurant_portal/bar, /obj/effect/turf_decal/siding/wood/end{ @@ -29519,6 +30948,20 @@ "irh" = ( /turf/closed/wall, /area/station/medical/cryo) +"irj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "irn" = ( /obj/structure/railing{ dir = 8 @@ -29530,7 +30973,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) +"iro" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "irp" = ( /obj/machinery/exodrone_launcher, /obj/item/exodrone, @@ -29548,6 +30997,7 @@ pixel_x = 4; pixel_y = 5 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "irU" = ( @@ -29570,11 +31020,6 @@ /obj/effect/decal/cleanable/fuel_pool, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"isn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/engine/hull, -/area/station/maintenance/disposal/incinerator) "isp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29587,18 +31032,6 @@ }, /turf/open/floor/iron/dark/small, /area/station/command/heads_quarters/ce) -"isv" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 9 - }, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/fluff/paper{ - dir = 1 - }, -/obj/structure/sign/flag/nanotrasen/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "isy" = ( /obj/machinery/newscaster/directional/west, /obj/effect/turf_decal/tile/dark_blue{ @@ -29635,16 +31068,33 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/freezer, /area/station/security/prison/shower) +"isY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "ite" = ( -/obj/effect/turf_decal/siding/red{ +/obj/structure/railing{ dir = 4 }, -/turf/open/floor/iron/dark, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "ith" = ( /obj/item/cigbutt, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"iti" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "itl" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 8 @@ -29654,6 +31104,14 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"itm" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "ito" = ( /obj/structure/chair/sofa/right/brown{ dir = 4 @@ -29661,9 +31119,6 @@ /obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, /turf/open/floor/glass/reinforced, /area/station/service/library) -"itq" = ( -/turf/open/floor/engine/hull/air, -/area/station/engineering/lobby) "itr" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/structure/extinguisher_cabinet/directional/south, @@ -29680,11 +31135,25 @@ /obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/pen{ + pixel_x = -1; + pixel_y = 13 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "itA" = ( -/obj/structure/window/reinforced/spawner/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "itI" = ( /obj/effect/turf_decal/siding/purple/corner, @@ -29708,15 +31177,6 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, /area/station/hallway/primary/starboard) -"itV" = ( -/obj/item/stack/sheet/mineral/wood{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) "itX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29724,6 +31184,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/engineering/main) +"iub" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"iug" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ius" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -29732,12 +31208,15 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/dark, /area/station/security/medical) -"iux" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 +"iuN" = ( +/obj/structure/railing, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/grass, +/area/station/hallway/primary/starboard) "iuO" = ( /obj/effect/landmark/transport/transport_id{ specific_transport_id = "catwalk_cafe" @@ -29750,6 +31229,16 @@ }, /turf/open/floor/plating/elevatorshaft, /area/station/service/kitchen) +"iuQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "iuR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -29761,12 +31250,21 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/exit/departure_lounge) +"ivo" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "ivr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/machinery/modular_computer/preset/command{ + dir = 1 }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/circuit, +/area/station/command/bridge) "ivu" = ( /obj/structure/table/wood, /obj/structure/disposalpipe/segment, @@ -29776,33 +31274,25 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Cargo Office"; + name = "Cargo Office Fax Machine" + }, +/obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) "ivD" = ( -/obj/structure/bookcase/random/reference, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"ivE" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"ivI" = ( -/obj/effect/spawner/random/trash/mess, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/machinery/firealarm/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "ivJ" = ( /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/multiz/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ivL" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -29810,6 +31300,13 @@ /obj/machinery/vending/wardrobe/chem_wardrobe, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"ivP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "iwa" = ( /obj/effect/turf_decal/trimline/red/line, /obj/effect/turf_decal/trimline/red/line{ @@ -29824,14 +31321,48 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"iwg" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 9 + }, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/cable_coil, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"iwl" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "iwq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/engineering/storage_shared) "iwu" = ( /obj/machinery/camera/autoname/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "iwB" = ( /turf/open/floor/iron/dark, @@ -29841,18 +31372,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"iwN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/clock/directional/east, -/obj/structure/chair/plastic{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "iwS" = ( /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) +"iwY" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "ixf" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -29867,9 +31395,24 @@ /obj/structure/closet/cabinet, /turf/open/floor/wood/tile, /area/station/service/abandoned_gambling_den) +"ixj" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine/hull, +/area/station/solars/starboard/fore) "ixF" = ( /turf/closed/wall, /area/station/service/chapel) +"ixG" = ( +/obj/item/cigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "ixR" = ( /obj/structure/table, /obj/item/storage/dice{ @@ -29883,29 +31426,25 @@ /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) "ixS" = ( -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/engine/hull/air, -/area/station/command/meeting_room/council) -"iyb" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" +/obj/machinery/computer/records/medical, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ixW" = ( +/obj/machinery/pdapainter/engineering, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) +"iyh" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 5 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable/layer1, +/obj/structure/cable, /turf/open/floor/engine, -/area/station/engineering/main) -"iyk" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Auxiliary Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/engineering/supermatter) "iym" = ( /obj/structure/railing/corner{ dir = 8 @@ -29931,21 +31470,23 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) +"iys" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/item/banner/cargo/mundane, +/turf/open/floor/iron, +/area/station/cargo/sorting) "iyv" = ( /turf/open/floor/wood, /area/station/security/courtroom) -"iyx" = ( -/obj/structure/chair/sofa/middle/brown, -/obj/item/clothing/under/costume/seifuku/red{ - pixel_y = -7 - }, -/obj/item/clothing/head/costume/crown{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/structure/sign/poster/official/pda_ad/directional/north, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "iyA" = ( /obj/structure/table/wood, /obj/item/toy/crayon/spraycan/lubecan{ @@ -29976,14 +31517,45 @@ }, /turf/open/water/jungle, /area/station/science/genetics) -"iyW" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Mix" +"iyI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) +"iyL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"iyS" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/east, +/turf/open/openspace, +/area/station/engineering/atmos/office) +"iyV" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/newspaper, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"iyZ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "izb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30011,22 +31583,20 @@ /turf/open/floor/iron/white, /area/station/maintenance/department/medical) "izh" = ( -/obj/structure/railing{ +/obj/effect/turf_decal/siding/blue{ dir = 4 }, -/obj/effect/turf_decal/siding/blue{ +/obj/structure/railing{ dir = 4 }, -/obj/structure/chair/office{ - dir = 8; - name = "HoS' Chair" +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/opposingcorners, -/obj/structure/railing/corner/end/flip{ - dir = 8 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "izk" = ( /obj/machinery/camera/autoname/directional/south, /obj/effect/turf_decal/box/white{ @@ -30042,12 +31612,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/security/courtroom) -"izp" = ( -/obj/item/stack/rods{ - amount = 7 - }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "izF" = ( /obj/machinery/firealarm/directional/south, /obj/structure/disposalpipe/segment{ @@ -30074,12 +31638,19 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics) -"izU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/sepia, -/area/station/hallway/secondary/construction) +"izP" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) +"izV" = ( +/obj/machinery/airlock_controller/incinerator_atmos{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "izW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -30089,6 +31660,13 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"iAa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron, +/area/station/engineering/lobby) "iAe" = ( /obj/structure/railing{ dir = 8 @@ -30107,15 +31685,6 @@ /obj/effect/landmark/start/roboticist, /turf/open/floor/iron, /area/station/science/robotics) -"iAr" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "iAu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30128,29 +31697,17 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/commons/storage/art) -"iAH" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, +"iAw" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"iAW" = ( -/obj/machinery/computer/apc_control{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) -"iBj" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/structure/frame/machine, +/area/station/command/bridge) +"iAx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "iBn" = ( /obj/machinery/vending/wardrobe/curator_wardrobe, /obj/machinery/light_switch/directional/east, @@ -30160,20 +31717,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) -"iBG" = ( -/obj/structure/broken_flooring/singular/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"iBI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) "iBK" = ( /obj/structure/sign/warning/no_smoking/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"iBM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/central) +"iBW" = ( +/obj/item/trash/shok_roks/berry, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) "iBZ" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -30200,6 +31765,9 @@ /obj/machinery/door/window/brigdoor/left/directional/east{ req_access = list("brig_entrance") }, +/obj/item/paper_bin, +/obj/item/folder/red, +/obj/item/pen, /turf/open/floor/plating, /area/station/security/checkpoint/medical) "iCe" = ( @@ -30221,15 +31789,11 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iCq" = ( /obj/machinery/holopad, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"iCx" = ( -/obj/effect/spawner/random/trash/botanical_waste, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "iCB" = ( /obj/structure/closet/bombcloset, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -30238,16 +31802,12 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"iCN" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"iCS" = ( -/obj/structure/disposalpipe/segment, +"iCV" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "iDe" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -30277,13 +31837,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"iDw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/steam_vent, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "iDE" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/plumbing/sender, @@ -30311,7 +31864,8 @@ pixel_y = -4 }, /obj/structure/sign/plaques/kiddie/perfect_man{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/machinery/light/directional/east, /turf/open/floor/carpet, @@ -30327,15 +31881,10 @@ /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) -"iDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +"iEe" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard) "iEf" = ( /obj/machinery/air_sensor/ordnance_burn_chamber, /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ @@ -30365,13 +31914,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"iEp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/sofa/left/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "iEq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30392,7 +31934,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iEH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30405,14 +31947,14 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "iEI" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 +/obj/effect/turf_decal/stripes{ + dir = 4 }, -/obj/structure/railing/corner{ +/obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/textured, +/area/station/command/eva) "iEJ" = ( /obj/effect/spawner/random/vending/snackvend, /obj/effect/decal/cleanable/dirt, @@ -30444,16 +31986,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) -"iET" = ( -/obj/effect/turf_decal/siding, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ +"iES" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ dir = 4 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/closed/wall/r_wall, +/area/station/command/bridge) "iEV" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -30475,11 +32013,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"iFf" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "iFn" = ( /obj/structure/railing/corner/end/flip{ dir = 8 @@ -30518,7 +32051,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iFB" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -30528,6 +32061,16 @@ /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/hallway/primary/starboard) +"iFK" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin7"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "iFR" = ( /obj/structure/chair{ dir = 8 @@ -30536,9 +32079,15 @@ /turf/open/floor/carpet, /area/station/security/courtroom) "iFS" = ( -/obj/machinery/camera/autoname/directional/east, -/turf/open/openspace, -/area/station/command/meeting_room/council) +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console"; + dir = 8 + }, +/obj/machinery/light/warm/dim/directional/east, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "iFU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30554,11 +32103,20 @@ /obj/item/stack/rods, /turf/open/openspace, /area/station/maintenance/port/aft) -"iGc" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/toilet, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"iGe" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/item/camera_film{ + pixel_y = 2; + pixel_x = 2 + }, +/obj/item/camera{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "iGm" = ( /obj/structure/bed, /obj/structure/toilet/greyscale{ @@ -30570,6 +32128,17 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) +"iGo" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"iGu" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "iGy" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -30585,17 +32154,6 @@ "iGB" = ( /turf/closed/wall, /area/station/commons/storage/tools) -"iGC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "iGD" = ( /obj/structure/table/reinforced, /obj/item/storage/briefcase/secure{ @@ -30626,15 +32184,25 @@ /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "iGI" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, /obj/structure/railing/corner{ dir = 4 }, -/obj/effect/turf_decal/siding/blue/corner{ +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ dir = 4 }, -/obj/effect/turf_decal/tile/red/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"iGO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "iGP" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable/layer3, @@ -30644,7 +32212,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "iGQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30654,12 +32222,34 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"iGT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/service/library/private) +"iHi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "iHo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"iHr" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Gravity Generator Area" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "iHu" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/pale/style_random, @@ -30699,6 +32289,14 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"iHO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "iHQ" = ( /obj/structure/marker_beacon/indigo, /obj/structure/lattice/catwalk, @@ -30745,11 +32343,6 @@ }, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"iIL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/firecloset, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "iIP" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -30774,25 +32367,48 @@ /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "iJc" = ( -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/turf_decal/siding/wood, /obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) -"iJn" = ( -/obj/structure/railing{ - dir = 4 +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/storage/belt/utility{ + pixel_x = -3 + }, +/obj/item/storage/belt/utility{ + pixel_x = -3 }, +/turf/open/floor/iron/textured, +/area/station/command/eva) +"iJn" = ( /obj/effect/turf_decal/siding/blue{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "iJu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -30815,8 +32431,8 @@ /area/station/hallway/primary/port) "iJC" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron, /area/station/cargo/storage) "iJH" = ( @@ -30826,14 +32442,6 @@ /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/iron, /area/station/maintenance/starboard/central) -"iJN" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "iJX" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -30844,6 +32452,14 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/port) +"iJY" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "iKa" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -30857,33 +32473,21 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"iKf" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"iKj" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/lobby) "iKm" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark/textured_corner, /area/station/science/ordnance/storage) +"iKw" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/table, +/obj/item/geiger_counter{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/binoculars, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "iKx" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -30905,6 +32509,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"iKF" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "iKH" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 1 @@ -30913,25 +32523,33 @@ /obj/effect/turf_decal/trimline/white/filled/warning, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) -"iKT" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +"iKI" = ( +/obj/effect/turf_decal/siding{ dir = 4 }, +/obj/structure/hoop{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"iKT" = ( /obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "iLe" = ( /obj/effect/turf_decal/box/red, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"iLg" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/broken_flooring/side/directional/east, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "iLm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30939,14 +32557,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "iLn" = ( -/obj/machinery/camera/autoname/directional/west, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/iron/dark, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "iLy" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -30973,13 +32591,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"iLC" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "iLD" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -31032,34 +32643,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/space/openspace, /area/space/nearstation) -"iLP" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"iMf" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "iMo" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/east, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"iMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) "iMr" = ( /obj/structure/railing/corner{ dir = 8 @@ -31087,17 +32675,11 @@ /obj/structure/sign/departments/botany/alt2/directional/west, /turf/open/floor/iron/stairs/medium, /area/station/hallway/primary/central) -"iML" = ( -/obj/machinery/shower/directional/west, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"iMP" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"iMO" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/obj/structure/dresser, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "iMQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31109,15 +32691,20 @@ /turf/open/floor/iron/dark/textured_large, /area/station/science/zoo) "iMT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"iMV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +"iMX" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "iNk" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -31125,6 +32712,11 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) +"iNn" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/maintenance, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "iNy" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -31135,56 +32727,35 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/lab) +"iND" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "SM_shutters"; + name = "Supermatter Radiation Shutters"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter) "iNI" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating/airless, /area/station/maintenance/space_hut) -"iNK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/trunk/multiz, -/turf/open/floor/wood, -/area/station/commons/dorms) "iNP" = ( /obj/machinery/light/directional/west, /turf/open/openspace, /area/station/service/chapel) -"iNX" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/landmark/start/depsec/engineering, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"iOk" = ( -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"iOp" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/structure/railing{ - dir = 8 - }, -/obj/item/camera{ - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "iOB" = ( /obj/structure/sink/directional/east, /obj/structure/mirror/directional/west, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iOE" = ( /obj/machinery/ore_silo, /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iOF" = ( /obj/machinery/door/airlock/security{ name = "Customs Desk" @@ -31231,12 +32802,22 @@ }, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) -"iPt" = ( -/obj/item/binoculars, -/obj/item/toy/basketball, -/obj/structure/closet, +"iPv" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) +"iPx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "iPz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31246,14 +32827,6 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"iPL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "iPQ" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -31280,11 +32853,33 @@ }, /turf/open/openspace, /area/station/hallway/secondary/construction) -"iQe" = ( -/obj/machinery/field/generator, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/engine, -/area/station/engineering/break_room) +"iQd" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 3 + }, +/obj/item/clothing/suit/hazardvest{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/black{ + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black{ + pixel_y = -3 + }, +/obj/item/clothing/mask/gas, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "iQi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -31293,6 +32888,13 @@ /obj/effect/decal/cleanable/wrapping, /turf/open/floor/iron, /area/station/construction/storage_wing) +"iQj" = ( +/obj/machinery/door/airlock/external{ + name = "Common Mining Dock" + }, +/obj/effect/landmark/navigate_destination/dockaux, +/turf/open/floor/plating, +/area/station/hallway/secondary/construction) "iQw" = ( /obj/structure/railing{ dir = 6 @@ -31325,6 +32927,30 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"iQD" = ( +/obj/item/clothing/accessory/armband/cargo{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/structure/sign/poster/contraband/rebels_unite/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"iQE" = ( +/obj/structure/table/reinforced, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "iQI" = ( /obj/structure/chair{ dir = 8 @@ -31340,33 +32966,45 @@ dir = 8 }, /area/station/service/chapel) -"iQR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/commons/dorms) +"iQM" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "iQX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/science/genetics) -"iRa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) "iRf" = ( -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "iRA" = ( /turf/open/floor/iron/white/smooth_large, /area/station/hallway/secondary/entry) -"iRF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/station/commons/dorms) +"iRC" = ( +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -11 + }, +/obj/structure/sign/directions/dorms/directional/south{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/sign/directions/engineering/directional/south{ + dir = 4; + pixel_y = 2 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/central) "iRH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31375,24 +33013,28 @@ /obj/effect/mapping_helpers/airlock/access/all/service/general, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"iRX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +"iRR" = ( +/obj/structure/reagent_dispensers/foamtank, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) +"iRW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iSh" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance" +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/turf/open/floor/plating, -/area/station/engineering/lobby) +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosuppersm" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "iSv" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line, /obj/effect/turf_decal/tile/dark_red{ @@ -31471,8 +33113,9 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "iTf" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 1 @@ -31480,35 +33123,28 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/digital_clock/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"iTn" = ( -/obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iTx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass/plasma, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ +"iTh" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"iTw" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 4 }, -/obj/machinery/meter, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) -"iTB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"iTF" = ( +/obj/structure/table, +/obj/structure/bedsheetbin/empty{ + pixel_y = 6 }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iTE" = ( -/obj/effect/spawner/random/food_or_drink/snack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "iTH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -31526,6 +33162,26 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) +"iTR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office/private_investigators_office) +"iTU" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "iTW" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/structure/table, @@ -31549,15 +33205,6 @@ /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, /area/station/security/interrogation) -"iUo" = ( -/obj/machinery/atmospherics/components/tank/air{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "iUs" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -31574,6 +33221,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"iUz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "iUD" = ( /turf/closed/wall, /area/station/maintenance/solars/starboard/fore) @@ -31585,15 +33238,14 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "iUM" = ( -/obj/machinery/requests_console/directional/north{ - department = "Security"; - name = "Security Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/mapping_helpers/requests_console/assistance, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "iUX" = ( @@ -31609,10 +33261,10 @@ /obj/structure/sign/warning/vacuum/external/directional/east, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"iVp" = ( -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"iVr" = ( +/obj/structure/sign/warning/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "iVA" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -31620,12 +33272,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_edge, /area/station/commons/lounge) -"iVT" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "iVW" = ( /turf/open/floor/plating/elevatorshaft, /area/station/security/prison/rec) @@ -31659,32 +33305,6 @@ /obj/item/wrench/medical, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/medical/coldroom) -"iWb" = ( -/obj/structure/urinal/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"iWe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "N2O Multideck Adapter"; - dir = 4 - }, -/obj/machinery/meter{ - name = "N2O meter" - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"iWh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) "iWk" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -31710,17 +33330,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "iWu" = ( /turf/closed/wall, /area/space/nearstation) -"iWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "iWD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31730,10 +33345,13 @@ }, /turf/open/floor/wood, /area/station/service/library) -"iWM" = ( -/obj/structure/broken_flooring/side/directional/west, +"iWF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/directional/west, +/obj/structure/mirror/broken/directional/east, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/area/station/maintenance/starboard/upper) "iXd" = ( /obj/structure/lattice/catwalk, /obj/effect/decal/remains/human, @@ -31751,10 +33369,8 @@ /turf/open/floor/iron, /area/station/hallway/primary/aft) "iXw" = ( -/obj/structure/bed/dogbed/renault, -/mob/living/basic/pet/fox/renault, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/carpet, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "iXz" = ( /obj/machinery/door/airlock/maintenance{ @@ -31780,12 +33396,6 @@ /obj/structure/chair, /turf/open/floor/iron/airless, /area/station/maintenance/starboard/aft) -"iXH" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "iXJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall, @@ -31796,6 +33406,12 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"iYa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "iYb" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -31807,16 +33423,48 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"iYe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/openspace, +/area/station/medical/abandoned) "iYm" = ( /turf/open/misc/asteroid/airless, /area/space/nearstation) "iYq" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot/left, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Cargo Storage-2" + }, +/mob/living/simple_animal/bot/mulebot{ + name = "Parcel Pete" + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/recharge_floor, +/area/station/cargo/sorting) +"iYr" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "iYJ" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, @@ -31828,27 +33476,10 @@ /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"iYM" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"iYZ" = ( -/mob/living/basic/turtle{ - name = "John Arbuckle" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/mapping_helpers/mob_buckler, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) -"iZe" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/railing/corner/end, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"iZk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "iZr" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -31856,14 +33487,15 @@ /obj/machinery/computer/security, /turf/open/floor/iron/dark, /area/station/security/office) -"iZs" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma to Port" +"iZt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 9 }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "iZu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31876,12 +33508,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"iZx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "iZI" = ( /obj/machinery/computer/bank_machine, /obj/machinery/light_switch/directional/west{ @@ -31890,13 +33516,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) -"iZK" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/chapel) +/area/station/command/vault) "jac" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -31906,7 +33526,7 @@ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jad" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -31932,32 +33552,77 @@ "jap" = ( /turf/open/floor/engine/hull/air, /area/station/commons/dorms) +"jau" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "jaG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/maintenance/starboard/central) +"jaI" = ( +/turf/open/openspace, +/area/station/engineering/storage/tech) "jaN" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, /area/station/maintenance/starboard/central) +"jaT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"jaY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron, +/area/station/commons/locker) +"jba" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "jbc" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/construction/storage_wing) -"jbh" = ( -/obj/machinery/light/floor/broken, -/turf/open/openspace, -/area/station/maintenance/hallway/abandoned_recreation) "jbn" = ( /obj/structure/stairs/west, /obj/structure/railing, /obj/structure/sign/poster/official/help_others/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"jbr" = ( +/obj/machinery/atmospherics/components/unary/airlock_pump/unbolt_only, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"jbL" = ( +/obj/item/kirbyplants/fern{ + pixel_x = -3; + pixel_y = 18 + }, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/structure/fluff/paper/stack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "jbO" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -31968,7 +33633,7 @@ /obj/structure/closet/secure_closet/armory2, /obj/effect/spawner/random/armory/rubbershot, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jbS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -31984,13 +33649,13 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"jch" = ( -/obj/machinery/newscaster/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +"jbZ" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery/white{ + color = "#ff6600" }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "jcn" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end, /obj/structure/flora/bush/lavendergrass, @@ -32006,6 +33671,14 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) +"jcw" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 2; + name = "O2 to Mix" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "jcy" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -32023,49 +33696,46 @@ /obj/effect/mapping_helpers/requests_console/assistance, /turf/open/floor/iron/white, /area/station/medical/office) -"jcz" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "jcE" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/bomb) -"jcP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"jcH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=21-Central"; + location = "20-Genetics" }, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) -"jcQ" = ( /obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"jda" = ( -/obj/item/spear, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) +"jcM" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) +"jcN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) "jdf" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/spawner/random/structure/grille, /turf/open/floor/engine/hull, /area/space/nearstation) "jdg" = ( -/obj/machinery/holopad, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/bridge) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "jdi" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -32081,13 +33751,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"jdr" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/atmos/project) "jdB" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ dir = 1 @@ -32108,21 +33771,14 @@ dir = 4 }, /obj/effect/landmark/start/paramedic, +/obj/item/radio/intercom/directional/south, /turf/open/floor/iron/white, /area/station/medical/office) -"jdR" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/bus{ - pixel_y = -3 - }, -/obj/item/circuitboard/machine/telecomms/broadcaster{ - pixel_y = 2 - }, +"jdM" = ( +/obj/structure/table, +/obj/machinery/microwave/engineering/cell_included, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/area/station/engineering/supermatter/room/upper) "jdZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -32131,25 +33787,7 @@ name = "AI Core Access" }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jea" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/department/medical) -"jec" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/medical/virology) +/area/station/ai/satellite/interior) "jee" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32158,20 +33796,35 @@ /turf/closed/wall, /area/station/security/evidence) "jeh" = ( -/obj/structure/railing{ - dir = 8 +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/edge{ + dir = 4 }, -/obj/effect/turf_decal/siding/wood{ +/area/station/hallway/primary/central) +"jei" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/vending/cigarette{ - pixel_x = 5 +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"jem" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/oven{ + pixel_y = 3 }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/item/circuitboard/machine/oven, +/obj/item/circuitboard/machine/oven{ + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "jeq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -32183,6 +33836,7 @@ dir = 1 }, /obj/machinery/camera/autoname/directional/south, +/obj/structure/fireaxecabinet/jawsofrecovery/directional/south, /turf/open/floor/iron/white, /area/station/medical/office) "jes" = ( @@ -32201,19 +33855,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"jeD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) "jeU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -32226,32 +33867,14 @@ /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) "jeW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, /turf/open/floor/iron, /area/station/cargo/storage) -"jeX" = ( -/obj/item/kirbyplants/random/dead{ - name = "dead plant" - }, -/obj/machinery/button/door/directional/east{ - id = "Cabin2"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/commons/dorms) "jfd" = ( -/obj/machinery/light/directional/east, -/obj/machinery/computer/cargo{ - dir = 8 - }, /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/status_display/supply{ - pixel_x = 32 + dir = 5 }, /turf/open/floor/iron, /area/station/cargo/storage) @@ -32267,7 +33890,7 @@ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jfj" = ( /obj/effect/decal/cleanable/dirt, /obj/item/camera_film, @@ -32280,11 +33903,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) -"jfp" = ( -/obj/structure/lattice/catwalk, -/obj/item/kirbyplants/random, -/turf/open/openspace, -/area/station/engineering/break_room) "jfA" = ( /turf/open/openspace, /area/station/security/brig) @@ -32317,9 +33935,6 @@ /turf/open/floor/iron/dark, /area/station/security/interrogation) "jgd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, /obj/effect/turf_decal/trimline/brown/warning{ dir = 9 }, @@ -32353,13 +33968,6 @@ "jgy" = ( /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"jgB" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "jgC" = ( /obj/structure/transit_tube/curved/flipped{ dir = 4 @@ -32367,6 +33975,12 @@ /obj/structure/lattice, /turf/open/space/openspace, /area/space/nearstation) +"jgD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "jgJ" = ( /obj/machinery/door/airlock/command{ name = "Research Division Server Room" @@ -32390,13 +34004,21 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"jhg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office, +/obj/structure/fluff/paper/stack{ + dir = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "jhj" = ( /obj/structure/cable/layer3, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jhm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32408,7 +34030,7 @@ codes_txt = "patrol;next_patrol=19-Captain"; location = "18-Bathroom" }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "jhu" = ( /obj/structure/disposalpipe/segment{ @@ -32416,6 +34038,15 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"jhz" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "jhM" = ( /obj/structure/table/wood, /obj/item/reagent_containers/cup/glass/bottle/holywater{ @@ -32434,11 +34065,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/medical) -"jhU" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "jhW" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/siding/dark_blue{ @@ -32449,11 +34075,15 @@ /turf/open/floor/carpet/blue, /area/station/medical/break_room) "jia" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "jic" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured_large, @@ -32463,35 +34093,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"jip" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"jiv" = ( -/obj/effect/turf_decal/siding/brown{ +"jix" = ( +/obj/machinery/light/warm/dim/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/effect/turf_decal/siding/brown, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jiD" = ( /obj/machinery/telecomms/server/presets/common, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"jiE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=20-Genetics"; - location = "19-Captain" - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "jiG" = ( /obj/machinery/newscaster/directional/west, /obj/machinery/light/directional/west, @@ -32514,19 +34131,14 @@ /obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"jjd" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ - dir = 4 +"jji" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"jjn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "jjo" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 10 @@ -32536,6 +34148,14 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"jjp" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) "jjr" = ( /obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, @@ -32583,12 +34203,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"jjK" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) "jjW" = ( /mob/living/carbon/human/species/monkey, /obj/structure/flora/bush/sparsegrass/style_random, @@ -32611,20 +34225,44 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"jkb" = ( +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "jkd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) +"jke" = ( +/obj/effect/landmark/start/station_engineer, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "jkh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) +"jkk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "jkn" = ( /obj/structure/table/wood/poker, -/turf/open/floor/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "jkq" = ( /turf/open/floor/iron/stairs/right{ @@ -32634,25 +34272,23 @@ "jkr" = ( /turf/closed/wall, /area/station/science/lab) -"jkz" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) +"jkD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/light/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "jkG" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Post - Cargo" - }, +/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, +/turf/open/floor/plating, /area/station/security/checkpoint/supply) +"jkJ" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/dark/arrow_cw{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "jkL" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -32661,12 +34297,10 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) -"jkR" = ( -/obj/machinery/computer/holodeck, -/obj/machinery/camera/autoname/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"jkM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "jkW" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -32689,15 +34323,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/secondary/construction) -"jlf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) -"jlh" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "jli" = ( /obj/effect/turf_decal/trimline/purple/arrow_cw{ dir = 8 @@ -32710,20 +34335,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"jlo" = ( -/obj/structure/rack, -/obj/item/encryptionkey/headset_com{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/encryptionkey/headset_sec{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +"jln" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "jlB" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -32761,9 +34377,13 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, /area/station/security/detectives_office) -"jmh" = ( -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) +"jlX" = ( +/obj/structure/sign/poster/official/get_your_legs/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "jmo" = ( /obj/structure/cable, /obj/effect/spawner/random/trash/garbage, @@ -32780,14 +34400,37 @@ /obj/machinery/light/directional/west, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"jmD" = ( -/obj/effect/turf_decal/stripes/line{ +"jmG" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) +"jmK" = ( +/obj/machinery/power/emitter{ dir = 4 }, -/obj/structure/broken_flooring/side/directional/north, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"jmL" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/line, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "jmQ" = ( /obj/effect/spawner/random/trash/grime, /turf/open/floor/plating, @@ -32814,7 +34457,6 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "jni" = ( -/obj/structure/cable, /obj/item/crowbar, /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/autoname/directional/south, @@ -32848,16 +34490,11 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"jnq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/openspace, -/area/station/engineering/break_room) "jnC" = ( -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "jnK" = ( /obj/effect/turf_decal/trimline/green/filled/line, @@ -32870,18 +34507,29 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) -"jnQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"jnR" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"jnU" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "jof" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"joA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/item/trash/tray, +/obj/structure/railing, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "joC" = ( /obj/item/wheelchair{ pixel_y = -3 @@ -32908,22 +34556,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"joI" = ( -/obj/machinery/power/emitter{ - dir = 4 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"joP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) "jpa" = ( /obj/machinery/vatgrower{ dir = 4 @@ -32932,12 +34564,7 @@ /area/station/science/cytology) "jph" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"jpj" = ( -/obj/item/statuebust, -/obj/machinery/light/cold/no_nightlight/directional/east, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +/area/station/command/vault) "jpp" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32948,11 +34575,23 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"jpq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "jps" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1 + }, +/obj/item/cigarette/cigar{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "jpt" = ( /obj/structure/railing{ dir = 1 @@ -32960,13 +34599,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/command/corporate_showroom) -"jpw" = ( -/obj/machinery/door/poddoor{ - id = "securestoragecw"; - name = "Secure Storage" - }, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/break_room) "jpx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -33000,7 +34632,11 @@ /obj/structure/table/reinforced, /obj/item/mmi, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"jpZ" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "jqd" = ( /obj/machinery/door/airlock/public/glass{ name = "Prison Community Center" @@ -33008,13 +34644,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"jqo" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 9 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "jqp" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -33023,39 +34652,27 @@ /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/construction/storage_wing) -"jqv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "jqw" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ dir = 10 }, /turf/open/space/openspace, /area/space/nearstation) -"jqA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 +"jqz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/iron/textured_large, -/area/station/medical/abandoned) +/obj/item/weldingtool, +/obj/item/wrench, +/obj/item/clothing/head/utility/welding, +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "jqB" = ( /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"jqG" = ( -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "jqO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33073,6 +34690,16 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"jqQ" = ( +/obj/structure/lattice, +/obj/item/toy/figure/ninja{ + name = "Space Ninja"; + desc = "How did he get there??"; + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/space/openspace, +/area/space/nearstation) "jqR" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -33091,20 +34718,13 @@ }, /turf/open/floor/iron/textured, /area/station/security/brig) -"jrb" = ( -/obj/structure/table, -/obj/item/pen/blue, +"jrc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, /turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"jrp" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/table, -/obj/item/stack/cable_coil/five, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +/area/station/engineering/lobby) "jrt" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -33127,16 +34747,16 @@ }, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"jrx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "jrz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/large, +/obj/machinery/light/directional/south, +/obj/structure/lattice/catwalk, +/turf/open/openspace, /area/station/hallway/primary/central) +"jrC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/boritos, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "jrD" = ( /obj/structure/lattice/catwalk, /obj/machinery/light/directional/east, @@ -33149,23 +34769,18 @@ }, /turf/open/floor/iron, /area/station/construction/storage_wing) -"jrQ" = ( -/obj/structure/disposalpipe/segment, -/obj/item/paper_bin{ - pixel_y = 6; - pixel_x = -4 +"jrS" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 }, -/obj/item/stamp/head/ce{ - pixel_x = 7 +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/siding/red{ + dir = 5 }, -/obj/item/stamp/denied{ - pixel_x = 7; - pixel_y = 10 +/turf/open/floor/iron/textured_corner{ + dir = 8 }, -/obj/item/pen, -/obj/structure/table/reinforced/rglass, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) +/area/station/command/gateway) "jrT" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -33175,42 +34790,40 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jrV" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"jsh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/area/station/ai/satellite/interior) +"jrY" = ( +/obj/machinery/meter{ + name = "Plasma meter" }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"jsj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "Plasma Multideck Adapter"; + dir = 2 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"jsh" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jsy" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) -"jsD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table, -/obj/item/stack/rods{ - pixel_y = 3 - }, -/obj/structure/sign/poster/contraband/lizard/directional/south, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +/area/station/ai/upload/chamber) +"jsG" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "jsK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33219,16 +34832,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) -"jsQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/small, -/area/station/command/heads_quarters/ce) -"jsV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/upper) "jtc" = ( /obj/effect/decal/cleanable/ash, /obj/machinery/light/small/dim/directional/east, @@ -33243,6 +34846,13 @@ }, /turf/open/floor/iron/textured_large, /area/station/medical/break_room) +"jty" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "jtE" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -33272,18 +34882,20 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"jua" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/warning{ +/obj/effect/turf_decal/stripes{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, +/turf/open/floor/iron/textured, +/area/station/command/eva) +"jua" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) +"jug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "jui" = ( /obj/structure/table, /obj/item/kitchen/rollingpin{ @@ -33313,19 +34925,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"juo" = ( -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "jup" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -33349,15 +34948,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/tcommsat/server) -"juz" = ( -/obj/machinery/mecha_part_fabricator/maint{ - name = "forgotten exosuit fabricator"; - drop_direction = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "juE" = ( /obj/effect/spawner/random/clothing/funny_hats, /obj/effect/spawner/random/clothing/wardrobe_closet, @@ -33365,22 +34955,11 @@ /area/station/maintenance/port) "juH" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L14" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"juO" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "juP" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, @@ -33412,21 +34991,6 @@ }, /turf/open/space/openspace, /area/space/nearstation) -"jvb" = ( -/obj/machinery/light/directional/west, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"jvf" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "jvl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33441,37 +35005,15 @@ /area/station/hallway/secondary/construction) "jvB" = ( /turf/open/floor/iron/dark, -/area/station/command/bridge) -"jvL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Ordnance Gas Storage Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, +/area/station/command/meeting_room/council) +"jvK" = ( +/obj/structure/table/reinforced, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jvM" = ( -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) +/area/station/maintenance/starboard/upper) "jvU" = ( /obj/machinery/flasher/portable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"jvX" = ( -/obj/effect/turf_decal/siding{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "jwa" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard/central) @@ -33499,13 +35041,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"jwu" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) "jwB" = ( /obj/machinery/airlock_sensor/incinerator_ordmix{ pixel_x = -24 @@ -33521,19 +35056,33 @@ }, /turf/open/floor/engine, /area/station/science/ordnance/burnchamber) +"jwC" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "jwI" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/arrows{ +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/mapping_helpers/requests_console/information, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"jwO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/color_adapter, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "jxa" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33542,10 +35091,12 @@ /turf/open/floor/carpet/cyan, /area/station/command/heads_quarters/cmo) "jxc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/conveyor{ + dir = 4; + id = "cargounload" + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "jxg" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -33553,44 +35104,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"jxj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "jxk" = ( -/obj/structure/cable, -/obj/machinery/computer/security/telescreen/normal/directional/north{ - name = "Security Cameras Monitor" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"jxl" = ( -/obj/item/kirbyplants/random/dead{ - name = "dead plant" - }, -/obj/item/cigbutt, -/obj/machinery/button/door/directional/west{ - id = "Cabin7"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"jxo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/structure/chair/comfy/black{ dir = 8 }, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "jxt" = ( /obj/structure/ladder, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -33622,6 +35141,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) +"jxQ" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/engine, +/area/station/engineering/atmos) "jxU" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -33637,25 +35160,18 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"jxW" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 2 +"jya" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "jyd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) +/obj/machinery/status_display/ai/directional/south, +/turf/open/openspace, +/area/station/command/heads_quarters/hop) "jyl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing, @@ -33688,24 +35204,17 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jyA" = ( /obj/structure/table, /obj/effect/spawner/random/maintenance, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"jyD" = ( -/obj/structure/table, -/obj/item/tape{ - pixel_x = -4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "jyI" = ( /obj/structure/chair/sofa/corp, /obj/machinery/light_switch/directional/north, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jyK" = ( /obj/structure/railing, /obj/effect/turf_decal/siding/brown, @@ -33718,37 +35227,19 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"jyL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "jyM" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/warm/dim/directional/north, -/obj/structure/cable, -/turf/open/openspace, -/area/station/hallway/primary/central) -"jyW" = ( -/obj/structure/table, -/obj/item/shard{ - pixel_x = 9 +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/chair/office/light{ + dir = 8 }, -/obj/item/clothing/glasses/regular{ - pixel_x = -10; - pixel_y = 6 +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jyP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, -/obj/structure/sign/poster/official/corporate_perks_vacation/directional/south, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) -"jyX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "jzk" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 @@ -33759,6 +35250,15 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) +"jzo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "jzx" = ( /obj/machinery/vending/wardrobe/law_wardrobe, /obj/machinery/firealarm/directional/east, @@ -33779,11 +35279,11 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "jzH" = ( -/obj/machinery/door/poddoor/massdriver_trash, /obj/machinery/atmos_shield_gen/active{ dir = 1 }, /obj/machinery/atmos_shield_gen/active, +/obj/machinery/door/poddoor/massdriver_trash, /turf/open/floor/plating, /area/station/maintenance/disposal) "jzM" = ( @@ -33814,13 +35314,18 @@ /obj/structure/lattice/catwalk, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) -"jAd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ +"jAg" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "jAh" = ( /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /obj/machinery/door/airlock{ @@ -33838,6 +35343,15 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"jAx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "jAy" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -33859,13 +35373,13 @@ /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance) "jAO" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 +/obj/machinery/brm, +/obj/structure/railing{ + dir = 10 }, -/obj/structure/chair/sofa/right/brown, -/obj/item/clothing/head/soft{ - pixel_x = 2; - pixel_y = -2 +/obj/machinery/conveyor{ + dir = 4; + id = "mining" }, /turf/open/floor/iron/textured, /area/station/cargo/storage) @@ -33882,23 +35396,25 @@ }, /turf/open/floor/iron/edge, /area/station/hallway/primary/fore) -"jBb" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "jBd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"jBh" = ( -/obj/structure/sign/poster/random/directional/west, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"jBf" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "jBk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33908,49 +35424,64 @@ "jBn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/miningoffice) -"jBs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 4 +"jBr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 8 }, -/obj/machinery/light/small/directional/north, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/science/server) +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/wood, +/area/station/maintenance/aft) "jBt" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine/hull/air, -/area/station/command/meeting_room/council) -"jBx" = ( -/obj/structure/table/glass, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, /turf/open/floor/iron/dark, -/area/station/commons/vacant_room/office) +/area/station/command/bridge) "jBI" = ( /obj/structure/cable, /obj/structure/table, /obj/item/clothing/mask/gas, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"jBK" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/railing/corner, -/obj/structure/disposalpipe/segment{ - dir = 5 +"jBJ" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"jBS" = ( +/obj/structure/chair/office{ + dir = 8 }, -/obj/structure/flora/tree/jungle, -/turf/open/floor/grass, -/area/station/hallway/primary/starboard) +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "jBU" = ( /obj/item/reagent_containers/cup/glass/mug/tea, /obj/structure/table/wood, /turf/open/floor/carpet/orange, /area/station/commons/lounge) +"jBV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) "jBW" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -33958,9 +35489,28 @@ /area/station/maintenance/solars/port/aft) "jBX" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/obj/structure/table, +/obj/item/clothing/head/soft{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/hand_labeler{ + pixel_y = 11 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/stamp/granted, +/obj/item/stamp/denied{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/hand_labeler_refill{ + pixel_x = -8; + pixel_y = 3 + }, /turf/open/floor/iron, /area/station/cargo/storage) "jBY" = ( @@ -33975,23 +35525,8 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) -"jCv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) "jCz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34019,14 +35554,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) -"jCJ" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "jCK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -34045,11 +35572,34 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"jCP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "jCQ" = ( /obj/structure/chair/sofa/corp/right, /obj/effect/landmark/start/paramedic, /turf/open/floor/carpet/blue, /area/station/medical/break_room) +"jCS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage/tech) +"jCV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/cup/beaker, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "jCW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34060,15 +35610,6 @@ /obj/effect/mapping_helpers/mail_sorting/service/hydroponics, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"jCY" = ( -/obj/machinery/light/directional/south, -/obj/effect/spawner/random/techstorage/tcomms_all, -/obj/structure/rack, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "jDe" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 6 @@ -34100,13 +35641,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/robotics/lab) -"jDl" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark/smooth_corner, -/area/station/engineering/main) +"jDm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "jDn" = ( /obj/structure/chair/stool/bar/directional/north, /obj/effect/turf_decal/siding/wood, @@ -34116,27 +35655,14 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood/large, /area/station/commons/lounge) -"jDq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 1 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"jDr" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/spawner/random/clothing/wardrobe_closet_colored, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "jDx" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/station/medical/morgue) -"jDy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +"jDB" = ( +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "jDD" = ( /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -34156,7 +35682,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jDO" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -34185,28 +35711,42 @@ /obj/structure/sign/poster/contraband/tools/directional/north, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"jDY" = ( -/obj/effect/turf_decal/tile/dark_green/opposingcorners, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/obj/item/stack/sheet/cotton{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/generic, -/obj/structure/closet/firecloset, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) "jEc" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"jEd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper{ + dir = 4 + }, +/obj/structure/fluff/paper/stack{ + dir = 5 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/camera_film, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"jEg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "jEm" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"jEo" = ( +/obj/machinery/computer/atmos_alert/station_only{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/circuit, +/area/station/command/bridge) "jEr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34226,20 +35766,6 @@ /obj/effect/turf_decal/tile/dark/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"jEx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"jEz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4; - external_pressure_bound = 140; - name = "killroom vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) "jEG" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -34253,15 +35779,11 @@ }, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) -"jEV" = ( -/obj/structure/table, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/obj/item/pen, -/obj/item/airlock_painter, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"jEM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "jFj" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 4 @@ -34285,19 +35807,22 @@ /area/station/security/courtroom) "jFp" = ( /obj/structure/table/wood, -/obj/item/stamp/head/captain{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/storage/briefcase/secure{ - pixel_x = -2; - pixel_y = 4 - }, /obj/item/storage/lockbox/medal{ pixel_y = 2 }, -/turf/open/floor/carpet, +/obj/item/pen/fountain/captain{ + pixel_y = 6 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) +"jFr" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Plasma to Mix" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "jFG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -34330,15 +35855,17 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) "jFV" = ( -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ dir = 1 }, -/obj/machinery/door/poddoor/shutters{ +/obj/machinery/door/poddoor/shutters/window{ + dir = 1; id = "evashutter"; name = "E.V.A. Storage Shutter" }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "jGh" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -34350,6 +35877,11 @@ /obj/effect/spawner/random/structure/table_or_rack, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"jGn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "jGq" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -34362,7 +35894,7 @@ /obj/effect/spawner/random/structure/crate, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "jGw" = ( /obj/structure/railing{ dir = 9 @@ -34385,6 +35917,9 @@ }, /turf/open/floor/carpet, /area/station/security/courtroom) +"jGG" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/fore/upper) "jGK" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -34395,18 +35930,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"jGQ" = ( -/obj/effect/turf_decal/siding/brown/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 1 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "jGT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -34417,12 +35940,34 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"jHb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"jHc" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack{ + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "jHj" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"jHk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "jHq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -34442,21 +35987,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"jHD" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/pen{ - pixel_x = -17; +"jHH" = ( +/obj/structure/table, +/obj/item/rcl/pre_loaded{ pixel_y = 7 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"jHL" = ( -/obj/machinery/vatgrower, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/storage/art) "jHV" = ( /turf/open/floor/iron/stairs/medium{ dir = 1 @@ -34471,10 +36018,13 @@ }, /turf/open/floor/plating, /area/station/medical/cryo) -"jIs" = ( -/obj/structure/table/glass, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"jIl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "jIx" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Antechamber" @@ -34484,7 +36034,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jII" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -34511,11 +36061,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"jIZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/basketball, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "jJd" = ( /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/plating, @@ -34527,13 +36072,6 @@ }, /turf/open/floor/wood, /area/station/service/library) -"jJm" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) "jJC" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -34551,14 +36089,15 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"jJE" = ( +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) "jJH" = ( -/obj/structure/chair/comfy/carp{ - dir = 1; - name = "Captain's Chair" - }, /obj/machinery/light/floor, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/chair/comfy/black, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "jJP" = ( /obj/machinery/vending/coffee, /obj/item/radio/intercom/directional/east, @@ -34571,6 +36110,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"jJU" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "jJX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -34580,7 +36122,7 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jJZ" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -34593,34 +36135,35 @@ /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "jKo" = ( -/obj/structure/table/wood, -/obj/item/lighter{ - pixel_x = 7; - pixel_y = -11 - }, -/obj/item/cigarette/cigar{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/reagent_containers/cup/glass/coffee{ - pixel_x = -8; - pixel_y = -9 - }, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jKp" = ( /turf/closed/wall, /area/station/medical/patients_rooms/room_a) "jKF" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, /obj/machinery/door/poddoor/shutters{ id = "gateshutter"; name = "Gateway Access Shutter" }, -/turf/open/floor/iron, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) +"jKL" = ( +/obj/machinery/requests_console/directional/west, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "jKX" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/cmo) @@ -34650,7 +36193,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jLl" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -34673,17 +36216,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/openspace, /area/station/security/checkpoint/science) -"jLt" = ( -/obj/structure/sign/poster/official/random/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/engine/directional/south{ - name = "Engine Camera Monitor" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "jLu" = ( /obj/machinery/telecomms/processor/preset_three, /obj/effect/turf_decal/tile/red/fourcorners, @@ -34706,6 +36238,26 @@ }, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) +"jLD" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) +"jLE" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Testing Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"jLS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "jLY" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -34714,28 +36266,49 @@ /area/station/service/kitchen) "jMi" = ( /obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "jMo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "jMr" = ( /turf/closed/wall, /area/station/hallway/secondary/exit/departure_lounge) +"jMu" = ( +/obj/structure/sign/directions/evac/directional/east{ + dir = 1; + pixel_y = 5; + pixel_x = 0 + }, +/obj/structure/sign/directions/engineering/directional/east{ + pixel_y = -1; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/east{ + pixel_y = -7; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/commons/toilet/restrooms) "jMy" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/commons/vacant_room/office) -"jMG" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Engine"; - dir = 8 +"jMC" = ( +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/obj/effect/turf_decal/trimline/brown, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "jML" = ( /obj/effect/decal/cleanable/confetti, /turf/open/floor/plating, @@ -34756,12 +36329,31 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/port) -"jNk" = ( -/obj/structure/rack, -/obj/item/storage/box/flashes{ - pixel_x = 3 - }, -/obj/effect/turf_decal/box/corners{ +"jNg" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table, +/obj/structure/microscope, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) +"jNh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jNk" = ( +/obj/structure/rack, +/obj/item/storage/box/flashes{ + pixel_x = 3 + }, +/obj/effect/turf_decal/box/corners{ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, @@ -34772,6 +36364,14 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"jNu" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/landmark/firealarm_sanity, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "jNC" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 @@ -34781,6 +36381,13 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/security/mechbay) +"jNG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "jNL" = ( /obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/trimline/dark/arrow_ccw{ @@ -34793,6 +36400,20 @@ dir = 4 }, /area/station/hallway/secondary/exit/departure_lounge) +"jNW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "jOe" = ( /obj/structure/railing{ dir = 4 @@ -34807,40 +36428,72 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "jOi" = ( -/obj/structure/sign/directions/engineering/directional/south{ - dir = 4; - pixel_y = -22 +/obj/structure/sign/directions/evac/directional/north{ + dir = 8; + pixel_y = 0 }, -/obj/structure/sign/directions/dorms/directional/south{ - dir = 4; - pixel_y = -28 +/obj/structure/sign/directions/medical/directional/north{ + dir = 8; + pixel_y = 10 }, -/obj/structure/sign/directions/security{ +/obj/structure/sign/directions/command{ dir = 8; - pixel_y = -40 + pixel_y = -10 }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = -34 +/turf/closed/wall, +/area/station/commons/storage/primary) +"jOm" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "jOE" = ( /turf/closed/wall, /area/station/service/lawoffice) +"jOG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "jOH" = ( /turf/open/floor/iron/dark, /area/station/security/brig) -"jOT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/wood, +"jOJ" = ( +/obj/structure/curtain, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, /area/station/commons/dorms) +"jOO" = ( +/turf/closed/wall/r_wall, +/area/station/commons/fitness/recreation) +"jOZ" = ( +/obj/machinery/light_switch/directional/north, +/obj/structure/closet/wardrobe/white, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "jPa" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/primary/starboard) +"jPe" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/structure/closet/masks, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "jPh" = ( /obj/structure/broken_flooring/pile/directional/south, /turf/open/floor/plating, @@ -34862,6 +36515,14 @@ /obj/effect/spawner/random/maintenance/no_decals, /turf/open/space/basic, /area/space/nearstation) +"jPz" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "jPC" = ( /obj/effect/turf_decal/siding/dark{ dir = 5 @@ -34879,6 +36540,18 @@ /obj/structure/chair/office, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"jPV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "jPW" = ( /obj/structure/flora/bush/ferny/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -34902,19 +36575,10 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/security/courtroom) -"jQu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "jQw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, +/obj/structure/sign/poster/official/random/directional/east, /turf/open/openspace, -/area/station/hallway/primary/central) +/area/station/command/eva) "jQA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -34922,11 +36586,11 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/evidence) -"jQK" = ( -/obj/effect/turf_decal/tile/purple/half{ - dir = 1 +"jQH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 }, -/turf/open/floor/iron/smooth, +/turf/open/floor/iron/dark, /area/station/engineering/atmos/upper) "jQL" = ( /obj/effect/decal/cleanable/dirt, @@ -34935,7 +36599,7 @@ name = "ai intercom" }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jQO" = ( /turf/closed/wall, /area/station/science/ordnance/bomb) @@ -34943,16 +36607,19 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"jQQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "jRb" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/engine/co2, /area/station/engineering/atmos/upper) +"jRe" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "jRg" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 10 @@ -34962,36 +36629,17 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"jRo" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) -"jRB" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/transit_tube/station/dispenser/flipped{ - dir = 1 - }, +"jRq" = ( +/obj/machinery/duct, /obj/structure/cable, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "jRH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"jRJ" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/security_all, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/gateway) "jRL" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -35000,12 +36648,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"jRZ" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/chamber) +"jRQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "jSf" = ( /turf/closed/wall/r_wall, /area/station/engineering/main) @@ -35018,6 +36666,8 @@ /obj/machinery/mass_driver/trash{ dir = 4 }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "jSA" = ( @@ -35036,6 +36686,13 @@ /obj/structure/window/reinforced/plasma/spawner/directional/north, /turf/open/space/basic, /area/space/nearstation) +"jSK" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office/private_investigators_office) "jSO" = ( /obj/effect/turf_decal/arrows/white{ color = "#00AAFF"; @@ -35045,25 +36702,16 @@ /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) "jSV" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 17 - }, -/obj/item/folder/blue{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"jSW" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Command Desk"; + req_access = list("command") + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jSY" = ( /obj/effect/landmark/transport/transport_id{ specific_transport_id = "catwalk_sec" @@ -35089,13 +36737,19 @@ dir = 4 }, /area/station/service/chapel) -"jTx" = ( +"jTp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"jTG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/chair{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/turf/open/openspace, +/area/station/maintenance/aft/upper) "jTO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -35141,35 +36795,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"jUx" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) "jUz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/construction/storage_wing) -"jUI" = ( -/obj/item/clothing/head/cone{ - pixel_x = 8; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, +"jUW" = ( +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jUS" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/central/upper) "jUX" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 6 @@ -35196,6 +36830,8 @@ "jVs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/very_dim/directional/north, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) "jVu" = ( @@ -35208,6 +36844,12 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"jVv" = ( +/obj/machinery/vatgrower, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "jVB" = ( /turf/closed/wall/r_wall, /area/station/engineering/gravity_generator) @@ -35218,6 +36860,21 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/lounge) +"jVN" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosuppersm" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "jVP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -35228,6 +36885,9 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"jVX" = ( +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "jVY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large, @@ -35294,14 +36954,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) -"jWJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "jWP" = ( -/obj/machinery/light/floor, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jWT" = ( /obj/structure/railing/corner{ dir = 8 @@ -35309,7 +36969,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "jXe" = ( /obj/structure/table/wood, @@ -35337,11 +36997,9 @@ /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) "jXm" = ( -/obj/structure/ladder, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/cargo/storage) "jXC" = ( /obj/structure/table, /obj/item/instrument/eguitar{ @@ -35351,6 +37009,20 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood/large, /area/station/service/theater_dressing) +"jXR" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"jXS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "jXX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -35367,6 +37039,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light_switch/directional/north, /turf/open/floor/iron/textured, /area/station/cargo/warehouse) "jYb" = ( @@ -35405,20 +37078,26 @@ /area/station/hallway/secondary/construction) "jYs" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/photocopier/prebuilt, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/paper_bin{ + pixel_x = 1 + }, +/obj/item/pen, +/obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) -"jYE" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/item/storage/toolbox/fishing, -/obj/item/storage/box/lights/mixed{ - pixel_x = -8; - pixel_y = 1 +"jYI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/port/fore) +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/command/gateway) "jYJ" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -35440,6 +37119,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"jYR" = ( +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "N2 Multideck Adapter"; + dir = 2 + }, +/obj/machinery/meter{ + name = "N2 meter" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "jYS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35454,24 +37145,20 @@ /turf/open/floor/plating, /area/station/science/robotics) "jZl" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "jZs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"jZx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"jZL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) +"jZQ" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "jZR" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -35490,6 +37177,10 @@ }, /turf/open/openspace, /area/station/hallway/primary/starboard) +"kaj" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "kak" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 4 @@ -35499,11 +37190,34 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"kaq" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) +"kas" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) +"kau" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kax" = ( /turf/open/floor/iron/white/smooth_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"kay" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/engine, +/area/station/engineering/atmos) "kaF" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -35516,14 +37230,22 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) -"kaN" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/crayon{ - icon_state = "nay"; - pixel_y = 32 +"kaI" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"kaW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 }, +/obj/effect/mapping_helpers/mail_sorting/science/genetics, +/obj/effect/mapping_helpers/mail_sorting/science/rd_office, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/obj/effect/mapping_helpers/mail_sorting/science/research, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "kbe" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner, @@ -35531,11 +37253,18 @@ /turf/open/openspace, /area/station/maintenance/port/aft) "kbf" = ( -/obj/effect/spawner/random/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) +"kbh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "kbj" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, @@ -35546,6 +37275,12 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, /area/station/tcommsat/server) +"kbo" = ( +/obj/item/binoculars, +/obj/item/toy/basketball, +/obj/structure/closet, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "kbr" = ( /obj/structure/table/reinforced, /obj/item/clothing/glasses/science, @@ -35570,7 +37305,7 @@ /obj/structure/rack, /obj/effect/spawner/random/armory/shotgun, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kbB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -35579,25 +37314,17 @@ /obj/machinery/light/floor/broken, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"kbQ" = ( -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random/fullysynthetic, -/obj/effect/turf_decal/stripes/line{ +"kbH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 5 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kbR" = ( -/obj/machinery/newscaster/directional/south, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"kbS" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/engineering_personal{ - anchored = 1 - }, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/engineering/atmos/upper) +"kbY" = ( +/obj/structure/table, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "kci" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -35610,6 +37337,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"kct" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "kcx" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -35619,11 +37350,15 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"kcA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +"kcC" = ( +/obj/structure/railing/corner/end/flip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"kcL" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "kcM" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 4 @@ -35634,12 +37369,21 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"kcY" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/machinery/atmospherics/pipe/smart/manifold/orange/visible{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "kdk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -35657,12 +37401,12 @@ /turf/open/floor/plating, /area/station/security/brig) "kdp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "kdq" = ( @@ -35687,7 +37431,7 @@ }, /obj/machinery/camera/autoname/motion/directional/south, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kdv" = ( /obj/structure/railing{ dir = 1 @@ -35700,22 +37444,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kdC" = ( /obj/structure/fake_stairs/directional/east{ name = "stairs" }, /turf/open/floor/iron/dark, /area/station/science/cytology) -"kdE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/directional/west, -/obj/structure/mirror/broken/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kdG" = ( -/turf/open/floor/wood, -/area/station/commons/dorms) "kdN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -35724,10 +37459,13 @@ /turf/open/floor/plating, /area/station/construction/storage_wing) "kdQ" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/caution/stand_clear/red{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/storage) "kdR" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -35735,17 +37473,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, /area/station/hallway/primary/starboard) -"kdZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "keh" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark/textured_large, @@ -35769,9 +37496,19 @@ /obj/item/cigbutt, /turf/open/floor/iron/dark/textured_half, /area/station/cargo/bitrunning/den) +"kep" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/box, +/obj/structure/ladder, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "keq" = ( -/obj/effect/turf_decal/siding/white/corner, -/turf/open/floor/iron/dark/smooth_large, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "kew" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -35790,19 +37527,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"keE" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/table, -/obj/item/reagent_containers/cup/soda_cans/random{ - pixel_x = -5; - pixel_y = -18 - }, -/obj/item/reagent_containers/cup/soda_cans/random{ - pixel_x = 5; - pixel_y = -16 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "keM" = ( /obj/structure/lattice/catwalk, /obj/item/wirecutters{ @@ -35815,11 +37539,6 @@ /obj/machinery/holopad, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"keY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "keZ" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 8 @@ -35843,8 +37562,18 @@ pixel_y = 2 }, /obj/item/pen/fourcolor, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) +"kfo" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "kfs" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "chapel_shutters_space"; @@ -35853,14 +37582,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/service/chapel) -"kfv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "kfA" = ( /obj/effect/turf_decal/siding/white, /obj/item/kirbyplants/organic/plant21{ @@ -35869,6 +37590,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"kfI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos) "kfO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/box/corners{ @@ -35881,54 +37608,53 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/plating, /area/station/maintenance/solars/port/aft) -"kgf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "kgg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kgi" = ( +"kgr" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/door/airlock/public/glass{ + name = "Abandoned Hallway" }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"kgo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "kgE" = ( /obj/structure/ladder, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"kgM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "khi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/carpet, /area/station/command/corporate_showroom) +"khk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "khm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/glass, /area/station/maintenance/port) -"khn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "kho" = ( /obj/structure/ladder, /turf/open/floor/plating, @@ -35952,7 +37678,7 @@ }, /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "khF" = ( /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, @@ -36024,24 +37750,19 @@ }, /turf/open/floor/plating/airless, /area/station/maintenance/starboard/aft) -"kiA" = ( -/obj/structure/musician/piano, -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) -"kiE" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "kiS" = ( /obj/structure/lattice, /turf/open/openspace, /area/station/hallway/primary/aft) -"kiT" = ( -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"kiY" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/spawner/random/entertainment/coin, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "kje" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -36050,6 +37771,10 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"kjg" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "kjh" = ( /obj/structure/table, /obj/item/restraints/handcuffs{ @@ -36058,6 +37783,15 @@ /obj/structure/sign/poster/ripped/directional/north, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"kjn" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 5; + pixel_x = -7 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "kjq" = ( /obj/structure/cable, /obj/effect/turf_decal/weather/snow, @@ -36066,6 +37800,10 @@ /obj/item/clothing/glasses/cold, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/medical/coldroom) +"kjr" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/station/maintenance/starboard) "kjF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/junction/yjunction{ @@ -36080,40 +37818,37 @@ dir = 4 }, /area/station/science/ordnance/storage) -"kjN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kjQ" = ( -/obj/structure/chair/office, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/floor, -/turf/open/floor/iron/dark/small, -/area/station/command/heads_quarters/ce) "kka" = ( /obj/effect/turf_decal/tile/dark_green{ - dir = 8 + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "kkd" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 }, -/obj/effect/turf_decal/tile/dark_green{ - dir = 1 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"kkn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/urinal/directional/north, +"kki" = ( +/obj/item/pushbroom, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"kkw" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/aft) "kkC" = ( /obj/effect/turf_decal/trimline/red/corner{ dir = 4 @@ -36146,19 +37881,15 @@ /obj/machinery/computer/security/telescreen/rd/directional/east, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"kkM" = ( -/obj/effect/turf_decal/siding, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, +"kkQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 9 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "kkT" = ( /obj/structure/railing/corner/end/flip{ dir = 4 @@ -36206,6 +37937,12 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"klh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kll" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 4 @@ -36215,15 +37952,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/service/library) -"klx" = ( -/obj/structure/table, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/spawner/random/techstorage/rnd_secure_all, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "kly" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -36234,6 +37962,30 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"klA" = ( +/obj/machinery/button/door/directional/south{ + id = "ceprivacy"; + name = "Privacy Shutters Control"; + pixel_y = -2; + pixel_x = -7 + }, +/obj/machinery/button/door/directional/west{ + id = "transitlockdown"; + name = "Transit Tube Lockdown"; + pixel_x = 7; + pixel_y = -2 + }, +/obj/machinery/button/door{ + id = "securestoragecw"; + name = "Secure Storage"; + pixel_y = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding/yellow/end{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "klB" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -36269,6 +38021,17 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) +"klQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"klU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/closet/secure_closet/miner, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "kmh" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner/end/flip{ @@ -36276,11 +38039,25 @@ }, /turf/open/space/openspace, /area/space/nearstation) -"kmm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/engineering/lobby) +"kml" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/effect/spawner/random/bedsheet{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/station/commons/dorms) +"kmv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"kmz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "kmD" = ( /obj/machinery/light_switch/directional/north, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -36307,7 +38084,7 @@ preset_destination_names = list("2"="AI Maintenance","3"="AI Stowed") }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kmH" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -36317,27 +38094,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/science/explab) -"kmL" = ( -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/plunger{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kmQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "kmS" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 @@ -36348,15 +38104,18 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/station/security/brig) -"kmY" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance, -/turf/open/space/basic, -/area/space/nearstation) +"kmT" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Incinerator"; + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kmZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "knf" = ( /obj/machinery/light/floor{ color = "#66ccff" @@ -36378,6 +38137,13 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"knp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/machinery/duct, +/obj/structure/sign/departments/maint/directional/east, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "knq" = ( /obj/effect/turf_decal/tile/dark/half/contrasted{ dir = 1 @@ -36395,7 +38161,7 @@ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kns" = ( /obj/effect/spawner/random/maintenance/two, /obj/structure/rack, @@ -36430,8 +38196,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/autoname/directional/east, +/obj/machinery/light/directional/east, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "knI" = ( @@ -36445,9 +38210,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"knN" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) +"knT" = ( +/obj/machinery/light/directional/north, +/turf/open/openspace, +/area/station/service/kitchen) +"knW" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/plating, +/area/station/engineering/transit_tube) "knY" = ( /obj/structure/flora/tree/jungle/small, /obj/structure/flora/bush/sparsegrass/style_random, @@ -36473,12 +38243,6 @@ /obj/effect/spawner/random/trash/graffiti, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/science/explab) "kow" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -36489,22 +38253,28 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"koC" = ( -/obj/structure/table, -/obj/item/flashlight/lamp{ - pixel_y = 10 +"kox" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 }, -/obj/item/folder/yellow{ - pixel_x = 4 +/obj/effect/turf_decal/siding/yellow{ + dir = 6 }, /turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/engineering/atmos/upper) "koE" = ( /obj/structure/railing/corner{ dir = 1 }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"koH" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/hangover, +/obj/machinery/duct, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "koM" = ( /obj/structure/table/wood/poker, /obj/machinery/light/directional/south, @@ -36534,6 +38304,10 @@ dir = 4 }, /area/station/cargo/bitrunning/den) +"kpl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "kpz" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -36554,6 +38328,21 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) +"kpF" = ( +/obj/structure/railing, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -12; + pixel_y = 7 + }, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/private) "kpS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -36593,14 +38382,13 @@ /obj/effect/decal/cleanable/confetti, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"kqk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 +"kqh" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) "kqm" = ( /obj/structure/cable, @@ -36614,37 +38402,25 @@ }, /turf/open/floor/wood/large, /area/station/command/heads_quarters/cmo) -"kqt" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, +"kqs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"kqu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, /turf/open/floor/iron, /area/station/commons/dorms) "kqv" = ( /turf/closed/wall/r_wall, /area/station/maintenance/port/aft) -"kqF" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"kqH" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "kqI" = ( /obj/machinery/photocopier, /turf/open/floor/glass, @@ -36654,25 +38430,13 @@ /obj/structure/railing, /turf/open/openspace, /area/station/medical/medbay/central) -"krk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, +"krs" = ( +/obj/machinery/newscaster/directional/east, /obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"krK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "krL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36682,6 +38446,11 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/brig) +"krM" = ( +/obj/effect/spawner/random/trash/mopbucket, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "krQ" = ( /obj/structure/table/wood, /obj/item/storage/fancy/candle_box{ @@ -36704,7 +38473,7 @@ }, /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ksa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36740,8 +38509,26 @@ "kso" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) +"ksr" = ( +/obj/structure/railing/corner, +/obj/structure/table/wood, +/obj/item/camera{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/tape, +/obj/item/pen/fourcolor{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/private) "kst" = ( /obj/structure/railing, /obj/effect/turf_decal/siding/wood, @@ -36760,11 +38547,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/science/cytology) +"ksJ" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/central/upper) "ksM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/disposal) "ksO" = ( @@ -36809,15 +38597,6 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron, /area/station/science/breakroom) -"kth" = ( -/obj/structure/sign/warning/hot_temp/directional/east, -/obj/machinery/camera/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/engineering/lobby) "kto" = ( /obj/machinery/door/airlock/security{ name = "Armory" @@ -36830,7 +38609,7 @@ name = "Armory" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ktp" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -36846,29 +38625,20 @@ /obj/structure/marker_beacon/burgundy, /turf/open/space/basic, /area/space/nearstation) -"ktt" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "ktu" = ( /obj/item/restraints/legcuffs/beartrap/prearmed, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"ktz" = ( -/obj/structure/table, -/obj/item/lipstick/purple{ - pixel_x = -2; - pixel_y = -2 +"ktD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 }, -/obj/item/clothing/mask/animal/horsehead{ - pixel_x = 4; - pixel_y = 15 +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ktF" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, @@ -36956,6 +38726,39 @@ }, /turf/open/floor/grass, /area/station/science/genetics) +"kuw" = ( +/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"kux" = ( +/obj/machinery/duct, +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) +"kuB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron, +/area/station/maintenance/starboard) +"kuL" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/table, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "kuS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -36964,37 +38767,25 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/central) "kuT" = ( -/obj/structure/sign/directions/engineering/directional/east{ - pixel_y = -1 - }, -/obj/structure/sign/directions/supply/directional/east{ - pixel_y = -7 - }, -/obj/structure/sign/directions/evac/directional/east{ - dir = 1; - pixel_y = 5 +/obj/structure/sign/directions/command/directional/north{ + dir = 4; + pixel_y = 0 }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/hallway/primary/port) +"kuV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port) "kuX" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/interrogation) -"kvb" = ( -/obj/structure/railing/corner, -/obj/structure/railing, -/obj/structure/lattice/catwalk, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"kvl" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/main) "kvm" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -37004,12 +38795,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kvo" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/commons/dorms) "kvq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -37053,6 +38838,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "kvN" = ( @@ -37063,6 +38849,20 @@ }, /turf/open/floor/plating/airless, /area/station/hallway/secondary/entry) +"kvV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"kwb" = ( +/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ + name = "Fuel Pump" + }, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "kwe" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -37129,10 +38929,6 @@ /obj/item/folder, /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) -"kwG" = ( -/obj/machinery/igniter/incinerator_atmos, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) "kwO" = ( /obj/structure/sign/departments/aisat/directional/east, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -37170,6 +38966,13 @@ /obj/structure/table/reinforced/rglass, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) +"kwV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "kwW" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 4 @@ -37185,7 +38988,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kxc" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/glass/coffee{ @@ -37201,6 +39004,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"kxd" = ( +/obj/item/biopsy_tool{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/starboard) "kxf" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; @@ -37230,17 +39041,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/lab) -"kxy" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/turf/open/space/basic, -/area/space/nearstation) -"kxA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"kxx" = ( +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "kxE" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, @@ -37248,10 +39055,10 @@ "kxG" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "kxL" = ( @@ -37261,16 +39068,25 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/cryo) +"kxW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table/reinforced, +/obj/item/pai_card{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = -3; + pixel_x = -5 + }, +/turf/open/openspace, +/area/station/cargo/storage) "kxY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/west, +/obj/effect/spawner/random/trash/graffiti, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"kyg" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "kyi" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating/airless, @@ -37282,6 +39098,15 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"kyp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/south, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "kyq" = ( /obj/structure/ladder, /obj/machinery/airalarm/directional/west, @@ -37338,12 +39163,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"kyZ" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "kza" = ( /obj/machinery/vending/wardrobe/coroner_wardrobe, /obj/structure/extinguisher_cabinet/directional/north, @@ -37357,17 +39176,17 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kzd" = ( /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, /area/station/maintenance/port/greater) "kzf" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L6" +/obj/effect/turf_decal/siding/blue{ + dir = 1 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/openspace, +/area/station/command/meeting_room/council) "kzg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, @@ -37380,6 +39199,16 @@ /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/science/lobby) +"kzy" = ( +/obj/item/trash/can{ + pixel_x = -8 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"kzB" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/hallway/primary/fore) "kzC" = ( /obj/structure/chair{ dir = 4; @@ -37391,12 +39220,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"kzG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) "kzL" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -37405,11 +39228,40 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/science/research) +"kzW" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_x = 12; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "revolution"; + name = "graffiti"; + paint_colour = "#FF0000"; + pixel_y = 32 + }, +/obj/item/ammo_casing/spent{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "kzX" = ( /obj/effect/spawner/random/contraband/prison, /obj/structure/rack, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"kAc" = ( +/obj/effect/spawner/random/structure/tank_holder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "kAh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37423,22 +39275,16 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"kAq" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kAr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +"kAn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "kAu" = ( /obj/structure/lattice/catwalk, /obj/structure/chair/comfy, @@ -37455,10 +39301,13 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, /area/station/commons/vacant_room/office) -"kAV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +"kAQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "kAX" = ( /obj/structure/railing{ dir = 4 @@ -37508,14 +39357,7 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kBo" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/ai/satellite/interior) "kBq" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -37542,11 +39384,39 @@ specialfunctions = 4 }, /obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) +"kBB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Office Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "kBF" = ( /turf/open/floor/engine/hull/air, /area/station/hallway/primary/aft) +"kCa" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/bot_white, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"kCh" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"kCk" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "kCp" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -37558,6 +39428,12 @@ /obj/structure/sign/warning/explosives/directional/west, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"kCz" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "kCE" = ( /obj/structure/table, /obj/item/stock_parts/subspace/treatment, @@ -37596,25 +39472,12 @@ dir = 8 }, /area/station/hallway/primary/fore) -"kDa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "kDc" = ( -/obj/structure/statue/sandstone/venus{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/machinery/wall_healer/directional/north, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "kDe" = ( /obj/structure/altar/of_gods, /obj/structure/noticeboard/directional/north, @@ -37642,7 +39505,9 @@ /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "kDF" = ( /obj/structure/table/reinforced, @@ -37672,12 +39537,27 @@ /obj/structure/barricade/sandbags, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"kEf" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "kEg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kEh" = ( /obj/structure/lattice, /obj/structure/disposalpipe/segment{ @@ -37715,14 +39595,6 @@ dir = 8 }, /area/station/hallway/primary/central) -"kEq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "kEw" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -37733,16 +39605,6 @@ name = "Holodeck Projector Floor" }, /area/station/holodeck/rec_center) -"kEy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/button/door/directional/north{ - id = "abandoned_kitchen" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "kEB" = ( /obj/structure/railing{ dir = 1 @@ -37757,33 +39619,30 @@ /obj/effect/landmark/start/paramedic, /turf/open/floor/glass, /area/station/medical/medbay/central) -"kEF" = ( -/obj/machinery/meter{ - name = "Plasma meter" - }, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "Plasma Multideck Adapter"; - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"kES" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1; - pixel_y = -2 +"kEC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"kEG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ - dir = 6 + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kFa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, /turf/open/openspace, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central/upper) +"kEY" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/commons/locker) "kFc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37795,7 +39654,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kFt" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -37815,13 +39674,21 @@ /obj/structure/curtain, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"kFQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, +"kFN" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"kGg" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight{ + pixel_y = 14 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard/central/upper) "kGD" = ( /obj/machinery/air_sensor/nitrogen_tank, /obj/structure/window/reinforced/plasma/spawner/directional/south, @@ -37855,17 +39722,24 @@ }, /turf/open/openspace, /area/station/maintenance/port) +"kGQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_machine, +/obj/machinery/vending/tool, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) "kGV" = ( /obj/structure/window/reinforced/plasma/spawner/directional/south, /obj/machinery/air_sensor/plasma_tank, /turf/open/floor/engine/plasma, /area/station/engineering/atmos/upper) -"kHj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"kHe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "kHv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37879,35 +39753,49 @@ name = "MiniSat Airlock Access" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kHy" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/multitool{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/hand_labeler_refill{ - pixel_x = 7; - pixel_y = -2 +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/obj/machinery/status_display/evac/directional/north, +/obj/structure/sign/poster/random/directional/north, /turf/open/floor/iron, /area/station/cargo/storage) +"kHD" = ( +/obj/effect/turf_decal/tile/dark_green/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 4; + name = "Ports To Space" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"kHF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"kHH" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "kHU" = ( /obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kHY" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) "kHZ" = ( /obj/effect/spawner/random/medical/supplies, /obj/structure/table, @@ -37918,6 +39806,17 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/hallway/primary/aft) +"kIr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron, +/area/station/commons/dorms) "kIt" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -37926,12 +39825,9 @@ /turf/open/floor/iron/dark, /area/station/medical/medbay/central) "kIw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/mail_sorting/supply/cargo_bay, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1 +/obj/effect/turf_decal/trimline/brown/filled, +/obj/structure/chair/office/light{ + dir = 8 }, /turf/open/floor/iron, /area/station/cargo/storage) @@ -37949,6 +39845,21 @@ }, /turf/open/floor/carpet, /area/station/security/detectives_office) +"kID" = ( +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) +"kIE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"kIL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/obj/structure/sign/poster/official/pda_ad/directional/west, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "kIW" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -37960,6 +39871,13 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"kJk" = ( +/obj/structure/chair/stool/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"kJl" = ( +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "kJw" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -37968,6 +39886,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"kJz" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "kJF" = ( /obj/structure/table, /obj/item/stock_parts/subspace/ansible, @@ -37981,6 +39904,12 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) +"kJG" = ( +/obj/structure/sink/kitchen/directional/east{ + name = "sink" + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "kJI" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /turf/closed/wall/r_wall, @@ -38035,18 +39964,43 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron, /area/station/science/breakroom) +"kKn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "kKw" = ( /obj/structure/lattice/catwalk, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/construction) -"kKy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/water, -/area/station/maintenance/starboard/fore) +"kKB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) +"kKG" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "kKH" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) @@ -38056,16 +40010,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/cafeteria) -"kKQ" = ( -/obj/machinery/power/emitter{ - dir = 4 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/engine, -/area/station/engineering/break_room) "kKR" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -38073,6 +40017,16 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) +"kKU" = ( +/obj/item/book/granter/action/spell/smoke/lesser{ + name = "mysterious old book of cloud-chasing" + }, +/obj/structure/table/wood, +/obj/structure/light_construct/directional/east{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "kLe" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -38124,16 +40078,6 @@ }, /turf/open/floor/wood, /area/station/command/corporate_showroom) -"kLV" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "kMd" = ( /obj/item/solar_assembly, /obj/item/solar_assembly, @@ -38218,6 +40162,13 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/port) +"kMF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "kMI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/fax{ @@ -38241,9 +40192,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"kNc" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/lobby) "kNf" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"kNj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "kNl" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -38258,14 +40223,20 @@ }, /turf/open/floor/iron/textured, /area/station/security/brig) -"kNB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/elevator/directional/east{ - id = "catwalk_atmos"; - name = "Elevator Button" +"kNE" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 }, -/turf/open/floor/engine, -/area/station/engineering/atmos/upper) +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "kNI" = ( /obj/structure/lattice/catwalk, /obj/effect/decal/cleanable/glass, @@ -38286,6 +40257,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"kOi" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/emcloset, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) +"kOj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/dark/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "kOk" = ( /turf/closed/wall/r_wall, /area/station/engineering/lobby) @@ -38299,6 +40284,14 @@ /obj/effect/mapping_helpers/airlock/access/all/science/general, /turf/open/floor/plating, /area/station/science/research) +"kOo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "kOv" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, @@ -38326,6 +40319,10 @@ /obj/effect/decal/cleanable/plasma, /turf/open/floor/iron, /area/station/construction/storage_wing) +"kOK" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/plating/airless, +/area/station/maintenance/aft) "kOO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -38365,6 +40362,13 @@ }, /turf/open/floor/plating, /area/station/cargo/storage) +"kPe" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/duct, +/turf/open/floor/grass, +/area/station/commons/dorms) "kPg" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -38380,15 +40384,28 @@ /obj/machinery/light/small/red/dim/directional/west, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) -"kPF" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +"kPC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"kPD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/item/mop, +/obj/item/grenade/chem_grenade/cleaner, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"kPF" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "kPH" = ( /obj/machinery/firealarm/directional/west, /obj/structure/filingcabinet/chestdrawer, @@ -38401,19 +40418,14 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) -"kPL" = ( -/obj/effect/landmark/transport/transport_id{ - specific_transport_id = "catwalk_engi" - }, -/obj/structure/transport/linear{ - radial_travel = 0 - }, -/turf/open/openspace, -/area/station/engineering/break_room) "kPN" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/checkpoint/customs) +"kPO" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "kPQ" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -38441,6 +40453,16 @@ }, /turf/open/openspace, /area/station/command/gateway) +"kPR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kPX" = ( +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "kPZ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -38463,19 +40485,7 @@ /obj/structure/toilet, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"kQf" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/rack, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/under/color/red, -/obj/item/clothing/neck/tie/red{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/soft/red, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/area/station/ai/satellite/foyer) "kQn" = ( /obj/structure/sign/picture_frame/portrait{ pixel_y = 33 @@ -38486,17 +40496,6 @@ /obj/structure/table, /turf/open/floor/iron/dark/smooth_edge, /area/station/service/library) -"kQy" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "kQC" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line, /obj/effect/turf_decal/tile/dark_blue{ @@ -38505,11 +40504,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/cytology) -"kQD" = ( -/obj/effect/spawner/structure/window, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "kQE" = ( /obj/item/flashlight/lamp/green{ pixel_y = 5 @@ -38521,21 +40515,6 @@ }, /turf/open/floor/carpet/cyan, /area/station/command/heads_quarters/cmo) -"kQV" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kRd" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "kRf" = ( /obj/structure/cable/layer3, /obj/structure/cable, @@ -38545,7 +40524,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "kRk" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -38558,6 +40537,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"kRv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kRD" = ( /obj/effect/spawner/random/vending/snackvend, /obj/structure/disposalpipe/segment{ @@ -38591,10 +40574,21 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"kRX" = ( +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/maintenance/aft) "kSg" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/iron/stairs/medium, /area/station/science/cytology) +"kSk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) "kSo" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -38614,10 +40608,11 @@ dir = 4 }, /obj/structure/sign/plaques/kiddie{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kSD" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end{ dir = 1 @@ -38626,35 +40621,31 @@ /obj/structure/flora/bush/jungle/b/style_2, /turf/open/floor/grass/fairy, /area/station/maintenance/hallway/abandoned_recreation) -"kSL" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/lobby) -"kSN" = ( -/obj/structure/railing{ - dir = 6 +"kSI" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + name = "SS13: Common Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/meta; + shuttle_id = "commonmining_home"; + width = 7 }, -/turf/open/floor/grass, -/area/station/hallway/primary/starboard) +/turf/open/floor/plating, +/area/station/hallway/secondary/construction) "kSP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"kSS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 8 +"kSR" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "kSY" = ( /obj/structure/table, /obj/item/blood_filter{ @@ -38669,22 +40660,23 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/wood/large, /area/station/hallway/primary/central) +"kTe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/engineering/lobby) "kTi" = ( /turf/open/floor/engine/vacuum, /area/station/science/ordnance/bomb) -"kTq" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) +"kTm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "kTw" = ( /turf/closed/wall/r_wall, /area/station/security/brig) @@ -38718,33 +40710,24 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"kTN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/item/storage/medkit/toxin, -/obj/structure/table, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +"kTQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "kTW" = ( /obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) -"kUf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 +"kUk" = ( +/obj/effect/turf_decal/siding{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"kUp" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark/small, -/area/station/command/heads_quarters/ce) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "kUq" = ( /turf/closed/wall/r_wall, /area/station/maintenance/port) @@ -38767,14 +40750,14 @@ "kUO" = ( /turf/open/openspace, /area/station/security/courtroom) -"kUW" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 1; - initialize_directions = 1 +"kVf" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) "kVj" = ( /obj/effect/turf_decal/bot_white, /turf/open/floor/iron/dark/textured_large, @@ -38824,10 +40807,10 @@ name = "Medbay Maintenance" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/medical/abandoned) "kVV" = ( @@ -38872,18 +40855,14 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/cargo/storage) -"kWo" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 +"kWp" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "kWr" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -38891,17 +40870,16 @@ }, /turf/open/floor/iron, /area/station/science/explab) -"kWx" = ( -/obj/structure/table/reinforced, -/obj/item/wirecutters, -/obj/item/screwdriver, -/obj/item/stack/cable_coil, -/obj/item/crowbar, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"kWs" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"kWv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "kWF" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/iv_drip, @@ -38913,6 +40891,13 @@ }, /turf/open/floor/iron/white, /area/station/medical/patients_rooms/room_a) +"kWL" = ( +/obj/item/cigbutt{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "kWO" = ( /obj/structure/broken_flooring/singular/directional/east, /turf/open/floor/plating, @@ -38926,21 +40911,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kXa" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor/heavy, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"kXt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/area/station/ai/satellite/interior) "kXB" = ( /obj/effect/turf_decal/delivery, /obj/structure/table, @@ -38966,14 +40937,16 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron, /area/station/science/lab) -"kXT" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" +"kXW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/station/engineering/storage_shared) +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "kYd" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -38981,16 +40954,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/robotics) -"kYe" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) "kYf" = ( /turf/open/floor/engine/o2, /area/station/engineering/atmos/upper) @@ -38998,10 +40961,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured_large, /area/station/science/robotics/lab) +"kYk" = ( +/obj/structure/girder, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"kYz" = ( +/obj/structure/sign/warning/yes_smoking/circle/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "kYK" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"kYM" = ( +/obj/structure/table/reinforced, +/obj/item/toy/redbutton{ + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "kYN" = ( /obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, @@ -39031,11 +41011,19 @@ /obj/structure/flora/rock/pile/jungle/style_5, /obj/structure/flora/grass/jungle/b/style_5, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kZo" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"kZq" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "kZs" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -39051,6 +41039,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"kZw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "kZV" = ( /obj/machinery/door/airlock/security/glass{ name = "Courtroom Access" @@ -39083,43 +41078,6 @@ /obj/structure/broken_flooring/side/always_floorplane/directional/north, /turf/open/floor/carpet/blue, /area/station/maintenance/port/aft) -"lag" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) -"lai" = ( -/obj/effect/mine/explosive, -/obj/effect/decal/cleanable/wrapping{ - pixel_y = 3 - }, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/stack/package_wrap{ - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"laj" = ( -/obj/item/book/granter/action/spell/smoke/lesser{ - name = "mysterious old book of cloud-chasing" - }, -/obj/structure/table/wood, -/obj/structure/light_construct/directional/east{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"lan" = ( -/obj/machinery/door/airlock/engineering/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "lav" = ( /obj/machinery/power/shieldwallgen/xenobiologyaccess, /obj/structure/window/reinforced/spawner/directional/south, @@ -39133,10 +41091,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) +"laz" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "laB" = ( /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"laC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) "laD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39146,44 +41122,12 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"laK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "laO" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/space/openspace, /area/space/nearstation) -"laQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lbe" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/lab) "lbh" = ( /obj/structure/chair{ dir = 8 @@ -39197,6 +41141,21 @@ }, /turf/open/floor/iron/chapel, /area/station/service/chapel) +"lbk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard) +"lbp" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "lbw" = ( /obj/structure/closet/lasertag, /obj/effect/decal/cleanable/dirt, @@ -39223,26 +41182,17 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"lbN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"lbJ" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/maintenance/aft) "lbT" = ( -/obj/effect/turf_decal/siding/green, /obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/smooth_large, +/obj/effect/turf_decal/tile/dark_green{ + dir = 8 + }, +/turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"lbW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "lca" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/medical/virology, @@ -39252,6 +41202,15 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"lcb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) "lce" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39268,38 +41227,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"lcx" = ( -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"lcy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lcE" = ( -/obj/structure/lattice/catwalk, -/obj/structure/closet/emcloset, -/obj/effect/spawner/random/maintenance, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"lcN" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "lcO" = ( /obj/structure/table, /obj/item/clothing/suit/hazardvest, /turf/open/floor/wood, /area/station/commons/storage/tools) +"lcS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "lcU" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /obj/machinery/meter, @@ -39320,19 +41257,49 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"ldp" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/sorting) +"ldr" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/structure/grille, +/obj/structure/grille/broken, +/turf/open/space/openspace, +/area/space/nearstation) "ldv" = ( /obj/machinery/status_display/ai/directional/south, /obj/structure/closet/emcloset, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"ldL" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/virology) "ldN" = ( /obj/structure/lattice/catwalk, /obj/machinery/oven/range, /turf/open/openspace, /area/station/service/kitchen) +"ldV" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "ldX" = ( /obj/machinery/door/airlock{ - id_tag = "commissarydoor"; + id_tag = "officecommissarydoor"; name = "Vacant Office" }, /obj/effect/turf_decal/tile/green/fourcorners, @@ -39356,11 +41323,10 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) "leu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "ley" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -39423,9 +41389,6 @@ /turf/open/floor/plating, /area/station/engineering/transit_tube) "leR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "leS" = ( @@ -39434,91 +41397,65 @@ /area/station/science/breakroom) "leT" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/structure/closet/wardrobe/miner, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 + dir = 8 }, +/obj/machinery/vending/wardrobe/cargo_wardrobe, /turf/open/floor/iron, -/area/station/cargo/miningoffice) -"lff" = ( -/obj/machinery/power/terminal{ - dir = 1; - cable_layer = 1 - }, -/obj/structure/cable/multilayer/layer1, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) +/area/station/cargo/storage) "lfi" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lfl" = ( /obj/machinery/camera/autoname/directional/west, /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/medical/medbay/central) -"lfx" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/service/chapel) "lfD" = ( /obj/structure/cable, /obj/machinery/power/smes/full, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"lfG" = ( -/obj/structure/stairs/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/stairs/medium, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/chamber) "lfK" = ( /obj/structure/ladder, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"lfT" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/starboard/aft) +"lfX" = ( +/obj/machinery/light/directional/south, +/obj/structure/lattice/catwalk, +/obj/machinery/airalarm/directional/south, +/turf/open/openspace, +/area/station/security/checkpoint/supply) "lgb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/commons/storage/primary) -"lge" = ( -/turf/open/floor/wood, -/area/station/engineering/lobby) +"lgg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "abandoned_kitchen"; + name = "Kitchen Shudders"; + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "lgi" = ( /obj/structure/chair/office, /turf/open/floor/carpet/stellar, /area/station/service/library) "lgo" = ( -/obj/item/storage/box/silver_ids{ - pixel_x = -4; - pixel_y = 21 - }, -/obj/item/storage/box/ids{ - pixel_x = -14; - pixel_y = 15 - }, -/obj/item/storage/box/pdas{ - pixel_x = 8; - pixel_y = 17 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "lgt" = ( /obj/structure/ladder, @@ -39531,15 +41468,20 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"lgx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "lgA" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space/openspace, /area/space/nearstation) -"lgF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/gravity_generator) +"lgC" = ( +/obj/machinery/light/small/directional/west, +/turf/open/openspace, +/area/station/engineering/storage/tech) "lgK" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -39547,10 +41489,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/white, /area/station/medical/office) -"lgN" = ( -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "lgV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -39564,15 +41502,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/construction/storage_wing) -"lgZ" = ( -/obj/item/pickaxe{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "lhg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39583,23 +41512,31 @@ /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/machinery/computer/cargo/request{ - dir = 8 +/obj/machinery/light/directional/east, +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 }, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/green/opposingcorners{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 1 }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"lhq" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "lhw" = ( /turf/open/floor/glass/reinforced, /area/station/science/ordnance) "lhy" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/event_spawn, @@ -39614,15 +41551,28 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"lhY" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" +"lhJ" = ( +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/obj/structure/railing{ +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) +"lhP" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) +"lhR" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"lhY" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, /turf/open/floor/iron, /area/station/cargo/miningoffice) "lia" = ( @@ -39639,16 +41589,17 @@ /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark/textured_large, /area/station/science/robotics/lab) +"lik" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/locker) "lim" = ( /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"lio" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) "liy" = ( /obj/item/kirbyplants/random, /obj/item/radio/intercom/directional/south, @@ -39660,6 +41611,10 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"liE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) "liH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/graffiti, @@ -39671,14 +41626,32 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"liY" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room" +"liN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/firecloset, +/obj/structure/sign/warning/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"liP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Virology Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, -/area/station/engineering/atmos/project) +/area/station/maintenance/port) +"lja" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "ljc" = ( /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) @@ -39687,10 +41660,6 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/hallway/secondary/entry) -"ljh" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/turf/open/openspace, -/area/station/engineering/lobby) "lji" = ( /turf/closed/wall/r_wall, /area/station/security/evidence) @@ -39733,15 +41702,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/office) -"ljW" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargocatwalkmaint" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "ljY" = ( /obj/structure/lattice/catwalk, /obj/item/clothing/mask/gas/clown_hat{ @@ -39759,11 +41719,21 @@ /obj/structure/closet/crate/cardboard, /turf/open/openspace, /area/station/maintenance/port/aft) +"lkf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "lkj" = ( -/obj/structure/lattice/catwalk, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, /obj/structure/cable, -/turf/open/water, -/area/station/maintenance/port/fore) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) "lkt" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -39782,19 +41752,12 @@ /area/station/security/prison/mess) "lkC" = ( /obj/machinery/light/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "lkP" = ( /obj/effect/turf_decal/bot/right, /turf/open/floor/engine/hull, /area/space/nearstation) -"lkT" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - co2 Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos/upper) "lkY" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/decal/cleanable/dirt, @@ -39806,23 +41769,26 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/medical/patients_rooms/room_a) -"llh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 +"llf" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/east, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 7 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/yellow, +/obj/item/stack/package_wrap, /turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/commons/storage/primary) "lll" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" + }, +/obj/structure/cable, /turf/open/floor/plating, /area/station/command/heads_quarters/captain/private) -"llv" = ( -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/port/fore) "llA" = ( /obj/machinery/door/airlock/external{ name = "Arrival Airlock"; @@ -39833,6 +41799,16 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"llC" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/analyzer, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "llD" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -39843,21 +41819,51 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"llG" = ( +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/meter{ + name = "N2O meter" + }, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "N2O Multideck Adapter"; + dir = 2 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "llK" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, /turf/open/floor/iron/freezer, /area/station/engineering/atmos/pumproom) +"llM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"llO" = ( +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/obj/machinery/elevator_control_panel/directional/south{ + linked_elevator_id = "catwalk_engi"; + preset_destination_names = list("2"="Lower Engine","3"="Upper Engine.") + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "llP" = ( -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 }, -/obj/docking_port/stationary/mining_home{ +/obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "llY" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -39880,27 +41886,15 @@ }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"lmt" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"lmv" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 +"lmn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "lmz" = ( /obj/machinery/conveyor{ dir = 4; @@ -39910,36 +41904,24 @@ id = "Disposal Exit"; name = "Disposal Exit Vent" }, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "lmA" = ( -/obj/structure/table/wood, -/obj/item/melee/chainofcommand, -/obj/machinery/recharger{ - pixel_y = 4 - }, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "lmB" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port) "lmH" = ( /obj/machinery/portable_atmospherics/canister, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"lmI" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/lobby) "lmL" = ( /obj/structure/chair/sofa/left/brown, /obj/item/instrument/guitar{ @@ -39947,6 +41929,12 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"lmR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 9 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "lmT" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/glass/reinforced, @@ -39958,16 +41946,6 @@ /area/station/security/detectives_office/private_investigators_office) "lnd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/science/directional/west{ - pixel_y = -6 - }, -/obj/structure/sign/directions/supply/directional/west{ - dir = 1 - }, -/obj/structure/sign/directions/engineering/directional/west{ - dir = 1; - pixel_y = 6 - }, /obj/effect/landmark/start/hangover, /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron, @@ -39976,6 +41954,13 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/service/chapel) +"lnm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "lnv" = ( /obj/machinery/status_display/supply, /turf/closed/wall, @@ -39984,6 +41969,11 @@ /obj/machinery/light/cold/directional/west, /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) +"lnB" = ( +/obj/structure/sign/warning/docking/directional/south, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) "lnC" = ( /obj/machinery/light/directional, /obj/structure/railing{ @@ -39991,6 +41981,20 @@ }, /turf/open/floor/iron/dark, /area/station/security/range) +"lnE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=17-Dorms"; + location = "16-Laundry" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/commons/dorms) "lnH" = ( /obj/structure/railing{ dir = 1 @@ -39999,16 +42003,11 @@ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"lnO" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) "lnV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/layer3, @@ -40017,9 +42016,15 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"lnZ" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "loc" = ( -/obj/machinery/photocopier/prebuilt, /obj/machinery/light_switch/directional/south{ pixel_x = 3; pixel_y = -27 @@ -40028,27 +42033,26 @@ /obj/machinery/firealarm/directional/south{ pixel_x = -6 }, -/turf/open/floor/carpet, +/obj/structure/table/wood, +/obj/item/storage/box/ids{ + pixel_x = -14; + pixel_y = 8 + }, +/obj/item/storage/box/silver_ids{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/storage/box/pdas{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "lof" = ( /obj/structure/chair/office, /obj/effect/landmark/start/librarian, /turf/open/floor/wood, /area/station/service/library/printer) -"loh" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"lom" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "lon" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -40062,14 +42066,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/openspace, /area/station/science/research) -"loB" = ( -/obj/machinery/suit_storage_unit/medical, -/obj/effect/turf_decal/bot_white{ - color = "#52B4E9" - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/storage) +"loz" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "loI" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -40079,6 +42079,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"loJ" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "loN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/multilayer/multiz, @@ -40086,7 +42092,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "loO" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -40122,6 +42128,29 @@ /obj/structure/fake_stairs/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"lps" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lpw" = ( +/obj/structure/sign/poster/contraband/power/directional/north, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"lpA" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/maintenance, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) +"lpE" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "lpG" = ( /obj/machinery/door/poddoor/massdriver_chapel, /obj/machinery/atmos_shield_gen/active{ @@ -40132,6 +42161,23 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"lpW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/openspace, +/area/station/medical/virology) +"lpX" = ( +/obj/machinery/duct, +/obj/structure/sign/departments/maint/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"lqa" = ( +/obj/machinery/rnd/production/protolathe/department/engineering, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "lqd" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -40146,6 +42192,12 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"lqf" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/o2{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "lqg" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -40166,13 +42218,16 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"lqv" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/pipedispenser/disposal, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"lqw" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "lqA" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -40183,11 +42238,14 @@ /turf/open/floor/iron/smooth, /area/station/engineering/main) "lqB" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/effect/landmark/firealarm_sanity, -/turf/open/openspace, -/area/station/hallway/primary/central) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/computer/accounting{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) "lqD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -40232,37 +42290,18 @@ /turf/open/floor/engine, /area/station/science/xenobiology) "lqS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 4; - pixel_y = 11 +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "lqZ" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/medical/office) -"lrb" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lrl" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "O2 Multideck Adapter"; - dir = 8 - }, -/obj/machinery/meter{ - name = "O2 meter" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "lrp" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -40289,14 +42328,21 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"lrT" = ( -/turf/open/floor/glass, -/area/station/maintenance/starboard/lesser) -"lse" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, +"lrX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/engineering/supermatter/room/upper) +"lrZ" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"lsa" = ( +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "lsg" = ( /obj/machinery/door/window/brigdoor/security/cell/left/directional/east{ id = "Cell 2"; @@ -40308,10 +42354,51 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"lsl" = ( +/obj/machinery/mecha_part_fabricator/maint{ + name = "forgotten exosuit fabricator"; + drop_direction = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "lsp" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/glass/reinforced/airless, /area/station/solars/starboard/aft) +"lst" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) +"lsu" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) +"lsv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) +"lsy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "lsA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -40320,17 +42407,6 @@ "lsQ" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"lsV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname/directional/east, -/obj/machinery/light_switch/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) "lsW" = ( /obj/structure/table, /obj/effect/spawner/random/maintenance, @@ -40355,13 +42431,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/medical/break_room) -"ltG" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/atmos/project) +"ltF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "ltQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40383,6 +42459,11 @@ "lul" = ( /turf/closed/wall/r_wall, /area/space/nearstation) +"lum" = ( +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) "luw" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -40415,20 +42496,24 @@ "luY" = ( /turf/closed/wall, /area/station/commons/storage/art) +"lva" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "space-outpost" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "lvj" = ( /obj/machinery/status_display/ai/directional/north, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/engine/hull/air, -/area/station/command/meeting_room/council) -"lvv" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/machinery/computer/rdconsole/unlocked, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "lvE" = ( -/obj/machinery/roulette, +/obj/machinery/modular_computer/preset/id{ + dir = 4 + }, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) "lvR" = ( @@ -40443,11 +42528,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/station/commons/storage/primary) -"lwe" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/engine, -/area/station/engineering/atmos/upper) "lwf" = ( /turf/open/floor/glass, /area/station/security/brig) @@ -40458,11 +42538,14 @@ /turf/open/floor/iron/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lwu" = ( /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"lwA" = ( +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "lwB" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -40477,14 +42560,10 @@ /turf/open/floor/iron/white/smooth_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lwJ" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/red, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "lxa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40495,6 +42574,18 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"lxb" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "lxh" = ( /obj/machinery/newscaster/directional/north, /obj/machinery/deepfryer, @@ -40516,6 +42607,12 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"lxq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "lxs" = ( /obj/effect/turf_decal/trimline/yellow/corner, /obj/item/storage/toolbox/electrical{ @@ -40537,6 +42634,15 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) +"lxy" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/service_all, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "lxz" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/machinery/power/smes{ @@ -40544,16 +42650,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"lxJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"lxN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/foyer) "lxQ" = ( /obj/machinery/smartfridge/extract/preloaded, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -40571,11 +42668,22 @@ /obj/machinery/light/small/blacklight/directional/north, /turf/open/floor/carpet/stellar, /area/station/maintenance/hallway/abandoned_recreation) +"lxV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "lxW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/light/directional/west, /obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 + dir = 8 }, -/obj/structure/closet/secure_closet/miner, /turf/open/floor/iron, /area/station/cargo/miningoffice) "lxY" = ( @@ -40586,37 +42694,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"lyd" = ( -/obj/structure/broken_flooring/corner/directional/east, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "lys" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/floor/engine, /area/station/service/hydroponics) -"lyw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/table, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +"lyv" = ( +/turf/open/floor/plating/elevatorshaft, +/area/station/engineering/atmos) "lyx" = ( /obj/machinery/door/window/brigdoor/security/cell/left/directional/east{ id = "Cell 3"; @@ -40645,7 +42729,23 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) +"lyM" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Project Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) +"lyO" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "lyP" = ( /obj/structure/railing/corner, /obj/structure/cable, @@ -40671,13 +42771,38 @@ }, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"lzg" = ( +/obj/structure/table, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/stamp/granted{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "lzk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "lzp" = ( /obj/machinery/light_switch/directional/east, @@ -40686,16 +42811,20 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) -"lzG" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 +/area/station/ai/upload/chamber) +"lzy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"lzH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/station/maintenance/aft) "lzO" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 @@ -40719,17 +42848,12 @@ }, /turf/open/floor/iron/dark/textured_half, /area/station/medical/surgery) -"lzZ" = ( -/obj/item/statuebust{ - pixel_y = 12 - }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) "lAf" = ( /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) "lAg" = ( /obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "lAl" = ( @@ -40743,6 +42867,13 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) +"lAo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "lAs" = ( /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, @@ -40755,11 +42886,6 @@ /obj/item/circuitboard/aicore, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"lAE" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "lAF" = ( /obj/machinery/light/warm/dim/directional/south, /obj/effect/turf_decal/tile/dark_green{ @@ -40796,10 +42922,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"lAJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "lAN" = ( /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) @@ -40825,8 +42947,9 @@ id = "CargowatchShutter"; name = "Outside Shutter" }, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/area/station/command/heads_quarters/qm) "lAS" = ( /obj/structure/transit_tube/horizontal, /obj/structure/lattice/catwalk, @@ -40882,28 +43005,12 @@ }, /turf/open/floor/iron, /area/station/science/lobby) -"lBo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/pen/blue{ - pixel_x = -9; - pixel_y = 9 - }, -/obj/structure/fluff/paper/stack{ - desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; - dir = 1 +"lBy" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 }, -/obj/structure/fluff/paper/corner, -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lBw" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/purple/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "lBA" = ( /obj/structure/table/reinforced/rglass, /obj/item/mod/module/plasma_stabilizer{ @@ -40920,33 +43027,10 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"lBF" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lBQ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/fax{ - fax_name = "Engineering Lobby"; - name = "Engineering Lobby Fax Machine" - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) -"lBS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"lBD" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "lBX" = ( /obj/machinery/quantum_server, /obj/effect/decal/cleanable/dirt/dust, @@ -40961,15 +43045,6 @@ /obj/item/paperplane/syndicate, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"lCf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "lCl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/west, @@ -40977,16 +43052,6 @@ /obj/structure/closet/crate/trashcart/filled, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"lCw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "lCX" = ( /obj/structure/railing{ dir = 1 @@ -40997,6 +43062,27 @@ /obj/effect/turf_decal/tile/dark_red, /turf/open/floor/iron/dark, /area/station/science/cytology) +"lCY" = ( +/obj/structure/table, +/obj/item/paper{ + pixel_y = 4 + }, +/obj/item/phone{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/stamp/granted{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/machinery/computer/security/telescreen/aiupload/directional/north, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/station/ai/upload/foyer) "lDc" = ( /turf/closed/wall, /area/station/security/prison) @@ -41019,7 +43105,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lDj" = ( /obj/structure/chair/office{ dir = 1 @@ -41047,28 +43133,41 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lDE" = ( /turf/closed/wall, /area/station/commons/vacant_room/commissary) +"lDH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"lDI" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/lobby) +"lEd" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/openspace, +/area/station/commons/toilet/restrooms) "lEe" = ( /obj/structure/bed/medical/emergency, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"lEf" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"lEi" = ( -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 1 +"lEl" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"lEm" = ( +/obj/machinery/roulette, +/obj/effect/turf_decal/delivery/white{ + color = "#ff6600" }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "lEo" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ @@ -41082,17 +43181,9 @@ dir = 4 }, /area/station/hallway/primary/fore) -"lEy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/closet/radiation, -/turf/open/openspace, -/area/station/engineering/atmos/project) "lEB" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/service/library) "lEC" = ( @@ -41119,24 +43210,11 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"lEJ" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "SM_shutters"; - name = "Supermatter Radiation Shutters" - }, -/obj/structure/cable/layer1, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"lEO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/port) +"lEH" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "lEP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/directions/lavaland/directional/south, @@ -41193,7 +43271,10 @@ }, /obj/structure/sign/poster/official/nanotrasen_logo/directional/north, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"lFF" = ( +/turf/open/floor/wood, +/area/station/maintenance/starboard) "lFH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -41209,13 +43290,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/library/printer) -"lFW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "lFZ" = ( /obj/machinery/power/terminal{ dir = 1 @@ -41226,7 +43300,7 @@ name = "AI Chamber Requests Console" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lGy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -41241,18 +43315,39 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 9 }, -/obj/structure/table/reinforced, -/obj/item/pai_card{ - pixel_x = 6; - pixel_y = 12 - }, /obj/machinery/light/directional/west, -/obj/effect/spawner/random/food_or_drink/donkpockets{ - pixel_y = -3; - pixel_x = -5 +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, /turf/open/floor/iron/textured, /area/station/cargo/storage) +"lGC" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Showers" + }, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/engineering/main) +"lGE" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"lGO" = ( +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) "lGT" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -41263,6 +43358,15 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"lGV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "lHa" = ( /obj/structure/bed/medical/emergency, /obj/machinery/iv_drip, @@ -41271,11 +43375,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/medical) -"lHi" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "lHp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -41290,10 +43389,28 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/port) +"lHz" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "lHE" = ( /obj/machinery/holopad, /turf/open/floor/glass, /area/station/service/kitchen) +"lHI" = ( +/obj/structure/chair/office, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "lHK" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -41306,19 +43423,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) -"lHT" = ( -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lHY" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 8 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "lIi" = ( /obj/item/cigbutt{ pixel_x = -12; @@ -41326,24 +43430,6 @@ }, /turf/open/floor/wood, /area/station/maintenance/port/aft) -"lIk" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lIp" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "lIr" = ( /turf/closed/wall, /area/station/maintenance/port/aft) @@ -41351,19 +43437,18 @@ /obj/effect/decal/cleanable/blood/oil/slippery, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"lIC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lIF" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 9 }, -/obj/effect/turf_decal/siding/blue, -/obj/effect/turf_decal/tile/blue/opposingcorners{ +/obj/effect/spawner/random/bureaucracy/paper, +/obj/structure/fluff/paper{ dir = 1 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft) "lIM" = ( /obj/machinery/door/airlock/public/glass{ name = "Courtroom" @@ -41374,6 +43459,11 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) +"lIP" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "lIS" = ( /obj/machinery/door/poddoor/preopen{ id = "cmoprivacy"; @@ -41383,17 +43473,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/command/heads_quarters/cmo) -"lIT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "lJe" = ( /obj/effect/turf_decal/siding/thinplating_new/light/corner, /obj/effect/turf_decal/trimline/purple/corner, @@ -41450,6 +43529,13 @@ }, /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) +"lJK" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) "lJM" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/landmark/start/hangover, @@ -41471,49 +43557,32 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/turf/open/floor/carpet, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) -"lKm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lKl" = ( +/obj/machinery/atmospherics/components/binary/pump/on/pink/visible/layer2{ + dir = 4; + name = "Incinerator Output" }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"lKG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/trunk/multiz, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "lKK" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/engine, /area/station/science/xenobiology) -"lKV" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lKZ" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/oven{ - pixel_y = 3 - }, -/obj/item/circuitboard/machine/oven, -/obj/item/circuitboard/machine/oven{ - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lLa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "lLe" = ( -/obj/machinery/button/door/directional/west{ - id = "Disposal Exit"; - name = "Disposal Vent Control" +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" }, +/obj/effect/turf_decal/stripes/white/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "lLh" = ( @@ -41549,7 +43618,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lLF" = ( /obj/structure/filingcabinet/security, /obj/effect/spawner/random/food_or_drink/booze{ @@ -41559,27 +43628,37 @@ /obj/item/clothing/mask/animal/frog, /turf/open/floor/iron/grimy, /area/station/security/detectives_office/private_investigators_office) +"lLG" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "lLI" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"lLN" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard) "lLR" = ( /obj/machinery/firealarm/directional/north, /obj/structure/sign/poster/official/safety_internals/directional/east, /obj/structure/tank_holder/extinguisher, /turf/open/floor/engine, /area/station/medical/chemistry) -"lLU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ +"lLT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 9 }, -/obj/effect/turf_decal/tile/red{ - dir = 4 +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Waste Release"; + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/engineering/atmos) "lLY" = ( /obj/effect/turf_decal/siding/thinplating_new, /obj/effect/turf_decal/loading_area{ @@ -41600,6 +43679,11 @@ /obj/effect/mapping_helpers/mail_sorting/service/bar, /turf/open/floor/wood, /area/station/hallway/secondary/service) +"lMj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "lMt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, @@ -41611,9 +43695,9 @@ /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) "lMy" = ( -/obj/structure/bed/dogbed/ian, /mob/living/basic/pet/dog/corgi/ian, -/turf/open/floor/wood, +/obj/structure/bed/dogbed/ian, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "lMD" = ( /obj/structure/bed, @@ -41630,7 +43714,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lMJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -41642,28 +43726,30 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/security/prison) -"lMS" = ( -/obj/effect/turf_decal/siding/wood{ +"lMT" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; dir = 8 }, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Cargo Desk"; + req_access = list("cargo") + }, /obj/structure/table/reinforced, -/obj/item/binoculars, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) -"lMT" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = -10; + pixel_y = 9 }, -/obj/machinery/disposal/bin/tagger, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 1 }, +/obj/item/pen, /turf/open/floor/iron, /area/station/cargo/storage) -"lMU" = ( -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) "lNc" = ( /obj/item/toy/plush/moth{ name = "Spanner 2, her sibling"; @@ -41707,21 +43793,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lNp" = ( /obj/structure/lattice, /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/maintenance/port/aft) -"lNs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/item/toy/foamfinger, -/obj/item/toy/foamfinger, -/obj/item/toy/foamfinger, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "lNx" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -41789,17 +43866,20 @@ pixel_x = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"lOf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner, +/obj/machinery/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "lOg" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"lOh" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "lOy" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -41813,6 +43893,11 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/port) +"lOD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/hallway/abandoned_recreation) "lPc" = ( /obj/structure/table, /obj/machinery/reagentgrinder, @@ -41829,6 +43914,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"lPi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "lPm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -41845,7 +43936,7 @@ "lPo" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lPt" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -41856,16 +43947,50 @@ /turf/open/floor/iron/dark, /area/station/science/ordnance) "lPw" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/turf/open/floor/grass, -/area/station/hallway/primary/central) -"lPE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 +/obj/structure/sign/directions/engineering{ + dir = 4 }, -/obj/machinery/computer/atmos_control, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -10 + }, +/turf/closed/wall/r_wall, +/area/station/science/lab) +"lPI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "Cabin8"; + name = "Cabin 8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"lPP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosengimainttriangle" + }, +/obj/effect/landmark/navigate_destination/atmos, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"lPR" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "lPS" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark, @@ -41909,15 +44034,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"lQE" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/structure/statue/bronze/marx{ - pixel_x = 5; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "lQV" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -41948,6 +44064,7 @@ pixel_x = 5 }, /obj/structure/railing, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) "lRj" = ( @@ -41981,32 +44098,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"lRr" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 +"lRs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/suit_storage_unit/engine, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"lRz" = ( -/obj/structure/safe/floor, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c20, -/obj/item/stack/spacecash/c20, -/obj/item/stack/spacecash/c20, -/obj/item/stack/spacecash/c20, -/obj/item/stack/spacecash/c1, -/obj/item/stack/spacecash/c1, -/obj/item/stack/spacecash/c1, -/obj/item/stack/spacecash/c1, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"lRD" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/fore/upper) "lRP" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 8 @@ -42038,6 +44144,17 @@ }, /turf/open/floor/wood/large, /area/station/medical/break_room) +"lRX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/upper) +"lRY" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/courtroom) "lSe" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42054,18 +44171,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics) -"lSs" = ( -/obj/machinery/photocopier/prebuilt, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) -"lSE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "lSH" = ( /obj/structure/cable, /obj/structure/table, @@ -42082,12 +44187,28 @@ /obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lSL" = ( -/obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"lSM" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "lSP" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/wood, @@ -42102,6 +44223,14 @@ }, /turf/open/floor/iron/large, /area/station/hallway/primary/central) +"lTd" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/components/binary/pump/on/cyan/visible/layer5, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "lTw" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/dark_blue{ @@ -42132,19 +44261,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/wood/large, /area/station/service/theater_dressing) -"lTA" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/obj/machinery/disposal/bin/tagger, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "lTD" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/textured_large, @@ -42153,6 +44269,15 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/courtroom) +"lUg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "lUk" = ( /obj/structure/railing, /obj/structure/cable, @@ -42162,7 +44287,7 @@ dir = 1 }, /turf/open/floor/catwalk_floor/iron_white, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lUn" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -42172,18 +44297,16 @@ }, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"lUp" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "lUC" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, /area/station/engineering/lobby) +"lUD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/floor/broken, +/turf/open/floor/eighties, +/area/station/maintenance/hallway/abandoned_recreation) "lUI" = ( /obj/machinery/shower/directional/east, /obj/effect/turf_decal/tile/blue/full, @@ -42206,18 +44329,6 @@ }, /turf/open/floor/glass, /area/station/medical/medbay/central) -"lUM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/lobby) -"lUO" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter/monitored/distro_loop, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) "lUV" = ( /obj/machinery/camera/directional/east{ c_tag = "Prison Isolation Cell"; @@ -42230,11 +44341,13 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "lVc" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, /obj/machinery/pdapainter/supply, -/obj/structure/light_construct/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/machinery/keycard_auth/wall_mounted/directional/north, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "lVn" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -42277,16 +44390,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/wood/large, /area/station/medical/psychology) -"lVA" = ( -/obj/machinery/meter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/door/window/brigdoor/left/directional/east{ - name = "Air Pump Room"; - req_access = list("atmospherics") - }, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) "lVD" = ( /obj/machinery/door/airlock/engineering/glass, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -42295,16 +44398,18 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"lVH" = ( -/obj/machinery/computer/records/security{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/minisat/directional/south{ - name = "AI Ministat Camera Monitor" +"lVF" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"lVG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "lVK" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, @@ -42319,6 +44424,16 @@ "lVM" = ( /turf/open/floor/plating, /area/station/construction/mining/aux_base) +"lVR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/cigbutt{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "lWc" = ( /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/dark/smooth_large, @@ -42326,27 +44441,19 @@ "lWf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/maintenance, -/obj/item/radio/intercom/directional/south, /turf/open/floor/iron/textured, /area/station/cargo/warehouse) -"lWg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - external_pressure_bound = 120; - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) "lWn" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"lWs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "lWw" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -42359,17 +44466,23 @@ }, /turf/open/openspace, /area/station/maintenance/port/fore) +"lWD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 2 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "lWK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/glass, /area/station/security/brig) -"lWQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, +"lWS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) "lWZ" = ( /obj/structure/railing{ dir = 1 @@ -42398,18 +44511,16 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"lXl" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) "lXz" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"lXC" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "lXD" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment{ @@ -42441,13 +44552,6 @@ /obj/item/wrench/medical, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"lXK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) "lXM" = ( /obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/trimline/blue/arrow_cw{ @@ -42510,11 +44614,7 @@ /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"lYw" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/foyer) "lYy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/fax{ @@ -42539,19 +44639,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lYC" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) -"lYT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/terminal{ - dir = 4 +/area/station/ai/satellite/maintenance/storage) +"lYH" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +/turf/open/floor/iron/dark, +/area/station/commons/locker) "lYW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -42560,6 +44662,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"lYY" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/firealarm/directional/east, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "lZj" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/clown/directional/south, @@ -42572,19 +44679,39 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) +"lZm" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/end, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "lZn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/secure_safe/directional/north{ - pixel_x = -23; - pixel_y = 0 +/obj/machinery/light_switch/directional/west, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/item/mod/module/longfall{ - pixel_x = 8; - pixel_y = 20 +/obj/item/storage/photo_album{ + pixel_x = -6; + pixel_y = 2 }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/carpet, +/obj/item/camera{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) +"lZt" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/service/chapel) "lZM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/south, @@ -42594,23 +44721,38 @@ /turf/open/floor/catwalk_floor, /area/station/maintenance/starboard/fore) "lZV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/cigbutt{ - pixel_x = 6; - pixel_y = 17 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/item/lighter{ - pixel_x = -7; - pixel_y = 5 +/obj/effect/turf_decal/stripes/line, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/station/cargo/storage) +"lZW" = ( +/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ + pixel_x = 5; + pixel_y = 9 }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/structure/table, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "mae" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, /area/station/security/office) +"mam" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "mas" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -42648,31 +44790,28 @@ /turf/open/misc/asteroid, /area/station/science/xenobiology/hallway) "maO" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/effect/turf_decal/stripes{ + dir = 9 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"maS" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/button/door/directional/north{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + req_access = list("command") }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/turf/open/floor/iron/textured, +/area/station/command/eva) +"mbj" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "mbk" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/station/maintenance/department/science/central) -"mbv" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "mbz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42687,14 +44826,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/secondary/entry) -"mbC" = ( -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) "mbK" = ( /obj/machinery/door/airlock/maintenance{ name = "Virology Maintenance" @@ -42724,6 +44855,7 @@ pixel_x = -4; pixel_y = 5 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "mcb" = ( @@ -42734,21 +44866,12 @@ /obj/item/wrench, /turf/open/openspace, /area/station/construction/storage_wing) -"mcd" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"mch" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/fore/upper) "mcj" = ( /obj/structure/railing/corner{ dir = 4 @@ -42794,31 +44917,6 @@ }, /turf/open/floor/wood/large, /area/station/command/heads_quarters/cmo) -"mcG" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"mcR" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "mcT" = ( /obj/structure/lattice, /obj/effect/spawner/structure/window/reinforced/plasma, @@ -42831,14 +44929,9 @@ pixel_y = 10 }, /obj/item/pen, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"mcY" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/machinery/shower/directional/east, -/obj/item/mail/junkmail, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "mdf" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 8 @@ -42907,6 +45000,18 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"mdW" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, +/area/station/commons/fitness/recreation) +"mej" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/computer/security/telescreen/ce/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "mek" = ( /obj/effect/turf_decal/tile/green/full, /obj/machinery/biogenerator, @@ -42930,20 +45035,6 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"men" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/stack/package_wrap{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "meo" = ( /obj/item/kirbyplants/photosynthetic, /obj/effect/turf_decal/trimline/dark_blue/filled/line{ @@ -42962,45 +45053,20 @@ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"meE" = ( -/obj/machinery/camera/autoname/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/layer1, -/obj/machinery/button/door/directional/east{ - id = "SM_shutters"; - name = "Radiation Shutters"; - req_access = list("engineering") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"meF" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) +/area/station/ai/satellite/interior) "meK" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/status_display/evac/directional/west, /obj/machinery/light/directional/west, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "meU" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "meW" = ( @@ -43012,7 +45078,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "meX" = ( /obj/effect/mapping_helpers/airlock/access/all/service/general, /obj/structure/disposalpipe/segment{ @@ -43023,10 +45089,31 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"meY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "mff" = ( /obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) +"mfh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "mfi" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -43034,7 +45121,7 @@ name = "AI Core Shutters" }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mfn" = ( /obj/structure/table, /obj/item/stack/sheet/plasteel/fifty, @@ -43070,23 +45157,55 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) +"mfF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "mfO" = ( -/obj/structure/chair/comfy/brown{ +/obj/structure/table/reinforced/rglass, +/obj/machinery/button/door/directional/south{ + id = "bridge blast"; + name = "Bridge Window Blast Doors"; + req_access = list("command"); + pixel_y = 5 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/machinery/button/door/directional/south{ + id = "bridge blast-2"; + name = "Bridge Access Blast Doors"; + req_access = list("command"); + pixel_y = -5 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "mfR" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/railing, /turf/open/floor/engine/hull/air, /area/station/medical/medbay/central) "mfS" = ( -/obj/structure/chair/comfy/brown{ +/obj/structure/table/reinforced/rglass, +/obj/structure/secure_safe/caps_spare, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mfT" = ( +/obj/structure/sign/warning/radiation/rad_area/directional/east, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "mga" = ( /obj/structure/cable, /obj/machinery/requests_console/directional/east{ @@ -43101,6 +45220,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"mgA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "mgJ" = ( /obj/structure/ladder, /obj/structure/lattice/catwalk, @@ -43114,11 +45241,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/security/execution/education) -"mgM" = ( -/obj/item/radio/headset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"mgN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"mgR" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - co2 Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos/upper) "mgS" = ( /obj/structure/table, /obj/item/analyzer{ @@ -43131,12 +45269,20 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"mgT" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/wood, +/area/station/commons/dorms) "mgU" = ( /obj/machinery/door/airlock/silver{ name = "Bathroom" }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mgY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -43156,6 +45302,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/glass/reinforced, /area/station/construction/storage_wing) +"mht" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 2 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "mhI" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -43167,19 +45321,19 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) +"mhO" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/station/cargo/miningoffice) "mhP" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/storage/belt/utility{ - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/pod/old/mass_driver_controller/trash{ + pixel_x = 25 }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/cargo/storage) +/obj/structure/chair/stool/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "mhQ" = ( /obj/machinery/telecomms/server/presets/science, /obj/effect/turf_decal/tile/purple/fourcorners, @@ -43206,15 +45360,19 @@ /turf/open/floor/engine/hull, /area/space/nearstation) "mie" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/chair/office{ +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; dir = 8 }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, +/turf/open/floor/plating, /area/station/cargo/storage) +"mig" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "mik" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -43222,34 +45380,15 @@ }, /turf/open/floor/iron, /area/station/science/explab) -"mil" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"mip" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/machinery/airalarm/directional/north, -/obj/effect/landmark/start/assistant, -/obj/machinery/camera/autoname/directional/north, -/turf/open/openspace, -/area/station/commons/dorms) "miB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"miE" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/item/clothing/shoes/magboots{ - pixel_x = 7; - pixel_y = 16 +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "miL" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/power/apc/auto_name/directional/east, @@ -43281,29 +45420,29 @@ /obj/structure/ladder, /turf/open/space/basic, /area/station/solars/starboard/fore) -"miZ" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase/secure{ - pixel_x = 3 +"miY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 +/obj/effect/turf_decal/tile/red{ + dir = 4 }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"miZ" = ( /obj/machinery/firealarm/directional/south, -/turf/open/floor/wood, +/obj/item/assembly/flash/handheld{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "mjc" = ( /turf/open/openspace, /area/station/service/library/private) -"mjh" = ( -/obj/structure/broken_flooring/corner/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mjm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "mju" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -43312,23 +45451,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"mjy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/obj/effect/turf_decal/trimline/yellow, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mjB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mjN" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) "mkd" = ( /obj/effect/decal/cleanable/dirt, /obj/item/banner/red{ @@ -43342,22 +45464,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/space_hut) -"mkq" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"mkv" = ( -/obj/structure/table, -/obj/structure/bedsheetbin/empty{ - pixel_y = 6 +"mkt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"mkI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/commons/dorms) "mkK" = ( @@ -43373,26 +45485,21 @@ dir = 4 }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mkR" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/structure/table/wood/fancy/orange, -/obj/item/reagent_containers/cup/glass/bottle/whiskey{ - pixel_x = -5; - pixel_y = 18 - }, -/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ - pixel_x = -4; - pixel_y = 4 +/obj/structure/sign/poster/random/directional/north, +/obj/structure/railing{ + dir = 4 }, -/obj/item/food/fortunecookie{ - pixel_x = 10; - pixel_y = 4 +/obj/effect/turf_decal/stripes/end{ + dir = 1 }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"mlc" = ( +/obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/area/station/engineering/storage_shared) "mlj" = ( /obj/structure/table, /obj/item/aicard, @@ -43404,6 +45511,14 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"mlx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron, +/area/station/engineering/lobby) "mlL" = ( /obj/structure/kitchenspike, /obj/machinery/power/apc/auto_name/directional/west, @@ -43414,12 +45529,11 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/commons/vacant_room/office) -"mmb" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +"mma" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, +/turf/open/floor/iron, /area/station/commons/fitness/recreation) "mmi" = ( /obj/machinery/camera/directional/north{ @@ -43439,18 +45553,55 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"mmt" = ( +"mmM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) +"mmO" = ( /obj/structure/lattice/catwalk, -/obj/machinery/firealarm/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/obj/machinery/duct, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"mmP" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/storage/briefcase/secure{ + pixel_x = 3 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/toy/figure/hop{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/toy/figure/ian{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/wood/tile, +/area/station/command/heads_quarters/hop) "mmS" = ( -/obj/machinery/light/small/broken, -/turf/closed/wall/r_wall, -/area/station/maintenance/central) +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "mmU" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43458,6 +45609,17 @@ /obj/structure/sign/painting/large/library, /turf/open/openspace, /area/station/maintenance/port/fore) +"mmW" = ( +/obj/machinery/door/poddoor/massdriver_ordnance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmos_shield_gen/active, +/obj/machinery/atmos_shield_gen/active{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "mmX" = ( /obj/effect/turf_decal/tile/dark_red{ dir = 1 @@ -43479,6 +45641,13 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"mnf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) "mnn" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/effect/mapping_helpers/airlock/welded, @@ -43514,6 +45683,10 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/wood/tile, /area/station/security/detectives_office/private_investigators_office) +"mnK" = ( +/obj/structure/sign/departments/restroom/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "mnQ" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -43538,17 +45711,9 @@ /turf/open/floor/iron/dark/textured_large, /area/station/science/zoo) "moq" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/machinery/brm, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" - }, -/obj/structure/railing{ - dir = 1 - }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/closet/secure_closet/miner, +/obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/cargo/miningoffice) "mox" = ( @@ -43574,7 +45739,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"moO" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "mpd" = ( /obj/machinery/vatgrower{ dir = 4 @@ -43594,18 +45763,33 @@ /obj/effect/turf_decal/siding/blue{ dir = 9 }, -/obj/machinery/computer/rdconsole, /obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "mpm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/security/interrogation) +"mpp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) "mpt" = ( /obj/structure/table, /obj/item/multitool{ @@ -43630,16 +45814,21 @@ /obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/iron/dark, /area/station/command/gateway) +"mpK" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "mpT" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) -"mpX" = ( -/obj/structure/table/reinforced, -/obj/item/binoculars, -/obj/item/binoculars, +"mpW" = ( +/obj/item/trash/can, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/port) "mqa" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -43663,11 +45852,6 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/iron/dark, /area/station/security/warden) -"mqb" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "mqc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43679,18 +45863,31 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "mqm" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/turf/open/floor/carpet, +/obj/machinery/light_switch/directional/west{ + pixel_x = -24 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "mqt" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/structure/sign/poster/official/obey/directional/north, /turf/open/floor/iron/dark, /area/station/maintenance/port) +"mqu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "mqv" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/structure/railing/corner, @@ -43713,12 +45910,21 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet, /area/station/security/courtroom) +"mqN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "mqQ" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, /obj/structure/disposalpipe/segment, -/obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) "mqT" = ( @@ -43772,12 +45978,6 @@ }, /turf/open/floor/plating/elevatorshaft, /area/station/service/kitchen) -"mrq" = ( -/obj/structure/chair/sofa/corner/brown{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "mrs" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/north, @@ -43785,6 +45985,17 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/space_hut) +"mrA" = ( +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "mrC" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark/textured_half, @@ -43807,7 +46018,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/eva, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mrS" = ( /obj/structure/ladder, /obj/effect/decal/cleanable/dirt, @@ -43824,11 +46035,23 @@ dir = 1 }, /area/station/science/robotics/lab) -"msm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"msd" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"msq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "msr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/girder, @@ -43853,6 +46076,15 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"msC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Loop to Freezer" + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "msF" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -43864,10 +46096,28 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"mtg" = ( -/obj/structure/sign/poster/official/soft_cap_pop_art/directional/west, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +"msQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/cigbutt{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"mtd" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "mth" = ( /obj/machinery/holopad, /turf/open/floor/wood, @@ -43914,12 +46164,13 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"mtw" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +"mtv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central) "mtz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43940,26 +46191,16 @@ pixel_y = 2 }, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "mtC" = ( /obj/structure/closet/crate/goldcrate, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) -"mtD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) +/area/station/command/vault) +"mtM" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/holopad, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "mtP" = ( /obj/item/knife/kitchen{ pixel_x = 10; @@ -43999,9 +46240,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/kitchen, /area/station/maintenance/port/aft) -"mur" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/storage) "mus" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -44050,11 +46288,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) -"muF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "muG" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; @@ -44069,6 +46302,16 @@ }, /turf/open/floor/iron/dark, /area/station/security/medical) +"muK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "muN" = ( /obj/machinery/computer/mecha{ dir = 1 @@ -44086,19 +46329,25 @@ /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, /area/station/hallway/secondary/entry) -"muW" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2{ - dir = 8 +"mva" = ( +/obj/structure/sign/warning/directional/west, +/turf/open/space/basic, +/area/space/nearstation) +"mvd" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "mvf" = ( /obj/machinery/door/window/right/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/greater) "mvq" = ( /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mvu" = ( /obj/effect/turf_decal/trimline/dark, /obj/machinery/airalarm/directional/west, @@ -44121,6 +46370,17 @@ /obj/machinery/holopad, /turf/open/floor/wood/large, /area/station/service/library) +"mvT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"mvU" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room/upper) "mwd" = ( /obj/machinery/door/airlock/medical{ name = "Patient Room" @@ -44130,19 +46390,10 @@ /obj/effect/turf_decal/tile/blue/full, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/patients_rooms/room_a) -"mwh" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"mwj" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "mwm" = ( /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/plating, @@ -44170,6 +46421,12 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/lawoffice) +"mwK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "mwL" = ( /obj/effect/turf_decal/bot_white/left, /turf/open/floor/iron/dark/textured_large, @@ -44187,20 +46444,10 @@ /turf/open/floor/wood, /area/station/maintenance/port/aft) "mwS" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/computer/cargo/request, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /turf/open/floor/iron, -/area/station/cargo/storage) +/area/station/hallway/primary/starboard) "mwY" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/effect/turf_decal/siding/red/corner{ @@ -44222,6 +46469,13 @@ /obj/machinery/computer/records/medical/laptop, /turf/open/floor/carpet/cyan, /area/station/command/heads_quarters/cmo) +"mxp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "mxF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -44245,19 +46499,23 @@ }, /obj/effect/spawner/random/clothing, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mxM" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/area/station/ai/satellite/interior) +"mxJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/fluff/paper{ + dir = 9 }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"mxM" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/medkit/regular, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "mxO" = ( /obj/machinery/door/airlock/hatch{ name = "Telecomms Server Room" @@ -44294,12 +46552,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"myt" = ( -/obj/structure/lattice/catwalk, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) +/area/station/ai/satellite/chamber) "myx" = ( /turf/closed/wall, /area/station/service/library/private) @@ -44336,34 +46589,47 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"myP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "myR" = ( /obj/structure/table/wood, /obj/machinery/status_display/evac/directional/south, /obj/item/pai_card, /turf/open/floor/wood/large, /area/station/medical/break_room) +"mze" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "mzh" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, +/obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/maintenance/disposal) +"mzm" = ( +/obj/structure/table, +/obj/machinery/coffeemaker, +/obj/item/reagent_containers/cup/coffeepot, +/obj/item/storage/box/coffeepack, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "mzA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"mzN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 +"mzH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "mzT" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, @@ -44372,6 +46638,13 @@ /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) +"mAa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "mAe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/south, @@ -44394,11 +46667,9 @@ /area/station/security/brig) "mAr" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L2" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "mAt" = ( @@ -44432,10 +46703,28 @@ /obj/structure/railing, /turf/open/floor/glass, /area/station/science/zoo) +"mAC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"mAH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "CE's Maintenance Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/turf/open/floor/plating, +/area/station/engineering/lobby) "mAO" = ( /obj/item/clothing/head/costume/shrine_wig, /turf/open/floor/plating/airless, /area/space/nearstation) +"mAR" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/urinal/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) "mAY" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -44447,7 +46736,7 @@ /area/station/medical/medbay/lobby) "mBb" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner, /area/station/hallway/primary/central) "mBd" = ( /obj/effect/decal/cleanable/dirt, @@ -44492,6 +46781,17 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/maintenance/port/aft) +"mBZ" = ( +/obj/structure/table/reinforced, +/obj/item/radio/headset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"mCa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "mCb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -44513,6 +46813,15 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"mCi" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "mCj" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance, @@ -44529,6 +46838,18 @@ }, /turf/open/floor/wood/large, /area/station/commons/lounge) +"mCG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "mCM" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -44538,6 +46859,29 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"mCN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"mCO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mCR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/station/medical/virology) "mDd" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/structure/rack, @@ -44546,32 +46890,21 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) -"mDk" = ( -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"mDo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/ai/satellite/maintenance/storage) "mDr" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) +"mDs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/meter, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "mDv" = ( -/obj/machinery/vending/coffee{ - pixel_x = -3 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "mDD" = ( /obj/machinery/atmospherics/pipe/multiz/orange/visible{ dir = 4 @@ -44579,6 +46912,10 @@ /obj/machinery/meter, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"mDE" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall, +/area/station/maintenance/starboard/central/upper) "mDF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -44592,14 +46929,12 @@ /area/space/nearstation) "mDS" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/item/kirbyplants/random, +/obj/machinery/modular_computer/preset/cargochat/cargo{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, /turf/open/floor/iron, /area/station/cargo/storage) -"mDV" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "mDX" = ( /obj/structure/bed/pod{ desc = "An old medical bed, just waiting for replacement with something up to date."; @@ -44629,18 +46964,20 @@ dir = 4 }, /obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"mEr" = ( -/obj/structure/table, -/obj/machinery/coffeemaker, -/obj/item/reagent_containers/cup/coffeepot, -/obj/item/storage/box/coffeepack, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"mEo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/elevator/directional/east{ + id = "catwalk_atmos"; + name = "Elevator Button" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/engine, +/area/station/engineering/atmos) "mEv" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/firealarm_sanity, @@ -44651,39 +46988,37 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/iron/dark, /area/station/service/chapel) -"mEG" = ( -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "mEO" = ( /obj/machinery/computer/monitor, /obj/effect/turf_decal/tile/dark_blue/opposingcorners{ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) -"mFk" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/ai/satellite/maintenance/storage) +"mFv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/sign/warning/electric_shock/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "mFA" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/dim/directional/south, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) +"mFE" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin5"; + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "mFR" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -44698,6 +47033,11 @@ /obj/machinery/computer/security/telescreen/med_sec/directional/north, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) +"mFU" = ( +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) "mGb" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -44730,12 +47070,16 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/medical/medbay/central) -"mGx" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/engine/hull, -/area/station/maintenance/starboard/lesser) +"mGj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "mGO" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 @@ -44749,11 +47093,6 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/checkpoint/science) -"mGV" = ( -/obj/structure/marker_beacon/indigo, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "mHd" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/turf_decal/trimline/purple/filled, @@ -44762,51 +47101,39 @@ "mHf" = ( /turf/closed/wall, /area/station/security/checkpoint/supply) -"mHi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/smooth, -/area/station/science/robotics) "mHt" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"mHu" = ( +"mHv" = ( /obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, +/obj/structure/railing/corner{ + dir = 1 + }, /turf/open/openspace, -/area/station/engineering/atmos/project) -"mHx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/commons/dorms) "mHC" = ( /obj/structure/table, /obj/item/camera, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"mHD" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 +"mHF" = ( +/obj/effect/turf_decal/arrows, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mHH" = ( -/obj/item/stack/sheet/cotton{ - pixel_x = -6; - pixel_y = 10 +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/delivery, +/obj/structure/disposaloutlet{ + name = "Outside Cargo" }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) "mHJ" = ( /obj/structure/table, /obj/item/paint_palette{ @@ -44842,25 +47169,15 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mHX" = ( /obj/machinery/light/directional/east, /turf/open/floor/engine/hull/air, /area/station/medical/medbay/central) -"mHZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "mIa" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"mId" = ( -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) "mIi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -44875,34 +47192,45 @@ /turf/open/space/openspace, /area/space/nearstation) "mIp" = ( -/obj/structure/railing{ +/obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 1 }, -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/vending/games, /turf/open/floor/iron/textured, /area/station/cargo/storage) "mIq" = ( -/obj/machinery/requests_console/directional/east{ - department = "Captain's Desk"; - name = "Captain's Requests Console" - }, /obj/effect/mapping_helpers/requests_console/announcement, /obj/effect/mapping_helpers/requests_console/information, /obj/effect/mapping_helpers/requests_console/assistance, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/requests_console/auto_name/directional/east, +/obj/structure/bed/dogbed/renault, +/mob/living/basic/pet/fox/renault, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) +"mIx" = ( +/obj/machinery/light/directional/west, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) "mID" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mining Maintenance Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) +"mIE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "mIJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -44926,7 +47254,7 @@ "mIO" = ( /obj/structure/ladder, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "mIX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/frame/computer{ @@ -44937,35 +47265,12 @@ "mJa" = ( /turf/open/floor/iron/dark, /area/station/tcommsat/server) -"mJb" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/fluff/paper{ - dir = 9 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "mJd" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"mJe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/reagent_containers/cup/glass/bottle/vermouth{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_containers/cup/glass/bottle/ale, -/obj/item/reagent_containers/cup/glass/bottle/beer{ - pixel_x = 6 - }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "mJg" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -45000,10 +47305,50 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"mJI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "mJL" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"mJO" = ( +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/plunger{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"mJP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"mJT" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/encryptionkey/headset_service{ + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"mJY" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"mKb" = ( +/obj/machinery/door/airlock{ + name = "Abandoned Chapel" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "mKk" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, @@ -45037,11 +47382,30 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/carpet/cyan, /area/station/command/heads_quarters/cmo) +"mKz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8; + pixel_y = -2 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "mKF" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"mKH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "mKN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45057,15 +47421,26 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"mKV" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) +"mKQ" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) "mKZ" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"mLd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/main) "mLg" = ( /obj/machinery/mass_driver/chapelgun{ dir = 1 @@ -45086,15 +47461,15 @@ "mLm" = ( /turf/closed/wall, /area/station/hallway/secondary/construction) -"mLH" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/table/reinforced, -/obj/item/training_toolbox{ - pixel_y = 6 - }, -/obj/item/training_toolbox, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"mLp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/glass, +/area/station/maintenance/aft/upper) +"mLv" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "mLN" = ( /obj/item/chair, /obj/effect/decal/cleanable/blood/old, @@ -45108,25 +47483,26 @@ /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"mLS" = ( -/turf/open/openspace, -/area/station/engineering/break_room) +"mLP" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "mMb" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ dir = 4 }, /turf/open/openspace, -/area/station/command/bridge) -"mMx" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) +/area/station/command/meeting_room/council) +"mMs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "mMA" = ( /obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "mMC" = ( /obj/effect/turf_decal/siding/wood{ @@ -45152,17 +47528,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"mMX" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 +"mMZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mNj" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, +/area/station/maintenance/starboard/central) +"mNi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central) "mNn" = ( /obj/structure/chair/stool/directional/south{ dir = 8 @@ -45179,11 +47560,20 @@ /obj/structure/ladder, /turf/open/space/basic, /area/space/nearstation) -"mNC" = ( +"mNt" = ( /obj/structure/lattice/catwalk, -/obj/structure/sign/warning/radiation/rad_area/directional/south, +/obj/structure/railing, +/obj/item/reagent_containers/blood/ethereal{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/cigbutt{ + pixel_x = 9; + pixel_y = 14 + }, +/obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/west, /turf/open/openspace, -/area/station/engineering/break_room) +/area/station/maintenance/department/crew_quarters/dorms) "mND" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -45191,13 +47581,21 @@ }, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) +"mNK" = ( +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage) "mNN" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -45208,48 +47606,44 @@ name = "Gateway Shutter Control"; pixel_x = 24; pixel_y = 0; - req_access = list("command") + req_access = list("command"); + dir = 4 }, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"mOg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/edge{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"mOo" = ( -/obj/effect/turf_decal/trimline/yellow/filled, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 +/area/station/hallway/primary/central) +"mOc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/obj/item/kirbyplants/random/fullysynthetic, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"mOx" = ( -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/south{ - c_tag = "Medbay - Upper Chief Medical Office South"; - network = list("ss13","medbay") +/obj/effect/spawner/random/techstorage/custom_shuttle, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"mOk" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"mOz" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"mOB" = ( +/obj/structure/transport/linear{ + radial_travel = 0 }, -/obj/structure/closet/secure_closet/medical3, -/obj/item/defibrillator/loaded, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 13 +/obj/machinery/elevator_control_panel/directional/south{ + linked_elevator_id = "catwalk_atmos"; + preset_destination_names = list("2"="Lower Atmos","3"="Upper Atmos") }, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/clothing/gloves/latex/nitrile, -/obj/effect/turf_decal/bot_white{ - color = "#52B4E9" +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "catwalk_atmos" }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/storage) +/turf/open/openspace, +/area/station/engineering/atmos/upper) "mOE" = ( /obj/effect/turf_decal/trimline/yellow/warning, /obj/structure/railing, @@ -45283,7 +47677,22 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"mOO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mOU" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "mOW" = ( /obj/structure/rack, /obj/item/book/manual/wiki/engineering_construction, @@ -45307,16 +47716,44 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel) -"mPn" = ( -/obj/effect/landmark/start/hangover, +"mPa" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mPf" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table/wood, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/central) +"mPt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/main) "mPw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"mPx" = ( +/obj/machinery/electrolyzer, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "mPB" = ( /obj/machinery/camera/directional/south{ c_tag = "Holodeck - Aft"; @@ -45326,11 +47763,35 @@ name = "Holodeck Projector Floor" }, /area/station/holodeck/rec_center) +"mPK" = ( +/obj/structure/cable, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 13 + }, +/obj/item/cigbutt{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"mPO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "mPP" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/machinery/light/floor, +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/food/chocolatebar{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "mPQ" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/dark, @@ -45338,22 +47799,38 @@ network = list("minisat") }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mPV" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) +/area/station/ai/satellite/interior) "mQh" = ( /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/construction) +"mQA" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/rack, +/obj/item/encryptionkey/headset_sci{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/encryptionkey/headset_med, +/obj/item/encryptionkey/headset_eng{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) +"mQH" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "mQK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45366,44 +47843,27 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) -"mQS" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mQT" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/lobby) "mQX" = ( -/obj/machinery/mineral/ore_redemption{ - dir = 4; - input_dir = 4; - output_dir = 8 - }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/machinery/status_display/supply{ - pixel_y = -32 +/obj/effect/turf_decal/trimline/brown/arrow_ccw, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 }, /turf/open/floor/iron, -/area/station/cargo/storage) -"mRf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) +/area/station/hallway/primary/starboard) "mRg" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, /area/station/hallway/secondary/entry) +"mRj" = ( +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/obj/machinery/light/warm/dim/directional/west, +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "mRn" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/wood{ @@ -45412,16 +47872,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/medical/break_room) -"mRq" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Laundromat" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +"mRs" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "mRt" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/landmark/blobstart, @@ -45444,72 +47899,58 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/research) -"mRI" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) "mRJ" = ( /obj/structure/cable, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) +"mRO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Ordnance Gas Storage Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, +/turf/open/floor/plating, +/area/station/maintenance/aft) "mRQ" = ( /obj/machinery/airalarm/directional/north, /obj/item/radio/intercom/directional/east, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"mRU" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/railing/corner, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/flora/tree/jungle, +/obj/effect/turf_decal/siding/thinplating/corner, +/turf/open/floor/grass, +/area/station/hallway/primary/starboard) "mSa" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/closet/secure_closet/hop, /obj/item/bedsheet/ian, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, /obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "mSd" = ( /turf/closed/wall, /area/station/commons/lounge) -"mSq" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"mSe" = ( +/obj/effect/decal/cleanable/vomit/old, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/upper) "mSt" = ( /obj/effect/landmark/start/mime, /turf/open/floor/carpet/black, /area/station/service/theater) "mSA" = ( -/obj/structure/bed, -/obj/item/bedsheet/qm, -/obj/item/stack/spacecash/c10{ - pixel_x = -5 - }, -/obj/item/stack/spacecash/c10{ - pixel_x = -5 - }, -/obj/item/stack/spacecash/c10{ - pixel_x = -5 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Quartermaster's Room" - }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) -"mSE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/obj/machinery/meter{ - name = "Mixed Air Tank In" +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "mSF" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -45519,38 +47960,69 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/hallway/primary/fore) +"mSG" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) +"mSL" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"mSN" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/statue/bronze/marx{ + pixel_x = 5; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"mSQ" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/locker) +"mSU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "mTi" = ( /obj/item/banhammer, /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) -"mTp" = ( -/obj/structure/table, -/obj/item/paper{ - pixel_y = 4 - }, -/obj/item/phone{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/stamp{ - pixel_x = 13; - pixel_y = 12 +"mTo" = ( +/obj/item/cigbutt{ + pixel_x = -11; + pixel_y = 14 }, -/obj/machinery/computer/security/telescreen/aiupload/directional/north, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "mTq" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/security/courtroom) +"mTv" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/commons/locker) "mTx" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -45560,25 +48032,24 @@ }, /turf/open/floor/wood/large, /area/station/service/kitchen) -"mTH" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) -"mTL" = ( -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body" +"mTJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "mTP" = ( /obj/structure/railing{ dir = 4 }, /turf/open/openspace, /area/station/medical/medbay/central) +"mTT" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "mUm" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -45592,6 +48063,10 @@ /obj/item/clothing/glasses/science, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"mUt" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/commons/dorms) "mUC" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -45600,30 +48075,15 @@ /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) "mUD" = ( -/obj/structure/chair/office{ - name = "CMO's Chair" - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mUN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "mUR" = ( /turf/closed/wall, /area/station/service/bar/backroom) -"mUS" = ( -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "mUY" = ( /obj/structure/railing{ dir = 1 @@ -45636,11 +48096,12 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "mVm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/central) "mVp" = ( @@ -45660,38 +48121,45 @@ /obj/effect/landmark/start/chemist, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"mVw" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/modular_computer/preset/engineering{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "mVC" = ( /obj/structure/lattice, /obj/effect/spawner/random/maintenance, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/space/openspace, /area/space/nearstation) -"mVE" = ( -/obj/structure/transport/linear{ - radial_travel = 0 - }, -/obj/machinery/elevator_control_panel/directional/south{ - linked_elevator_id = "catwalk_engi"; - preset_destination_names = list("2"="Lower Engine","3"="Upper Engine.") - }, -/turf/open/openspace, -/area/station/engineering/break_room) "mVM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output, /turf/open/floor/engine/air, /area/station/engineering/atmos/upper) -"mWu" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +"mWg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron, +/area/station/commons/dorms) +"mWB" = ( +/obj/structure/table, +/obj/item/storage/box/metalfoam{ + pixel_y = 2; + pixel_x = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"mWC" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/booze, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "mWF" = ( /obj/structure/railing/corner{ dir = 4 @@ -45714,17 +48182,7 @@ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mWI" = ( -/obj/structure/table, -/obj/item/toy/gun{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/interior) "mWQ" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/gambling{ @@ -45772,6 +48230,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/storage_shared) +"mXq" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "mXs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -45781,6 +48247,15 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"mXI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "mXL" = ( /obj/effect/turf_decal/weather/snow, /turf/open/floor/plating, @@ -45834,50 +48309,17 @@ "mYf" = ( /obj/structure/chair/comfy/brown, /obj/structure/plaque/static_plaque/golden/captain{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, -/obj/structure/cable, /obj/effect/landmark/start/captain, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"mYh" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table/glass, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/openspace, -/area/station/engineering/break_room) -"mYm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "mYo" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/space/nearstation) -"mYy" = ( -/obj/structure/sign/poster/contraband/power/directional/north, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"mYK" = ( -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "mYV" = ( /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, @@ -45902,24 +48344,9 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"mZf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mZo" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "mZq" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -45947,47 +48374,42 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/openspace, /area/station/hallway/primary/central) -"naa" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "nah" = ( /obj/structure/cable, /turf/closed/wall/r_wall, /area/station/maintenance/port/aft) -"nak" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/east{ - name = "Cargo Desk"; - req_access = list("cargo") +"nai" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/vending/assist, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"nak" = ( /obj/effect/landmark/navigate_destination/cargo, /turf/open/floor/iron, -/area/station/cargo/storage) -"naq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 1 +/area/station/hallway/primary/starboard) +"nar" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nar" = ( -/obj/structure/railing/corner{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"nax" = ( +/obj/structure/toilet{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/auxiliary) "naC" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hydropony_shutters"; @@ -45996,10 +48418,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/kitchen) -"naR" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "naS" = ( /turf/open/openspace, /area/station/science/xenobiology) @@ -46021,20 +48439,21 @@ }, /turf/open/floor/wood, /area/station/security/detectives_office) -"nbb" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp{ - pixel_y = 7 - }, -/obj/item/stamp/head/qm{ - pixel_x = -5 +"nba" = ( +/obj/structure/sign/clock/directional/east, +/obj/machinery/rnd/production/techfab/department/cargo, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 }, -/obj/item/stamp/denied{ - pixel_x = 6 +/turf/open/floor/iron, +/area/station/cargo/storage) +"nbb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "nbj" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -46052,9 +48471,6 @@ /turf/open/floor/wood/large, /area/station/commons/lounge) "nbE" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/door/airlock/medical/glass{ name = "Cryogenics Room" @@ -46064,31 +48480,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) -"nbP" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/oven{ - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 }, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"nbY" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/effect/turf_decal/siding/wood{ +/area/station/medical/cryo) +"nbQ" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"nbU" = ( +/obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/item/modular_computer/laptop/preset/civilian{ - pixel_y = 3 +/turf/open/floor/iron/edge{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/engineering/lobby) +/area/station/hallway/primary/central) "nct" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -46100,36 +48510,25 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"ncF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"ncI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +"ncC" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ncJ" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/closet/athletic_mixed, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/area/station/hallway/primary/central) "ncO" = ( /turf/open/floor/glass/reinforced, /area/station/hallway/secondary/entry) -"ncT" = ( -/obj/machinery/electrolyzer, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"ncS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ncV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -46140,17 +48539,25 @@ dir = 4 }, /area/station/engineering/main) +"nda" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/stack{ + desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging." + }, +/obj/structure/fluff/paper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "nde" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 4 }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) -"ndg" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) "ndl" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/module_duplicator, @@ -46170,7 +48577,11 @@ "ndK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "ndQ" = ( /obj/machinery/door/airlock{ @@ -46197,6 +48608,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"neh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/commons/dorms) "nej" = ( /obj/machinery/nuclearbomb/beer{ pixel_x = -2; @@ -46204,21 +48622,23 @@ }, /obj/structure/table/reinforced, /obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) -"nen" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" +"nev" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/railing{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port) +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"new" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "ney" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 @@ -46233,7 +48653,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"neA" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "neB" = ( /obj/structure/railing{ dir = 4 @@ -46252,12 +48680,6 @@ pixel_y = 26; preset_destination_names = list("2"="Lower Deck","3"="Upper Deck") }, -/obj/structure/sign/directions/upload/directional/north{ - desc = "It stands for Up Le Dable"; - dir = 2; - name = "Button Indicator"; - pixel_y = 40 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -46273,57 +48695,55 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"neN" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/button/door/directional/west{ + id = "Cabin10"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms) "nfa" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"nfd" = ( +/obj/structure/bed, +/obj/effect/spawner/random/bedsheet, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/station/commons/dorms) "nfe" = ( /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/multiz/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nfg" = ( -/obj/structure/railing{ - dir = 8 - }, /obj/effect/turf_decal/siding/blue{ dir = 8 }, -/obj/structure/chair/office{ - dir = 4; - name = "HoP's Chair" - }, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/obj/structure/railing/corner/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nfB" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"nfE" = ( /obj/structure/railing{ dir = 8 }, -/obj/structure/railing/corner/end, -/obj/structure/railing/corner/end{ +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 8 }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/stairs/left, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "nfG" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -46331,10 +48751,10 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, /area/station/science/lobby) -"nfM" = ( -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) +"nfO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/upper) "nfR" = ( /turf/closed/wall, /area/station/medical/break_room) @@ -46368,7 +48788,7 @@ /turf/open/floor/iron/white/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ngp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46388,31 +48808,33 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ngF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/confetti, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"ngH" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/break_room) -"ngQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "ngZ" = ( /obj/effect/turf_decal/delivery, /obj/structure/table, /obj/effect/spawner/random/entertainment/cigarette_pack, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"nhc" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin6"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "nhg" = ( /turf/open/floor/iron/smooth_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nhj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46421,39 +48843,51 @@ dir = 2 }, /obj/effect/mapping_helpers/mail_sorting/service/law_office, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"nhz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"nhE" = ( -/obj/structure/sign/poster/contraband/communist_state/directional/north, -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_x = 12; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"nhG" = ( -/obj/effect/turf_decal/siding/wood{ +"nht" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 }, -/obj/structure/railing{ +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"nhv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) +"nhG" = ( /obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"nhP" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/obj/effect/turf_decal/stripes/end, +/obj/structure/table, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "nhQ" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 8 @@ -46471,22 +48905,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"nhU" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"nhY" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "nia" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ @@ -46499,16 +48917,7 @@ dir = 9 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nic" = ( -/obj/structure/transport/linear{ - radial_travel = 0 - }, -/obj/structure/railing/corner/end{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/area/station/ai/satellite/interior) "nir" = ( /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/dark, @@ -46545,30 +48954,48 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"njc" = ( +/obj/structure/table, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/clothing/head/cone{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/item/airlock_painter/decal{ + pixel_y = 12 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"njf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/commons/dorms) "njh" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet1"; name = "Unit 1" }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "njk" = ( /turf/closed/wall, /area/station/engineering/main) -"njA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "njH" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/medical) @@ -46576,13 +49003,9 @@ /obj/structure/chair{ dir = 1 }, +/obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"njY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "nkh" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark/smooth_large, @@ -46594,7 +49017,7 @@ }, /obj/machinery/light/directional/west, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nky" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 8 @@ -46608,7 +49031,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nkD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, @@ -46622,8 +49045,19 @@ /area/station/hallway/secondary/entry) "nkF" = ( /obj/machinery/light/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner{ + dir = 8 + }, /area/station/hallway/primary/central) +"nkW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/item/toy/foamfinger, +/obj/item/toy/foamfinger, +/obj/item/toy/foamfinger, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nkZ" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -46638,32 +49072,26 @@ }, /turf/open/space/basic, /area/space/nearstation) -"nli" = ( -/obj/structure/railing/corner, -/obj/structure/table/wood, -/obj/item/camera{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/tape, -/obj/item/pen/fourcolor{ - pixel_x = 8; - pixel_y = 7 - }, +"nlk" = ( /obj/structure/cable, -/turf/open/floor/wood/large, -/area/station/service/library/private) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "nlm" = ( /turf/open/space/openspace, /area/space) -"nlo" = ( -/obj/machinery/photocopier/prebuilt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "nlt" = ( /turf/open/floor/iron/dark/textured, /area/station/engineering/supermatter/room) +"nlw" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/engineering/lobby) "nlD" = ( /turf/closed/wall/r_wall, /area/station/medical/abandoned) @@ -46674,7 +49102,7 @@ network = list("aicore") }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nlO" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -46686,15 +49114,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"nlP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "nmf" = ( /obj/structure/cable, /turf/open/floor/iron/textured_large, @@ -46702,17 +49121,15 @@ "nml" = ( /obj/machinery/button/door/directional/east{ id = "qm_cargobay"; - name = "Cargo Bay Door Control" + name = "Cargo Bay Inner Shutters" }, /obj/machinery/camera/directional/east{ c_tag = "Cargo Bay - Reception" }, -/obj/machinery/fax{ - fax_name = "Cargo Office"; - name = "Cargo Office Fax Machine" - }, -/obj/structure/table, /obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /turf/open/floor/iron, /area/station/cargo/storage) "nmn" = ( @@ -46730,16 +49147,12 @@ /obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"nmH" = ( -/obj/item/pushbroom, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) -"nmO" = ( -/obj/effect/spawner/random/entertainment/arcade{ +"nmE" = ( +/obj/structure/chair{ dir = 1 }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nmQ" = ( /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 1 @@ -46755,6 +49168,16 @@ }, /turf/open/floor/wood/large, /area/station/service/library) +"nmW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "nnf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46769,20 +49192,15 @@ /obj/machinery/light/floor, /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) -"nns" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "nny" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/hallway/primary/central) -"nnB" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +"nnD" = ( +/obj/machinery/firealarm/directional/south, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "nnH" = ( /turf/closed/wall, /area/station/commons/storage/primary) @@ -46819,50 +49237,26 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) +"nnQ" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nnS" = ( /obj/structure/table/reinforced, /turf/open/floor/engine/hull, /area/space/nearstation) "nnW" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/folder/yellow{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/stamp{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/stamp/denied{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"nog" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/folder/yellow{ - pixel_x = 2; - pixel_y = -12 +/obj/machinery/computer/security/telescreen/normal/directional/west, +/obj/structure/chair/comfy/carp{ + name = "Captain's Chair" }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nnX" = ( +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "noi" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/spawner/random/structure/table_or_rack, @@ -46872,14 +49266,12 @@ /turf/open/floor/iron, /area/station/service/kitchen/abandoned) "nol" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/button/door/directional/north{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - req_access = list("command") +/obj/effect/turf_decal/siding/dark{ + dir = 5 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "nom" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46887,6 +49279,19 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"now" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"nox" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/vending/engivend, +/obj/structure/sign/poster/official/moth_delam/directional/north, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "noz" = ( /obj/structure/chair/office/light{ dir = 8 @@ -46895,14 +49300,6 @@ /obj/effect/landmark/start/research_director, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"noC" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "noF" = ( /obj/effect/turf_decal/stripes/asteroid/corner{ dir = 1 @@ -46951,12 +49348,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"noM" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2o{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "noU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/effect/turf_decal/siding/red{ @@ -46977,17 +49368,20 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "npf" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"npj" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light_switch/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"npo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "nps" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -46997,6 +49391,15 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"npt" = ( +/obj/machinery/shower/directional/west, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"npw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/aft) "npx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -47013,19 +49416,6 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/wood, /area/station/command/teleporter) -"npG" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "npH" = ( /obj/machinery/door/firedoor, /obj/structure/cable, @@ -47050,7 +49440,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "npS" = ( /obj/item/stack/sheet/mineral/wood{ pixel_x = -12; @@ -47066,6 +49456,11 @@ }, /turf/open/floor/iron/dark, /area/station/security/evidence) +"nqf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "nqg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47081,29 +49476,17 @@ }, /turf/open/floor/iron/dark, /area/station/science/server) -"nqm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +"nqo" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + anchored = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "nqt" = ( /turf/open/floor/plating/elevatorshaft, /area/station/engineering/supermatter/room) -"nqu" = ( -/obj/structure/light_construct/directional/east{ - dir = 1 - }, -/obj/structure/closet/secure_closet/bar/all_access{ - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"nqy" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/medical/medbay/central) "nqC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -47179,30 +49562,14 @@ /obj/machinery/holopad, /turf/open/floor/carpet, /area/station/command/corporate_showroom) -"nrj" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/plasma{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "nrw" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/arrows{ - dir = 1 + dir = 5 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/turf/open/floor/iron/dark/smooth_corner{ dir = 8 }, -/turf/open/floor/iron/dark, /area/station/command/gateway) -"nrO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/oven, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "nrP" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -47213,12 +49580,33 @@ /obj/structure/railing{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) +"nrT" = ( +/obj/structure/rack, +/obj/item/storage/crayons{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 5 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "nrZ" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/station/commons/storage/primary) +"nsn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/aft) "nsp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/meter, @@ -47226,6 +49614,22 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"nsr" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ + dir = 6 + }, +/turf/open/floor/iron/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) "nsD" = ( /obj/machinery/power/tracker, /obj/structure/lattice/catwalk, @@ -47243,7 +49647,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nsM" = ( /obj/structure/chair{ dir = 1 @@ -47251,14 +49655,6 @@ /obj/effect/landmark/start/prisoner, /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) -"nsN" = ( -/obj/structure/cable, -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "nsO" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/green/opposingcorners{ @@ -47302,33 +49698,22 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/wood/tile, /area/station/science/robotics) -"nts" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ntw" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Dormitories - Lower Entrance" - }, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) "ntx" = ( /obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron, /area/station/cargo/storage) -"ntA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"ntz" = ( +/obj/structure/ladder, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "ntJ" = ( /obj/structure/railing, /obj/machinery/camera/autoname/directional/north{ network = list("aicore") }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ntN" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) @@ -47348,14 +49733,14 @@ }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"ntW" = ( -/obj/structure/cable, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"nuh" = ( +/obj/machinery/light/floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "nuw" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -47368,11 +49753,11 @@ /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/construction) "nuz" = ( -/obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes, +/turf/open/floor/iron/textured, +/area/station/command/eva) "nuG" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, @@ -47385,13 +49770,15 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"nuP" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Abandoned Bar" +"nuR" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "nuT" = ( /obj/machinery/status_display/evac/directional/east, /obj/machinery/light/directional/east, @@ -47457,7 +49844,7 @@ /obj/structure/lattice/catwalk, /obj/structure/railing, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nvt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -47482,12 +49869,6 @@ /obj/machinery/light/floor, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"nvA" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/science/server) "nvB" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/power/terminal{ @@ -47501,10 +49882,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/courtroom) -"nvM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) "nvO" = ( /obj/structure/barricade/wooden, /obj/effect/spawner/random/maintenance/two, @@ -47541,48 +49918,43 @@ /obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/plating, /area/station/maintenance/central) -"nwd" = ( -/obj/effect/turf_decal/tile/purple/half{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/white/textured_half, -/area/station/science/robotics) -"nwe" = ( -/obj/machinery/vatgrower, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "nwo" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/wood, /area/station/commons/storage/tools) -"nws" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "nwG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"nwH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "nwJ" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"nwK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/central) "nwQ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 +/obj/machinery/conveyor{ + dir = 6; + id = "mining" }, -/obj/structure/chair/sofa/corner/brown, -/obj/effect/spawner/random/maintenance, /turf/open/floor/iron/textured, /area/station/cargo/storage) "nwT" = ( @@ -47622,30 +49994,18 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"nxi" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 +"nxq" = ( +/obj/machinery/power/turbine/turbine_outlet{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "nxr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"nxv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/clothing/head/wig/random, -/obj/item/bodypart/head/lizard, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) "nxG" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner/end{ @@ -47661,14 +50021,6 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /turf/open/floor/plating, /area/station/security/execution/education) -"nxN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "nxR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47691,27 +50043,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nyb" = ( /obj/structure/closet, /obj/effect/spawner/random/clothing/funny_hats, /turf/open/floor/plating, /area/station/maintenance/port) -"nym" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/pen, -/obj/structure/sign/poster/contraband/missing_gloves/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) -"nyq" = ( -/turf/open/floor/iron/dark/smooth_half, -/area/station/service/library) -"nyz" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, +"nye" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, /turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/engineering/atmos) +"nyh" = ( +/obj/item/stack/rods{ + amount = 7 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "nyA" = ( /obj/machinery/camera/motion{ c_tag = "Vault - Lower"; @@ -47724,11 +50077,17 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "nyB" = ( /obj/structure/chair/stool/bar/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) +"nyF" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nyG" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -47757,25 +50116,6 @@ dir = 8 }, /area/station/commons/lounge) -"nyR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nyX" = ( -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Chief Engineers Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) "nyY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -47783,20 +50123,16 @@ /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) "nzd" = ( -/obj/structure/chair{ - dir = 8 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 }, /obj/machinery/light/directional/east, -/obj/structure/sign/directions/medical/directional/east{ - dir = 2 - }, /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "nzj" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -47820,6 +50156,13 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"nzx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "nzy" = ( /obj/structure/closet/crate/trashcart/filled, /obj/structure/sign/poster/contraband/random/directional/west, @@ -47836,16 +50179,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) -"nzG" = ( -/obj/structure/transport/linear{ - radial_travel = 0 - }, -/turf/open/openspace, -/area/station/engineering/break_room) -"nzZ" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "nAc" = ( /obj/structure/fans/tiny/invisible, /obj/effect/turf_decal/stripes/line{ @@ -47859,8 +50192,8 @@ /obj/machinery/door/airlock/grunge{ name = "Under The Stairs" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "nAf" = ( @@ -47881,14 +50214,19 @@ /obj/structure/closet/crate/trashcart/filled, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"nAA" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, +"nAv" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/locker) +"nAx" = ( +/obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/area/station/maintenance/starboard/fore/upper) "nAB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -47897,23 +50235,13 @@ }, /turf/open/floor/plating, /area/station/science/cytology) -"nAN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release"; - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"nAS" = ( -/obj/item/cigbutt{ - pixel_x = 7; - pixel_y = 14 +"nAM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "nAY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -47921,51 +50249,18 @@ }, /turf/open/floor/iron, /area/station/construction/storage_wing) -"nBg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "nBi" = ( /obj/structure/barricade/sandbags, /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"nBq" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"nBr" = ( -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 +"nBm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"nBs" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/engineering/supermatter/room/upper) "nBu" = ( /obj/structure/closet/crate/trashcart/laundry, /turf/open/floor/plating, @@ -47980,7 +50275,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "nBE" = ( /obj/effect/spawner/random/trash/graffiti{ pixel_y = 32 @@ -47997,11 +50292,12 @@ }, /turf/open/floor/iron/white/smooth_corner, /area/station/hallway/secondary/entry) -"nBH" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/engineering/atmos/upper) +"nBR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "nBS" = ( /obj/structure/closet, /obj/effect/landmark/start/hangover, @@ -48029,10 +50325,20 @@ /turf/open/floor/iron, /area/station/science/lab) "nCg" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/chair/sofa/left/brown{ + dir = 1 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) +"nCh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "nCo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/dark_blue{ @@ -48041,6 +50347,11 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"nCp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/aft) "nCt" = ( /obj/machinery/modular_computer/preset/civilian{ dir = 1 @@ -48063,24 +50374,7 @@ dir = 5 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) -"nCx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1 - }, -/obj/effect/mapping_helpers/mail_sorting/science/genetics, -/obj/effect/mapping_helpers/mail_sorting/science/rd_office, -/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, -/obj/effect/mapping_helpers/mail_sorting/science/research, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"nCC" = ( -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/obj/structure/closet/wardrobe/white, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/area/station/ai/upload/chamber) "nCI" = ( /obj/machinery/component_printer, /obj/effect/turf_decal/bot_white, @@ -48090,23 +50384,16 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/station/maintenance/port) -"nCO" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nCR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 +"nCT" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + listening = 0; + name = "Station Intercom (Court)" }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/turf/open/floor/carpet, +/area/station/security/courtroom) "nDe" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48132,17 +50419,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/security/courtroom) -"nDB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/table, -/obj/item/pai_card, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) "nDS" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/siding/blue{ @@ -48151,6 +50427,10 @@ /obj/effect/turf_decal/arrows{ dir = 4 }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + location = "Head of Personnel" + }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "nDX" = ( @@ -48167,11 +50447,11 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/fore) -"nEq" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"nEn" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "nEr" = ( /obj/structure/railing{ dir = 4 @@ -48182,10 +50462,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"nEA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +"nEt" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "nEM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48195,61 +50477,64 @@ /area/station/maintenance/starboard/central) "nEO" = ( /obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/tile/brown/fourcorners, /obj/machinery/camera/autoname/directional/west, /obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "nEQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nES" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/area/station/ai/satellite/interior) +"nEW" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"nFx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/area/station/maintenance/starboard) +"nEX" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/pen, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"nFp" = ( +/obj/effect/landmark/firealarm_sanity, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/commons/dorms) "nFz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "nFA" = ( -/obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "nFB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/machinery/button/door/incinerator_vent_ordmix{ + pixel_y = 8; + pixel_x = -8 + }, /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) -"nFE" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - dir = 8 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "nFI" = ( /obj/effect/spawner/random/maintenance, /obj/effect/mapping_helpers/burnt_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "nFL" = ( /turf/closed/wall/r_wall, /area/station/security/execution/transfer) @@ -48299,8 +50584,9 @@ /obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "nGs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48326,32 +50612,27 @@ /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"nGB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +"nGA" = ( +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "nGH" = ( -/obj/effect/turf_decal/siding/red{ - dir = 6 - }, -/obj/structure/filingcabinet{ - pixel_x = 4 - }, /obj/structure/railing{ dir = 6 }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/turf/open/floor/iron/dark, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) -"nGI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"nGP" = ( +/obj/machinery/button/door/directional/west{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -10 + }, +/turf/closed/wall, +/area/station/maintenance/disposal) "nGR" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -48359,6 +50640,21 @@ }, /turf/open/openspace, /area/station/command/gateway) +"nGV" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/newscaster/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "nGW" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -48410,6 +50706,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"nHG" = ( +/obj/item/training_toolbox{ + pixel_y = 6 + }, +/obj/item/training_toolbox, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/structure/rack, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "nHL" = ( /mob/living/basic/slime, /turf/open/floor/engine, @@ -48418,16 +50726,11 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"nIi" = ( -/obj/machinery/atmospherics/pipe/multiz/cyan/visible{ - dir = 8; - name = "Air Mix Multideck Adapter" - }, -/obj/machinery/meter{ - name = "Mix Meter" - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"nIa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "nIo" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters" @@ -48438,14 +50741,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"nIq" = ( -/obj/effect/turf_decal/siding/brown/end{ - dir = 8 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "nIu" = ( /obj/structure/table, /obj/item/reagent_containers/cup/beaker/large{ @@ -48463,20 +50762,16 @@ /obj/item/folder/red, /turf/open/floor/iron/dark/smooth_large, /area/station/security/courtroom) -"nID" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"nIH" = ( -/obj/structure/weightmachine, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"nIC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft/upper) "nIL" = ( /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -48496,6 +50791,13 @@ }, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"nIX" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "nIY" = ( /obj/machinery/portable_atmospherics/canister/plasma, /obj/effect/turf_decal/box/red, @@ -48527,10 +50829,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"nJJ" = ( -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "nJN" = ( /obj/structure/showcase/cyborg/old{ dir = 4; @@ -48538,7 +50836,7 @@ pixel_y = 2 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nJS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/disposal/bin, @@ -48548,9 +50846,12 @@ /turf/open/floor/iron/freezer, /area/station/commons/toilet/auxiliary) "nJU" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" }, +/obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron, /area/station/cargo/storage) "nJV" = ( @@ -48566,21 +50867,52 @@ }, /turf/open/floor/engine, /area/station/medical/chemistry) +"nKe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/lobby) +"nKf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "nKj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/sandbags, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"nKk" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "nKn" = ( /obj/structure/stairs/south, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"nKp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "nKr" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 5 }, -/obj/structure/rack, /obj/machinery/firealarm/directional/east, +/obj/structure/rack, +/obj/item/pushbroom, /turf/open/floor/iron, /area/station/cargo/storage) "nKs" = ( @@ -48595,22 +50927,22 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"nKz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "nKB" = ( /obj/machinery/shower/directional/south, /obj/effect/turf_decal/tile/blue/full, /obj/effect/turf_decal/siding/blue/end, /turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/central) -"nKD" = ( -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable/layer1, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +"nKE" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin2"; + name = "Decomissioned Cabin" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "nKJ" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -48619,7 +50951,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nKP" = ( /obj/structure/sign/departments/restroom/directional/east, /obj/effect/turf_decal/trimline/dark_blue/warning, @@ -48629,7 +50961,11 @@ /turf/open/floor/iron/white/smooth_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"nKW" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "nLl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -48648,6 +50984,10 @@ "nLp" = ( /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"nLt" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "nLC" = ( /obj/effect/turf_decal/siding/brown, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -48682,19 +51022,21 @@ }, /turf/open/floor/plating, /area/station/medical/surgery) -"nMp" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/chair/sofa/corp/left{ - dir = 1 +"nLZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"nMr" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "nMC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/slippery, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "nML" = ( @@ -48721,10 +51063,35 @@ /obj/machinery/light/floor, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"nNg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"nNi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosengimainttriangle" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "nNj" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Bridge Escape" + }, +/obj/machinery/door/firedoor, /obj/structure/cable, -/turf/closed/wall, -/area/station/maintenance/central) +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "nNt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/mecha_wreckage/ripley{ @@ -48734,15 +51101,21 @@ /turf/open/floor/iron, /area/station/maintenance/starboard/central) "nNu" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes{ + dir = 4 }, -/obj/structure/railing{ +/obj/effect/turf_decal/stripes{ dir = 8 }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/textured, +/area/station/command/eva) +"nNA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "nNC" = ( /obj/machinery/power/smes, /obj/structure/cable, @@ -48778,7 +51151,7 @@ /turf/open/floor/iron/smooth_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nNY" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -48786,9 +51159,25 @@ /turf/open/floor/iron/smooth, /area/station/engineering/main) "nOe" = ( -/obj/structure/statue/sandstone/venus, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nOm" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/button/door/directional/east{ + id = "Cabin9"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/wood, -/area/station/command/meeting_room/council) +/area/station/commons/dorms) "nOo" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/dirt, @@ -48814,39 +51203,50 @@ /obj/machinery/airalarm/directional/south, /obj/machinery/washing_machine, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nOF" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "HoPsToy"; - name = "Loading Conveyor"; - pixel_x = -13; - pixel_y = 8 - }, -/obj/structure/chair/comfy/brown{ +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) -"nOU" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/package_wrap, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +"nOK" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"nOT" = ( +/obj/item/statuebust, +/obj/machinery/light/cold/no_nightlight/directional/east, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) +"nOV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) "nPb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank, /obj/structure/sign/poster/contraband/space_cola/directional/north, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "nPe" = ( /obj/structure/railing{ dir = 4 }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "nPf" = ( /obj/effect/decal/cleanable/dirt, @@ -48866,39 +51266,16 @@ /obj/machinery/suit_storage_unit/security, /turf/open/floor/iron/dark/smooth_large, /area/station/security/eva) -"nPB" = ( -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "nPN" = ( /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"nPP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nPS" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump/on/layer5{ - name = "N2 to Airmix" - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "nPW" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "nPY" = ( /obj/effect/decal/cleanable/dirt, @@ -48927,15 +51304,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"nQs" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "nQu" = ( /obj/machinery/light_switch/directional/east, /obj/effect/turf_decal/tile/yellow/opposingcorners{ @@ -48958,6 +51326,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/construction/storage_wing) +"nQE" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "nQG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48996,12 +51373,10 @@ /turf/open/floor/iron/dark, /area/station/security/checkpoint/customs) "nRz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "nRE" = ( /turf/open/openspace, /area/station/medical/medbay/central) @@ -49013,6 +51388,12 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) +"nRN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "nRP" = ( /obj/machinery/power/solar_control{ dir = 1; @@ -49022,18 +51403,6 @@ /obj/structure/cable, /turf/open/floor/glass/reinforced, /area/station/solars/starboard/fore) -"nRS" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/minisat/directional/west, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"nSp" = ( -/obj/structure/closet/radiation, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "nSs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49054,7 +51423,7 @@ /obj/structure/bodycontainer/morgue{ dir = 1 }, -/obj/machinery/newscaster/directional/south, +/obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) "nSx" = ( @@ -49062,20 +51431,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/station/service/abandoned_gambling_den) -"nSS" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +"nSK" = ( +/obj/structure/table/reinforced, +/obj/item/trash/candle{ + pixel_x = 11; + pixel_y = 11 }, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" +/obj/item/trash/candle{ + pixel_x = 7; + pixel_y = 3 }, -/obj/machinery/bouldertech/refinery, -/obj/structure/railing{ - dir = 1 +/obj/item/trash/candle{ + pixel_x = -9; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"nSS" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 }, +/obj/structure/sign/poster/random/directional/west, /turf/open/floor/iron, /area/station/cargo/miningoffice) "nSX" = ( @@ -49092,6 +51470,19 @@ }, /turf/open/floor/iron, /area/station/science/explab) +"nTf" = ( +/obj/machinery/computer/atmos_control/nitrous_tank, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "nTg" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/floor/plating, @@ -49108,7 +51499,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nTl" = ( /obj/structure/table, /obj/item/clothing/head/soft/grey{ @@ -49125,16 +51516,6 @@ }, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"nTp" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/tank_dispenser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "nTv" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -49150,6 +51531,9 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"nTy" = ( +/turf/open/floor/engine/hull/air, +/area/station/commons/fitness/recreation) "nTA" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, @@ -49167,49 +51551,41 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/science/lab) -"nTM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) +"nTU" = ( +/obj/item/ammo_casing/spent{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "nTX" = ( /obj/structure/lattice/catwalk, /obj/machinery/airalarm/directional/south, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) "nUd" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/wrapping, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/oil/slippery, +/obj/structure/closet/crate, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/railing/corner/end{ - dir = 8 - }, -/turf/open/floor/iron, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) -"nUj" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/break_room) -"nUk" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) +"nUi" = ( +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) "nUo" = ( /obj/structure/lattice/catwalk, /obj/effect/spawner/random/maintenance, @@ -49218,7 +51594,18 @@ "nUq" = ( /obj/structure/ladder, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"nUr" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "nUw" = ( /mob/living/carbon/human/species/monkey, /obj/effect/turf_decal/weather/dirt{ @@ -49237,15 +51624,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/science/lobby) -"nUB" = ( -/obj/structure/lattice/catwalk, -/obj/item/kirbyplants/random/dead{ - desc = "You guys had ONE job."; - name = "the community's plant" - }, -/obj/structure/railing, -/turf/open/openspace, -/area/station/commons/dorms) "nUC" = ( /obj/machinery/newscaster/directional/east{ pixel_y = 2 @@ -49266,6 +51644,13 @@ }, /turf/open/floor/iron/dark/smooth_edge, /area/station/commons/lounge) +"nUF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "nUV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -49277,11 +51662,12 @@ /turf/open/floor/iron/dark, /area/station/science/xenobiology) "nVc" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, /obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, +/obj/structure/chair/plastic, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "nVg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, @@ -49303,16 +51689,21 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison) +"nVz" = ( +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "nVE" = ( /turf/closed/wall/r_wall, /area/station/service/abandoned_gambling_den) -"nVH" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/west, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"nVV" = ( +/obj/item/banner/command/mundane, +/turf/open/floor/plating, +/area/station/maintenance/port) +"nVY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/recharge_floor, +/area/station/maintenance/starboard/aft/upper) "nWe" = ( /obj/structure/cable, /obj/machinery/power/emitter/welded{ @@ -49331,14 +51722,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"nWs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 11 +"nWu" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/directional/west, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) "nWD" = ( /obj/structure/railing{ dir = 8 @@ -49357,7 +51750,7 @@ pixel_y = 8 }, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nWI" = ( /obj/effect/spawner/random/contraband/permabrig_weapon, /obj/effect/spawner/random/structure/crate_loot, @@ -49373,8 +51766,11 @@ /turf/open/floor/wood/large, /area/station/commons/lounge) "nWO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, +/obj/machinery/light/directional/east, +/obj/effect/landmark/start/captain, +/obj/structure/bed/double, +/obj/item/bedsheet/captain/double, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "nWS" = ( /obj/effect/turf_decal/stripes/line{ @@ -49393,16 +51789,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"nWV" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/lattice/catwalk, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo Bay - Security Post (High)"; - pixel_x = 14 - }, -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/security/checkpoint/supply) +"nWX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "nWY" = ( /obj/structure/disposalpipe/trunk/multiz/down{ dir = 2 @@ -49419,6 +51811,14 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) +"nXh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "nXi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49435,24 +51835,31 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nXp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nXr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) +/area/station/ai/satellite/interior) +"nXq" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "nXw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating, /area/station/medical/medbay/central) +"nXB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "nXQ" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -49467,7 +51874,15 @@ name = "AI Core Access" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"nXR" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/horrific_experiment, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "nXY" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -49478,7 +51893,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nYc" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance/no_decals/six, @@ -49517,7 +51932,17 @@ network = list("minisat") }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"nYA" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) "nYD" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "SM_shutters"; @@ -49527,47 +51952,31 @@ /area/station/engineering/supermatter) "nYQ" = ( /turf/open/floor/iron/smooth_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"nYR" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/ai/satellite/foyer) "nYT" = ( +/obj/structure/ladder, /obj/structure/railing{ dir = 4 }, -/obj/structure/ladder, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/stripes{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) -"nYZ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) -"nZa" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/turf/open/floor/iron/textured, +/area/station/command/eva) +"nYV" = ( +/obj/machinery/atmospherics/components/unary/passive_vent, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"nZb" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/jungle{ - pixel_y = -7 - }, -/obj/structure/flora/bush/pale/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) +/obj/structure/sign/warning/hot_temp/directional/west, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"nYZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) "nZd" = ( /obj/machinery/mass_driver/ordnance{ dir = 4; @@ -49577,6 +51986,14 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"nZq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "nZt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -49588,13 +52005,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"nZD" = ( -/obj/machinery/light/floor, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "nZF" = ( /obj/effect/turf_decal/tile/dark_blue{ dir = 1 @@ -49680,25 +52090,41 @@ "oam" = ( /turf/open/floor/engine/hull/air, /area/station/medical/medbay/central) -"oaA" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) +"oan" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "oaF" = ( -/obj/structure/window/reinforced/spawner/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/window/reinforced/spawner/directional/west, /obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "oaQ" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, /turf/closed/wall/r_wall, /area/station/science/xenobiology) +"oaX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/chief_engineer, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "obn" = ( /turf/closed/wall/r_wall, /area/station/hallway/primary/central) @@ -49712,7 +52138,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "obv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/holopad, @@ -49725,17 +52151,27 @@ /obj/structure/flora/rock/style_4, /obj/structure/flora/bush/flowers_br/style_3, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "obJ" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "miningshuttleexit" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, /turf/open/floor/iron, /area/station/cargo/miningoffice) +"obM" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "obQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -49791,14 +52227,6 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"ocF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "ocG" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -49811,16 +52239,13 @@ /turf/open/floor/iron/grimy, /area/station/security/detectives_office/private_investigators_office) "ocL" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "ocN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49848,19 +52273,18 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) -"ocZ" = ( -/obj/effect/turf_decal/tile/purple/half{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "Plasma Multideck Adapter"; - dir = 4 +"ocW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "Cabin9"; + name = "Cabin 9" }, -/obj/machinery/meter{ - name = "Plasma meter" +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) "odd" = ( /obj/structure/railing{ dir = 1 @@ -49883,17 +52307,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/service/chapel/office) -"odB" = ( -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -2 - }, +"odo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"odE" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/area/station/maintenance/starboard/upper) "odM" = ( /obj/item/bodypart/head/lizard, /obj/effect/decal/cleanable/blood/old, @@ -49905,7 +52325,7 @@ }, /obj/machinery/light/directional/south, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "odZ" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue{ @@ -49944,21 +52364,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood/tile, /area/station/science/robotics) -"oeF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/lattice/catwalk, +"oeH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"oeQ" = ( +/obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"oeR" = ( -/obj/structure/table, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "ofc" = ( /obj/machinery/digital_clock/directional/west, /obj/structure/disposalpipe/trunk{ @@ -49989,6 +52410,12 @@ /obj/machinery/atmospherics/components/unary/thermomachine/freezer, /turf/open/floor/iron/dark, /area/station/medical/cryo) +"ofs" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "ofE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49997,6 +52424,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood/large, /area/station/service/bar) +"ofK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "ofL" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -50040,31 +52474,22 @@ /obj/structure/sign/warning/yes_smoking/circle/directional/west, /turf/open/floor/iron, /area/station/science/research) -"ogn" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) -"ogB" = ( -/obj/machinery/power/turbine/core_rotor{ - dir = 8; - mapping_id = "main_turbine" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "ogF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plating, /area/station/hallway/primary/central) -"ogG" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/station/commons/dorms) +"ogR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/plasma_tank, +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ohb" = ( /obj/machinery/airalarm/directional/south, /obj/item/toy/crayon/white{ @@ -50081,9 +52506,20 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"ohd" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "ohh" = ( /turf/open/floor/grass, /area/station/science/cytology) +"ohi" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "ohp" = ( /obj/effect/spawner/random/trash/graffiti{ pixel_y = 32 @@ -50102,13 +52538,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"ohw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "ohy" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -50117,13 +52546,20 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, /area/station/hallway/primary/port) -"ohJ" = ( -/obj/structure/disposalpipe/trunk/multiz/down{ +"ohG" = ( +/turf/closed/wall, +/area/station/maintenance/aft) +"ohH" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 4 }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +/obj/structure/cable, +/obj/machinery/light_switch/directional/west{ + pixel_y = -6 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "ohP" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -50148,23 +52584,38 @@ /obj/structure/sign/departments/virology/directional/east, /turf/open/floor/plating, /area/station/medical/virology) -"oil" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +"oim" = ( +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "oio" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/machinery/light/warm/directional/south, /obj/structure/flora/grass/jungle/a/style_2, /obj/structure/flora/bush/flowers_br/style_2, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oip" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/brown/filled/line, /turf/open/floor/iron, /area/station/cargo/storage) +"oit" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"oiw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "oiz" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -50199,11 +52650,6 @@ /obj/item/electronics/apc, /turf/open/floor/wood, /area/station/commons/storage/tools) -"oiQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "oiR" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -50213,6 +52659,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"oiV" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "oiW" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -50230,19 +52683,13 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "ojj" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 +/turf/open/floor/iron/edge{ + dir = 1 }, -/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"ojr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "ojx" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron/dark/smooth_large, @@ -50272,23 +52719,36 @@ /turf/open/floor/wood/tile, /area/station/science/robotics) "ojU" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/wood, /area/station/service/library) +"ojV" = ( +/obj/structure/lattice/catwalk, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/structure/table, +/obj/machinery/newscaster/directional/south, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "ojW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/closed/wall, /area/station/service/chapel/office) -"ojZ" = ( -/obj/structure/bed, -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) "okc" = ( /obj/structure/lattice/catwalk, /obj/structure/window/reinforced/spawner/directional/south, @@ -50310,17 +52770,13 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/exit/departure_lounge) -"okm" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored{ - cable_layer = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 5 +"okt" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + dir = 8 }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/turf/open/openspace, +/area/station/maintenance/aft/upper) "oky" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -50332,14 +52788,14 @@ /turf/open/floor/wood/large, /area/station/hallway/secondary/service) "okC" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/machinery/flasher/directional/east{ - id = "hopflash" +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "Lcommissaryshutter"; + name = "Vacant Commissary Shutter" }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) "okE" = ( /obj/structure/railing{ dir = 9 @@ -50354,6 +52810,21 @@ }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) +"okG" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"okJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "okM" = ( /obj/structure/closet/crate{ name = "Spare Chairs" @@ -50370,36 +52841,17 @@ /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/wood, /area/station/service/library/printer) -"okO" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"okP" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/autoname/directional/east, -/turf/open/openspace, -/area/station/engineering/lobby) "olm" = ( /obj/structure/stairs/west, /obj/structure/railing, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"olr" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/rack, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 +/area/station/ai/satellite/interior) +"oln" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/item/radio, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +/turf/open/floor/plating, +/area/station/maintenance/starboard) "olv" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -50407,48 +52859,49 @@ /obj/effect/landmark/navigate_destination/court, /turf/open/floor/carpet, /area/station/security/courtroom) -"olL" = ( -/obj/effect/turf_decal/trimline/white/corner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 +"olB" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/paper/pamphlet/gateway{ + pixel_x = -13; + pixel_y = 4 }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"olM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/poster/contraband/missing_gloves/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"olG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, /turf/open/floor/iron, -/area/station/science/breakroom) -"olU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/area/station/commons/fitness/recreation) +"olH" = ( +/obj/machinery/duct, /obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) -"omc" = ( -/obj/effect/turf_decal/trimline/yellow/filled, -/obj/item/kirbyplants/random/fullysynthetic, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "omu" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/mineral/stacking_unit_console{ - pixel_x = 32 - }, +/obj/item/storage/bag/trash/filled, /turf/open/floor/plating, /area/station/maintenance/disposal) -"omx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/vending/colavend, -/obj/effect/mapping_helpers/broken_machine, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) +"omw" = ( +/obj/machinery/door/window/brigdoor/left/directional/north{ + req_access = list("command"); + name = "Conference Room" + }, +/turf/open/floor/iron/stairs/medium{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"omF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) "omG" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/effect/turf_decal/siding/purple/corner{ @@ -50459,6 +52912,10 @@ }, /turf/open/floor/iron, /area/station/science/lab) +"omU" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "omX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -50467,13 +52924,6 @@ /obj/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"onh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "onj" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/newscaster/directional/north, @@ -50482,24 +52932,11 @@ }, /turf/open/floor/wood/large, /area/station/medical/psychology) -"onm" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/machinery/door/airlock/command{ - name = "Abandoned Lab" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "onn" = ( /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 8 }, -/obj/effect/decal/cleanable/generic, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) "onv" = ( @@ -50515,16 +52952,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/port) -"onG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "onV" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -50532,13 +52959,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/port) -"oob" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/layer1, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +"onW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "ood" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, @@ -50553,35 +52982,14 @@ /obj/structure/frame/machine, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) +"oov" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "oox" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/carpet, /area/station/security/courtroom) -"ooy" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ooF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ooK" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/multitool{ - pixel_x = 7; - pixel_y = -4 - }, -/obj/structure/disposalpipe/trunk/multiz, -/obj/item/stamp/head/qm{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "ooS" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 1 @@ -50589,7 +52997,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ooY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -50607,18 +53015,17 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) "opj" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/carpet, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"ops" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "opu" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port/aft) "opA" = ( @@ -50653,20 +53060,8 @@ /turf/open/floor/iron/white, /area/station/maintenance/department/medical) "opL" = ( -/obj/machinery/door/airlock/mining{ - name = "Deliveries" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/shipping, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/iron, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/station/cargo/sorting) "opO" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -50685,6 +53080,16 @@ }, /turf/open/floor/glass, /area/station/science/zoo) +"opV" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "opW" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -50706,10 +53111,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"oqd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "oqi" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hydropony_shutters"; @@ -50718,6 +53119,17 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/hydroponics) +"oql" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "oqq" = ( /obj/structure/table, /obj/item/folder/red, @@ -50731,18 +53143,9 @@ /turf/open/floor/plating, /area/station/construction/storage_wing) "oqA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/fake_stairs/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) -"oqW" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "ora" = ( /obj/structure/railing/corner/end, /obj/effect/turf_decal/stripes/corner{ @@ -50757,19 +53160,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/science/robotics/lab) -"orb" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"orm" = ( +"ork" = ( /obj/structure/cable, -/obj/structure/sign/poster/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/firealarm_sanity, -/turf/open/floor/iron, -/area/station/engineering/main) +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "orr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/graffiti, @@ -50807,6 +53204,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/research) +"orR" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) +"osf" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) "osp" = ( /obj/machinery/door/airlock/public/glass{ name = "Departure Balcony" @@ -50814,21 +53228,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/fore) -"osu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/lobby) "osx" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_cargobay"; - name = "Cargo Bay Shutters" +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/right/directional/south{ + req_access = list("maint_tunnels"); + name = "Danger: Conveyor Access" }, -/obj/effect/spawner/random/maintenance, -/obj/machinery/door/firedoor, /turf/open/floor/plating, -/area/station/cargo/storage) +/area/station/maintenance/disposal) "osC" = ( /obj/structure/table, /obj/item/clipboard{ @@ -50852,6 +53259,10 @@ /obj/machinery/light/directional/east, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) +"osD" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "osO" = ( /turf/open/floor/engine{ name = "Holodeck Projector Floor" @@ -50899,17 +53310,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) -"otb" = ( -/obj/structure/sign/directions/command/directional/west{ - dir = 2; - pixel_y = 5 - }, -/obj/structure/sign/directions/evac/directional/west{ - dir = 2; - pixel_y = -3 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "oti" = ( /obj/machinery/door/airlock/virology{ name = "Genetics Lab" @@ -50935,7 +53335,21 @@ dir = 8 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"otW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mop_bucket, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "ouo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -50971,15 +53385,11 @@ }, /turf/open/floor/iron/kitchen, /area/station/hallway/secondary/service) -"ouH" = ( +"ouJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 4 - }, +/obj/effect/decal/cleanable/blood/footprints, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "ouK" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -50989,7 +53399,8 @@ /area/station/hallway/secondary/service) "ouW" = ( /obj/structure/sign/plaques/kiddie/library{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/structure/railing{ dir = 4 @@ -51034,16 +53445,26 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/greater) -"ovN" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/engine_smes) +"ovJ" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "ovQ" = ( /obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"ovV" = ( +/obj/machinery/shower/directional/west, +/obj/structure/fluff/shower_drain, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/engineering/main) "owf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/north, @@ -51056,6 +53477,10 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/engine, /area/station/service/hydroponics) +"owk" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "own" = ( /turf/closed/wall, /area/station/hallway/secondary/service) @@ -51080,10 +53505,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) -"owz" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) "owK" = ( /obj/structure/mineral_door/wood, /turf/open/floor/plating, @@ -51107,11 +53528,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"oxe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/glass, -/area/station/maintenance/starboard/aft) +"oxc" = ( +/obj/machinery/holopad, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "oxg" = ( /obj/machinery/photocopier/prebuilt, /obj/structure/railing{ @@ -51119,40 +53540,31 @@ }, /turf/open/floor/wood/large, /area/station/service/library/private) -"oxi" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/wood, -/obj/item/paper/crumpled{ - pixel_x = 2; - pixel_y = 7 +"oxo" = ( +/obj/item/cigbutt{ + pixel_x = 8; + pixel_y = -2 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"oxn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"oxy" = ( /obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/landmark/navigate_destination/atmos, -/turf/open/floor/iron/freezer, -/area/station/engineering/main) -"oxu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) +"oxC" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "oxG" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -51166,21 +53578,21 @@ name = "Teleporter Shutters" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) +"oxH" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/ammo_casing/spent{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "oxJ" = ( /obj/structure/table/reinforced, /obj/item/wrench, /obj/item/crowbar, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"oxM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/chamber) "oxS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/shower/directional/east, @@ -51194,6 +53606,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"oym" = ( +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"oyp" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "oyy" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/box/white, @@ -51201,6 +53625,22 @@ dir = 4 }, /area/station/science/ordnance/storage) +"oyz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"oyA" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "oyB" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/warning/explosives/alt/directional/west, @@ -51212,38 +53652,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"oyG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"oyI" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/table, -/obj/item/paper_bin/carbon{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/book/manual/wiki/tcomms{ - pixel_x = 14; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +"oyJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Office Maintenance" }, -/obj/machinery/computer/security/telescreen/tcomms/directional/south{ - name = "Telecomms Camera Monitor" +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/obj/item/pen, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"oyS" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"oyU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "ozh" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -51271,9 +53700,6 @@ /obj/effect/mapping_helpers/airlock/access/all/command/gateway, /turf/open/floor/wood, /area/station/command/gateway) -"ozp" = ( -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "ozt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -51284,29 +53710,14 @@ /obj/effect/mapping_helpers/mail_sorting/science/research, /turf/open/floor/iron, /area/station/science/research) -"ozw" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ozE" = ( -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "ozK" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 }, /obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "ozL" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -51334,11 +53745,29 @@ }, /turf/open/space/openspace, /area/space/nearstation) +"ozS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "oAa" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/open/space/basic, /area/station/solars/starboard/aft) +"oAf" = ( +/obj/structure/light_construct/directional/east{ + dir = 1 + }, +/obj/structure/closet/secure_closet/bar/all_access{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "oAo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/kirbyplants/photosynthetic, @@ -51349,7 +53778,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "oAL" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -51381,14 +53810,10 @@ dir = 1 }, /area/station/science/robotics/lab) -"oBa" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"oBl" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "oBo" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 1" @@ -51403,6 +53828,13 @@ /obj/structure/window/reinforced/plasma/spawner/directional/south, /turf/open/floor/engine/co2, /area/station/engineering/atmos/upper) +"oBr" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random/medical/memeorgans, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "oBy" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -51427,6 +53859,15 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood/large, /area/station/service/library) +"oBO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "oBT" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -51463,30 +53904,11 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"oCr" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"oCs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"oCA" = ( -/obj/effect/decal/cleanable/dirt, +"oCp" = ( +/obj/effect/turf_decal/stripes/line, /obj/structure/cable, -/obj/effect/decal/cleanable/blood/footprints{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "oCE" = ( /obj/machinery/door/airlock/maintenance{ name = "Delinquent Confiscation Storage" @@ -51498,17 +53920,16 @@ /obj/structure/girder, /turf/open/space/basic, /area/space/nearstation) +"oCN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) "oCO" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"oCS" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "oCT" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 @@ -51550,6 +53971,19 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"oDp" = ( +/obj/item/book/manual/wiki/atmospherics, +/obj/structure/table, +/obj/item/book/manual/wiki/atmospherics{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "oDq" = ( /obj/machinery/airalarm/directional/west, /obj/structure/table/reinforced, @@ -51569,13 +54003,30 @@ /turf/open/floor/iron/dark, /area/station/security/checkpoint/medical) "oDs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/ce) +"oDu" = ( +/obj/item/stack/sheet/mineral/wood{ + pixel_x = -5; + pixel_y = -6 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/area/station/security/detectives_office/private_investigators_office) +"oDx" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/obj/effect/decal/remains/human, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"oDB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/dorms) "oDC" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -51607,7 +54058,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oDN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -51617,15 +54068,24 @@ /obj/machinery/light/floor, /turf/open/floor/iron/textured, /area/station/security/brig) +"oDZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"oEh" = ( +/obj/structure/table/glass, +/obj/item/flashlight/flare/candle{ + pixel_x = 9; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "oEi" = ( /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, /area/station/science/robotics/lab) -"oEl" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "oEw" = ( /obj/machinery/vending/cigarette, /obj/effect/decal/cleanable/dirt, @@ -51644,17 +54104,15 @@ /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/maintenance/port/aft) -"oEN" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/lattice/catwalk, -/turf/open/floor/engine/hull/air, -/area/station/engineering/break_room) "oET" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/structure/chair/plastic{ + dir = 4 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "oEU" = ( /obj/structure/lattice/catwalk, @@ -51664,6 +54122,11 @@ /obj/machinery/vending/games, /turf/open/openspace, /area/station/construction/storage_wing) +"oFa" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/duct, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "oFg" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -51673,11 +54136,14 @@ /turf/open/floor/iron/textured_large, /area/station/medical/virology) "oFh" = ( -/obj/structure/rack, -/obj/item/tattoo_kit, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "oFj" = ( /obj/machinery/door/airlock/mining/glass{ name = "Bitrunning Den" @@ -51706,6 +54172,11 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"oFo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) "oFw" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -51717,15 +54188,29 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"oFI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "oFQ" = ( /turf/closed/wall/r_wall, /area/station/security/prison/rec) -"oFU" = ( -/obj/structure/rack, -/obj/item/pai_card, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"oGb" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "Plasma Multideck Adapter"; + dir = 4 + }, +/obj/machinery/meter{ + name = "Plasma meter" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "oGu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -51758,42 +54243,40 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "oGH" = ( -/obj/structure/chair{ - dir = 8 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 }, /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) -"oGO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"oGW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +"oGX" = ( +/obj/item/kirbyplants/random/dead{ + name = "dead plant" + }, +/obj/machinery/button/door/directional/east{ + id = "Cabin2"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "oHf" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 10 }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"oHs" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "oHu" = ( /obj/structure/sign/departments/restroom/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "oHw" = ( /obj/effect/decal/cleanable/dirt, @@ -51806,10 +54289,14 @@ /turf/open/floor/iron/textured_large, /area/station/security/prison/rec) "oHE" = ( -/obj/machinery/holopad/secure, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) +"oHF" = ( +/turf/open/floor/plating, +/area/station/maintenance/aft) "oHH" = ( /turf/open/openspace, /area/station/maintenance/port) @@ -51820,6 +54307,18 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"oHY" = ( +/obj/structure/table/wood, +/obj/item/book/bible{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"oIe" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "oIi" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 5 @@ -51829,10 +54328,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"oIk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "oIv" = ( /obj/structure/table, /obj/item/flashlight/lamp{ @@ -51841,16 +54336,48 @@ /turf/open/floor/wood/large, /area/station/medical/psychology) "oIA" = ( -/obj/structure/stairs/north, -/obj/structure/sign/departments/medbay/alt/directional/north, -/turf/open/floor/iron/stairs/medium, -/area/station/medical/medbay/central) -"oII" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/structure/table, +/obj/item/bodybag{ + pixel_y = 8; + pixel_x = -1 + }, +/obj/item/bodybag{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/storage/medkit/emergency{ + pixel_z = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/lobby) +"oIB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"oID" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"oII" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/arrows/red{ + dir = 8 + }, +/obj/effect/turf_decal/box/red, /turf/open/floor/iron/dark/textured, -/area/station/cargo/warehouse) +/area/station/cargo/sorting) "oIR" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, @@ -51861,7 +54388,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oIU" = ( /obj/item/canvas/twentythree_nineteen, /obj/item/canvas/nineteen_nineteen, @@ -51873,24 +54400,15 @@ }, /obj/structure/closet/crate, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/service/library) "oJd" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/warm/dim/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/keycard_auth/wall_mounted/directional/east, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/effect/spawner/random/maintenance, +/turf/open/floor/engine/hull/air, +/area/station/cargo/storage) "oJe" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -51912,7 +54430,10 @@ }, /obj/structure/cable, /obj/machinery/keycard_auth/wall_mounted/directional/south, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "oJj" = ( /obj/structure/table/reinforced, @@ -51925,7 +54446,7 @@ pixel_y = 11 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oJs" = ( /obj/structure/table/reinforced, /obj/structure/displaycase/forsale{ @@ -51943,6 +54464,16 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"oJt" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories - Lower Entrance" + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "oJv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51963,7 +54494,7 @@ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "oJz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/warning/vacuum/directional/west, @@ -51972,18 +54503,42 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"oJK" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/commons/dorms) "oJX" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"oKe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "oKg" = ( /turf/closed/wall, /area/station/engineering/storage/tcomms) +"oKk" = ( +/obj/machinery/button/elevator{ + id = "catwalk_engi"; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oKr" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "oKt" = ( /obj/structure/falsewall, /obj/effect/decal/cleanable/blood/tracks{ @@ -51997,10 +54552,10 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/central) -"oKx" = ( -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +"oKy" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "oKA" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 @@ -52010,7 +54565,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oKD" = ( /obj/structure/filingcabinet/chestdrawer, /obj/structure/disposalpipe/segment{ @@ -52018,10 +54573,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/explab) -"oKN" = ( -/obj/structure/broken_flooring/singular/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "oLa" = ( /obj/structure/table/wood, /obj/item/book/bible{ @@ -52043,8 +54594,24 @@ /turf/open/floor/iron/freezer, /area/station/security/prison/shower) "oLi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast-2"; + name = "Bridge Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + id_tag = "innerbridge" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, /area/station/command/bridge) "oLj" = ( /obj/effect/turf_decal/trimline/yellow/warning, @@ -52069,7 +54636,7 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oLv" = ( /obj/machinery/door/airlock/public/glass{ name = "Arrivals Lounge" @@ -52083,18 +54650,11 @@ /obj/effect/landmark/navigate_destination/dockarrival, /turf/open/floor/iron/white/side, /area/station/hallway/primary/aft) -"oLx" = ( -/obj/structure/broken_flooring/side/directional/east, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) "oLA" = ( /obj/structure/closet/firecloset, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"oLE" = ( -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "oLH" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -52102,7 +54662,7 @@ }, /obj/structure/railing, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "oLJ" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 4 @@ -52130,7 +54690,9 @@ /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "oLW" = ( /obj/structure/railing/corner{ @@ -52138,18 +54700,6 @@ }, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) -"oLX" = ( -/obj/structure/cable/layer1, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oMd" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/item/grown/bananapeel{ - name = "stealthy banana peel" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "oMr" = ( /obj/structure/plasticflaps/kitchen, /obj/machinery/door/airlock/medical{ @@ -52199,20 +54749,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/stellar, /area/station/maintenance/hallway/abandoned_recreation) -"oNb" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "oNc" = ( /obj/structure/closet/lasertag/red, /obj/effect/decal/cleanable/dirt, @@ -52227,10 +54763,6 @@ /obj/structure/window/reinforced/tinted/frosted/spawner/directional/east, /turf/open/floor/glass/reinforced, /area/station/service/library) -"oNp" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "oNs" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52240,7 +54772,20 @@ "oNu" = ( /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"oNy" = ( +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "O2 Multideck Adapter"; + dir = 8 + }, +/obj/machinery/meter{ + name = "O2 meter" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "oNA" = ( /obj/item/clothing/head/cone{ pixel_x = -6; @@ -52257,47 +54802,22 @@ }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"oNI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +"oNH" = ( +/obj/item/kirbyplants/photosynthetic, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "oNM" = ( -/obj/effect/turf_decal/siding/white{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/siding/dark{ dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "oOc" = ( /obj/machinery/light/floor, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"oOd" = ( -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - name = "decommissioned sleeper" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) -"oOm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"oOn" = ( -/obj/machinery/light/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "oOs" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -52313,28 +54833,21 @@ /obj/structure/chair, /obj/effect/landmark/start/hangover, /obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"oOz" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "holodeck" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "oOB" = ( /obj/machinery/power/shieldwallgen, /obj/effect/turf_decal/stripes/line, /turf/open/floor/wood, /area/station/command/teleporter) +"oOE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/item/storage/medkit/toxin, +/obj/structure/rack, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "oON" = ( /obj/effect/turf_decal/box/white{ color = "#52B4E9" @@ -52348,10 +54861,8 @@ dir = 1 }, /obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1 - }, /obj/effect/mapping_helpers/mail_sorting/medbay/general, +/obj/structure/disposalpipe/sorting/mail/flip, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "oOY" = ( @@ -52372,6 +54883,17 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/security/brig) +"oPf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosmaintedge" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "oPh" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/dark_blue{ @@ -52380,11 +54902,21 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"oPu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) +"oPm" = ( +/obj/machinery/computer/security/telescreen/engine/directional/south{ + name = "Engine Camera Monitor" + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"oPH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "oPM" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -52396,32 +54928,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) +"oPO" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "oPP" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 6 }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"oPS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"oPU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oPW" = ( -/obj/effect/mob_spawn/corpse/human/assistant, -/obj/structure/closet/crate/trashcart, -/obj/effect/mob_spawn/corpse/human/monkey, +/obj/structure/cable, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/port/fore) "oPY" = ( /obj/structure/table, /obj/item/hand_labeler{ @@ -52434,10 +54957,6 @@ /obj/item/hand_tele, /turf/open/floor/wood, /area/station/command/teleporter) -"oQk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "oQn" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -52475,6 +54994,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/service/cafeteria) +"oRA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"oRD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/central) "oRG" = ( /obj/structure/railing, /obj/structure/rack, @@ -52488,8 +55018,17 @@ /obj/item/circuitboard/machine/exoscanner{ pixel_y = -3 }, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) +"oRH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "oRI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/dark_blue/opposingcorners{ @@ -52504,7 +55043,7 @@ pixel_y = 16 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oRM" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -52513,36 +55052,16 @@ /obj/machinery/airalarm/directional/east, /turf/open/openspace, /area/station/command/gateway) -"oRU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "oSb" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, /obj/machinery/keycard_auth/wall_mounted/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"oSo" = ( -/obj/machinery/door/airlock/command{ - name = "Auxiliary E.V.A. Storage" +/obj/machinery/computer/communications{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) "oSq" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /obj/structure/cable, @@ -52550,13 +55069,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) -"oSs" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "oSt" = ( /obj/structure/broken_flooring/singular/directional, /obj/effect/decal/cleanable/dirt, @@ -52567,42 +55079,25 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"oSE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "oSI" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/station/hallway/primary/central) "oST" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/arrows{ - dir = 1 - }, /obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"oSU" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/machinery/computer/station_alert{ - dir = 8 +/obj/effect/turf_decal/stripes/red/end, +/obj/effect/turf_decal/siding/red/end, +/turf/open/floor/iron/textured_corner{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"oSX" = ( -/obj/structure/urinal/directional/north, +/area/station/command/gateway) +"oSV" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/contraband/narcotics, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"oSZ" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) "oTd" = ( /obj/structure/lattice, /turf/open/openspace, @@ -52613,6 +55108,18 @@ }, /turf/open/floor/glass, /area/station/science/zoo) +"oTg" = ( +/obj/structure/lattice, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"oTi" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "oTn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -52627,52 +55134,33 @@ /obj/effect/landmark/start/paramedic, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"oTp" = ( -/obj/structure/sign/warning/yes_smoking/circle/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "oTq" = ( /obj/structure/sink/directional/east, /obj/machinery/iv_drip, /obj/structure/mirror/directional/west, /turf/open/floor/iron/dark/textured_corner, /area/station/medical/surgery) -"oTr" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/duct, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "oTu" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/pale/style_random, /obj/machinery/camera/autoname/directional/south, /turf/open/floor/grass, /area/station/hallway/secondary/entry) -"oTE" = ( -/obj/structure/broken_flooring/singular/directional/north, -/obj/item/stack/sheet/cotton{ - pixel_x = 8; - pixel_y = 10 +"oTF" = ( +/obj/structure/sign/directions/engineering/directional/north{ + dir = 8; + pixel_y = 0 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oTJ" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/closed/wall, +/area/station/maintenance/starboard/aft) "oTK" = ( -/obj/machinery/button/door/directional/north{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/east{ id = "gateshutter"; name = "Gateway Shutter Control"; - pixel_x = 24; - pixel_y = 0; req_access = list("command") }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, +/turf/open/floor/carpet/purple, /area/station/command/gateway) "oTO" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -52724,6 +55212,7 @@ /obj/item/stack/cable_coil{ pixel_x = -12 }, +/obj/item/multitool, /turf/open/floor/iron/dark, /area/station/medical/chemistry) "oTR" = ( @@ -52794,17 +55283,14 @@ /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"oUo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 1; - cable_layer = 1 +"oUr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/cable/multilayer/layer1, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "oUC" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -52834,25 +55320,35 @@ /obj/structure/table/wood/fancy, /turf/open/openspace, /area/station/maintenance/port/fore) -"oUO" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/directions/evac/directional/north{ - dir = 8; - pixel_y = 28 - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +"oUL" = ( +/obj/machinery/bookbinder, +/turf/open/floor/wood, +/area/station/service/library/printer) "oUQ" = ( /obj/machinery/telecomms/processor/preset_two, /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"oVg" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ +"oUS" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) +"oVe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"oVh" = ( +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "oVn" = ( /obj/machinery/dna_scannernew, /obj/machinery/firealarm/directional/south, @@ -52870,13 +55366,6 @@ /obj/structure/cable, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"oVF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "oVK" = ( /obj/structure/chair/office{ dir = 4 @@ -52887,30 +55376,43 @@ /obj/structure/displaycase/trophy, /turf/open/floor/wood/large, /area/station/service/library) -"oVY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/table, -/obj/item/reagent_containers/cup/soda_cans/thirteenloko{ - pixel_x = 14; +"oVQ" = ( +/obj/machinery/photocopier/prebuilt, +/obj/machinery/firealarm/directional/east{ pixel_y = 3 }, -/obj/item/book/manual/wiki/engineering_construction, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/machinery/light_switch/directional/east{ + pixel_y = -8 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) +"oWt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "oWy" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/engine/hull/reinforced/air, /area/station/maintenance/port) +"oWD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"oWJ" = ( +/obj/structure/rack, +/obj/item/pai_card, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "oWL" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"oWN" = ( -/obj/machinery/camera/autoname/directional/west, -/turf/open/openspace, -/area/station/engineering/lobby) "oWO" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -52930,7 +55432,7 @@ dir = 10 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oWU" = ( /obj/item/wrench, /turf/open/floor/plating, @@ -52945,10 +55447,6 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) -"oXh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "oXn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner{ @@ -52956,6 +55454,27 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"oXp" = ( +/mob/living/basic/turtle{ + name = "John Arbuckle" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/mapping_helpers/mob_buckler, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) +"oXv" = ( +/obj/effect/decal/cleanable/blood/oil/slippery, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) +"oXB" = ( +/obj/structure/ladder, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "oXE" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -52973,20 +55492,11 @@ dir = 1 }, /obj/machinery/camera/autoname/directional/south{ - dir = 5; - network = list("aicore") + network = list("aicore"); + pixel_x = 24 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"oXO" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/ai/satellite/chamber) "oXQ" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -52996,20 +55506,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/openspace, /area/station/maintenance/port/aft) -"oXS" = ( -/obj/structure/cable, -/obj/machinery/light_switch/directional/east, -/obj/item/crowbar, -/obj/item/pipe_dispenser{ - pixel_y = 8 - }, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/rack, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "oXT" = ( /obj/effect/turf_decal/stripes/asteroid/corner{ dir = 8 @@ -53021,18 +55517,6 @@ /obj/effect/spawner/random/entertainment/money_large, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) -"oXX" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"oXZ" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/structure/rack{ - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "oYd" = ( /obj/structure/disposalpipe/trunk{ dir = 2 @@ -53042,12 +55526,10 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"oYn" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"oYm" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "oYp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner/end/flip{ @@ -53066,7 +55548,22 @@ }, /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) +"oYu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"oYy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "oYE" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/green/opposingcorners{ @@ -53084,6 +55581,16 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"oZe" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "oZh" = ( /obj/structure/rack, /turf/open/floor/plating, @@ -53096,23 +55603,6 @@ }, /turf/open/floor/plating, /area/station/medical/surgery) -"oZt" = ( -/obj/vehicle/ridden/wheelchair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"oZA" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "oZC" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -53147,6 +55637,16 @@ "oZJ" = ( /turf/open/floor/glass/reinforced, /area/station/service/library) +"oZK" = ( +/obj/structure/table, +/obj/item/petri_dish{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/petri_dish, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "oZO" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -53154,14 +55654,9 @@ /obj/effect/spawner/random/trash/botanical_waste, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"oZV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +"oZS" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "oZX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/carpet/black, @@ -53186,22 +55681,10 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/glass, /area/station/service/kitchen) -"paq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "paE" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input, /turf/open/floor/engine/n2o, /area/station/engineering/atmos/upper) -"paI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/dorms) "paM" = ( /obj/structure/curtain/bounty/start_closed, /turf/open/floor/plating, @@ -53210,17 +55693,32 @@ /obj/structure/window/reinforced/tinted/spawner/directional/north, /turf/open/openspace, /area/station/medical/virology) +"paZ" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "pbc" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 +/obj/machinery/firealarm/directional/north, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"pbe" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/air, +/area/station/engineering/supermatter/room/upper) "pbk" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -53238,7 +55736,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/door/airlock/medical, /turf/open/floor/plating, /area/station/medical/break_room) @@ -53248,18 +55745,13 @@ /obj/structure/table/reinforced, /turf/open/floor/engine/hull, /area/space/nearstation) -"pbt" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"pbE" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pbB" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/turf/open/floor/wood, +/area/station/commons/dorms) "pbG" = ( /obj/structure/rack, /obj/item/book/manual/wiki/engineering_construction{ @@ -53289,18 +55781,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"pbU" = ( +"pbY" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"pbZ" = ( -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "pca" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53320,10 +55806,14 @@ /turf/open/floor/iron, /area/station/science/research) "pce" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/turf/open/floor/iron, +/turf/open/floor/catwalk_floor, /area/station/cargo/storage) "pcf" = ( /obj/effect/turf_decal/siding/green{ @@ -53331,13 +55821,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"pcg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "pch" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/flora/bush/flowers_pp/style_random, @@ -53380,20 +55863,35 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) -"pcL" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/warning/vacuum/directional/north, +"pcD" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/closet/emcloset, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pcQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/area/station/maintenance/starboard/fore) +"pcE" = ( +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"pcM" = ( +/obj/machinery/atmospherics/components/tank/air/layer4, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "pcR" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -53401,20 +55899,35 @@ /turf/open/floor/iron, /area/station/hallway/secondary/construction) "pdf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/arrows{ - dir = 1 + dir = 10 }, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) +"pdg" = ( +/obj/effect/decal/cleanable/glitter, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "pdr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/effect/turf_decal/stripes{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/structure/sign/poster/official/safety_internals/directional/north, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "pdy" = ( /obj/structure/bed, /obj/effect/decal/cleanable/dirt, @@ -53457,6 +55970,14 @@ "pdO" = ( /turf/closed/wall, /area/station/medical/pharmacy) +"pdY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/main) "pec" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -53485,11 +56006,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"pee" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "pef" = ( /obj/structure/transport/linear/public, /obj/structure/table, @@ -53505,47 +56021,40 @@ pixel_x = -7; pixel_y = -3 }, -/obj/machinery/barsign{ - pixel_y = 32 - }, /turf/open/floor/plating/elevatorshaft, /area/station/service/kitchen) "pen" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) -"peo" = ( -/obj/machinery/computer/atmos_control/mix_tank{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "pev" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/maintenance/port/fore) -"pey" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "space-outpost" +"peI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"peF" = ( -/obj/effect/spawner/structure/window, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/security/courtroom) +/area/station/maintenance/starboard) +"peL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Air to Mix" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "peQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/structure/railing, /turf/open/floor/iron/textured, /area/station/cargo/storage) "peS" = ( @@ -53596,41 +56105,65 @@ /obj/effect/turf_decal/trimline/yellow/arrow_cw, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"pfx" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pfK" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +"pfM" = ( +/obj/structure/sign/directions/supply/directional/east{ + dir = 2; + pixel_x = 0 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/turf/closed/wall, +/area/station/maintenance/starboard/central) "pfN" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/wood/tile, /area/station/maintenance/port/aft) -"pgh" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 +"pfO" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pfQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"pfR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 2 }, -/obj/machinery/firealarm/directional/east, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=22-Mech-Bay"; + location = "21-Central" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) +"pfS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Abandoned Hallway" + }, +/obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/hallway/secondary/construction) +"pfY" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/reagent_containers/cup/soda_cans/pwr_game, +/obj/item/radio/intercom/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "pgo" = ( /obj/structure/flora/bush/flowers_br/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -53647,11 +56180,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"pgu" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "pgw" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 5 @@ -53659,18 +56187,14 @@ /turf/open/floor/engine/hull, /area/space/nearstation) "pgx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 5 }, /turf/open/floor/iron, /area/station/cargo/storage) -"pgA" = ( -/turf/open/floor/iron/stairs{ - dir = 4 - }, -/area/station/maintenance/starboard/aft) "pgI" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/suit/apron/surgical, @@ -53696,26 +56220,14 @@ "pgN" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"pgQ" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/paper/pamphlet/gateway{ - pixel_x = -13; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/wood, -/area/station/commons/dorms) -"pha" = ( -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/supply{ - dir = 4 +"pgT" = ( +/obj/machinery/vatgrower, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "phc" = ( /obj/item/radio/intercom/directional/west, /obj/machinery/light/small/directional/west, @@ -53728,52 +56240,42 @@ /obj/item/gun/energy/e_gun, /obj/item/gun/energy/e_gun, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "phd" = ( -/obj/structure/chair/office{ - name = "CE's Chair" - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"phf" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 3 - }, -/obj/item/clothing/suit/hazardvest{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/black{ - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black{ - pixel_y = -3 - }, -/obj/item/clothing/mask/gas, -/obj/structure/railing{ - dir = 6 +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "phh" = ( /obj/machinery/status_display/evac/directional/north, /turf/open/openspace, /area/station/medical/medbay/central) +"phn" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/sign/poster/contraband/grey_tide/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/shipping{ + pixel_y = 5; + pixel_x = -2 + }, +/obj/item/storage/box/lights/mixed{ + pixel_y = 2; + pixel_x = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "phu" = ( /obj/structure/transit_tube, /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/light/floor, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "phw" = ( /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/door/airlock/medical/glass{ @@ -53816,6 +56318,13 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/engine/hull/air, /area/station/construction/storage_wing) +"phI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "phL" = ( /obj/structure/railing{ dir = 8 @@ -53852,7 +56361,7 @@ dir = 1 }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pim" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -53860,6 +56369,33 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"pio" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/cable, +/turf/open/openspace, +/area/station/command/meeting_room/council) +"piC" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"piF" = ( +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron, +/area/station/cargo/storage) +"piN" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) "piR" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -53869,12 +56405,10 @@ /obj/machinery/light/small/blacklight/directional/north, /turf/open/floor/eighties/red, /area/station/maintenance/hallway/abandoned_recreation) -"piT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) +"piW" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "pjd" = ( /obj/machinery/camera/directional/west{ c_tag = "Kitchen" @@ -53892,6 +56426,57 @@ /obj/structure/closet/firecloset, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"pji" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/sign/poster/official/state_laws/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"pjj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"pjk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/suit_storage_unit/medical, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) +"pjn" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"pjp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "pjt" = ( /obj/machinery/disposal/bin, /obj/effect/decal/cleanable/dirt, @@ -53900,6 +56485,13 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) +"pjB" = ( +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) "pjC" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/cigar, @@ -53909,6 +56501,15 @@ "pjN" = ( /turf/open/floor/iron/kitchen, /area/station/maintenance/port/aft) +"pka" = ( +/obj/docking_port/stationary/mining_home{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) "pkh" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 @@ -53921,14 +56522,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"pkl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/autoname/directional/north, -/turf/open/openspace, -/area/station/engineering/atmos/project) "pkn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -53964,10 +56557,20 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"pkx" = ( +"pkw" = ( /obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/north, -/turf/open/openspace, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) +"pkx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "pkz" = ( /obj/machinery/dna_infuser, @@ -53975,19 +56578,31 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, /area/station/science/cytology) +"pkI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "pkK" = ( /obj/structure/rack, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"pkO" = ( -/obj/structure/lattice, -/obj/structure/barricade/wooden, -/turf/open/space/basic, -/area/space/nearstation) "pkS" = ( /obj/machinery/camera/autoname/directional/north, /turf/open/floor/glass/reinforced, /area/station/medical/chemistry) +"pkW" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/pumproom) +"plk" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/engine_smes) "plq" = ( /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, @@ -53997,6 +56612,12 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/space/basic, /area/space/nearstation) +"plQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "plW" = ( /obj/structure/railing{ dir = 8 @@ -54015,6 +56636,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"pmd" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "pmf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -54030,11 +56656,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"pmn" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/machinery/shower/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "pms" = ( /obj/machinery/door/airlock/grunge, /obj/effect/turf_decal/siding/dark{ @@ -54047,7 +56668,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pmw" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -54058,19 +56679,12 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"pmx" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "pmD" = ( /obj/structure/railing{ dir = 8 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pmI" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, @@ -54120,18 +56734,10 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "pmX" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/bookcase/random/reference, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/machinery/modular_computer/preset/civilian, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "pna" = ( /obj/item/sticker/star, /obj/structure/closet/crate/wooden, @@ -54145,7 +56751,6 @@ /area/station/maintenance/port/aft) "pnc" = ( /obj/machinery/door/firedoor, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/all/security/general, @@ -54155,26 +56760,21 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/checkpoint/engineering) -"pnd" = ( -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) "pno" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/commons/storage/tools) "pnq" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/blood/oil/slippery, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 5 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +/obj/effect/turf_decal/stripes/corner{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "pnu" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 4 @@ -54184,6 +56784,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"pny" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) +"pnF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mecha_wreckage/ripley/deathripley, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "pnG" = ( /obj/machinery/requests_console/directional/north{ department = "Robotics"; @@ -54196,16 +56812,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics) -"pnN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/sign/warning/radiation/rad_area/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "pnS" = ( /obj/machinery/hydroponics/soil, /obj/item/cultivator, @@ -54224,16 +56830,9 @@ /area/station/science/ordnance) "pog" = ( /obj/machinery/gateway/centerstation, -/turf/open/floor/iron/dark, +/obj/structure/cable, +/turf/open/floor/iron/textured_large, /area/station/command/gateway) -"pom" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/station/engineering/main) "por" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/glass, @@ -54252,30 +56851,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"pov" = ( -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) -"poD" = ( -/obj/structure/transport/linear{ - radial_travel = 0 - }, -/obj/machinery/elevator_control_panel/directional/south{ - linked_elevator_id = "catwalk_atmos"; - preset_destination_names = list("2"="Lower Atmos","3"="Upper Atmos") - }, -/obj/effect/landmark/transport/transport_id{ - specific_transport_id = "catwalk_atmos" - }, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"ppa" = ( -/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ - dir = 4 - }, -/obj/structure/cable, -/turf/closed/wall, -/area/station/medical/surgery) +"ppe" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "ppp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/dark_blue, @@ -54285,18 +56865,40 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"ppA" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced, +"ppu" = ( +/obj/structure/railing, +/obj/structure/flora/bush/fullgrass/style_random, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/grass, +/area/station/hallway/primary/starboard) +"ppY" = ( +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/engineering/lobby) -"ppL" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) +/area/station/maintenance/starboard) +"pqc" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pqd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/sign/poster/official/work_for_a_future/directional/west, +/obj/machinery/camera/autoname/directional/west, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/black, +/area/station/service/library/private) "pqj" = ( /turf/closed/wall/r_wall, /area/station/security/interrogation) @@ -54307,39 +56909,23 @@ }, /turf/open/floor/carpet, /area/station/service/chapel/office) -"pqQ" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) -"prn" = ( -/obj/effect/decal/cleanable/blood/old, +"pqo" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/vatgrower, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "prr" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/assembly/flash/handheld{ - pixel_x = -11; - pixel_y = 5 +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/obj/effect/turf_decal/siding/wood, /obj/machinery/status_display/evac/directional/south, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/wood, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) -"prv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) "prB" = ( /obj/effect/turf_decal/box/white{ color = "#CCDCFF" @@ -54348,7 +56934,7 @@ uses = 10 }, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "prC" = ( /obj/effect/turf_decal/siding/wideplating_new{ dir = 1 @@ -54373,31 +56959,67 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"prO" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) "prV" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/medical/medbay/lobby) -"psi" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 +"prX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 }, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"prZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/locker) +"psi" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) "psj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/evidence) "psk" = ( -/turf/closed/wall, -/area/station/command/gateway) +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/textured, +/area/station/command/eva) "psn" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/security/brig) +"psp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "pss" = ( /obj/structure/chair/sofa/right/brown{ dir = 4 @@ -54405,13 +57027,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"psw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/computer/station_alert, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) "psC" = ( /turf/open/openspace, /area/station/hallway/primary/fore) @@ -54430,7 +57045,7 @@ /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "psK" = ( /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ @@ -54441,7 +57056,7 @@ }, /obj/structure/table/reinforced, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "psO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -54449,6 +57064,13 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"psU" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/binary/crystallizer{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "ptt" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -54468,6 +57090,23 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/maintenance/department/medical) +"ptM" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ptS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "ptT" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -54481,24 +57120,38 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"pub" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "puf" = ( /obj/structure/cable/layer3, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/smooth_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "puh" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/service/chapel) +"pul" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"puv" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"pux" = ( +/obj/item/stack/sticky_tape{ + pixel_x = 8; + pixel_y = 14 + }, +/obj/structure/table, +/obj/item/stack/sticky_tape{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/screwdriver, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "puC" = ( /obj/structure/lattice/catwalk, /obj/machinery/camera/autoname/directional/west, @@ -54527,93 +57180,70 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) +"pva" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "pvg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"pvp" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/main) "pvC" = ( -/obj/structure/table/glass, /obj/effect/turf_decal/siding/blue{ dir = 9 }, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 11 - }, +/obj/structure/bookcase/random/reference, /obj/structure/railing{ dir = 8 }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/stamp/denied{ - pixel_x = 6 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 }, -/obj/item/pen{ - pixel_x = -1; - pixel_y = 13 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/obj/effect/turf_decal/tile/green/opposingcorners{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "pvF" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/dark, /area/station/security/brig) -"pvP" = ( -/obj/structure/safe/floor{ - name = "Critical Supplies Safe" - }, -/obj/item/reagent_containers/cup/glass/bottle/wine_voltaic{ - pixel_y = 5; - pixel_x = 7 - }, -/obj/item/reagent_containers/cup/glass/shaker{ - pixel_y = 6; - pixel_x = -6 - }, -/obj/item/reagent_containers/cup/glass/bottle/vodka{ - pixel_y = 15; - pixel_x = 6 - }, -/obj/item/reagent_containers/cup/glass/bottle/juice/orangejuice{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_containers/cup/glass/flask{ - pixel_x = -6 +"pvN" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"pvQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"pvS" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/break_room) +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "pvT" = ( /obj/structure/railing{ dir = 8 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) -"pvU" = ( -/obj/structure/cable/layer1, -/obj/structure/sign/warning/radiation/rad_area/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +/area/station/ai/upload/chamber) +"pwj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "Cabin10"; + name = "Cabin 10" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) "pwy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -54625,7 +57255,9 @@ dir = 1 }, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "pwB" = ( /obj/structure/table, @@ -54642,7 +57274,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "pwO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -54675,26 +57307,52 @@ dir = 8 }, /area/station/hallway/primary/fore) +"pwW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"pwY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner/end, +/obj/structure/railing/corner/end{ + pixel_y = 2 + }, +/obj/structure/cable/multilayer/multiz, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"pxe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/ladder, +/obj/structure/fluff/paper/corner, +/turf/open/floor/wood, +/area/station/maintenance/aft) "pxv" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/wood, /area/station/commons/storage/tools) -"pxN" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "N2 Multideck Adapter"; - dir = 8 - }, -/obj/machinery/meter{ - name = "N2 meter" - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +"pxz" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"pxK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/siding/green/corner, +/turf/open/floor/plating, +/area/station/hallway/primary/central) "pxS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison/mess) +"pxX" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "pxZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -54753,9 +57411,24 @@ /turf/open/floor/plating, /area/station/maintenance/port) "pyB" = ( -/obj/machinery/light_switch/directional/east, -/turf/open/floor/carpet, +/obj/structure/secure_safe/directional/east, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) +"pyN" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "pyY" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, @@ -54808,6 +57481,11 @@ /obj/structure/table/wood/fancy, /turf/open/openspace, /area/station/maintenance/port/fore) +"pzr" = ( +/obj/structure/sign/poster/official/random/directional/east, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/station/commons/toilet/restrooms) "pzy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -54815,7 +57493,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "pzQ" = ( /obj/structure/lattice/catwalk, @@ -54832,14 +57510,10 @@ /obj/item/reagent_containers/cup/glass/waterbottle/large, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"pzZ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/missing_gloves/directional/north, -/obj/machinery/rnd/production/circuit_imprinter, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +"pAd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "pAf" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/corner{ dir = 1 @@ -54851,7 +57525,7 @@ }, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pAn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54861,14 +57535,11 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) -"pAz" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron, +"pAp" = ( +/obj/item/chair/plastic, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, /area/station/commons/fitness/recreation) -"pAH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) "pAJ" = ( /obj/item/radio/intercom/directional/east, /turf/open/floor/wood, @@ -54880,12 +57551,62 @@ /obj/effect/landmark/start/medical_doctor, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) +"pAX" = ( +/obj/machinery/camera/preset/ordnance{ + c_tag = "Glass Floor"; + dir = 8 + }, +/turf/open/floor/glass/airless, +/area/station/maintenance/aft) "pBa" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, /turf/open/floor/iron, /area/station/cargo/storage) +"pBe" = ( +/obj/structure/ladder, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"pBf" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"pBh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/main) +"pBm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"pBv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"pBw" = ( +/obj/structure/bed, +/obj/effect/spawner/random/bedsheet, +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/dorms) "pBz" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, @@ -54893,7 +57614,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -54910,10 +57631,6 @@ /obj/structure/sign/poster/contraband/grey_tide/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"pBG" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "pBH" = ( /obj/item/key/janitor, /obj/vehicle/ridden/janicart, @@ -54932,18 +57649,6 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"pBJ" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Cargo Bay - Unloading (Low)" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/structure/railing/corner/end, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) "pBP" = ( /turf/open/floor/engine/air, /area/station/engineering/atmos/upper) @@ -54977,46 +57682,43 @@ }, /turf/open/floor/glass, /area/station/security/brig) -"pDa" = ( +"pCB" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"pDf" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - name = "SS13: Common Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/meta; - shuttle_id = "commonmining_home"; - width = 7 +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pDm" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/area/station/maintenance/starboard/fore/upper) +"pCX" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"pCZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/ladder, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"pDi" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/commons/fitness/recreation) "pDp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/wood, /area/station/command/heads_quarters/rd) -"pDt" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "pDO" = ( /obj/structure/railing{ dir = 1 @@ -55032,6 +57734,15 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"pDQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "pDR" = ( /obj/effect/landmark/firealarm_sanity, /obj/structure/lattice/catwalk, @@ -55056,6 +57767,16 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"pEm" = ( +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "pEx" = ( /obj/structure/railing{ dir = 1 @@ -55072,7 +57793,7 @@ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pEG" = ( /obj/effect/turf_decal/stripes/red/line{ dir = 4 @@ -55082,16 +57803,6 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) -"pEI" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "pEK" = ( /turf/open/floor/engine, /area/station/service/hydroponics) @@ -55103,7 +57814,7 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/wood, /area/station/service/chapel) "pEW" = ( @@ -55138,27 +57849,12 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/robotics/lab) -"pFb" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "pFp" = ( /obj/machinery/sparker/directional/west{ id = "Xenobio" }, /turf/open/openspace, /area/station/science/xenobiology) -"pFJ" = ( -/obj/machinery/atmospherics/components/trinary/mixer/flipped, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "pFR" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/dark_green{ @@ -55167,14 +57863,14 @@ /turf/open/floor/iron/checker, /area/station/service/bar) "pFS" = ( -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) "pFX" = ( @@ -55184,30 +57880,26 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/carpet, /area/station/security/courtroom) +"pFY" = ( +/obj/structure/railing/corner/end, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "pGe" = ( /obj/structure/table, /obj/effect/spawner/random/engineering/toolbox, /obj/machinery/light/directional/north, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pGf" = ( -/obj/structure/railing, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pGk" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pGl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine/hull/air, -/area/station/engineering/atmos/project) +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "pGn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -55215,16 +57907,20 @@ /turf/open/floor/wood/large, /area/station/medical/psychology) "pGs" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red{ - pixel_y = 11 - }, -/obj/item/pen{ - pixel_y = 8 - }, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/camera/directional/south, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "pGt" = ( @@ -55234,12 +57930,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pGv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "pGD" = ( /obj/machinery/camera/directional/west{ c_tag = "Science - Xenobiology South"; @@ -55266,18 +57957,23 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"pGL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "pGP" = ( /obj/structure/grille, /turf/closed/wall/r_wall, /area/station/engineering/atmos/upper) "pGV" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L6" }, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "pHc" = ( @@ -55295,17 +57991,6 @@ }, /turf/open/floor/iron, /area/station/science/lab) -"pHd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "pHf" = ( /turf/open/floor/carpet, /area/station/commons/storage/tools) @@ -55323,42 +58008,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) -"pHq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, +"pHJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/port) -"pHx" = ( -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pHC" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) -"pHQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) -"pIf" = ( -/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/table, -/obj/item/stack/sheet/iron, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +/obj/structure/sign/flag/ssc/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "pIm" = ( /obj/structure/chair/comfy/black{ dir = 1 @@ -55367,19 +58025,6 @@ /obj/machinery/air_sensor, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/hos) -"pIn" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"pIr" = ( -/obj/structure/chair, -/turf/open/floor/wood, -/area/station/commons/dorms) "pIt" = ( /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/all/security/general, @@ -55389,10 +58034,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) -"pID" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "pIP" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/dark_blue{ @@ -55402,17 +58043,6 @@ /obj/machinery/light/floor, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"pIV" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"pJf" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "pJi" = ( /obj/machinery/rnd/experimentor, /turf/open/floor/engine, @@ -55427,7 +58057,9 @@ /obj/structure/railing/corner/end/flip{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "pJp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55445,11 +58077,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/explab) -"pJC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mecha_wreckage/ripley/deathripley, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"pJt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "pJD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -55463,7 +58095,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pJG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -55486,7 +58118,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pJK" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -55526,6 +58158,11 @@ "pJS" = ( /turf/open/floor/iron, /area/station/hallway/primary/aft) +"pJW" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/west, +/turf/open/space/basic, +/area/space/nearstation) "pKb" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -55535,6 +58172,7 @@ /area/station/science/xenobiology/hallway) "pKd" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, /turf/open/floor/plating, /area/station/command/gateway) "pKk" = ( @@ -55558,12 +58196,6 @@ }, /turf/open/floor/glass, /area/station/medical/medbay/central) -"pKp" = ( -/obj/item/trash/can{ - pixel_x = -8 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "pKA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55584,29 +58216,35 @@ /turf/open/floor/wood/tile, /area/station/science/robotics) "pKC" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"pKJ" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gravity Generator Area" +/turf/open/floor/engine/hull, +/area/space/nearstation) +"pKI" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) -"pKT" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/south{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - req_access = list("command") +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) +"pKP" = ( +/obj/effect/turf_decal/siding, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"pKT" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "pKU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55614,14 +58252,19 @@ /obj/structure/cable, /turf/open/floor/glass, /area/station/security/brig) +"pLa" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "pLd" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, +/obj/machinery/photocopier/prebuilt, +/obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/station/cargo/storage) "pLg" = ( @@ -55646,14 +58289,15 @@ /turf/open/floor/iron/dark, /area/station/medical/medbay/central) "pLv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster's Storage" +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "pLx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -55675,7 +58319,7 @@ dir = 4 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pLL" = ( /obj/structure/sign/departments/medbay/alt/directional/west, /turf/open/floor/iron, @@ -55689,22 +58333,10 @@ /obj/structure/noticeboard/directional/north, /turf/open/floor/wood/large, /area/station/service/library/private) -"pLP" = ( -/obj/machinery/power/terminal{ - dir = 1; - cable_layer = 1 - }, -/obj/structure/cable/multilayer/layer1, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) -"pLQ" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/engine/hull, -/area/space/nearstation) +"pLS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "pLT" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/turf_decal/tile/green/full, @@ -55758,6 +58390,13 @@ /obj/effect/mapping_helpers/broken_machine, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"pMu" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/carpet, +/area/station/security/courtroom) "pMy" = ( /obj/effect/turf_decal/trimline/yellow/line{ dir = 4 @@ -55767,39 +58406,31 @@ }, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) +"pMC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "pME" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"pMH" = ( -/obj/effect/decal/cleanable/crayon{ - icon_state = "!"; - pixel_x = 9; - pixel_y = -1 - }, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) "pML" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/toy/figure/hop{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/toy/figure/ian{ - pixel_x = -8; - pixel_y = 4 +/obj/structure/chair/comfy/brown{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/landmark/start/head_of_personnel, +/obj/effect/turf_decal/siding/wood/end{ dir = 8 }, -/turf/open/floor/carpet, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "pMS" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -55850,12 +58481,16 @@ pixel_y = -2 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pNh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall, /area/station/service/abandoned_gambling_den) +"pNj" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "pNk" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, @@ -55864,10 +58499,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "pNl" = ( @@ -55877,12 +58512,10 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/security/brig) -"pNA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +"pNr" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "pNF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55903,6 +58536,12 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) +"pNV" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "pOh" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55914,6 +58553,11 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"pOu" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/duct, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "pOD" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -55921,13 +58565,6 @@ /obj/structure/closet/l3closet, /turf/open/floor/iron/textured_large, /area/station/medical/virology) -"pOF" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/spawner/random/clothing/backpack, -/turf/open/floor/iron, -/area/station/commons/dorms) "pOM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55946,12 +58583,19 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/science/central) -"pOQ" = ( +"pOP" = ( +/obj/structure/window/reinforced/spawner/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/structure/transit_tube/horizontal, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"pOQ" = ( +/obj/effect/turf_decal/trimline/brown/arrow_cw, +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 1 }, /turf/open/floor/iron, /area/station/cargo/storage) @@ -55959,11 +58603,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) -"pOW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "pPb" = ( /obj/effect/turf_decal/trimline/dark/arrow_cw{ dir = 8 @@ -55981,13 +58620,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"pPg" = ( -/obj/machinery/camera/preset/ordnance{ - c_tag = "Glass Floor"; - dir = 10 - }, -/turf/open/floor/glass/airless, -/area/station/maintenance/starboard/lesser) "pPk" = ( /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron, @@ -56017,30 +58649,17 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/medical/chem_storage) "pPt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/pen, /obj/item/pen, /obj/item/pen, -/obj/machinery/door/window/left/directional/west, -/obj/machinery/door/window/brigdoor/right/directional/east{ - name = "Head of Personnel's Desk"; - req_access = list("hop") +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office{ + dir = 8 }, -/turf/open/floor/plating, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) -"pPu" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "pPA" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -56058,22 +58677,18 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) -"pPG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "pPO" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) "pPS" = ( @@ -56086,29 +58701,18 @@ /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/item/storage/belt/utility{ - pixel_x = -3 - }, -/obj/item/storage/belt/utility{ - pixel_x = -3 - }, -/obj/machinery/camera/autoname/directional/south, /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ dir = 8 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "pQa" = ( /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, @@ -56140,24 +58744,24 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/service/hydroponics/garden/abandoned) +"pQp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "pQq" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/pen/fountain{ - pixel_x = 9; - pixel_y = 4 +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "pQt" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -56181,11 +58785,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"pQG" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/port) "pQK" = ( /obj/structure/railing/corner, /obj/machinery/door/firedoor, @@ -56193,14 +58792,10 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "pQQ" = ( -/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "pQS" = ( @@ -56218,13 +58813,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"pRm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "pRt" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -56243,16 +58831,13 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"pRx" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pRA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"pRB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "pRG" = ( /obj/effect/turf_decal/tile/purple/half{ dir = 8 @@ -56292,15 +58877,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/construction/storage_wing) -"pRW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/atmos/project) "pSd" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -56310,11 +58886,34 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) +"pSi" = ( +/obj/item/cigbutt{ + pixel_x = -11; + pixel_y = -5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "pSj" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, /turf/open/floor/plating, /area/station/security/interrogation) +"pSk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"pSv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) "pSz" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -56332,17 +58931,6 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/aft) -"pSF" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/broken_flooring/singular/directional/west, -/obj/structure/broken_flooring/singular/always_floorplane/directional, -/obj/structure/broken_flooring/singular, -/obj/item/assembly/mousetrap, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "pSI" = ( /obj/machinery/firealarm/directional/south, /obj/structure/cable, @@ -56428,14 +59016,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"pTS" = ( -/obj/machinery/power/emitter/prototype{ - desc = "Hell yeah."; - dir = 4; - name = "Betsy" - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) "pTT" = ( /obj/effect/turf_decal/trimline/red/filled/warning, /obj/structure/cable, @@ -56453,11 +59033,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"pTX" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "pUe" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 10 @@ -56471,6 +59046,25 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"pUp" = ( +/obj/effect/turf_decal/trimline/brown/filled/end, +/obj/structure/closet/emcloset, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"pUx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/components/binary/pump/on/layer5{ + name = "N2 to Airmix" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "pUE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -56501,6 +59095,16 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/science/cytology) +"pUY" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "pUZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -56517,7 +59121,12 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"pVr" = ( +/obj/structure/cable, +/obj/structure/sign/poster/contraband/fake_bombable/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "pVw" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/mirror/directional/north, @@ -56529,26 +59138,53 @@ /area/station/maintenance/hallway/abandoned_recreation) "pVy" = ( /obj/effect/landmark/start/assistant, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) -"pVA" = ( -/obj/effect/turf_decal/stripes/line{ +"pVM" = ( +/obj/structure/disposalpipe/sorting/mail{ dir = 4 }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pWh" = ( -/obj/machinery/button/door/directional/west{ - id = "Cabin6"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 }, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/commons/dorms) +/turf/open/floor/iron, +/area/station/engineering/lobby) +"pVO" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/closet/secure_closet/security/engine, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"pWi" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"pWk" = ( +/obj/structure/chair{ + dir = 4; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"pWl" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "pWn" = ( /turf/open/floor/iron/stairs/medium{ dir = 8 @@ -56586,6 +59222,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) +"pWQ" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "pWR" = ( /obj/structure/sign/clock/directional/north, /obj/machinery/disposal/bin, @@ -56629,6 +59270,13 @@ /obj/machinery/holopad, /turf/open/floor/iron/dark/diagonal, /area/station/service/theater) +"pXF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/warehouse) "pXL" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -56638,10 +59286,15 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) -"pXM" = ( -/obj/structure/railing/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"pYg" = ( +/obj/structure/table/wood, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "pYi" = ( /obj/item/kirbyplants/random, /obj/machinery/firealarm/directional/south, @@ -56657,7 +59310,26 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/effect/landmark/navigate_destination/aiupload, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) +"pZd" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) +"pZv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"pZJ" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) "pZQ" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -56669,28 +59341,28 @@ /turf/open/floor/iron/dark, /area/station/medical/medbay/central) "pZT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, +/obj/structure/chair/sofa/right/brown, +/obj/item/clothing/head/soft{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, /area/station/cargo/storage) -"pZX" = ( -/turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) -"qac" = ( -/obj/effect/turf_decal/siding/brown{ +"pZW" = ( +/obj/structure/chair/greyscale{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) +"pZX" = ( +/turf/closed/wall, +/area/station/command/eva) +"pZZ" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "qae" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -56700,7 +59372,6 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) "qaf" = ( @@ -56721,6 +59392,13 @@ }, /turf/open/floor/wood, /area/station/security/detectives_office) +"qaq" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped/layer5{ + dir = 8; + name = "air mixer" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "qat" = ( /obj/effect/decal/cleanable/dirt, /obj/item/wirecutters{ @@ -56735,16 +59413,27 @@ /obj/machinery/wall_healer/directional/south, /turf/open/floor/iron, /area/station/science/research) +"qaw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/aft) "qaA" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) +"qaH" = ( +/obj/structure/dresser, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/station/commons/dorms) "qaI" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp, /obj/structure/lattice/catwalk, +/obj/structure/cable, /turf/open/openspace, /area/station/security/checkpoint/supply) "qaK" = ( @@ -56771,10 +59460,14 @@ }, /turf/open/floor/wood, /area/station/service/lawoffice) -"qbm" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +"qbq" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "qbw" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 8 @@ -56787,6 +59480,22 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/storage_shared) +"qbI" = ( +/obj/machinery/washing_machine, +/obj/machinery/airalarm/directional/north, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"qbM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "qbT" = ( /turf/closed/wall/r_wall, /area/station/security/prison/mess) @@ -56808,6 +59517,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/science/xenobiology) +"qcc" = ( +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "qcx" = ( /obj/structure/stairs/south, /turf/open/floor/iron/stairs/medium{ @@ -56833,10 +59548,20 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/central) -"qcT" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/break_room) +"qcQ" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"qcW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qdd" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/item/tank/internals/anesthetic, @@ -56881,6 +59606,13 @@ }, /turf/open/floor/iron/airless, /area/station/maintenance/starboard/aft) +"qdP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "qdR" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, @@ -56918,15 +59650,6 @@ /obj/machinery/light/directional/west, /turf/open/openspace, /area/station/hallway/primary/fore) -"qei" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) -"qek" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "qel" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, @@ -56954,6 +59677,12 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) +"qeN" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2o{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "qeP" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/glass/fifty{ @@ -56972,19 +59701,20 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/robotics/lab) -"qeQ" = ( -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) +"qeV" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4; + name = "Waste Release" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "qeX" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "qeZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, /obj/structure/disposalpipe/segment, /obj/machinery/light/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "qfh" = ( /obj/effect/turf_decal/tile/red/half/contrasted, @@ -57008,6 +59738,28 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"qfz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) +"qfB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"qfF" = ( +/obj/structure/sign/warning/directional/west, +/turf/open/space/openspace, +/area/space/nearstation) "qfS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -57032,6 +59784,12 @@ /obj/structure/table/reinforced/rglass, /turf/open/floor/glass, /area/station/security/brig) +"qge" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "qgj" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -57053,40 +59811,21 @@ /turf/open/floor/iron, /area/station/science/lab) "qgr" = ( -/obj/structure/table, -/obj/item/dest_tagger{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/dest_tagger{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/head/soft{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/turf_decal/trimline/brown/filled, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"qgD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/light/warm/dim/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 10 }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) +/obj/item/kirbyplants/random, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "qgI" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/station/cargo/storage) "qgV" = ( /obj/structure/reagent_dispensers/watertank, @@ -57098,12 +59837,6 @@ /obj/structure/railing/corner/end, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"qhl" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) "qhq" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -57131,6 +59864,12 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance/storage) +"qhz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/corner, +/area/station/hallway/primary/central) "qhB" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -57173,33 +59912,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"qhP" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qhW" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/landmark/start/depsec/engineering, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"qic" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/chief_engineer, -/turf/open/floor/iron/dark/small, -/area/station/command/heads_quarters/ce) "qid" = ( /obj/machinery/door/airlock/research{ name = "Research Division Backdoor" @@ -57213,6 +59925,14 @@ /obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"qie" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "SM_shutters"; + name = "Supermatter Radiation Shutters"; + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter) "qih" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/griddle, @@ -57220,21 +59940,20 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/prison/mess) -"qij" = ( +"qim" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/rack, /turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/maintenance/starboard/central) "qip" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/machinery/modular_computer/preset/id{ +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "qir" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -57303,12 +60022,6 @@ /obj/structure/sign/poster/official/moth_hardhat/directional/west, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) -"qjt" = ( -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/rack, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "qjy" = ( /obj/machinery/computer/slot_machine{ pixel_y = 2 @@ -57343,7 +60056,7 @@ "qjT" = ( /obj/machinery/status_display/ai/directional/south, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qjV" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, @@ -57386,6 +60099,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"qkn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/multiz/green/visible{ + dir = 2; + name = "mix to space multi-deck adaper" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "qkv" = ( /obj/structure/railing{ dir = 4 @@ -57424,40 +60145,31 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/science/central) -"qlf" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) "qlg" = ( /obj/machinery/mech_bay_recharge_port, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"qlx" = ( -/obj/structure/closet/crate/engineering{ - name = "Basic Materials" - }, -/obj/item/stock_parts/power_store/cell/high, -/obj/item/stock_parts/power_store/cell/high, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/item/stack/rods{ - amount = 50 +"qlj" = ( +/obj/structure/table/wood, +/obj/machinery/computer/arcade/orion_trail{ + desc = "For gamers only. Casuals need not apply."; + icon_screen = "library"; + icon_state = "oldcomp"; + name = "Gamer Computer" }, -/obj/item/stack/sheet/glass{ - amount = 50 +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"qlu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 1 }, -/obj/item/stack/sheet/iron{ - amount = 50 +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 4 }, /turf/open/floor/engine, -/area/station/engineering/break_room) +/area/station/engineering/atmos/upper) "qly" = ( /obj/machinery/camera/autoname/directional/north, /turf/open/floor/engine/hull/air, @@ -57504,33 +60216,28 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"qmc" = ( -/obj/effect/turf_decal/siding, -/obj/effect/turf_decal/trimline/white/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"qmd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ladder, -/obj/structure/sign/poster/official/pda_ad/directional/west, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) "qmh" = ( /obj/effect/spawner/random/trash/box, /turf/open/floor/plating, /area/station/maintenance/port) +"qms" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qmy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "qmB" = ( /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qmD" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -57540,11 +60247,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"qmI" = ( +"qmT" = ( /obj/structure/cable, -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "qmY" = ( /obj/effect/turf_decal/siding/blue{ dir = 6 @@ -57561,29 +60268,29 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"qnn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1 +"qnh" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark/small, -/area/station/command/heads_quarters/ce) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "qnt" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_x = 2; - pixel_y = 2 +/obj/structure/chair/comfy/black{ + dir = 1 }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 6 +/obj/effect/landmark/start/captain, +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/turf/open/floor/carpet, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) +"qnB" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter/monitored/distro_loop, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) "qnC" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, @@ -57592,18 +60299,6 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"qnN" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/rack, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/neck/tie/blue{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/soft/blue, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "qnR" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/clown/directional/south, @@ -57618,12 +60313,14 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"qnS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port) +"qnU" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Nitrogen Cell"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos/upper) "qnW" = ( /obj/effect/turf_decal/tile/dark_blue/anticorner{ dir = 8 @@ -57634,6 +60331,28 @@ dir = 4 }, /area/station/science/robotics) +"qod" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/structure/fluff/paper/corner{ + dir = 8 + }, +/obj/item/paper/crumpled{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"qol" = ( +/obj/machinery/camera/directional/west, +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "qom" = ( /obj/machinery/teleport/hub, /obj/effect/turf_decal/tile/green/opposingcorners{ @@ -57658,11 +60377,18 @@ /obj/machinery/suit_storage_unit/hos, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"qoD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +"qoB" = ( +/obj/structure/barricade/sandbags, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"qoL" = ( +/obj/machinery/atmospherics/components/tank/air/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "qoN" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -57693,7 +60419,6 @@ input_dir = 2; output_dir = 1 }, -/obj/structure/window/reinforced/spawner/directional/south, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/station/maintenance/disposal) @@ -57705,15 +60430,21 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"qpc" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/main) +"qpn" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "qpt" = ( -/obj/structure/closet/secure_closet/captains, -/turf/open/floor/wood, +/obj/machinery/camera/autoname/directional/east, +/obj/structure/displaycase/captain{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "qpu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -57722,31 +60453,31 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/station/maintenance/port) -"qpD" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "qpG" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/edge, +/area/station/hallway/primary/central) +"qpH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 5 }, /turf/open/floor/wood, -/area/station/command/meeting_room/council) +/area/station/maintenance/aft) "qpI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"qpJ" = ( +/obj/structure/sign/poster/official/no_erp/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "qpL" = ( /turf/open/floor/engine/co2, /area/station/engineering/atmos/upper) @@ -57754,12 +60485,6 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, /area/station/hallway/primary/central) -"qpY" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "qqd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/warning/electric_shock/directional/east, @@ -57767,19 +60492,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/construction/storage_wing) -"qqe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "qqi" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "qqj" = ( @@ -57790,6 +60508,13 @@ /obj/machinery/light/blacklight/directional/south, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"qqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qqv" = ( /obj/machinery/door/window/brigdoor/left/directional/east{ name = "Creature Pen"; @@ -57806,7 +60531,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "qqC" = ( @@ -57814,7 +60539,7 @@ dir = 1 }, /turf/open/floor/iron/white/textured_corner, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qqD" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -57834,20 +60559,24 @@ /obj/effect/landmark/start/lawyer, /turf/open/floor/carpet, /area/station/service/lawoffice) -"qqY" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 +"qqV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/structure/cable, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "qrd" = ( /turf/open/openspace, /area/station/medical/abandoned) -"qrt" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +"qrq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "qrz" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -57897,12 +60626,16 @@ dir = 4 }, /area/station/hallway/primary/port) -"qrS" = ( -/obj/structure/railing/corner/end/flip{ - dir = 8 +"qrY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "qrZ" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -57915,7 +60648,9 @@ "qsb" = ( /obj/machinery/camera/autoname/directional/east, /obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "qsd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -57932,15 +60667,12 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "qsi" = ( -/obj/structure/chair/office, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ +/obj/machinery/conveyor{ + id = "cargounload"; dir = 4 }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "qsm" = ( /obj/machinery/door/airlock/security/glass{ name = "Security E.V.A. Storage" @@ -57954,29 +60686,29 @@ /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark, /area/station/security/eva) -"qsC" = ( -/obj/structure/ladder, +"qsr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"qsx" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) "qsD" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"qsM" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/directions/command/directional/north{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) "qsO" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/firecloset, @@ -58007,14 +60739,25 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"qtC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Port to Engine" +"qtl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/trimline/brown, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"qtv" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qtM" = ( /obj/machinery/libraryscanner, /obj/machinery/camera/autoname/directional/north, @@ -58032,15 +60775,17 @@ /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/effect/turf_decal/arrows{ - dir = 8 - }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "qtW" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) +"quk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "quB" = ( /obj/structure/chair/comfy/brown{ color = "#596479"; @@ -58102,35 +60847,18 @@ /obj/item/crowbar{ pixel_y = 5 }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light_switch/directional/east{ - pixel_y = -5 - }, /obj/machinery/firealarm/directional/east{ pixel_y = 5 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "qvo" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/science/zoo) -"qvr" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/structure/sign/warning/radiation/rad_area/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"qvu" = ( -/obj/machinery/light/directional/south, -/obj/structure/lattice/catwalk, -/obj/machinery/firealarm/directional/south, -/turf/open/openspace, -/area/station/security/checkpoint/supply) "qvL" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/light/directional/south, @@ -58146,15 +60874,6 @@ }, /turf/open/floor/wood, /area/station/service/library) -"qvU" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "qvW" = ( /obj/item/toy/plush/moth{ name = "Moff #1"; @@ -58169,12 +60888,33 @@ /area/station/maintenance/starboard/aft) "qwa" = ( /obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"qwb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/structure/fluff/paper/corner, +/obj/structure/fluff/paper/stack{ + dir = 9 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "qwn" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/open/space/openspace, /area/space/nearstation) +"qww" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/closet/radiation, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/official/safety_eye_protection/directional/west, +/turf/open/floor/iron, +/area/station/engineering/lobby) "qwy" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -58194,6 +60934,14 @@ }, /turf/open/floor/glass, /area/station/service/kitchen) +"qwG" = ( +/obj/item/cigbutt{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "qwJ" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, @@ -58208,29 +60956,44 @@ /turf/open/space/openspace, /area/station/solars/starboard/aft) "qxr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) +"qxw" = ( +/obj/structure/urinal/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "qxA" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 8 }, +/obj/effect/decal/cleanable/generic, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/cargo/storage) -"qxE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) "qxI" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/floor/engine, /area/station/science/xenobiology) +"qxL" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/petri_dish/random{ + pixel_x = -14; + pixel_y = 7 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "qxM" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/turf_decal/tile/green/full, @@ -58242,6 +61005,12 @@ /obj/structure/window/spawner/directional/south, /turf/open/floor/iron, /area/station/maintenance/hallway/abandoned_recreation) +"qxQ" = ( +/obj/machinery/light/warm/dim/directional/west, +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "qxR" = ( /obj/item/radio/intercom/directional/west{ freerange = 1; @@ -58250,57 +61019,60 @@ }, /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"qxT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/meter, +/area/station/ai/satellite/chamber) +"qxV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"qxW" = ( +/obj/item/storage/box/lights/mixed, +/obj/structure/cable, /turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/area/station/maintenance/starboard) +"qya" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "qye" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "qyf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner/end/flip, /turf/open/floor/plating, /area/station/maintenance/port/aft) "qyg" = ( -/obj/structure/table/glass, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 11 +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 }, -/obj/item/multitool{ - pixel_x = 6; - pixel_y = 2 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/obj/structure/fireaxecabinet/directional/south, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qyu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table/glass, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 1; - pixel_y = 2 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 1; - pixel_y = 2 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 1; - pixel_y = 2 +/obj/machinery/vending/cigarette{ + pixel_x = 5 }, -/obj/item/wrench, -/obj/item/crowbar/red, -/turf/open/openspace, -/area/station/engineering/break_room) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "qyy" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/siding/blue{ @@ -58325,12 +61097,14 @@ /obj/item/stack/sheet/plasteel/twenty, /turf/open/floor/iron/dark/textured_corner, /area/station/science/robotics/lab) -"qyU" = ( -/obj/structure/chair{ - dir = 1 +"qyT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard/upper) "qyW" = ( /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -58338,25 +61112,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) -"qzb" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qzf" = ( -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "qzo" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 1 @@ -58374,12 +61129,6 @@ dir = 8 }, /area/station/science/ordnance/storage) -"qzB" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "qzF" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, @@ -58399,19 +61148,13 @@ dir = 4 }, /area/station/medical/abandoned) -"qzQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/engineering/main) "qzY" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/firealarm/directional/south, +/obj/machinery/button/door/directional/south{ + name = "Privacy Shutters Control"; + id = "hosprivacy" + }, /turf/open/floor/iron/dark, /area/station/security/brig) "qzZ" = ( @@ -58421,18 +61164,6 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"qAd" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "qAj" = ( /obj/item/assembly/signaler{ pixel_y = 8 @@ -58452,19 +61183,18 @@ /obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"qAw" = ( +"qAk" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"qAq" = ( +/obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office, -/obj/structure/fluff/paper/stack{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron, +/area/station/maintenance/starboard) "qAx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "qAC" = ( /obj/structure/railing{ dir = 10 @@ -58476,17 +61206,13 @@ /turf/open/openspace, /area/station/maintenance/department/medical) "qAI" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "qAJ" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -58495,15 +61221,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/security/courtroom) -"qAQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/dark/half{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "qBe" = ( /obj/machinery/door/airlock/wood{ name = "Curator Office" @@ -58531,18 +61248,6 @@ /obj/structure/cable, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"qBj" = ( -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/autoname/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) "qBm" = ( /obj/structure/disposalpipe/junction/flip, /obj/effect/turf_decal/tile/dark_blue{ @@ -58551,6 +61256,10 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"qBr" = ( +/obj/structure/stairs/north, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "qBx" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -58584,23 +61293,34 @@ /obj/item/tank/internals/anesthetic, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) +"qCc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "space-outpost" + }, +/obj/machinery/door/airlock/external, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "qCe" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /obj/machinery/firealarm/directional/west, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"qCj" = ( /obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) +"qCr" = ( +/obj/effect/turf_decal/trimline/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "qCx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -58643,7 +61363,7 @@ }, /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qDe" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -58661,21 +61381,6 @@ /obj/machinery/medical_kiosk, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) -"qDi" = ( -/obj/effect/landmark/firealarm_sanity, -/turf/open/openspace, -/area/station/commons/dorms) -"qDn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) "qDM" = ( /obj/structure/chair, /obj/machinery/light/directional/west, @@ -58696,6 +61401,18 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) +"qEj" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"qEC" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Oxygen Supply"; + name = "atmospherics camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos/upper) "qEE" = ( /obj/structure/chair{ dir = 8 @@ -58725,6 +61442,11 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron, /area/station/science/zoo) +"qEN" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/security/checkpoint/supply) "qEQ" = ( /obj/structure/rack, /obj/item/clothing/suit/jacket/straight_jacket, @@ -58742,15 +61464,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"qEZ" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "qFa" = ( /obj/machinery/airalarm/directional/south, /obj/structure/table/glass, @@ -58778,6 +61491,13 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/medical/cryo) +"qFk" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "qFr" = ( /obj/machinery/door/airlock/command{ name = "Teleport Access" @@ -58814,6 +61534,25 @@ "qFO" = ( /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) +"qFS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"qFV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) +"qGe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qGi" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/carpet/black, @@ -58827,19 +61566,30 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"qGv" = ( -/obj/structure/chair/sofa/right/brown{ - dir = 1 +"qGn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table, +/obj/item/chisel{ + pixel_x = 7; + pixel_y = 4 }, /turf/open/floor/wood, -/area/station/commons/dorms) -"qGx" = ( -/obj/structure/chair/pew/left{ - dir = 4 +/area/station/service/library) +"qGr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/obj/structure/closet/toolcloset, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) +"qGC" = ( +/obj/effect/spawner/random/structure/crate, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "qGF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -58852,7 +61602,7 @@ "qGG" = ( /obj/structure/cable, /turf/open/floor/iron/smooth_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qGW" = ( /obj/machinery/door/airlock/command{ name = "E.V.A. Storage" @@ -58862,19 +61612,27 @@ /obj/effect/mapping_helpers/airlock/access/all/command/eva, /obj/machinery/door/firedoor, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qGZ" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ dir = 9 }, /turf/open/space/openspace, /area/space/nearstation) -"qHf" = ( -/turf/closed/wall, -/area/station/maintenance/disposal/incinerator) "qHg" = ( /turf/open/floor/iron/stairs, /area/station/service/library) +"qHk" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"qHz" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "qHB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -58883,11 +61641,10 @@ /turf/open/floor/plating, /area/station/maintenance/central) "qHH" = ( -/obj/structure/table/wood, -/obj/item/camera{ - pixel_y = 4 - }, -/turf/open/floor/wood, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/closet/secure_closet/captains, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "qHJ" = ( /obj/structure/railing{ @@ -58900,27 +61657,51 @@ /obj/effect/turf_decal/tile/brown/full, /turf/open/floor/iron/large, /area/station/maintenance/starboard/central) -"qHN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"qHP" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/analyzer, +/obj/item/analyzer, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "qHQ" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 +/obj/machinery/light/directional/east, +/obj/machinery/status_display/supply{ + pixel_x = 32 }, -/obj/machinery/conveyor_switch/oneway{ - id = "cargoload"; - name = "Loading Conveyor"; - pixel_x = -13; - pixel_y = -5 +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 }, +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/obj/effect/turf_decal/stripes/end, /turf/open/floor/iron, /area/station/cargo/storage) -"qHT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"qHW" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"qHX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "qHZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58933,18 +61714,6 @@ }, /turf/open/floor/wood/large, /area/station/command/heads_quarters/cmo) -"qIa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8; - pixel_y = -2 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1 - }, -/obj/effect/mapping_helpers/mail_sorting/science/ordnance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "qIc" = ( /obj/structure/table/glass, /obj/item/book/manual/wiki/surgery{ @@ -58958,12 +61727,20 @@ }, /turf/open/floor/iron/dark/textured_half, /area/station/medical/surgery) +"qIo" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "qIp" = ( /obj/item/kirbyplants/organic/plant9{ pixel_x = 4 }, /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qIz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -58975,35 +61752,63 @@ /turf/open/openspace, /area/station/maintenance/port/aft) "qII" = ( -/obj/structure/railing/corner{ +/obj/machinery/modular_computer/preset/id{ dir = 4 }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ +/obj/effect/turf_decal/tile/green/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"qIL" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/broken_flooring/singular/directional/west, +/obj/structure/broken_flooring/singular/always_floorplane/directional, +/obj/structure/broken_flooring/singular, +/obj/item/assembly/mousetrap, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/openspace, -/area/station/hallway/primary/central) -"qJb" = ( -/obj/machinery/disposal/bin, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"qIQ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ +/obj/effect/turf_decal/trimline/green/filled/mid_joiner, +/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) +"qIZ" = ( +/obj/structure/reagent_dispensers/plumbed{ dir = 1 }, -/turf/open/floor/iron, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"qJb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "qJf" = ( /turf/open/floor/wood, /area/station/service/lawoffice) -"qJn" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink/directional/south, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +"qJk" = ( +/mob/living/basic/axolotl{ + name = "The Lost Axolotl" + }, +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/mirror/broken/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) "qJo" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 8 @@ -59011,16 +61816,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"qJA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/item/weldingtool/empty{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "qJB" = ( /obj/effect/turf_decal/bot_white/right, /turf/open/floor/iron/dark/textured_large, @@ -59064,7 +61859,7 @@ dir = 9 }, /turf/open/floor/engine/hull/reinforced/air, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qKq" = ( /turf/open/openspace, /area/station/science/zoo) @@ -59088,12 +61883,17 @@ /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "qKB" = ( -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "qKC" = ( -/obj/structure/sign/clock/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/structure/lattice/catwalk, +/obj/structure/table/reinforced, +/obj/item/storage/photo_album/qm, +/turf/open/openspace, +/area/station/cargo/storage) "qKG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -59152,7 +61952,7 @@ /area/station/hallway/secondary/entry) "qKS" = ( /obj/structure/dresser, -/turf/open/floor/wood, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "qKV" = ( /obj/effect/spawner/structure/window/reinforced, @@ -59162,9 +61962,20 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/commons/vacant_room/office) +"qKY" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/button/door/directional/west{ + id = "Cabin8"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/wood, +/area/station/commons/dorms) "qLg" = ( /obj/machinery/door/airlock{ - id_tag = "commissarydoor"; + id_tag = "officecommissarydoor"; name = "Vacant Office" }, /obj/effect/turf_decal/tile/green/fourcorners, @@ -59173,16 +61984,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"qLm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "qLy" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -59209,10 +62010,12 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/wood/large, /area/station/service/theater_dressing) -"qLZ" = ( -/obj/structure/grille, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +"qLQ" = ( +/obj/item/stack/rods{ + amount = 7 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "qMe" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -59255,10 +62058,21 @@ dir = 8 }, /area/station/medical/morgue) -"qMC" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"qMF" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "qMI" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -59298,42 +62112,36 @@ }, /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qNd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "qNe" = ( -/turf/open/floor/carpet, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "qNf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) -"qNg" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/area/station/ai/satellite/chamber) "qNi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "qm_cargobay"; - name = "Cargo Bay Shutters" +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"qNn" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" +/obj/effect/decal/cleanable/blood/oil/slippery, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"qNo" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 }, -/obj/structure/sign/poster/contraband/kss13/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "qNp" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 @@ -59343,31 +62151,23 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) -"qNq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "qNw" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood, /area/station/hallway/primary/central) +"qNG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/commons/dorms) "qNK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"qNM" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "qNN" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -59376,6 +62176,11 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, /area/station/security/brig) +"qNP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qNV" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -59388,33 +62193,11 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"qNW" = ( -/obj/item/trash/ready_donk, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qNX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qOm" = ( -/obj/structure/closet/crate, -/obj/item/gps, -/obj/item/assembly/timer, -/obj/item/gps, -/obj/item/assembly/signaler, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"qOv" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +"qOj" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "qOw" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -59422,6 +62205,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"qOC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/stairs/medium, +/area/station/maintenance/starboard) +"qOE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft) "qOG" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -59437,6 +62229,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) +"qPf" = ( +/obj/item/grapple_gun{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "qPj" = ( /turf/closed/wall, /area/station/cargo/sorting) @@ -59469,10 +62268,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) -"qPw" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "qPy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -59530,7 +62325,7 @@ /obj/machinery/light/directional/south, /obj/machinery/washing_machine, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qQb" = ( /obj/structure/table/wood, /obj/item/newspaper{ @@ -59544,31 +62339,30 @@ "qQd" = ( /turf/closed/wall/r_wall, /area/station/maintenance/central) +"qQe" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "qQf" = ( /obj/effect/turf_decal/siding/blue{ dir = 5 }, -/obj/machinery/computer/station_alert, /obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) -"qQj" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/closet/crate/trashcart/laundry, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/backpack, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"qQv" = ( -/obj/effect/decal/cleanable/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "qQx" = ( /obj/structure/reagent_dispensers/wall/peppertank/directional/north, /obj/effect/turf_decal/stripes/end, @@ -59626,16 +62420,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"qRb" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +"qRg" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible/layer2{ dir = 4 }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"qRp" = ( -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/pumproom) "qRq" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -59663,53 +62453,31 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"qRL" = ( -/obj/effect/turf_decal/siding, -/obj/effect/turf_decal/trimline/white/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "qSd" = ( /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/station/hallway/secondary/entry) "qSf" = ( /turf/closed/wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"qSj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "qSk" = ( /turf/closed/wall, /area/station/maintenance/department/science/central) -"qSs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/commons/dorms) "qSv" = ( /obj/structure/table/wood/poker, -/obj/item/flashlight/lamp/green{ - pixel_x = -8; - pixel_y = 14 - }, /obj/item/clothing/head/fedora/white, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "qSy" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -59726,13 +62494,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"qSD" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "qSG" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/machinery/atmospherics/components/trinary/mixer/flipped{ @@ -59741,11 +62502,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_edge, /area/station/science/ordnance/storage) -"qSP" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "qST" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -59755,6 +62511,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"qTa" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "qTb" = ( /obj/effect/turf_decal/tile/purple/opposingcorners{ dir = 1 @@ -59766,10 +62526,6 @@ /obj/structure/stairs/north, /turf/open/floor/iron/stairs/medium, /area/station/medical/virology) -"qTk" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) "qTl" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -59777,21 +62533,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/science/lobby) -"qTm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) -"qTt" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/autoname/directional/south, -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "qTy" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, @@ -59799,9 +62540,14 @@ "qTG" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/ferny/style_random, -/obj/effect/landmark/start/hangover, /turf/open/floor/grass, /area/station/hallway/primary/central) +"qTT" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/commons/locker) "qTX" = ( /obj/structure/lattice/catwalk, /obj/machinery/computer/security{ @@ -59809,6 +62555,12 @@ }, /turf/open/openspace, /area/station/security/checkpoint/customs) +"qTZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "qUa" = ( /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /obj/effect/decal/cleanable/dirt, @@ -59818,11 +62570,11 @@ /obj/structure/plasticflaps/kitchen, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"qUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mop_bucket, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +"qUo" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "qUt" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/chair/office, @@ -59850,8 +62602,21 @@ }, /turf/open/floor/grass, /area/station/science/genetics) +"qUD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) "qUG" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/central) "qUQ" = ( @@ -59870,13 +62635,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"qVd" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) "qVj" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/power/apc/auto_name/directional/south, @@ -59909,6 +62667,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/tile, /area/station/security/detectives_office/private_investigators_office) +"qVv" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qVz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59930,6 +62692,11 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/station/engineering/storage_shared) +"qVE" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "qVJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -59942,8 +62709,13 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "qVO" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/station/command/bridge) +"qVU" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "qVY" = ( /obj/machinery/door/airlock/medical/glass{ name = "Chemistry" @@ -59995,15 +62767,11 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/openspace, -/area/station/command/bridge) -"qWv" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/command/meeting_room/council) +"qWr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "qWy" = ( /obj/effect/turf_decal/siding/dark_blue/corner{ dir = 1 @@ -60031,32 +62799,36 @@ /area/station/medical/psychology) "qXc" = ( /obj/machinery/medical_kiosk, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" }, -/turf/open/floor/iron/dark, +/turf/open/floor/iron/dark/textured_large, /area/station/medical/medbay/lobby) -"qXj" = ( +"qXh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/duct, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "qXl" = ( /obj/effect/turf_decal/siding/blue{ dir = 1 }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/camera/autoname/directional/north, +/obj/machinery/status_display/ai/directional/north, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "qXo" = ( /obj/machinery/status_display/ai/directional/north, /obj/structure/chair/sofa/corp/left, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qXr" = ( /obj/structure/sign/departments/telecomms/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -60065,22 +62837,7 @@ /turf/open/floor/iron/smooth_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"qXx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Gas" - }, -/obj/effect/turf_decal/trimline/yellow, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qXH" = ( -/obj/structure/cable, -/obj/effect/landmark/start/depsec/engineering, -/obj/structure/chair/office{ - dir = 3 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/area/station/ai/satellite/foyer) "qXI" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -60106,6 +62863,12 @@ dir = 8 }, /area/station/service/chapel) +"qYb" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "qYi" = ( /obj/machinery/portable_atmospherics/scrubber/huge, /obj/effect/turf_decal/bot, @@ -60120,6 +62883,7 @@ /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/south, +/obj/item/wrench, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "qYk" = ( @@ -60128,7 +62892,7 @@ /obj/effect/mapping_helpers/burnt_floor, /obj/item/radio/intercom/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "qYn" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -60142,18 +62906,23 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/security/brig) -"qYs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, +"qYr" = ( +/obj/effect/spawner/random/trash/bin, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/storage_shared) "qYB" = ( /obj/structure/chair/greyscale{ dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/hallway/secondary/construction) +"qYK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "qYM" = ( /obj/item/kirbyplants/random, /obj/machinery/light/directional/east, @@ -60169,6 +62938,22 @@ /obj/item/sticker/pslime, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"qYP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmosengimainttriangle" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "qYU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60190,31 +62975,19 @@ /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, /area/station/science/genetics) -"qYY" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"qZv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/generic_maintenance_landmark, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qZB" = ( -/obj/machinery/door/airlock{ - name = "Commentator Stand Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 +"qZx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qZE" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/area/station/maintenance/department/crew_quarters/dorms) +"qZy" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "qZH" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -60232,14 +63005,7 @@ "qZQ" = ( /obj/machinery/flasher/directional/north, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) -"qZW" = ( -/obj/item/clothing/head/cone{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/upload/chamber) "qZX" = ( /obj/machinery/door/airlock/security{ name = "Armory" @@ -60249,7 +63015,18 @@ /obj/effect/turf_decal/tile/red/fourcorners, /obj/effect/mapping_helpers/airlock/access/all/security/armory, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"qZY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/security_all, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "qZZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -60260,18 +63037,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"raa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"rad" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) "rah" = ( /obj/structure/rack, /obj/item/reagent_containers/cup/bottle/iron{ @@ -60290,6 +63055,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/chem_storage) +"rai" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "ran" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -60313,13 +63084,21 @@ }, /turf/open/floor/glass, /area/station/security/brig) +"raE" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "raF" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 +/obj/effect/turf_decal/trimline/brown/arrow_ccw{ + dir = 1 }, -/obj/machinery/computer/order_console/mining, +/obj/effect/turf_decal/trimline/brown/arrow_cw, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "raN" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60360,6 +63139,16 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/engine, /area/station/service/hydroponics) +"raU" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "rba" = ( /obj/structure/spider/stickyweb, /turf/open/floor/plating, @@ -60370,6 +63159,15 @@ }, /turf/closed/wall/r_wall, /area/station/engineering/atmos/upper) +"rbt" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "rbx" = ( /obj/machinery/newscaster/directional/west, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -60408,27 +63206,39 @@ }, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"rce" = ( -/obj/item/clothing/head/cone{ - pixel_x = 6; - pixel_y = -9 - }, +"rcc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/tank_holder, +/obj/machinery/airalarm/directional/east, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) +"rci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/atmos_control/nocontrol/incinerator, +/obj/machinery/light/directional/north, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "rcl" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"rcs" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/sign/poster/contraband/space_up/directional/east, -/obj/structure/sign/poster/contraband/ambrosia_vulgaris/directional/south, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) "rct" = ( /turf/closed/wall, /area/station/engineering/storage) +"rcA" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 2; + name = "Chamber to Mix" + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "rcF" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -60440,7 +63250,7 @@ /area/station/cargo/storage) "rcG" = ( /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rdb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60451,6 +63261,13 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/medical/medbay/central) +"rdh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "rdk" = ( /obj/structure/table, /obj/item/food/chocolatebar{ @@ -60465,10 +63282,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) -"rdl" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "rdm" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -60497,38 +63310,22 @@ /area/station/hallway/primary/central) "rdx" = ( /obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"rdN" = ( -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"rdV" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rea" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Virology Maintenance" +/turf/open/floor/iron/edge{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, +/area/station/hallway/primary/central) +"rdz" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating, -/area/station/maintenance/port) +/area/station/maintenance/aft) +"rdW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/commons/dorms) "rec" = ( /obj/machinery/light/small/directional/west, /obj/structure/chair/comfy/beige{ @@ -60555,17 +63352,24 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"req" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "rey" = ( /obj/structure/lattice/catwalk, /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, /area/station/hallway/secondary/construction) +"reI" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/screwdriver{ + pixel_y = 12 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/stack/cable_coil, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "reN" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60573,6 +63377,16 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"reW" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "rfc" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/dark{ @@ -60592,7 +63406,15 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"rfk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "rfr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/west, @@ -60609,13 +63431,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"rfE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) "rfI" = ( /obj/item/tank/internals/oxygen/yellow, /turf/open/floor/engine/hull, @@ -60630,13 +63448,10 @@ /area/station/medical/medbay/central) "rfU" = ( /obj/machinery/light/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) -"rga" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "rgb" = ( /obj/machinery/vending/cigarette/beach, /turf/open/floor/iron/dark/smooth_large, @@ -60654,17 +63469,24 @@ /turf/open/floor/iron/dark, /area/station/security/interrogation) "rgj" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 16 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 1; - pixel_y = 6 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"rgq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/engineering/engine_smes) +"rgL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "rhx" = ( /obj/effect/turf_decal/siding/dark_blue{ dir = 1 @@ -60680,10 +63502,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron, /area/station/construction/storage_wing) -"rhD" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "rhE" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -60712,18 +63530,6 @@ /obj/effect/turf_decal/tile/purple/opposingcorners, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) -"rhM" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "rhP" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -60731,17 +63537,21 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"rhT" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft) "rih" = ( /turf/open/floor/plating, /area/station/maintenance/central) -"riv" = ( -/obj/item/trash/shok_roks/berry, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) +"riB" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "riD" = ( /turf/closed/wall, /area/station/maintenance/port) @@ -60755,11 +63565,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/service/library) -"riI" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/engineering/break_room) +"riN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Bay Shutters"; + id = "qm_cargobay"; + dir = 8; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/station/cargo/storage) "riR" = ( /obj/structure/railing{ dir = 6 @@ -60781,11 +63596,8 @@ /obj/effect/mapping_helpers/airlock/access/any/science/ordnance, /obj/machinery/button/ignition/incinerator/ordmix{ pixel_x = 24; - pixel_y = -6 - }, -/obj/machinery/button/door/incinerator_vent_ordmix{ - pixel_x = 24; - pixel_y = 8 + pixel_y = -6; + dir = 4 }, /obj/machinery/airlock_controller/incinerator_ordmix{ pixel_x = -22 @@ -60813,20 +63625,19 @@ }, /turf/open/floor/carpet, /area/station/command/corporate_showroom) +"rjc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) "rjd" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"rjj" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "rjz" = ( /obj/structure/table, /obj/effect/spawner/random/entertainment/drugs, @@ -60854,7 +63665,14 @@ /obj/effect/turf_decal/siding/dark, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"rjM" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "rjO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -60870,12 +63688,6 @@ /obj/structure/table, /turf/open/floor/wood, /area/station/service/library) -"rkf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "rki" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/engine, @@ -60886,6 +63698,18 @@ /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron/cafeteria, /area/station/maintenance/port) +"rky" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"rkA" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vatgrower, +/turf/open/floor/engine, +/area/station/maintenance/starboard) "rkB" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -60896,6 +63720,19 @@ /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/carpet/orange, /area/station/commons/lounge) +"rkE" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "rkF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/item/radio/intercom/directional/west, @@ -60945,11 +63782,6 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"rkU" = ( -/obj/structure/cable, -/obj/item/banner/command/mundane, -/turf/open/floor/plating, -/area/station/maintenance/port) "rkW" = ( /obj/effect/turf_decal/bot_white, /turf/open/floor/iron/dark/smooth_large, @@ -60963,7 +63795,8 @@ /area/station/maintenance/port/greater) "rla" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/plating, /area/station/maintenance/central) "rlq" = ( @@ -60972,6 +63805,23 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"rls" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/machinery/disposal/bin/tagger, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "rlu" = ( /obj/machinery/chem_master, /turf/open/floor/iron/dark/textured, @@ -60996,6 +63846,12 @@ /obj/structure/hedge, /turf/open/floor/glass/reinforced, /area/station/service/library) +"rlF" = ( +/obj/machinery/power/turbine/inlet_compressor{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "rlR" = ( /obj/item/storage/box/snappops{ pixel_x = 6; @@ -61032,9 +63888,21 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) +"rmb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "rmg" = ( /obj/structure/stairs/north, -/obj/machinery/airalarm/directional/east, /obj/machinery/light/directional/east, /turf/open/floor/iron/stairs/medium, /area/station/command/heads_quarters/hop) @@ -61043,23 +63911,14 @@ /turf/open/floor/iron/smooth, /area/station/science/robotics) "rms" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/machinery/requests_console/directional/east{ - department = "Bridge"; - name = "Bridge Requests Console"; - pixel_x = -32 - }, -/obj/effect/mapping_helpers/requests_console/announcement, -/obj/effect/mapping_helpers/requests_console/information, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, /obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "rmw" = ( /obj/machinery/door/airlock/public/glass{ name = "Public Zoo" @@ -61072,7 +63931,7 @@ /obj/structure/lattice/catwalk, /obj/machinery/status_display/evac/directional/east, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rmB" = ( /obj/machinery/power/shieldwallgen, /obj/effect/turf_decal/stripes/line{ @@ -61082,37 +63941,6 @@ /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/wood, /area/station/command/teleporter) -"rmC" = ( -/obj/item/melee/flyswatter{ - pixel_x = -2 - }, -/obj/item/toy/plush/lizard_plushie/green{ - name = "Steals-The-Cheese"; - pixel_x = 8; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/dark_green/opposingcorners, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"rmK" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/trash/can{ - pixel_x = -8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "rmM" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -61124,6 +63952,13 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"rmN" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "rmO" = ( /obj/effect/turf_decal/siding/dark/corner, /obj/effect/turf_decal/trimline/dark_blue/filled/line{ @@ -61140,7 +63975,7 @@ }, /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rmS" = ( /obj/structure/railing{ dir = 8 @@ -61154,31 +63989,39 @@ }, /turf/open/floor/iron, /area/station/science/research) -"rmV" = ( -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/obj/structure/urinal/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "rnd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) -"rnh" = ( -/obj/machinery/power/smes{ - charge = 5e+006 +"rnB" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2{ + dir = 8 }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"rnK" = ( /obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, /turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"rnp" = ( -/obj/structure/sign/directions/dorms{ - dir = 1; - pixel_y = 4 +/area/station/commons/fitness/recreation) +"rnN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 }, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "rnP" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -61202,11 +64045,11 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/maintenance/department/medical) -"rnR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +"rnV" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "rnX" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -61217,16 +64060,32 @@ /obj/structure/table/reinforced, /turf/open/floor/iron/dark, /area/station/engineering/storage) -"roj" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "roq" = ( /obj/effect/spawner/random/medical/patient_stretcher, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"ror" = ( +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/tcomms{ + pixel_x = 14; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/tcomms/directional/south{ + name = "Telecomms Camera Monitor" + }, +/obj/item/pen, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "rot" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -61244,22 +64103,10 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "roy" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"roz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/pipe_scrubber, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"roB" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/firealarm/directional/east, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "roG" = ( /obj/machinery/mech_bay_recharge_port{ dir = 2 @@ -61279,6 +64126,16 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"roM" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "roP" = ( /obj/structure/stairs/north, /obj/structure/railing{ @@ -61287,22 +64144,28 @@ /turf/open/floor/iron, /area/station/science/breakroom) "roY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4; - pixel_y = 38 - }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4 +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron, +/area/station/cargo/storage) +"rpd" = ( +/obj/structure/cable, +/obj/structure/sign/poster/contraband/soviet_propaganda/directional/north, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"rpj" = ( +/obj/item/toy/plush/lizard_plushie/green{ + name = "Swats-The-Moths"; + pixel_y = -10 }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4; - pixel_y = 26 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/dark_green/opposingcorners, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "rpn" = ( /obj/structure/railing{ dir = 8 @@ -61316,11 +64179,20 @@ }, /turf/open/floor/iron, /area/station/science/research) -"rps" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +"rpq" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"rpz" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "rpB" = ( /turf/closed/wall/r_wall, /area/station/command/corporate_showroom) @@ -61330,7 +64202,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rpI" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -61340,14 +64212,7 @@ }, /obj/machinery/washing_machine, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rpL" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/effect/turf_decal/siding/brown/corner, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +/area/station/ai/satellite/interior) "rpU" = ( /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) @@ -61370,12 +64235,6 @@ /obj/machinery/light/very_dim/directional/north, /turf/open/floor/plating, /area/station/maintenance/disposal) -"rqm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "rqn" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -61385,15 +64244,17 @@ }, /turf/open/floor/iron, /area/station/science/lobby) -"rqo" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/project) "rqq" = ( /obj/structure/table/wood, /obj/item/storage/photo_album/chapel, /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/chapel, /area/station/service/chapel) +"rqs" = ( +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/mid_joiner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "rqM" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -61447,18 +64308,6 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) -"rrn" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"rro" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/openspace, -/area/station/hallway/primary/central) "rrp" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -61479,30 +64328,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"rrz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/item/kirbyplants/random/fullysynthetic, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +"rrE" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/cargo/storage) "rrF" = ( /obj/structure/table, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) -"rrY" = ( +"rrI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, /obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/storage_shared) "rsb" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -61513,12 +64357,19 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/wood, /area/station/command/corporate_showroom) -"rsn" = ( -/obj/machinery/vatgrower, -/obj/effect/turf_decal/trimline/green/filled/line, +"rsm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/obj/structure/closet/crate, +/obj/item/reagent_containers/cup/glass/bottle/vermouth{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/bottle/ale, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_x = 6 + }, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "rsH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/disposal/bin, @@ -61527,6 +64378,16 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/central) +"rsJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/catwalk_floor{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/station/science/server) "rsU" = ( /obj/machinery/wall_healer/directional/north, /obj/effect/turf_decal/box/white{ @@ -61535,17 +64396,10 @@ /turf/open/floor/iron/dark/textured_large, /area/station/medical/medbay/lobby) "rtb" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/conveyor{ - dir = 8; - id = "mining" - }, -/obj/structure/railing{ - dir = 1 - }, /obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/line, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/cargo/storage) "rtd" = ( /obj/effect/turf_decal/tile/blue/full, /obj/structure/table/reinforced, @@ -61572,12 +64426,44 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"rtm" = ( +/obj/item/banner/cargo/mundane{ + pixel_y = 27 + }, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_y = 10 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "rto" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) +"rtr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"rtv" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "rtx" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -61589,6 +64475,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"rtz" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "rtD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61600,6 +64491,11 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/hallway/secondary/entry) +"rtL" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "rtO" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -61608,12 +64504,35 @@ /turf/open/openspace, /area/station/medical/virology) "ruc" = ( -/obj/effect/turf_decal/siding/green/corner{ +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/green{ dir = 8 }, -/obj/machinery/vending/coffee, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"rue" = ( +/obj/item/statuebust, +/obj/machinery/light/cold/no_nightlight/directional/west, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) +"ruf" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/warning/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"rul" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/hull/air, +/area/station/engineering/supermatter/room/upper) +"rum" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) "ruq" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 8 @@ -61625,13 +64544,11 @@ }, /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"ruB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/small, -/area/station/command/heads_quarters/ce) +/area/station/ai/satellite/foyer) +"ruA" = ( +/obj/machinery/light/small/dim/directional/north, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) "ruD" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -61640,31 +64557,62 @@ /turf/open/floor/iron/dark, /area/station/medical/chemistry) "ruE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/structure/table/wood/fancy/orange, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_x = -5; + pixel_y = 18 + }, +/obj/item/food/fortunecookie{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) +"ruF" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "ruJ" = ( /obj/item/kirbyplants/random, /obj/structure/sign/departments/medbay/alt/directional/east, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) "ruK" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Abandoned Hallway" - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ +/obj/machinery/light/directional/east, +/turf/open/floor/iron/edge{ dir = 4 }, -/obj/machinery/door/firedoor, +/area/station/hallway/primary/central) +"ruR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, /turf/open/floor/iron, -/area/station/hallway/secondary/construction) +/area/station/hallway/primary/port) "ruS" = ( /obj/effect/mob_spawn/corpse/human/skeleton, /obj/item/mod/module/springlock, /obj/effect/decal/cleanable/blood, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) +"ruZ" = ( +/obj/effect/spawner/random/structure/crate_loot, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "rvk" = ( /obj/structure/table/wood, /obj/item/book/bible, @@ -61680,6 +64628,23 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) +"rvo" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/phone{ + pixel_y = -9; + pixel_x = -3 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "rvs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -61696,7 +64661,6 @@ }, /obj/item/cigbutt, /obj/effect/mapping_helpers/broken_floor, -/obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "rvu" = ( @@ -61709,6 +64673,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) +"rvv" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"rvz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 11 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/aft/upper) "rvB" = ( /obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ pixel_x = -24 @@ -61720,23 +64696,23 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"rvH" = ( +"rvT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rvX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"rvR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 +/obj/effect/turf_decal/stripes{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "rvY" = ( /obj/structure/table/reinforced, /obj/item/storage/box/gloves{ @@ -61747,42 +64723,43 @@ /turf/open/floor/iron/dark, /area/station/service/chapel/office) "rwd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/structure/railing/corner/end{ +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"rwf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/sorting) +/obj/structure/cable, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "rwh" = ( /turf/closed/wall/r_wall, /area/station/security/medical) -"rwG" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "miningshuttleexit" +"rwn" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rwJ" = ( -/obj/structure/railing/corner/end/flip{ +/obj/effect/turf_decal/stripes/red/line{ dir = 8 }, -/obj/structure/railing/corner/end{ - dir = 4 +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rwJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "rwO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -61796,7 +64773,7 @@ dir = 10 }, /obj/effect/baseturf_helper/reinforced_plating/ceiling, -/turf/open/floor/carpet, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "rwU" = ( /obj/effect/mapping_helpers/airlock/access/all/service/general, @@ -61806,25 +64783,42 @@ /obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"rwV" = ( +/obj/machinery/computer/atmos_control/carbon_tank, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "rwW" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/grass, /area/station/hallway/primary/starboard) "rxc" = ( -/obj/structure/table, -/obj/machinery/fax{ - fax_name = "Quartermaster's Office"; - name = "Quartermaster's Fax Machine" - }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/area/station/cargo/storage) "rxd" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) "rxk" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, /area/station/cargo/storage) "rxo" = ( /obj/structure/lattice/catwalk, @@ -61864,8 +64858,14 @@ pixel_x = -2; pixel_y = 7 }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"rxy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/dresser, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "rxH" = ( /turf/open/floor/engine, /area/station/engineering/supermatter/room) @@ -61877,22 +64877,22 @@ }, /turf/open/floor/iron/kitchen, /area/station/hallway/secondary/service) -"rxM" = ( +"rxS" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sink/kitchen/directional/east{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink" - }, -/obj/structure/mirror/directional/west, -/obj/effect/decal/cleanable/cobweb, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) +"rxW" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "rya" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "ryb" = ( @@ -61927,11 +64927,22 @@ name = "Garbage Closet" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"rzf" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4; + initialize_directions = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/airalarm/directional/west, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "rzm" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -61957,6 +64968,17 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"rzu" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/upper) +"rzH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "rzK" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/ferny/style_random, @@ -61983,7 +65005,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rAc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, @@ -61994,15 +65016,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"rAq" = ( -/obj/structure/table, -/obj/item/phone{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "rAs" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, @@ -62018,27 +65031,22 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"rAH" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/start/hangover, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "rAK" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/flora/rock/pile/jungle/style_3, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rAL" = ( -/obj/structure/table/glass, -/turf/open/floor/carpet, -/area/station/command/bridge) -"rAT" = ( -/obj/structure/lattice/catwalk, -/obj/structure/grille, -/turf/open/space/openspace, -/area/space/nearstation) +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) "rAV" = ( /obj/machinery/holopad, /obj/machinery/status_display/evac/directional/north, @@ -62050,13 +65058,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine/hull/air, /area/station/medical/medbay/central) -"rBh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "rBm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62076,34 +65077,20 @@ /turf/open/floor/plating, /area/station/maintenance/port/greater) "rBE" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 1 +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "Privacy Shutters" }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/openspace, -/area/station/command/bridge) +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) "rBI" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/confetti, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/carpet/black, /area/station/maintenance/hallway/abandoned_recreation) -"rBO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"rBP" = ( -/obj/item/bikehorn/rubberducky, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "rBQ" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/engine/vacuum, @@ -62138,6 +65125,16 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"rCh" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "rCp" = ( /obj/structure/table, /obj/item/food/cheese/firm_cheese_slice{ @@ -62161,21 +65158,14 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "rCF" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/bot, /obj/machinery/camera/autoname/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/machinery/conveyor{ + dir = 8; + id = "mining" }, +/obj/machinery/bouldertech/refinery/smelter, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"rCO" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "rCP" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -62192,7 +65182,7 @@ }, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rDc" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) @@ -62206,14 +65196,15 @@ }, /turf/open/floor/eighties, /area/station/construction/storage_wing) -"rDm" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/stairs/right, -/area/station/maintenance/disposal/incinerator) "rDr" = ( /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"rDs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "rDv" = ( /turf/closed/wall, /area/station/construction/storage_wing) @@ -62227,6 +65218,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"rDz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "rDC" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/food_or_drink/snack{ @@ -62255,6 +65251,10 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/medbay/central) +"rDG" = ( +/obj/effect/turf_decal/tile/red, +/turf/closed/wall/r_wall, +/area/station/engineering/lobby) "rDN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62282,19 +65282,9 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/security/prison) -"rEv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/stairs/medium, -/area/station/maintenance/starboard/lesser) "rED" = ( /turf/closed/wall, /area/station/security/prison/shower) -"rEG" = ( -/obj/structure/mirror/directional/north, -/obj/item/cigbutt, -/obj/structure/sink/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "rEL" = ( /obj/machinery/requests_console/directional/north{ department = "Medbay"; @@ -62316,13 +65306,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/small, /area/station/command/heads_quarters/ce) -"rFi" = ( -/obj/structure/chair{ - dir = 4; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"rFg" = ( +/turf/open/floor/engine/hull/air, +/area/station/engineering/supermatter/room/upper) "rFj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -62340,6 +65326,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/office) "rFm" = ( @@ -62348,28 +65335,6 @@ /obj/machinery/disposal/bin, /turf/open/floor/wood, /area/station/hallway/secondary/service) -"rFq" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) -"rFr" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/structure/fluff/paper/stack{ - dir = 4 - }, -/obj/structure/fluff/paper/corner{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "rFx" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -62409,6 +65374,11 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"rFM" = ( +/obj/structure/stairs/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/stairs/medium, +/area/station/maintenance/starboard) "rGb" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -62419,6 +65389,11 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"rGg" = ( +/obj/structure/table/reinforced, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "rGp" = ( /obj/structure/railing{ dir = 8 @@ -62434,19 +65409,34 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/glass/reinforced, /area/station/solars/starboard/fore) -"rGw" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +"rGK" = ( +/obj/structure/fake_stairs/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"rGY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"rGK" = ( -/obj/structure/fake_stairs/directional/east, +"rHf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/pen/blue{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/structure/fluff/paper/stack{ + desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; + dir = 1 + }, +/obj/structure/fluff/paper/corner, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/station/maintenance/port/aft) +/area/station/maintenance/aft) "rHk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -62461,7 +65451,9 @@ dir = 4 }, /obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "rHq" = ( /obj/effect/landmark/event_spawn, @@ -62504,11 +65496,7 @@ }, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rHN" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/interior) "rHS" = ( /obj/structure/lattice/catwalk, /obj/machinery/door/window/left/directional/west{ @@ -62516,21 +65504,18 @@ }, /turf/open/openspace, /area/station/command/gateway) -"rHU" = ( -/obj/structure/reflector/double{ - dir = 6 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"rHZ" = ( -/obj/structure/closet/firecloset, -/obj/item/radio/intercom/directional/south, +"rHT" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 + dir = 5 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/machinery/vending/tool, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) +"rHX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/wood/large, +/area/station/medical/psychology) "rIi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62546,6 +65531,15 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"rIm" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "rIq" = ( /obj/structure/chair/pew/right{ dir = 8 @@ -62553,10 +65547,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/service/chapel) -"rIw" = ( -/obj/machinery/vending/tool, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "rIA" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/structure/window/reinforced/spawner/directional/south, @@ -62574,7 +65564,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/directional/east, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "rIU" = ( /obj/structure/disposalpipe/segment{ @@ -62598,17 +65588,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/cytology) -"rIZ" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "rJa" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 @@ -62621,12 +65600,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"rJe" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 10 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) "rJi" = ( /obj/machinery/door/airlock{ id_tag = "restroom_3"; @@ -62654,21 +65627,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/service/cafeteria) -"rJB" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/petri_dish/random{ - pixel_x = -14; - pixel_y = 7 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "rJF" = ( /obj/structure/lattice, /obj/structure/rack, @@ -62686,16 +65644,7 @@ /obj/effect/spawner/random/clothing/costume, /obj/effect/spawner/random/clothing/funny_hats, /turf/open/floor/iron/checker, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rJJ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "rJL" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 @@ -62706,6 +65655,15 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"rKf" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"rKj" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "rKn" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -62715,17 +65673,11 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel) -"rKA" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) "rKJ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"rKL" = ( -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "rKN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62779,15 +65731,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/breakroom) -"rLz" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/openspace, -/area/station/engineering/lobby) "rLA" = ( /obj/effect/turf_decal/tile/purple/fourcorners, /obj/structure/railing{ @@ -62800,13 +65743,6 @@ /obj/item/clothing/glasses/science, /turf/open/floor/iron, /area/station/science/research) -"rLK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/lobby) "rMc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62815,14 +65751,12 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) -"rMe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/wall_healer/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"rMj" = ( -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +"rMr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "rMv" = ( /obj/machinery/door/poddoor/shutters/preopen{ dir = 1; @@ -62842,7 +65776,7 @@ }, /obj/effect/mapping_helpers/mail_sorting/security/general, /obj/effect/mapping_helpers/mail_sorting/security/hos_office, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "rMW" = ( /obj/effect/turf_decal/stripes/line{ @@ -62857,6 +65791,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"rNa" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "rNc" = ( /obj/structure/lattice/catwalk, /obj/item/stack/cable_coil{ @@ -62867,46 +65812,20 @@ "rNe" = ( /turf/open/openspace, /area/station/commons/fitness/recreation) -"rNx" = ( -/obj/structure/table, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/stamp/granted{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) "rNA" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"rND" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 +"rNI" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"rNG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, -/area/station/hallway/secondary/construction) +/area/station/cargo/storage) "rNT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -62927,9 +65846,7 @@ /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 }, -/obj/machinery/modular_computer/preset/cargochat/cargo{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/cargo/storage) "rOc" = ( @@ -62962,6 +65879,17 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) +"rOl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "rOn" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -62978,29 +65906,49 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"rOy" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "rOA" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/science/central) -"rOB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) "rOC" = ( /obj/machinery/light/directional/north, /obj/machinery/computer/cargo/request, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rOG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ - dir = 4 +/area/station/ai/satellite/interior) +"rOE" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/pen{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/wood, +/area/station/maintenance/aft) "rOQ" = ( /obj/machinery/skill_station, /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) +"rOW" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "SM_Outside_shutters"; + name = "Outside Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"rOX" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "rPd" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -63010,6 +65958,15 @@ }, /turf/open/floor/iron, /area/station/science/lab) +"rPg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"rPh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "rPn" = ( /obj/structure/table, /obj/item/assembly/flash/handheld{ @@ -63021,11 +65978,6 @@ }, /turf/open/floor/iron/grimy, /area/station/security/interrogation) -"rPs" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, -/area/station/commons/dorms) "rPw" = ( /obj/item/cigbutt{ pixel_x = -12; @@ -63045,18 +65997,15 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/station/maintenance/port) -"rPK" = ( -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "rPQ" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, -/obj/item/radio/intercom/directional/west, /obj/machinery/light/directional/west, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "rPS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63068,26 +66017,6 @@ /obj/effect/mapping_helpers/mail_sorting/service/chapel, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"rPU" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/port) -"rPV" = ( -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - name = "decommissioned sleeper" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rQb" = ( -/obj/machinery/atmospherics/components/binary/pump/off/general/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "rQg" = ( /obj/structure/tank_holder/extinguisher, /obj/machinery/light/directional/east, @@ -63119,6 +66048,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) +"rQG" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/modular_computer/preset/engineering{ + dir = 8 + }, +/obj/effect/turf_decal/bot/right, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"rQN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos/office) "rQQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63171,23 +66119,13 @@ /turf/open/floor/iron/dark, /area/station/science/xenobiology) "rRg" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/warm/dim/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"rRh" = ( -/obj/machinery/light/directional/east, -/obj/structure/closet/crate/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/structure/crate, +/obj/machinery/status_display/supply{ + pixel_x = -32 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "rRn" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, @@ -63197,13 +66135,6 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"rRJ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/lobby) "rRM" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -63231,63 +66162,76 @@ /turf/open/floor/iron, /area/station/cargo/storage) "rRN" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/south{ - name = "Cargo Desk"; - req_access = list("mining") +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 }, -/obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rRW" = ( -/obj/item/ammo_casing/spent{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/ammo_casing/spent{ - pixel_x = 2; - pixel_y = -9 +/area/station/hallway/primary/starboard) +"rRP" = ( +/obj/machinery/vatgrower, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"rRT" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "rSb" = ( /obj/machinery/light_switch/directional/south, -/obj/structure/disposaloutlet{ +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/railing{ - dir = 9 +/obj/item/storage/box/shipping{ + pixel_x = 4; + pixel_y = 10 }, -/turf/open/floor/iron, +/obj/item/clothing/head/costume/mailman, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "rSj" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"rSk" = ( -/turf/open/floor/plating/elevatorshaft, -/area/station/engineering/atmos/upper) -"rSu" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/washing_machine, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"rTa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 +"rSD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rSG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"rSP" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) +"rSX" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "rTe" = ( /obj/machinery/door/airlock/grunge{ name = "Morgue" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, /turf/open/floor/iron/dark/small, /area/station/medical/morgue) "rTk" = ( @@ -63318,7 +66262,6 @@ dir = 1 }, /obj/machinery/computer/exoscanner_control, -/obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/cargo/storage) "rTH" = ( @@ -63332,10 +66275,6 @@ dir = 8 }, /area/station/hallway/primary/fore) -"rTQ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) "rTR" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -63347,15 +66286,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"rUf" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Malpractice Tower" - }, -/obj/effect/turf_decal/tile/green/full, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) "rUj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63383,6 +66313,11 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"rUq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/security/detectives_office/private_investigators_office) "rUr" = ( /obj/structure/railing{ dir = 4 @@ -63394,18 +66329,6 @@ /obj/machinery/disposal/bin, /turf/open/openspace, /area/station/science/xenobiology) -"rUC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/obj/effect/landmark/event_spawn, -/obj/item/chisel{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) "rUE" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -63419,18 +66342,21 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"rUM" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "N2 Multideck Adapter"; - dir = 8 - }, -/obj/machinery/meter{ - name = "N2 meter" +"rUR" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/half{ - dir = 1 +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"rVb" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 }, -/turf/open/floor/iron/smooth, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/iron, /area/station/engineering/atmos/upper) "rVc" = ( /obj/effect/turf_decal/siding/dark{ @@ -63442,7 +66368,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rVd" = ( /obj/machinery/light/small/directional/south, /obj/structure/table/reinforced, @@ -63463,16 +66389,41 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"rVo" = ( +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "rVs" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"rVx" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"rVt" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/layer2{ + dir = 8; + name = "Incinerator to Waste" + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"rVA" = ( +/obj/item/kirbyplants/random, +/obj/machinery/button/door/directional/east{ + id = "Cabin4"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "rVE" = ( /obj/structure/table/reinforced, /obj/item/food/burger/catburger{ @@ -63480,8 +66431,14 @@ pixel_x = -4; pixel_y = 8 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"rVG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "rVJ" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -63490,6 +66447,21 @@ }, /turf/open/floor/eighties/red, /area/station/maintenance/hallway/abandoned_recreation) +"rVL" = ( +/obj/item/banner/cargo/mundane, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "rVM" = ( /obj/structure/lattice/catwalk, /obj/structure/table/reinforced, @@ -63498,19 +66470,13 @@ /obj/machinery/light_switch/directional/west, /turf/open/openspace, /area/station/security/checkpoint/customs) -"rVT" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/mail_sorting/service/dormitories, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8 +"rVS" = ( +/obj/structure/table, +/obj/item/tape{ + pixel_x = -4 }, -/turf/open/floor/iron, -/area/station/commons/dorms) +/turf/open/floor/plating, +/area/station/maintenance/starboard) "rVX" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 2" @@ -63520,14 +66486,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) -"rWf" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +"rWg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/engine/hull, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"rWn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "rWp" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -63535,11 +66506,6 @@ /obj/structure/sign/calendar/directional/north, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"rWs" = ( -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "rWx" = ( /obj/effect/turf_decal/stripes/corner, /turf/open/floor/engine/hull, @@ -63561,12 +66527,6 @@ dir = 8 }, /area/station/hallway/primary/starboard) -"rWH" = ( -/obj/item/cigbutt, -/obj/effect/landmark/start/hangover, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) "rWJ" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -63582,12 +66542,12 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"rWT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +"rWN" = ( +/obj/structure/reagent_dispensers/plumbed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "rWZ" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 @@ -63601,28 +66561,46 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"rXq" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 1 +"rXj" = ( +/obj/item/stock_parts/water_recycler{ + pixel_y = 2; + pixel_x = -5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/structure/frame/machine/secured, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"rXt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=20-Genetics"; + location = "19-Captain" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) "rXD" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/security/interrogation) -"rXI" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "rXL" = ( /turf/open/openspace, /area/station/science/robotics/lab) +"rXM" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Laundromat" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/duct, +/turf/open/floor/iron/textured, +/area/station/commons/dorms/laundry) "rXS" = ( /turf/open/floor/plating, /area/station/maintenance/department/medical) @@ -63660,44 +66638,61 @@ /obj/structure/lattice, /turf/open/space/openspace, /area/space/nearstation) +"rYh" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "rYu" = ( /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) -"rYB" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) +"rYw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=18-Bathroom"; + location = "17-Dorms" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/commons/dorms) "rYF" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"rYH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"rYJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) "rYQ" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/spawner/random/trash/mess, +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/plating, /area/station/maintenance/disposal) +"rYR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"rYU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) "rYV" = ( /obj/effect/mapping_helpers/airlock/access/any/service/theatre, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63712,10 +66707,11 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/medical/abandoned) -"rZl" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/catwalk_floor, +"rZp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, /area/station/engineering/atmos/upper) "rZs" = ( /obj/structure/chair, @@ -63725,6 +66721,22 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/security/courtroom) +"rZH" = ( +/obj/structure/table, +/obj/item/hand_labeler{ + pixel_y = 7 + }, +/obj/item/camera_film{ + pixel_y = 3 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/storage/art) "rZP" = ( /obj/effect/turf_decal/siding/dark_blue/inner_corner{ dir = 4 @@ -63742,6 +66754,13 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"sai" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Abandoned Bar" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "saq" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/effect/landmark/start/hangover, @@ -63753,6 +66772,13 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"sau" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/sign/poster/contraband/space_up/directional/east, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris/directional/south, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "saE" = ( /obj/structure/window/spawner/directional/north, /obj/machinery/door/firedoor/border_only{ @@ -63777,6 +66803,16 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) +"saT" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/aft/upper) +"saX" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/structure/frame/machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "sbb" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 @@ -63788,7 +66824,7 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sbd" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/siding/wood, @@ -63805,12 +66841,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"sbn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sbp" = ( /turf/open/floor/engine/plasma, /area/station/engineering/atmos/upper) @@ -63863,62 +66893,6 @@ }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"sbF" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/rack, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/wrench, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"sbI" = ( -/obj/item/toy/plush/lizard_plushie/green{ - name = "Swats-The-Moths"; - pixel_y = -10 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/dark_green/opposingcorners, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/poster/contraband/lizard/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"sbP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"scc" = ( -/obj/effect/turf_decal/siding{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"sce" = ( -/obj/effect/decal/cleanable/crayon{ - icon_state = "nay"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "scf" = ( /obj/structure/table, /obj/item/grenade/chem_grenade/teargas/moustache{ @@ -63947,7 +66921,8 @@ pixel_y = 11 }, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/service/library) @@ -63955,13 +66930,6 @@ /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"scy" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "scE" = ( /obj/machinery/light/directional/south, /obj/machinery/light_switch/directional/south, @@ -63980,11 +66948,14 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "scJ" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/green{ dir = 1 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "scK" = ( /obj/effect/turf_decal/bot/right, @@ -63996,6 +66967,19 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"scO" = ( +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "scQ" = ( /obj/structure/table, /obj/structure/window/spawner/directional/north, @@ -64018,14 +67002,6 @@ "sdf" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/interrogation) -"sdm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chair, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "sds" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, @@ -64049,12 +67025,16 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"sdI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sdP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) +/obj/machinery/computer/atmos_control, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) "sdV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64111,6 +67091,12 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/grass, /area/station/engineering/lobby) +"seD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/security/courtroom) "seF" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -64131,13 +67117,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/small, /area/station/security/mechbay) -"seW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 9 - }, +"sfc" = ( +/obj/structure/lattice, /turf/open/openspace, -/area/station/engineering/break_room) +/area/station/maintenance/starboard/upper) "sfh" = ( /turf/closed/wall, /area/station/maintenance/disposal) @@ -64146,17 +67129,20 @@ id_tag = "MedbayExit"; name = "Medbay Exit" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/blue/full, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) "sfn" = ( -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) "sfp" = ( /obj/structure/table/reinforced, /obj/item/camera{ @@ -64166,14 +67152,11 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/security/courtroom) -"sfq" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/station/commons/dorms) +"sfv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "sfz" = ( /obj/machinery/door/airlock/security/glass{ name = "Security Post - Cargo" @@ -64181,13 +67164,9 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/security/general, /obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"sfJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/footprints, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sfL" = ( /obj/machinery/atmospherics/components/binary/valve, /turf/open/floor/iron/dark, @@ -64199,6 +67178,24 @@ /obj/structure/displaycase/noalert, /turf/open/floor/iron/dark, /area/station/science/lobby) +"sfR" = ( +/obj/machinery/computer/crew, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"sfS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/modular_computer/preset/engineering{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "sgf" = ( /obj/structure/ladder, /obj/structure/cable, @@ -64232,23 +67229,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"sgG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"sgM" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sgN" = ( /obj/structure/bed/medical/emergency, /obj/effect/landmark/start/paramedic, @@ -64266,26 +67252,24 @@ /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, /obj/machinery/camera/autoname/directional/west, +/obj/structure/chair{ + dir = 4; + pixel_y = -2 + }, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) "sgV" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/landmark/navigate_destination/disposals, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) -"sgX" = ( -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/break_room) "shb" = ( /obj/effect/turf_decal/siding/red{ dir = 8 @@ -64295,6 +67279,11 @@ "shi" = ( /turf/closed/wall/r_wall, /area/station/engineering/storage_shared) +"shl" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "shs" = ( /turf/closed/wall, /area/station/commons/vacant_room/office) @@ -64315,9 +67304,6 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"shx" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) "shG" = ( /obj/structure/railing{ dir = 8 @@ -64335,6 +67321,9 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/mechbay) +"shQ" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/office) "shR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/blacklight/directional/west, @@ -64353,20 +67342,15 @@ /area/station/hallway/secondary/construction) "sik" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"siz" = ( -/obj/machinery/light/directional/south, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/break_room) "siA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -64376,6 +67360,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"siD" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/engineering/lobby) "siG" = ( /obj/effect/spawner/random/structure/crate, /obj/effect/spawner/random/maintenance, @@ -64386,23 +67377,6 @@ /obj/effect/landmark/start/depsec/science, /turf/open/openspace, /area/station/security/checkpoint/science) -"siM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper{ - dir = 4 - }, -/obj/structure/fluff/paper/stack{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"siN" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "siP" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) @@ -64435,19 +67409,33 @@ }, /turf/open/floor/wood/large, /area/station/commons/lounge) -"sjq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 8 +"sjr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "CE's Maintenance Access" }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) "sjx" = ( /turf/closed/wall, /area/station/hallway/primary/port) +"sjy" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/structure/sign/warning/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"sjz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/obj/structure/sign/warning/yes_smoking/circle/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/toilet/restrooms) "sjC" = ( /obj/structure/stairs/south, /turf/open/floor/iron/stairs/medium{ @@ -64467,46 +67455,10 @@ }, /turf/open/floor/iron, /area/station/science/robotics) -"sjO" = ( -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"sjQ" = ( -/obj/structure/railing, -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/folder/blue{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/folder{ - pixel_x = 2 - }, -/obj/item/taperecorder{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/structure/cable, -/turf/open/floor/wood/large, -/area/station/service/library/private) "sjT" = ( /obj/structure/cable, /turf/closed/wall/r_wall, /area/station/security/office) -"ska" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "skm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64531,12 +67483,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"skC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "skR" = ( /obj/structure/table/wood, /obj/item/vending_refill/cigarette{ @@ -64595,6 +67541,10 @@ }, /turf/open/openspace, /area/station/hallway/secondary/construction) +"slo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) "slt" = ( /obj/structure/railing{ dir = 8 @@ -64656,12 +67606,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"slP" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "slS" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -64670,8 +67614,9 @@ /obj/structure/railing/corner/end/flip{ dir = 8 }, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "smc" = ( /obj/machinery/button/door/directional/west{ name = "Kitchen Counter Shutters Control"; @@ -64685,36 +67630,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"smi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"smk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"smt" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/rack, -/obj/item/encryptionkey/headset_sci{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/encryptionkey/headset_med, -/obj/item/encryptionkey/headset_eng{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ +"sml" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "smz" = ( /obj/machinery/hydroponics/soil, /obj/effect/decal/cleanable/dirt, @@ -64722,16 +67647,6 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"smD" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) -"smV" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/morgue) "snd" = ( /obj/machinery/mecha_part_fabricator{ drop_direction = 4 @@ -64764,11 +67679,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"snQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "snR" = ( /obj/structure/railing/corner{ dir = 1 @@ -64827,53 +67737,30 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"soH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/sign/poster/official/random/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/openspace, -/area/station/commons/dorms) +"soR" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "soU" = ( /turf/closed/wall, /area/station/science/research) -"spb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine/hull/air, -/area/station/engineering/storage_shared) "spl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) -"spr" = ( -/obj/structure/table, -/obj/item/hand_labeler{ - pixel_y = 11 - }, -/obj/item/hand_labeler_refill{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/machinery/power/apc/auto_name/directional/east, +"spn" = ( +/obj/structure/chair/office, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, /turf/open/floor/iron, +/area/station/engineering/lobby) +"spr" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) -"spw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "abandoned_kitchen"; - name = "Kitchen Shudders" - }, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "spC" = ( /obj/machinery/teleport/station, /obj/effect/turf_decal/tile/green/opposingcorners{ @@ -64893,30 +67780,21 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"spK" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "spO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/wood/large, /area/station/service/library) -"sql" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"sqo" = ( -/obj/structure/chair/greyscale{ - dir = 1 +"sqj" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "sqp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue{ @@ -64952,47 +67830,52 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"sqz" = ( -/obj/structure/cable, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 13 - }, -/obj/item/cigbutt{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"sqy" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "sqQ" = ( -/obj/effect/turf_decal/siding/wood/corner, -/obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/textured, +/area/station/command/eva) "sqR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, /obj/structure/window/spawner/directional/south, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"src" = ( -/obj/structure/table, -/obj/machinery/microwave/engineering/cell_included, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"srx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, +"srh" = ( +/obj/effect/spawner/random/structure/grille, +/obj/structure/cable, /turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"sri" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/iron/dark/smooth_large, /area/station/commons/dorms) -"sry" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) +"sru" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"srA" = ( +/obj/structure/table, +/obj/item/lipstick/purple{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/mask/animal/horsehead{ + pixel_x = 4; + pixel_y = 15 + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) "srB" = ( /obj/machinery/camera/directional/west, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -65026,9 +67909,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) "ssc" = ( @@ -65042,16 +67923,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"ssm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "sso" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/engineering/atmospherics_portable, @@ -65087,14 +67958,6 @@ }, /turf/open/misc/asteroid, /area/station/science/xenobiology/hallway) -"ssO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) "ssT" = ( /obj/structure/table/wood, /obj/structure/desk_bell{ @@ -65115,6 +67978,29 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/cafeteria) +"ssX" = ( +/obj/structure/sink/directional/east, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) +"sta" = ( +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/airlock/mining{ + name = "Deliveries" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/shipping, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den, +/turf/open/floor/iron, +/area/station/cargo/sorting) +"sti" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/station/engineering/lobby) "stk" = ( /obj/structure/table, /obj/machinery/recharger{ @@ -65135,7 +68021,7 @@ /area/station/security/range) "stm" = ( /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "stq" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 6 @@ -65153,6 +68039,12 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/checkpoint/science) +"stt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/tank_dispenser, +/obj/structure/sign/poster/official/moth_hardhat/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "stv" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -65162,30 +68054,31 @@ dir = 4 }, /turf/open/openspace, -/area/station/command/bridge) -"stR" = ( -/obj/effect/turf_decal/siding{ - dir = 5 +/area/station/command/meeting_room/council) +"stC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "stW" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/light/directional/east, /turf/open/floor/glass/reinforced, /area/station/medical/chemistry) -"stY" = ( -/obj/item/storage/box/lights/mixed, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) "sus" = ( /turf/open/floor/plating, /area/station/engineering/storage_shared) +"sux" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "suy" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -65201,14 +68094,50 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"suI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "suJ" = ( /obj/structure/sign/poster/official/moth_meth/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"suK" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "suM" = ( /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"suQ" = ( +/obj/machinery/computer/mecha, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"suV" = ( +/obj/machinery/meter{ + name = "C02 meter" + }, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "CO2 Multideck Adapter"; + dir = 2 + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "svh" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, @@ -65222,15 +68151,11 @@ /turf/open/floor/plating, /area/station/solars/starboard/aft) "svp" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"svt" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "svw" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -65239,44 +68164,36 @@ /obj/structure/railing/corner, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"svB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/engineering/lobby) "svC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"svL" = ( -/obj/machinery/door/poddoor/massdriver_ordnance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"svH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/atmos_shield_gen/active, -/obj/machinery/atmos_shield_gen/active{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"svM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/turf/open/floor/iron, +/area/station/commons/dorms) +"svT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/machinery/light/directional/east, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "svW" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 }, /turf/open/floor/wood, /area/station/service/library) +"swa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "swd" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/engine/hull, @@ -65285,17 +68202,6 @@ /obj/structure/disposalpipe/segment, /turf/open/openspace, /area/station/hallway/secondary/construction) -"swp" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"sws" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "swH" = ( /obj/item/gun/ballistic/shotgun/doublebarrel, /obj/structure/table/wood, @@ -65323,7 +68229,13 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"swS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "swU" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/yellow/opposingcorners{ @@ -65397,15 +68309,24 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"sxT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 +"sxO" = ( +/obj/machinery/vending/coffee, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) +"sxP" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"sxR" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "sxY" = ( /obj/structure/reflector/double/anchored{ dir = 10 @@ -65441,6 +68362,11 @@ /obj/structure/transit_tube/diagonal, /turf/open/space/openspace, /area/space/nearstation) +"sym" = ( +/obj/machinery/light/warm/dim/directional/west, +/obj/structure/lattice, +/turf/open/openspace, +/area/station/hallway/primary/central) "syw" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -65458,22 +68384,30 @@ /obj/structure/cable, /turf/open/openspace, /area/station/medical/medbay/central) +"syK" = ( +/obj/structure/closet/firecloset, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"syN" = ( +/obj/structure/showcase/machinery/oldpod{ + desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; + name = "decommissioned sleeper" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "syR" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) -"syU" = ( -/obj/item/ammo_casing/spent{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -6; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"syT" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "syZ" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/structure/railing/corner{ @@ -65482,6 +68416,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/port/aft) +"szf" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "szi" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -65499,17 +68441,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"szn" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/table, -/obj/structure/microscope, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "szp" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -65533,14 +68464,41 @@ }, /obj/item/radio/intercom/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, +/turf/open/floor/carpet/purple, /area/station/command/gateway) +"szA" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) +"szG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "szK" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) +"szL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/pipe_dispenser, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "sAa" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/wood, @@ -65551,14 +68509,19 @@ /turf/open/openspace, /area/station/hallway/primary/central) "sAm" = ( -/obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "sAn" = ( /obj/structure/table, @@ -65573,13 +68536,6 @@ /obj/effect/mapping_helpers/broken_machine, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"sAB" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "sAE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -65588,15 +68544,16 @@ /obj/structure/sign/poster/contraband/missing_gloves/directional/south, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"sAG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"sAI" = ( +/obj/item/food/grown/sunflower, +/turf/open/floor/iron/vaporwave, +/area/station/maintenance/starboard/aft/upper) +"sAR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/station/maintenance/port) +/area/station/maintenance/starboard/central) "sAT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -65627,6 +68584,13 @@ /obj/structure/cable, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/fore) +"sBv" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "sBz" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -65662,6 +68626,10 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/station/engineering/supermatter/room) +"sCI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) "sCP" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency, @@ -65673,7 +68641,7 @@ /area/station/maintenance/port/aft) "sDo" = ( /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sDu" = ( /obj/effect/landmark/navigate_destination/library, /obj/machinery/door/firedoor, @@ -65682,16 +68650,20 @@ }, /turf/open/floor/wood, /area/station/service/library) -"sDG" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"sDD" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/flora/bush/grassy/style_random, +/obj/machinery/camera/autoname/directional/north, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/machinery/light/small/directional/north, +/turf/open/floor/grass, +/area/station/engineering/lobby) "sDX" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -65704,6 +68676,11 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, /area/station/science/lab) +"sEc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "sEn" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 4 @@ -65718,15 +68695,6 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"sEt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/port) "sEI" = ( /obj/structure/tank_holder/extinguisher, /obj/machinery/camera/directional/north{ @@ -65767,6 +68735,10 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) +"sEV" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "sFa" = ( /obj/machinery/modular_computer/preset/id{ dir = 1 @@ -65800,9 +68772,6 @@ /turf/open/floor/iron, /area/station/science/lobby) "sFz" = ( -/obj/structure/chair{ - dir = 8 - }, /obj/structure/railing/corner, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -65810,7 +68779,9 @@ /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "sFB" = ( /obj/structure/chair/office/light{ @@ -65838,6 +68809,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/zoo) +"sFL" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "sFQ" = ( /obj/machinery/light/floor, /turf/open/floor/iron/textured_large, @@ -65858,38 +68837,23 @@ /obj/machinery/light/directional/east, /turf/open/floor/plating, /area/station/security/execution/education) -"sFV" = ( -/obj/structure/table/reinforced, -/obj/item/gun/ballistic/shotgun/toy/crossbow, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "sFW" = ( /obj/effect/turf_decal/trimline/dark_blue/corner{ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"sFZ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/area/station/ai/satellite/interior) "sGb" = ( /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/greater) "sGj" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 2 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "sGy" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -65911,14 +68875,6 @@ /obj/effect/turf_decal/tile/dark/full, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"sGR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "sGS" = ( /obj/structure/railing{ dir = 1 @@ -65927,14 +68883,37 @@ /obj/structure/cable, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"sGT" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "sGV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"sHh" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"sHi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) +"sHr" = ( +/obj/item/assembly/mousetrap/armed, +/turf/open/floor/plating, +/area/station/maintenance/port) "sHu" = ( /obj/structure/ladder, /turf/open/floor/glass/reinforced/airless, @@ -66001,13 +68980,6 @@ /obj/machinery/light/floor/broken, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"sIn" = ( -/obj/item/stack/rods{ - amount = 7 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "sIp" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/detective{ @@ -66020,10 +68992,6 @@ }, /turf/open/floor/iron/grimy, /area/station/security/detectives_office/private_investigators_office) -"sIq" = ( -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sIr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/spawner/directional/south, @@ -66040,14 +69008,10 @@ /obj/structure/closet/secure_closet/security/sec, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) -"sIB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/structure/closet/toolcloset, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +"sII" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "sIO" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 1 @@ -66068,23 +69032,8 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/structure/sign/directions/engineering/directional/west{ - dir = 2 - }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"sIW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/lobby) "sJc" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "MiniSat Maintenance" @@ -66100,7 +69049,11 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) +"sJt" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/glass, +/area/station/medical/medbay/central) "sJv" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 @@ -66126,17 +69079,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/service/lawoffice) -"sJK" = ( -/obj/structure/mop_bucket{ - pixel_y = 9 - }, -/obj/item/reagent_containers/cup/bucket{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/mop, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sJQ" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -66144,7 +69086,9 @@ /obj/effect/turf_decal/trimline/red/filled/mid_joiner{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 8 + }, /area/station/hallway/primary/central) "sJR" = ( /turf/closed/wall, @@ -66161,6 +69105,24 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"sKn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"sKs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/light/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"sKx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/ce) "sKD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/fluff/paper/stack{ @@ -66171,27 +69133,7 @@ "sKF" = ( /obj/machinery/status_display/ai/directional/west, /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) -"sKH" = ( -/obj/structure/table, -/obj/machinery/computer/arcade/orion_trail{ - desc = "For gamers only. Casuals need not apply."; - icon_screen = "library"; - icon_state = "oldcomp"; - name = "Gamer Computer" - }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) -"sKI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/computer/atmos_control/plasma_tank, -/obj/effect/turf_decal/tile/purple/half{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/ai/upload/chamber) "sKL" = ( /obj/structure/chair/stool/bar/directional/south, /obj/effect/landmark/start/hangover, @@ -66208,16 +69150,13 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/storage/primary) -"sKO" = ( -/obj/machinery/duct, -/obj/structure/rack, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"sKT" = ( -/obj/structure/sign/poster/official/random/directional/north, +"sLa" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/chair/office/light{ + dir = 1 + }, /turf/open/floor/iron/dark, -/area/station/commons/dorms) +/area/station/command/bridge) "sLd" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -66233,12 +69172,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/commons/storage/tools) -"sLx" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "sLB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -66261,13 +69194,20 @@ /turf/open/openspace, /area/station/hallway/primary/central) "sLK" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/item/kirbyplants/random, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/turf/open/floor/iron/textured, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/rubble, +/turf/open/floor/iron/dark/smooth_large, /area/station/cargo/storage) +"sLO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "sLQ" = ( /obj/machinery/suit_storage_unit/ce, /obj/item/radio/intercom/directional/north, @@ -66277,32 +69217,26 @@ /turf/open/floor/carpet/orange, /area/station/command/heads_quarters/ce) "sLS" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/machinery/recharger{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/structure/cable, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, -/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_y = 11 + }, +/obj/item/pen{ + pixel_y = 8 + }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "sLY" = ( -/turf/open/floor/engine/hull/air, -/area/station/command/meeting_room/council) -"sMa" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/machinery/light/floor, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, /turf/open/floor/iron/dark, -/area/station/engineering/hallway) +/area/station/command/bridge) "sMp" = ( /obj/item/paint/violet{ pixel_x = -7; @@ -66314,6 +69248,13 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"sMr" = ( +/obj/machinery/mineral/stacking_unit_console{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "sMt" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66327,16 +69268,6 @@ /obj/machinery/power/smes, /turf/open/floor/glass/reinforced, /area/station/maintenance/solars/port/aft) -"sMw" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "sMy" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -66355,6 +69286,11 @@ /obj/structure/table/reinforced, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"sMK" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "sMQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -66378,7 +69314,20 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) +"sNj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"sNz" = ( +/obj/structure/sign/flag/nanotrasen/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "sNC" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -66387,6 +69336,13 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"sNF" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "sNG" = ( /obj/machinery/conveyor{ dir = 4; @@ -66396,6 +69352,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/oil, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "sNN" = ( @@ -66405,12 +69362,17 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"sNW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"sNT" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/computer/records/security{ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) +/area/station/security/checkpoint/engineering) "sOa" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/siding/blue/corner{ @@ -66421,6 +69383,9 @@ }, /turf/open/openspace, /area/station/medical/medbay/central) +"sOm" = ( +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "sOn" = ( /turf/open/floor/engine, /area/station/science/auxlab/firing_range) @@ -66430,14 +69395,11 @@ }, /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"sOw" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/closet/crate/trashcart/laundry, -/obj/effect/spawner/random/clothing/backpack, -/obj/effect/spawner/random/clothing/backpack, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/area/station/ai/satellite/interior) +"sOy" = ( +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "sOz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66461,6 +69423,22 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/cafeteria) +"sOU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) +"sOV" = ( +/obj/structure/reflector/double{ + dir = 6 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "sPc" = ( /obj/structure/table/reinforced/rglass, /obj/item/storage/belt/medical, @@ -66493,20 +69471,27 @@ /obj/machinery/rnd/production/protolathe/department/science, /turf/open/floor/iron/dark, /area/station/science/lobby) -"sPk" = ( -/obj/structure/ladder, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) -"sPp" = ( +"sPl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/cigbutt{ - pixel_x = -12; - pixel_y = 11 +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) +"sPr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "sPt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/preopen, @@ -66546,10 +69531,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) -"sPC" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "sPT" = ( /obj/structure/rack, /obj/effect/spawner/random/food_or_drink, @@ -66569,7 +69550,7 @@ "sQg" = ( /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sQi" = ( /obj/machinery/photocopier/prebuilt, /obj/machinery/requests_console/directional/north{ @@ -66642,6 +69623,37 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"sQK" = ( +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 4 + }, +/obj/item/cigbutt{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/item/cigbutt{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/cigbutt{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/cigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "sQW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/frame/computer{ @@ -66657,16 +69669,6 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"sRa" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron/freezer, -/area/station/engineering/atmos/pumproom) -"sRd" = ( -/obj/machinery/power/turbine/turbine_outlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "sRg" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, @@ -66685,13 +69687,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) -"sRj" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/openspace, -/area/station/engineering/break_room) "sRn" = ( /obj/structure/table/reinforced, /obj/item/multitool{ @@ -66748,27 +69743,17 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"sRP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/atmos/project) "sRY" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/port/greater) "sSc" = ( -/obj/structure/railing, /obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"sSk" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "sSs" = ( /obj/structure/chair/office/light, /obj/effect/landmark/start/research_director, @@ -66786,6 +69771,20 @@ "sSw" = ( /turf/closed/wall, /area/station/security/detectives_office) +"sSx" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"sSy" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "sSz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -66816,11 +69815,6 @@ /obj/effect/spawner/random/trash/cigbutt, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"sSR" = ( -/obj/machinery/vending/coffee, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "sSW" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -66835,7 +69829,7 @@ /obj/item/storage/dice{ pixel_y = 8 }, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "sTa" = ( /obj/structure/table/wood/fancy/red, @@ -66860,20 +69854,15 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/maintenance/port/aft) +"sTp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "sTv" = ( /turf/closed/wall, /area/station/security/courtroom) -"sTO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) -"sTS" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "sTT" = ( /obj/structure/broken_flooring/pile/directional/east, /turf/open/floor/plating, @@ -66884,17 +69873,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/aisat/exterior) -"sUi" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/duct, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/area/station/ai/satellite/exterior) "sUm" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark/textured_corner{ @@ -66922,6 +69901,13 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"sUw" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "sUx" = ( /turf/open/openspace, /area/station/service/chapel) @@ -66943,6 +69929,26 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/aft) +"sUH" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"sUK" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "sUM" = ( /obj/effect/turf_decal/box/white{ color = "#EFB341" @@ -66954,10 +69960,6 @@ /obj/effect/mapping_helpers/turn_off_lights_with_lightswitch, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"sUV" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sUW" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -66966,13 +69968,26 @@ }, /turf/open/openspace, /area/station/engineering/lobby) -"sVb" = ( -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/commons/dorms) +"sUY" = ( +/obj/machinery/atmospherics/pipe/multiz/cyan/visible{ + dir = 2; + name = "Air Mix Multideck Adapter" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/meter{ + name = "Mix Meter" + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"sVc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "sVj" = ( -/obj/structure/cable, /obj/machinery/vending/sustenance{ req_access = list("command") }, @@ -66980,6 +69995,19 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/central) +"sVo" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 12 + }, +/obj/item/stack/cable_coil{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/extinguisher/mini, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "sVq" = ( /obj/machinery/door/airlock{ id_tag = "restroom_2"; @@ -66988,10 +70016,6 @@ /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) -"sVA" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "sVG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -67008,6 +70032,13 @@ /obj/effect/spawner/random/contraband/permabrig_weapon, /turf/open/floor/iron/dark, /area/station/security/evidence) +"sVO" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "sWg" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -67030,11 +70061,16 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/dark, /area/station/construction/storage_wing) +"sWH" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/commons/locker) "sWI" = ( /obj/machinery/camera/autoname/directional/south, /obj/structure/disposalpipe/segment{ @@ -67049,6 +70085,14 @@ /obj/effect/spawner/structure/window/hollow/middle, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"sWM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "sWN" = ( /obj/structure/closet/crate/bin, /obj/effect/spawner/random/maintenance, @@ -67064,9 +70108,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) +"sWX" = ( +/obj/structure/sign/warning/electric_shock/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "sWY" = ( /obj/structure/cable, +/obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/disposal) "sXd" = ( @@ -67079,30 +70129,41 @@ }, /turf/open/floor/wood/large, /area/station/medical/psychology) +"sXf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) "sXj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "sXk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) "sXq" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"sXv" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) +"sXu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + name = "Belt Conveyor" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "sXI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/public/glass{ @@ -67131,17 +70192,9 @@ /obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) -"sYg" = ( -/obj/machinery/modular_computer/preset/civilian{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/area/station/command/meeting_room/council) "sYh" = ( /obj/machinery/firealarm/directional/north, /obj/structure/filingcabinet/medical, @@ -67158,12 +70211,6 @@ /obj/structure/flora/bush/flowers_br, /turf/open/floor/grass, /area/station/command/heads_quarters/hos) -"sYH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "sYL" = ( /turf/open/floor/iron, /area/station/construction/storage_wing) @@ -67176,15 +70223,26 @@ /obj/effect/spawner/random/engineering/tool, /turf/open/floor/plating, /area/station/construction/storage_wing) -"sZh" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +"sZi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "sZj" = ( /turf/open/floor/iron/stairs/medium{ dir = 1 }, /area/station/science/xenobiology) +"sZk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "sZn" = ( /obj/structure/chair/office/light{ dir = 1 @@ -67214,17 +70272,17 @@ /obj/effect/turf_decal/trimline/purple/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"sZu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/upper) "sZy" = ( /obj/structure/table, /turf/open/floor/glass, /area/station/science/zoo) +"sZA" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "sZL" = ( /obj/structure/marker_beacon/yellow, /obj/effect/decal/cleanable/dirt/dust, @@ -67250,12 +70308,10 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) -"tah" = ( -/obj/effect/spawner/random/trash/mess, -/obj/item/toy/crayon/spraycan{ - pixel_x = 12; - pixel_y = 13 - }, +"taf" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/effect/spawner/random/structure/crate, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "tai" = ( @@ -67264,15 +70320,46 @@ }, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tan" = ( /obj/effect/turf_decal/tile/blue/half, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"tao" = ( +/obj/item/clothing/head/wig/random, +/obj/item/bodypart/head/lizard, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) "tas" = ( /turf/closed/wall, /area/station/command/heads_quarters/qm) +"tau" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=9-Bridge"; + location = "8-Kitchen" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) +"taB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/flag/mothic/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "taF" = ( /obj/structure/railing{ dir = 4 @@ -67325,12 +70412,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"tbb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "tbd" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "SM_shutters"; @@ -67340,11 +70421,10 @@ /obj/machinery/atmospherics/components/binary/pump/off/orange/visible, /turf/open/floor/plating, /area/station/engineering/supermatter) -"tbf" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +"tbg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "tbh" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ @@ -67352,7 +70432,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tbu" = ( /obj/machinery/door/airlock/medical/glass{ id_tag = "MedbayFoyer"; @@ -67361,8 +70441,18 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/blue/full, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) +"tbv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "tbw" = ( /obj/effect/landmark/start/hangover, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -67376,11 +70466,12 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/eighties/red, /area/station/maintenance/hallway/abandoned_recreation) -"tbI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"tbE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "tbO" = ( /obj/structure/closet/crate/freezer/blood, /obj/effect/turf_decal/weather/snow/corner{ @@ -67389,6 +70480,11 @@ /obj/effect/turf_decal/weather/snow, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/medical/coldroom) +"tbU" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "tbY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -67437,12 +70533,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/service/chapel/office) +"tck" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/off{ + pixel_x = 6 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "tcr" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 8 +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 }, -/obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) "tcs" = ( @@ -67459,11 +70568,17 @@ /obj/structure/light_construct/directional/east, /turf/open/openspace, /area/station/maintenance/port/aft) -"tcz" = ( -/obj/effect/spawner/random/decoration/showcase, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +"tcB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "tcG" = ( /obj/effect/spawner/random/structure/shipping_container, /turf/open/floor/plating, @@ -67475,16 +70590,22 @@ /obj/structure/closet, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"tdt" = ( -/obj/structure/chair/sofa/right/brown, -/obj/item/pillow, -/obj/item/toy/plush/moth{ - name = "Mender Moff" +"tde" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/obj/structure/sign/poster/official/get_your_legs/directional/north, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet/black, -/area/station/medical/psychology) +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"tdl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "tdx" = ( /obj/structure/cable, /obj/machinery/power/emitter/welded, @@ -67494,16 +70615,14 @@ /obj/structure/broken_flooring/corner/directional/west, /turf/open/floor/plating, /area/station/engineering/storage_shared) -"tdN" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tdT" = ( +"tdH" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/department/crew_quarters/dorms) "tdV" = ( /obj/docking_port/stationary{ dir = 4; @@ -67541,23 +70660,28 @@ /obj/structure/railing{ dir = 8 }, +/obj/structure/cable, /turf/open/openspace, -/area/station/command/bridge) -"ter" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/command/meeting_room/council) "tev" = ( /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/wood, /area/station/service/library) +"tey" = ( +/obj/structure/sign/poster/contraband/communist_state/directional/north, +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_x = 12; + pixel_y = 1 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "teA" = ( /obj/structure/railing, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "teC" = ( /obj/structure/chair/sofa/left/brown{ dir = 1 @@ -67570,11 +70694,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"teV" = ( -/obj/effect/turf_decal/bot_white, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) "teY" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -67586,21 +70705,22 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"teZ" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/security/courtroom) +"tfo" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) "tfp" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"tfr" = ( -/obj/structure/railing{ - dir = 10 +"tfq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/machinery/cloning_pod{ + desc = "An old prototype cloning pod, permanently decommissioned following the incident."; + name = "decommissioned cloner" }, -/obj/machinery/light/small/dim/directional/north, -/turf/open/water, -/area/station/maintenance/port/fore) +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "tfv" = ( /obj/machinery/door/airlock/silver{ aiControlDisabled = 1; @@ -67614,13 +70734,6 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/command/gateway) -"tfy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "tfK" = ( /turf/open/floor/glass, /area/station/service/kitchen) @@ -67640,23 +70753,17 @@ icon_state = "carpet-38" }, /area/station/service/abandoned_gambling_den) -"tgp" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "tgz" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, /area/station/service/chapel) "tgT" = ( /obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"tgV" = ( -/turf/open/floor/carpet, -/area/station/service/chapel) +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "thb" = ( /obj/effect/turf_decal/trimline/yellow/line{ dir = 4 @@ -67673,7 +70780,7 @@ id = "teleportshutters" }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "thf" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -67683,12 +70790,6 @@ }, /turf/open/floor/iron, /area/station/science/lab) -"thk" = ( -/obj/item/trash/can{ - pixel_x = -8 - }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) "tho" = ( /obj/structure/flora/bush/ferny/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -67714,6 +70815,12 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"thY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/storage) "tia" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock{ @@ -67732,6 +70839,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/space/openspace, /area/space/nearstation) +"tie" = ( +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"tio" = ( +/obj/structure/urinal/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"tip" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "tis" = ( /turf/open/floor/iron, /area/station/maintenance/port/greater) @@ -67745,8 +70871,8 @@ /obj/machinery/door/airlock/grunge{ name = "Under The Stairs" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "tiG" = ( @@ -67760,14 +70886,42 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "tiK" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "Disposal Chute" + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) +"tiN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "tja" = ( /obj/machinery/light/cold/directional/north, /turf/open/floor/engine, /area/station/science/xenobiology) +"tje" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/duct, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "tjg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -67777,44 +70931,21 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"tji" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/port) "tjn" = ( /turf/open/openspace, /area/station/hallway/secondary/entry) -"tjt" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored{ - cable_layer = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 9 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"tjy" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/power_store/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 8 +"tjx" = ( +/obj/effect/turf_decal/siding{ + dir = 8 }, -/obj/item/clothing/glasses/meson{ - pixel_y = 8 +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 }, -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "tjA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -67823,6 +70954,14 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"tjB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/pai_card{ + pixel_y = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "tjM" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Maintenance" @@ -67841,10 +70980,6 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"tkh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "tkk" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -67859,6 +70994,9 @@ "tkm" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "tkn" = ( @@ -67875,15 +71013,14 @@ name = "Custom Channel" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"tkz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/railing/corner{ - dir = 8 +/area/station/ai/satellite/chamber) +"tks" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "tkK" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ @@ -67903,12 +71040,13 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison/mess) -"tkV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"tkX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/hallway/primary/starboard) "tkY" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -67917,6 +71055,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"tla" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "tlb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -67937,29 +71080,12 @@ dir = 8 }, /area/station/tcommsat/server) -"tlf" = ( -/obj/machinery/portable_atmospherics/scrubber/huge/movable, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tls" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/west, -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/turf/open/space/openspace, -/area/space/nearstation) "tlL" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/closet/l3closet/security, /turf/open/floor/iron/dark, /area/station/security/office) -"tlQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) "tma" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/ferny/style_random, @@ -67975,42 +71101,38 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"tmq" = ( -/obj/structure/lattice/catwalk, -/obj/item/clothing/under/costume/seifuku{ - pixel_y = -1 +"tmG" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 }, -/obj/structure/table, -/obj/structure/sign/poster/official/pda_ad/directional/south, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) -"tms" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) -"tmM" = ( -/obj/machinery/conveyor{ +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/machinery/light/small/directional/north, +/turf/open/floor/grass, +/area/station/engineering/lobby) +"tmK" = ( +/obj/effect/turf_decal/trimline/white/line{ dir = 8; - id = "cargounload" + pixel_x = 8 }, -/obj/structure/cable, -/obj/structure/railing/corner/end/flip{ - dir = 4 +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"tmM" = ( +/obj/structure/cable, /obj/structure/railing/corner/end{ dir = 4 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/storage) -"tmO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "tmS" = ( /obj/machinery/newscaster/directional/north, /obj/structure/table, @@ -68029,6 +71151,32 @@ /obj/machinery/camera/directional/north, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) +"tmT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/dorms) +"tmZ" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/engine_access, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "engine" + }, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "tna" = ( /obj/structure/fermenting_barrel/gunpowder, /obj/effect/decal/cleanable/greenglow, @@ -68042,22 +71190,35 @@ /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "tnf" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, +/obj/machinery/computer/robotics, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tnh" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"tni" = ( /obj/structure/railing{ dir = 8 }, -/obj/structure/bookcase/random/reference, +/obj/item/kirbyplants/random, /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, /turf/open/floor/wood, -/area/station/command/meeting_room/council) -"tnh" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/commons/toilet/restrooms) +"tns" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "tnt" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, @@ -68075,6 +71236,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/service/chapel) +"tnJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "tnM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -68091,25 +71259,6 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"tnX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/holopad, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"tnY" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Project Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/storage_shared) "toh" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -68130,7 +71279,7 @@ /obj/structure/cable, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "tom" = ( /obj/machinery/computer/camera_advanced/xenobio{ dir = 4 @@ -68170,8 +71319,32 @@ dir = 4 }, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) +"toT" = ( +/obj/machinery/mineral/ore_redemption{ + dir = 4; + input_dir = 4; + output_dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; + dir = 8 + }, +/obj/structure/railing{ + dir = 8; + color = "#36373a" + }, +/obj/structure/railing{ + dir = 4; + color = "#36373a" + }, +/obj/effect/turf_decal/bot_red, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/textured_large, +/area/station/cargo/sorting) "tpe" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -68198,7 +71371,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tpj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/sign/poster/contraband/grey_tide/directional/west, @@ -68214,10 +71387,29 @@ /obj/effect/turf_decal/stripes/end, /turf/open/floor/plating/elevatorshaft, /area/station/security/prison) -"tpA" = ( +"tpB" = ( +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"tpI" = ( +/obj/machinery/meter{ + name = "Mix Meter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"tpJ" = ( +/obj/structure/lattice/catwalk, /obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/openspace, +/area/station/security/checkpoint/supply) "tpO" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/structure/table, @@ -68227,6 +71419,15 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"tpR" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "tpU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -68262,13 +71463,23 @@ /obj/machinery/computer/crew, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"tqQ" = ( -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"trH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/hallway/secondary/service) +"tqv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"trv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "trK" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on, /obj/item/reagent_containers/cup/glass/shaker{ @@ -68285,10 +71496,19 @@ }, /turf/open/floor/iron, /area/station/science/lobby) -"trR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"trZ" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/end, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tsd" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -68299,22 +71519,38 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, /area/station/service/library) -"tse" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) "tsl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/north, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/modular_computer/preset/id, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/machinery/light/warm/dim/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "tso" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"tsp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) +"tsA" = ( +/obj/structure/chair/sofa/corner/brown, +/obj/item/instrument/eguitar, +/obj/structure/sign/poster/contraband/space_cube/directional/north, +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "tsI" = ( /obj/machinery/light_switch/directional/south, /obj/machinery/disposal/bin, @@ -68334,20 +71570,42 @@ /obj/effect/turf_decal/tile/dark_blue/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"tsR" = ( -/obj/structure/closet/crate/trashcart/filled, -/obj/effect/spawner/random/maintenance/no_decals/five, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"tsV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/rebels_unite/directional/west, +/obj/item/ammo_casing/spent{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -11; + pixel_y = -5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "ttj" = ( /turf/open/floor/iron, /area/station/hallway/primary/port) +"ttk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "ttm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"ttn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ttr" = ( /obj/machinery/airalarm/directional/west, /obj/structure/table/reinforced, @@ -68370,6 +71628,13 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/chem_storage) +"ttw" = ( +/obj/structure/chair/sofa/right/brown{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "ttA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68404,20 +71669,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"tub" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/ammo_casing/spent{ - pixel_x = -6; - pixel_y = 6 - }, +"tua" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/east, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tuj" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) "tuk" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -68431,21 +71687,6 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"tul" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/station_engineer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) -"tuw" = ( -/obj/structure/sign/departments/restroom/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "tuA" = ( /obj/structure/table/reinforced, /obj/effect/spawner/random/contraband/prison{ @@ -68460,28 +71701,18 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) -"tuD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "tuF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair, -/obj/item/trash/can{ - pixel_x = -10; - pixel_y = -14 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"tuJ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "tuV" = ( /obj/machinery/camera/autoname/directional/south, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -68502,22 +71733,12 @@ /turf/open/floor/iron, /area/station/science/research) "tvN" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/aicard{ - pixel_x = 3 - }, -/obj/item/assembly/timer{ - pixel_y = -11 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tvU" = ( /obj/machinery/newscaster/directional/east, /obj/effect/turf_decal/tile/dark_blue{ @@ -68527,22 +71748,17 @@ /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) "twp" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "twz" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/station/solars/port/aft) -"twC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "twD" = ( /obj/effect/spawner/random/trash/graffiti{ pixel_x = -32 @@ -68554,22 +71770,28 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"twX" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +"twO" = ( +/obj/effect/turf_decal/trimline/white/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"twX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/storage) -"twY" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) "txe" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/west, @@ -68581,55 +71803,64 @@ pixel_y = -2 }, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) -"txs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing/corner, -/obj/structure/railing/corner{ +/area/station/ai/satellite/interior) +"txm" = ( +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/lobby) -"txu" = ( -/obj/structure/railing{ - dir = 8 +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/command{ + name = "Abandoned Lab" }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"txp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 }, -/obj/structure/table, -/obj/item/cigbutt{ - pixel_y = 2 +/obj/structure/frame/computer{ + anchored = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) +"txu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "txv" = ( /turf/open/floor/engine/hull/air, /area/station/maintenance/port/aft) "txz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti, -/obj/structure/sign/poster/contraband/random/directional/west, +/obj/structure/chair/sofa/corner/brown{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/cargo/storage) +"txF" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/meter, /turf/open/floor/iron, -/area/station/hallway/secondary/construction) +/area/station/engineering/atmos/upper) "txH" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"txI" = ( -/obj/machinery/light/directional/south, -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "txJ" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -68638,28 +71869,12 @@ /obj/effect/turf_decal/trimline/purple/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"txO" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/engineering_all, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "txS" = ( /obj/structure/table/glass, /obj/item/stack/package_wrap, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"txT" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/ladder, -/obj/structure/fluff/paper/corner, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "typ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -68674,6 +71889,11 @@ /obj/effect/landmark/start/clown, /turf/open/floor/wood/large, /area/station/service/theater_dressing) +"tyv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/construction) "tyw" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -68691,28 +71911,27 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) -"tza" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/dinner, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "tzi" = ( /obj/effect/spawner/random/trash/grime, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/port) "tzv" = ( -/obj/structure/chair{ - dir = 8 +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -5; + pixel_y = 0 }, /turf/open/floor/engine/hull, /area/space/nearstation) -"tzO" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +"tzK" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "tzS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, @@ -68755,27 +71974,37 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/port) -"tAr" = ( -/obj/structure/toilet{ - dir = 4 +"tAe" = ( +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 }, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "tAs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"tAv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/engine/hull/air, +/area/station/engineering/supermatter/room/upper) "tAF" = ( /obj/structure/broken_flooring/singular/directional/west, /obj/effect/turf_decal/trimline/yellow/warning{ @@ -68821,18 +72050,19 @@ }, /turf/open/floor/iron/dark, /area/station/security/evidence) -"tAV" = ( -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tBa" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, +"tAX" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"tBb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) +/area/station/maintenance/starboard/fore/upper) "tBc" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; @@ -68855,6 +72085,7 @@ /obj/effect/turf_decal/siding/green{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "tBr" = ( @@ -68864,13 +72095,35 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured_large, /area/station/security/prison) +"tBs" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/commons/dorms) "tBt" = ( /obj/machinery/light/directional/east, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/glass/reinforced, /area/station/service/library) +"tBB" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) +"tBE" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/storage/box{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "tBJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/kirbyplants/photosynthetic, @@ -68911,12 +72164,6 @@ dir = 1 }, /area/station/cargo/bitrunning/den) -"tCd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "tCf" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -68925,6 +72172,27 @@ }, /turf/open/floor/plating, /area/station/command/heads_quarters/rd) +"tCh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"tCl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"tCm" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "tCs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -68938,6 +72206,12 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/iron/white, /area/station/maintenance/hallway/abandoned_recreation) +"tCt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "tCz" = ( /obj/item/radio/intercom/directional/west, /obj/structure/table, @@ -68992,37 +72266,16 @@ }, /turf/open/floor/iron/textured_large, /area/station/medical/medbay/central) -"tCX" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) "tCY" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/structure/railing, -/obj/machinery/keycard_auth/wall_mounted/directional/north{ - pixel_x = -26; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tDc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/turf/open/openspace, -/area/station/medical/abandoned) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tDf" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -69031,12 +72284,26 @@ /obj/structure/railing{ dir = 4 }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/command/bridge) -"tDn" = ( -/obj/machinery/light/dim/directional/north, -/turf/open/openspace, -/area/station/cargo/storage) +/area/station/command/meeting_room/council) +"tDh" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"tDq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "tDv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/purple/line{ @@ -69050,23 +72317,21 @@ id = "justiceflash"; name = "Justice Flash Control"; pixel_x = -30; - pixel_y = -11 + pixel_y = -11; + dir = 8 }, /turf/open/floor/plating, /area/station/security/execution/education) "tDy" = ( /turf/open/floor/plating, /area/station/maintenance/port/greater) -"tDB" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/corner{ +"tDJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "tDK" = ( /obj/effect/decal/cleanable/plasma, /obj/effect/mapping_helpers/burnt_floor, @@ -69075,28 +72340,18 @@ "tDY" = ( /turf/closed/wall, /area/station/science/lobby) -"tEc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/medical/virology) +"tEi" = ( +/obj/machinery/igniter/incinerator_atmos, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) "tEl" = ( /obj/structure/lattice/catwalk, /turf/open/floor/engine/hull/air, /area/station/cargo/storage) -"tEt" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) "tEv" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/port) -"tEy" = ( -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "tEA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/burnt_floor, @@ -69114,11 +72369,19 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/openspace, /area/station/hallway/primary/starboard) -"tEH" = ( +"tEN" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, /obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/aft/upper) +"tEQ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/engineering/lobby) "tER" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -69133,15 +72396,9 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, +/obj/structure/sign/poster/contraband/eat/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"tES" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "tEU" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -69150,17 +72407,41 @@ /obj/structure/cable, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"tEY" = ( -/obj/item/trash/can{ - pixel_x = -8 - }, -/obj/structure/window/spawner/directional/west, +"tEW" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/starboard/central) +"tFa" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/structure/fluff/paper/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "tFd" = ( /obj/structure/flora/bush/fullgrass/style_random, /turf/open/floor/grass, /area/station/hallway/primary/starboard) +"tFj" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/railing, +/obj/effect/landmark/start/hangover, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/commons/dorms) "tFl" = ( /obj/effect/turf_decal/trimline/dark_blue/end{ dir = 1 @@ -69181,7 +72462,7 @@ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tFv" = ( /obj/structure/chair{ dir = 1 @@ -69193,21 +72474,46 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"tFy" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/structure/toilet{ +"tFB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ dir = 4 }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) -"tFC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"tFD" = ( +/obj/machinery/button/door/directional/east{ + id = "cargounload"; + name = "Loading Doors"; + pixel_y = 6 + }, +/obj/machinery/button/door/directional/east{ + id = "cargoload"; + name = "Loading Doors"; + pixel_y = -6 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"tFO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) "tFU" = ( /obj/item/clothing/suit/costume/chickensuit{ pixel_x = 4; @@ -69225,43 +72531,39 @@ /obj/item/skillchip/matrix_taunt, /turf/open/floor/iron/kitchen, /area/station/maintenance/port/aft) -"tFY" = ( -/obj/effect/turf_decal/siding{ +"tGb" = ( +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"tGb" = ( -/obj/structure/chair/office{ +/obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "HoPsToy"; - name = "Loading Conveyor"; - pixel_x = -13; - pixel_y = 8 - }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/carpet, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) -"tGe" = ( -/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ - name = "O2 Multideck Adapter"; - dir = 8 +"tGg" = ( +/obj/machinery/door/airlock, +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/machinery/meter{ - name = "O2 meter" +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"tGm" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) +"tGo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) "tGs" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -69272,7 +72574,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "tGu" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -69281,6 +72583,12 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/dark, /area/station/security/range) +"tGv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table/reinforced, +/obj/machinery/microwave/engineering, +/turf/open/openspace, +/area/station/cargo/storage) "tGz" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -69300,15 +72608,28 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"tGM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/table, -/obj/item/binoculars, -/turf/open/openspace, -/area/station/hallway/secondary/exit/departure_lounge) "tGN" = ( /turf/closed/wall, /area/station/science/zoo) +"tGO" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/button/door/directional/east{ + id = "Cabin7"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/wood, +/area/station/commons/dorms) +"tGP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "tHd" = ( /obj/effect/turf_decal/bot/left, /turf/open/floor/engine, @@ -69328,7 +72649,7 @@ "tHn" = ( /obj/machinery/computer/security, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tHo" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -69340,11 +72661,10 @@ network = list("prison") }, /obj/machinery/light_switch/directional/east, -/obj/machinery/button/door/directional/north{ - id = "detective_shutters"; +/obj/machinery/button/door/directional/east{ + pixel_y = -10; name = "detective's office shutters control"; - pixel_x = 26; - pixel_y = -10 + id = "detective_shutters" }, /turf/open/floor/wood, /area/station/security/detectives_office) @@ -69354,27 +72674,40 @@ }, /turf/open/floor/carpet, /area/station/command/corporate_showroom) +"tHu" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/spawner/random/clothing/backpack, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"tHv" = ( +/obj/machinery/door/poddoor{ + id = "securestoragecw"; + name = "Secure Storage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced/air, +/area/station/engineering/supermatter/room/upper) "tHw" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 }, /obj/effect/turf_decal/trimline/dark_blue/warning, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/turret_protected/ai) -"tHE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ +/area/station/ai/satellite/chamber) +"tIa" = ( +/obj/effect/turf_decal/siding/thinplating{ dir = 4 }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"tHR" = ( -/obj/structure/sign/warning/radiation/rad_area/directional/east, -/turf/open/floor/iron/smooth, -/area/station/engineering/main) +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/engineering/lobby) "tIi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69391,13 +72724,18 @@ /turf/open/floor/iron/smooth, /area/station/engineering/main) "tIm" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/supply{ - pixel_x = 32 +/obj/item/clothing/head/cone{ + pixel_x = -5; + pixel_y = 0 }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/qm) +/turf/open/floor/engine/hull, +/area/space/nearstation) +"tIo" = ( +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) "tIq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69410,12 +72748,18 @@ dir = 8 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"tII" = ( -/obj/structure/table, -/obj/effect/spawner/random/trash/soap, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/chamber) +"tIE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/iron, +/area/station/engineering/lobby) "tIO" = ( /obj/machinery/light/directional/south, /obj/machinery/vending/clothing, @@ -69441,16 +72785,19 @@ }, /turf/open/floor/wood, /area/station/service/chapel) +"tJn" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "tJq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) -"tJt" = ( -/obj/item/food/grown/sunflower, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +/area/station/ai/upload/chamber) "tJv" = ( /obj/item/construction/plumbing{ pixel_x = -7; @@ -69464,12 +72811,6 @@ /obj/structure/table, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"tJw" = ( -/obj/effect/spawner/random/structure/girder, -/obj/effect/spawner/structure/electrified_grille, -/obj/structure/sign/warning/radiation/rad_area/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "tJD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood/corner{ @@ -69488,6 +72829,11 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) +"tJH" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "tKa" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -69502,11 +72848,23 @@ /obj/structure/railing, /turf/open/floor/iron/smooth, /area/station/engineering/main) +"tKp" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tKq" = ( /obj/machinery/computer/crew, /obj/structure/sign/poster/official/science/directional/north, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tKw" = ( /obj/structure/frame/computer{ anchored = 1 @@ -69545,8 +72903,13 @@ dir = 1 }, /obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/light/floor, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"tKH" = ( +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "tKK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69555,17 +72918,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/office) -"tLb" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"tLl" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) "tLo" = ( /obj/structure/lattice/catwalk, /obj/machinery/camera/autoname/directional/west, @@ -69577,26 +72929,30 @@ /turf/open/floor/wood/large, /area/station/commons/lounge) "tLq" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - name = "Trash Conveyor"; - pixel_x = -13; - pixel_y = -5 - }, -/turf/open/floor/iron, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) -"tLs" = ( +"tLA" = ( +/turf/open/floor/iron/corner{ + dir = 4 + }, +/area/station/hallway/primary/central) +"tLD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) +"tLE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/structure/sign/poster/contraband/communist_state/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "tLK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, @@ -69605,12 +72961,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/large, /area/station/maintenance/hallway/abandoned_recreation) -"tLQ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 +"tLP" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/structure/sign/warning/electric_shock/directional/south, +/turf/open/floor/engine/hull, +/area/station/solars/starboard/fore) "tLU" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -69623,21 +72980,7 @@ "tLV" = ( /obj/machinery/teleport/station, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) -"tMf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/item/clothing/glasses/welding{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tMj" = ( -/obj/item/statuebust, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/teleporter) "tMm" = ( /obj/machinery/door/airlock/grunge, /obj/structure/cable, @@ -69645,7 +72988,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tMo" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark/textured_large, @@ -69655,22 +72998,6 @@ /obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/north, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"tMu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/lesser) -"tMw" = ( -/obj/machinery/camera/autoname/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "tMD" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 @@ -69688,23 +73015,34 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"tMS" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red/opposingcorners{ +"tMN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"tMT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/wood, +/obj/structure/fluff/paper/corner{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/obj/item/paper/crumpled{ + pixel_x = 7 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "tMY" = ( /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/range) -"tMZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "tNb" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 9 @@ -69727,7 +73065,9 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "tNu" = ( /obj/machinery/power/apc/auto_name/directional/south, @@ -69747,9 +73087,19 @@ }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"tNG" = ( -/turf/open/floor/iron/stairs/medium, -/area/station/commons/toilet/restrooms) +"tND" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "SM_shutters"; + name = "Radiation Shutters"; + req_access = list("engineering") + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "tNP" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -69780,15 +73130,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance/storage) -"tOi" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "tOj" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -69809,6 +73150,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"tOs" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "tOw" = ( /obj/structure/railing, /turf/open/floor/iron/stairs/medium{ @@ -69825,11 +73171,6 @@ }, /turf/open/floor/wood/tile, /area/station/security/detectives_office/private_investigators_office) -"tOE" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/air_sensor/mix_tank, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) "tOG" = ( /obj/machinery/camera/autoname/directional/north, /obj/machinery/vending/assist, @@ -69841,19 +73182,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"tOO" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"tOR" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) "tOW" = ( /obj/effect/spawner/random/trash/graffiti, /obj/structure/disposalpipe/segment{ @@ -69861,9 +73189,28 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"tPb" = ( +/obj/machinery/atmospherics/pipe/multiz/cyan/visible{ + dir = 8; + name = "Air Mix Multideck Adapter" + }, +/obj/machinery/meter{ + name = "Mix Meter" + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "tPe" = ( /turf/open/floor/glass/reinforced/plasma, /area/station/engineering/supermatter) +"tPl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/structure/sign/warning/radiation/directional/south, +/turf/open/floor/iron/smooth, +/area/station/engineering/main) "tPr" = ( /obj/structure/table_frame/wood, /turf/open/floor/iron/grimy, @@ -69877,7 +73224,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tPz" = ( /obj/structure/rack, /obj/item/restraints/handcuffs{ @@ -69899,7 +73246,7 @@ "tPC" = ( /obj/structure/cable, /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tPF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -69918,23 +73265,23 @@ /turf/open/floor/wood/large, /area/station/hallway/primary/central) "tPI" = ( -/obj/structure/table/glass, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/item/stack/rods{ - amount = 25; - pixel_y = 3 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/green{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "tPU" = ( /turf/closed/wall, /area/station/commons/toilet/restrooms) +"tPY" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) "tPZ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -69948,19 +73295,43 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"tQt" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/reagent_dispensers/plumbed, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"tQk" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tQl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tQq" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"tQB" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "tQI" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) +"tQR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/detectives_office/private_investigators_office) "tQY" = ( /obj/machinery/keycard_auth/wall_mounted/directional/north{ pixel_y = 28; @@ -70008,46 +73379,34 @@ "tRd" = ( /obj/structure/cable/layer3, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tRi" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space/basic, /area/space/nearstation) "tRt" = ( -/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/door/window/left/directional/west{ + name = "Captain's Desk"; + req_access = list("captain") + }, /obj/structure/table/wood, -/obj/item/reagent_containers/cup/glass/flask/gold{ - pixel_y = 10 +/obj/machinery/recharger{ + pixel_y = 4; + pixel_x = 5 }, -/obj/item/cigarette/cigar{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain/private) +"tRN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 }, -/obj/item/cigarette/cigar{ - pixel_x = -13; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"tRG" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"tRJ" = ( -/obj/effect/spawner/random/trash, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port) -"tRL" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "tRR" = ( /obj/structure/railing{ dir = 9 @@ -70071,7 +73430,7 @@ pixel_y = 9 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tRV" = ( /obj/structure/railing{ dir = 8 @@ -70091,30 +73450,12 @@ pixel_y = -2 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tRY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"tSa" = ( -/obj/structure/bed, -/obj/structure/sign/poster/official/no_erp/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"tSl" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "tSp" = ( /obj/machinery/computer/piratepad_control/civilian{ dir = 4 @@ -70136,28 +73477,18 @@ /obj/structure/cable, /turf/open/space/openspace, /area/station/solars/starboard/fore) -"tSE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/moisture_trap, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tST" = ( -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32 +"tSB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 }, /turf/open/floor/iron/smooth, -/area/station/engineering/main) +/area/station/engineering/atmos) "tSW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mining Maintenance Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "miningshuttleexit" +/obj/machinery/computer/order_console/mining, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/plating, +/turf/open/floor/iron, /area/station/cargo/miningoffice) "tSY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -70172,7 +73503,9 @@ dir = 4 }, /obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/corner{ + dir = 1 + }, /area/station/hallway/primary/central) "tTg" = ( /obj/effect/decal/cleanable/ash, @@ -70184,31 +73517,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/science/cytology) -"tTz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/machinery/door/airlock/engineering/glass{ - name = "Shared Engineering Storage" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +"tTx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "tTD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tTG" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/area/station/ai/satellite/interior) +"tTL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port) "tTO" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -70226,28 +73556,32 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"tUd" = ( -/obj/structure/railing{ - dir = 8 +"tUg" = ( +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass{ + name = "Security Post - Cargo" }, -/obj/item/kirbyplants/random, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 }, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"tUn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft/upper) "tUs" = ( /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"tUt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) "tUu" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tUw" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -70267,6 +73601,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"tUE" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/delivery/white{ + color = "#ff6600" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"tUG" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "tUH" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -70288,6 +73638,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"tVe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/openspace, +/area/station/engineering/lobby) "tVl" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance/two, @@ -70295,11 +73659,13 @@ /turf/open/floor/plating, /area/station/maintenance/port) "tVo" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 +/obj/machinery/door/airlock/public/glass{ + name = "Abandoned Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 }, -/obj/effect/landmark/start/hangover, -/obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/construction) "tVs" = ( @@ -70309,11 +73675,12 @@ }, /turf/open/openspace, /area/station/medical/medbay/central) -"tVI" = ( -/obj/structure/cable, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"tVz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "tVR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -70329,27 +73696,32 @@ }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) +"tVT" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/reagent_dispensers/plumbed, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "tWc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"tWd" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/station/engineering/break_room) +"tWe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible/layer2{ + dir = 2 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "tWl" = ( /obj/machinery/light/warm/dim/directional/north, /turf/open/openspace, /area/station/hallway/primary/central) -"tWn" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/station/engineering/supermatter/room) "tWt" = ( /obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "tWx" = ( /obj/machinery/door/airlock/maintenance, @@ -70372,15 +73744,11 @@ /obj/machinery/light/small/dim/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel) -"tWI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "tWK" = ( /obj/structure/girder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "tWP" = ( @@ -70408,24 +73776,6 @@ "tWT" = ( /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) -"tWU" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/structure/closet/crate, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/sign/poster/contraband/grey_tide/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) "tWY" = ( /obj/structure/chair/office{ dir = 1 @@ -70493,6 +73843,16 @@ }, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"tXw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "tXx" = ( /obj/effect/turf_decal/trimline/dark_blue/warning{ dir = 1 @@ -70501,14 +73861,26 @@ /turf/open/floor/iron/white/smooth_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"tXE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/components/binary/pump/on/layer5{ + name = "O2 to Airmix" + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "tXJ" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) "tXN" = ( /obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "tXS" = ( /obj/effect/turf_decal/trimline/blue/filled/line, @@ -70528,9 +73900,6 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 5 }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -70540,9 +73909,6 @@ pixel_x = 28; pixel_y = 6 }, -/obj/machinery/firealarm/directional/east{ - pixel_y = -3 - }, /turf/open/floor/iron, /area/station/cargo/storage) "tYa" = ( @@ -70562,7 +73928,7 @@ network = list("vault") }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tYt" = ( /obj/item/cardboard_cutout{ pixel_x = 14; @@ -70582,13 +73948,6 @@ /obj/structure/cable, /turf/open/floor/wood/large, /area/station/service/theater_dressing) -"tYz" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "tYC" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -70647,12 +74006,6 @@ /obj/machinery/light/red/dim/directional/south, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"tYZ" = ( -/obj/machinery/atmospherics/components/unary/passive_vent, -/obj/structure/lattice, -/obj/machinery/camera/autoname/directional/west, -/turf/open/space/basic, -/area/space/nearstation) "tZb" = ( /obj/structure/sign/departments/restroom/directional/south, /obj/item/cigbutt{ @@ -70661,6 +74014,11 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"tZf" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "tZj" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -70668,6 +74026,10 @@ /obj/structure/sign/departments/restroom/directional/north, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"tZx" = ( +/obj/item/airlock_painter/decal, +/turf/open/floor/plating, +/area/station/maintenance/port) "tZz" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -70681,12 +74043,6 @@ /obj/structure/window/spawner/directional/north, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"tZV" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/openspace, -/area/station/commons/dorms) "tZW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output, /turf/open/floor/engine/n2o, @@ -70698,10 +74054,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/zoo) -"uac" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uaf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -70726,6 +74078,26 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"uaB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"uaH" = ( +/obj/structure/chair/sofa/left/brown{ + dir = 8 + }, +/obj/item/cigbutt{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/sign/poster/contraband/kudzu/directional/east, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) +"uaI" = ( +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "uaO" = ( /obj/structure/disposalpipe/trunk/multiz/down, /obj/structure/railing{ @@ -70733,6 +74105,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"uaP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/main) "uaR" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 5 @@ -70747,7 +74123,25 @@ /obj/machinery/light_switch/directional/east, /obj/structure/closet/crate/bin, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"uaU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"ubk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "ubo" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, @@ -70755,27 +74149,6 @@ "ubs" = ( /turf/open/openspace, /area/station/hallway/secondary/construction) -"ubv" = ( -/obj/machinery/button/elevator{ - id = "catwalk_engi"; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"ubU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "ubZ" = ( /obj/item/trash/flare, /turf/open/floor/plating, @@ -70786,32 +74159,29 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/breakroom) +"ucc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Virology Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) "ucd" = ( /obj/structure/railing, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "ucf" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/chair/sofa/middle/brown{ - dir = 1 - }, /obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/south, +/obj/machinery/conveyor{ + dir = 8; + id = "mining" + }, /turf/open/floor/iron/textured, /area/station/cargo/storage) -"ucj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/hallway/secondary/exit/departure_lounge) -"ucl" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/auxiliary) "ucp" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -70819,6 +74189,11 @@ dir = 8 }, /area/station/command/corporate_showroom) +"ucy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "ucC" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -70857,22 +74232,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"ucQ" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) +"ucR" = ( +/obj/effect/spawner/random/decoration/showcase, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "ucX" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/structure/chair/sofa/corner/brown{ - dir = 8 - }, /obj/item/radio/intercom/directional/south, +/obj/machinery/conveyor{ + dir = 10; + id = "mining" + }, +/obj/machinery/bouldertech/refinery, /turf/open/floor/iron/textured, /area/station/cargo/storage) "ucZ" = ( @@ -70880,15 +74253,6 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"udb" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "udl" = ( /turf/closed/wall, /area/station/engineering/storage/tech) @@ -70898,6 +74262,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) +"udu" = ( +/obj/structure/chair, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "udE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -70909,40 +74279,28 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood/large, /area/station/service/theater_dressing) -"udF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 +"udN" = ( +/obj/structure/marker_beacon/yellow, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"udS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) +"udV" = ( +/obj/machinery/duct, +/obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/fore/upper) "udW" = ( /obj/structure/chair/sofa/middle/brown, /turf/open/floor/carpet, /area/station/maintenance/starboard/aft) -"udY" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/item/radio/off{ - pixel_x = 6 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/engineering/lobby) -"uen" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "uex" = ( /obj/machinery/atmospherics/components/binary/pump/on{ name = "Gas to Cold Loop" @@ -70970,8 +74328,18 @@ /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 8 }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/supply/cargo_bay, /turf/open/floor/iron, /area/station/cargo/storage) +"ufc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "ufi" = ( /obj/machinery/door/airlock/command{ name = "Research Director's Office" @@ -70986,16 +74354,17 @@ /area/station/command/heads_quarters/rd) "ufn" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; pixel_x = 30; - req_access = list("minisat") + req_access = list("minisat"); + dir = 4 }, /obj/structure/sign/warning/secure_area/directional/north, /obj/machinery/light/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ufo" = ( /obj/structure/rack, /obj/item/storage/briefcase/secure{ @@ -71015,10 +74384,6 @@ /obj/structure/chair{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/maintenance/starboard/central) "ufA" = ( @@ -71031,7 +74396,37 @@ /obj/machinery/recharge_station, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"ufI" = ( +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"ufK" = ( +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/pen/fountain{ + pixel_x = 15; + pixel_y = 4 + }, +/obj/item/stamp/granted{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/stamp/denied{ + pixel_x = 6 + }, +/obj/item/stamp/head/qm{ + pixel_x = -5 + }, +/obj/item/clipboard{ + pixel_y = 8; + pixel_x = -6 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "uga" = ( /obj/machinery/door/airlock/security/glass{ name = "Bailiff Access" @@ -71048,17 +74443,23 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured, /area/station/medical/morgue) +"ugm" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "ugn" = ( /obj/structure/table/wood/poker, /turf/open/floor/carpet/stellar, /area/station/service/library) -"ugo" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" +"ugp" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/floor/engine, -/area/station/engineering/break_room) +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/tcomms_all, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "ugq" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -71072,83 +74473,68 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"ugr" = ( +/obj/structure/closet/lasertag/red, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"ugw" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/condiment, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) +"ugA" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"ugC" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) "ugE" = ( /obj/effect/turf_decal/siding/dark, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/white/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ugL" = ( /obj/structure/cable, /turf/open/floor/iron, /area/station/science/zoo) -"ugM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/commons/dorms) "ugN" = ( -/obj/machinery/modular_computer/preset/id, -/obj/machinery/button/door/directional/west{ - id = "hop"; - name = "Lockdown Blast Doors"; - pixel_y = 6; - req_access = list("hop") - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = -24; - pixel_y = -4 - }, -/obj/machinery/requests_console/directional/north{ - department = "Head of Personnel's Desk"; - name = "Head of Personnel's Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/announcement, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/mapping_helpers/requests_console/information, -/turf/open/floor/carpet, +/obj/machinery/computer/records/security, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "ugU" = ( /turf/open/openspace, /area/station/security/detectives_office) -"ugX" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "uhd" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 }, /turf/open/openspace, /area/station/service/kitchen) -"uhl" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 +"uhz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/siding/blue{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"uhv" = ( -/mob/living/basic/parrot/poly, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) -"uhx" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"uhJ" = ( -/obj/structure/sign/poster/official/fruit_bowl, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/catwalk_floor{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/station/science/server) "uhO" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -71168,12 +74554,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"uib" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/cargo/storage) "uii" = ( /obj/machinery/door/airlock/public/glass{ name = "Community Center" @@ -71220,6 +74600,14 @@ }, /turf/open/floor/plating, /area/station/security/execution/education) +"uiU" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "ujb" = ( /turf/open/floor/iron, /area/station/maintenance/port/fore) @@ -71235,14 +74623,34 @@ dir = 8 }, /area/station/hallway/primary/fore) +"ujx" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "ujD" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) +"ujG" = ( +/obj/item/clothing/head/utility/hardhat/red{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "ujI" = ( /turf/open/openspace, /area/station/science/explab) @@ -71257,35 +74665,15 @@ /obj/item/gun/energy/ionrifle, /obj/item/clothing/suit/hooded/ablative, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ujP" = ( /obj/item/radio/intercom/directional/south, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"ujS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"ujX" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Chief Engineers Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) "uka" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uki" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/landmark/start/hangover, @@ -71310,13 +74698,9 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"ukq" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "ukt" = ( /obj/structure/railing{ dir = 9 @@ -71334,7 +74718,7 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ukF" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -71343,17 +74727,12 @@ network = list("aicore") }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ukI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/hacking_guide/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"ukM" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "ukO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71372,22 +74751,13 @@ }, /turf/open/openspace, /area/station/hallway/primary/central) -"ukZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 +"ule" = ( +/obj/machinery/atmospherics/components/unary/passive_vent, +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"ulh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/navigate_destination/minisat_access_tcomms, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) +/turf/open/floor/plating/airless, +/area/space/nearstation) "uli" = ( /obj/effect/spawner/random/entertainment/arcade, /obj/effect/decal/cleanable/dirt, @@ -71411,29 +74781,33 @@ /area/station/engineering/lobby) "uln" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"ulq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"ulo" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/table, +/obj/item/reagent_containers/cup/soda_cans/random{ + pixel_x = -5; + pixel_y = -18 + }, +/obj/item/reagent_containers/cup/soda_cans/random{ + pixel_x = 5; + pixel_y = -16 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"ulw" = ( /obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/white/line{ dir = 1 }, /turf/open/floor/iron, -/area/station/engineering/lobby) -"ulu" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/commons/fitness/recreation) "ulx" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 8 @@ -71442,6 +74816,9 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/wood, /area/station/service/library) +"ulD" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "ulM" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -71464,13 +74841,23 @@ /obj/machinery/vending/wardrobe/gene_wardrobe, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"ulT" = ( +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "ulU" = ( /obj/machinery/door/airlock/grunge, /obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"ulV" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/maintenance/aft) "ulX" = ( /obj/structure/table, /obj/item/folder/yellow{ @@ -71504,18 +74891,10 @@ /area/station/security/medical) "ulZ" = ( /obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"ume" = ( -/obj/machinery/light/floor, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 +/turf/open/floor/iron/edge{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/hallway/primary/central) "umq" = ( /obj/machinery/light/directional/east, /obj/structure/filingcabinet/chestdrawer{ @@ -71530,21 +74909,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "umw" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, /area/station/command/bridge) "umy" = ( @@ -71595,42 +74963,49 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/port) +"unL" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/item/wirecutters, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "unM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"unU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/openspace, +/area/station/engineering/lobby) "uof" = ( /obj/effect/turf_decal/caution{ dir = 4 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) -"uok" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/pwr_game/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) +/area/station/security/armory) "uom" = ( /turf/open/floor/glass/reinforced, /area/station/hallway/primary/port) -"uon" = ( -/obj/structure/railing{ - dir = 8 - }, +"uop" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard/aft/upper) "uow" = ( -/obj/structure/table/wood, -/obj/item/coin/antagtoken{ - pixel_x = -11; - pixel_y = 6 - }, -/obj/item/assembly/timer, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/machinery/light/floor, +/obj/structure/table/reinforced/rglass, +/obj/machinery/recharger, +/obj/item/restraints/handcuffs, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "uox" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -71645,6 +75020,7 @@ }, /area/station/service/chapel) "uoz" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -71660,8 +75036,9 @@ /area/station/medical/medbay/central) "uoF" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" }, /turf/open/floor/plating, /area/station/command/heads_quarters/captain/private) @@ -71697,9 +75074,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/service/lawoffice) -"upl" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/eighties, +"upk" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/catwalk_floor, /area/station/maintenance/starboard/fore) "upm" = ( /obj/structure/chair/office{ @@ -71707,6 +75088,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) +"upp" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/station/maintenance/port) "upr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -71719,18 +75104,36 @@ dir = 1 }, /area/station/hallway/secondary/construction) -"upA" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/line{ +"upz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "abandoned_kitchen"; + name = "Kitchen Shudders"; + dir = 8 + }, +/obj/item/rag, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) +"upE" = ( +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) +"upI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/indigo, +/turf/open/space/openspace, +/area/space/nearstation) +"upM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 9 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"upL" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, /turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/area/station/engineering/atmos) "upR" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/photocopier/prebuilt, @@ -71755,17 +75158,13 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"upX" = ( +/turf/closed/wall, +/area/station/maintenance/aft/upper) "uqb" = ( /obj/item/kirbyplants/photosynthetic, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uqc" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/trimline/yellow/filled/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) +/area/station/ai/satellite/interior) "uqi" = ( /obj/effect/turf_decal/siding/green{ dir = 4 @@ -71787,12 +75186,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/hallway/primary/aft) -"uqw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "uqy" = ( /obj/structure/table, /obj/item/flashlight/lamp/green{ @@ -71819,6 +75212,12 @@ /obj/effect/landmark/start/depsec/supply, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) +"uqN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/engineering/engine_smes) "uqR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/confetti, @@ -71853,10 +75252,9 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) "uro" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/item/kirbyplants/random, -/obj/item/radio/intercom/directional/south, -/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/storage) "urq" = ( @@ -71914,8 +75312,21 @@ }, /obj/effect/turf_decal/trimline/brown/arrow_ccw, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) +"ush" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) +"usk" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/rods, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "usl" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine/hull/air, @@ -71930,17 +75341,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/small, /area/station/security/mechbay) -"ust" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) "usD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "usK" = ( @@ -71955,7 +75362,7 @@ /obj/structure/table, /obj/item/stack/rods/ten, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "usM" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -71968,7 +75375,7 @@ /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "usP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -71977,10 +75384,25 @@ }, /turf/open/floor/plating, /area/station/security/detectives_office) -"uta" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) +"usZ" = ( +/obj/machinery/door/airlock/external{ + name = "Welcome." + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "space-outpost" + }, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"ute" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/computer/atmos_alert/station_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "uth" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -72014,6 +75436,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/server) +"utv" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/fore/upper) "utx" = ( /obj/structure/rack, /obj/item/storage/box/handcuffs, @@ -72079,12 +75508,12 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) -"uua" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +"utS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "uuj" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/mid_joiner, @@ -72101,7 +75530,7 @@ /obj/structure/extinguisher_cabinet/directional/north, /obj/structure/sign/poster/official/state_laws/directional/east, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "uum" = ( /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 @@ -72112,18 +75541,6 @@ }, /turf/open/floor/wood, /area/station/service/library) -"uuo" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/broken_flooring/side/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"uus" = ( -/obj/structure/sign/poster/official/random/directional/west, -/obj/effect/turf_decal/siding/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) "uuA" = ( /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, @@ -72133,19 +75550,24 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"uuE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner{ +"uuD" = ( +/obj/item/encryptionkey/headset_com{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/encryptionkey/headset_sec{ + pixel_x = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/red/opposingcorners{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"uuF" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, /turf/open/floor/iron/dark, -/area/station/engineering/hallway) +/area/station/engineering/storage/tech) +"uuH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "uuP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/east, @@ -72162,21 +75584,43 @@ /turf/open/openspace, /area/station/security/checkpoint/supply) "uva" = ( -/obj/structure/railing{ - dir = 8 - }, /obj/effect/turf_decal/siding/blue{ dir = 9 }, +/obj/structure/railing{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "uve" = ( +/obj/effect/spawner/random/structure/crate, /obj/structure/disposalpipe/segment{ - dir = 9 + dir = 5 }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"uvf" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/engineering/engine_smes) "uvh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -72188,7 +75632,7 @@ /area/station/medical/medbay/central) "uvo" = ( /turf/open/floor/glass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uvq" = ( /obj/structure/table/wood, /turf/open/floor/iron/dark/smooth_large, @@ -72199,6 +75643,20 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/grass, /area/station/hallway/secondary/entry) +"uvw" = ( +/obj/item/clothing/head/costume/foilhat, +/obj/structure/sign/poster/contraband/kss13/directional/east, +/obj/structure/bed/double, +/obj/effect/spawner/random/bedsheet/double, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"uvx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "uvF" = ( /obj/structure/railing/corner{ dir = 4 @@ -72231,10 +75689,8 @@ /turf/open/floor/engine/vacuum, /area/station/science/ordnance/bomb) "uvT" = ( -/obj/machinery/keycard_auth/wall_mounted/directional/west{ - pixel_x = 26 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/keycard_auth/wall_mounted/directional/east, /turf/open/floor/iron/dark/small, /area/station/command/heads_quarters/ce) "uwg" = ( @@ -72272,11 +75728,27 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) -"uwn" = ( +"uwk" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"uwl" = ( +/obj/item/clothing/head/cone{ + pixel_x = 6; + pixel_y = -9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"uwr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "uwu" = ( /obj/machinery/shower/directional/east, /obj/effect/decal/cleanable/dirt/dust, @@ -72290,11 +75762,12 @@ /turf/open/floor/iron/freezer, /area/station/maintenance/port) "uwA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/landmark/navigate_destination/bridge, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "uwD" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -72325,7 +75798,7 @@ }, /obj/structure/sign/poster/official/science/directional/north, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uwN" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 1 @@ -72334,7 +75807,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_edge, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uwS" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -72357,11 +75830,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"uxj" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) "uxl" = ( /obj/structure/chair/stool/bar/directional/south, /obj/effect/turf_decal/siding/wood{ @@ -72389,38 +75857,28 @@ /turf/closed/wall, /area/station/cargo/warehouse) "uxq" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/glass, /obj/effect/turf_decal/siding/blue{ dir = 5 }, -/obj/machinery/recharger{ - pixel_y = 3 +/obj/structure/railing{ + dir = 4 }, -/obj/item/restraints/handcuffs{ - pixel_y = 3 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uxt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"uxz" = ( -/obj/item/kirbyplants/random, -/obj/machinery/button/door/directional/east{ - id = "Cabin3"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/commons/dorms) +/obj/structure/bookcase/random/reference, +/obj/item/book/manual/wiki/research_and_development{ + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "uxA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, @@ -72434,33 +75892,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"uxD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/engine/hull/reinforced/air, -/area/station/engineering/atmos/project) "uxG" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, /obj/machinery/newscaster/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Mining Departure" - }, /turf/open/floor/iron, /area/station/cargo/miningoffice) -"uxI" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "uxK" = ( /obj/structure/flora/bush/pale/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -72472,16 +75910,20 @@ /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "uxW" = ( -/obj/effect/spawner/structure/window, +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; + dir = 1; + id = "Lcommissaryshutter"; name = "Vacant Commissary Shutter" }, -/obj/effect/turf_decal/tile/dark_green/fourcorners, /turf/open/floor/plating, /area/station/commons/vacant_room/office) +"uxZ" = ( +/obj/structure/table, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "uya" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -72489,16 +75931,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) -"uyb" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/ethereal, -/obj/item/reagent_containers/cup/soda_cans/monkey_energy, -/obj/item/reagent_containers/cup/soda_cans/monkey_energy, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "uyc" = ( /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/robotics, @@ -72510,17 +75947,10 @@ }, /turf/open/floor/iron, /area/station/science/robotics) -"uyi" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "uyn" = ( -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/central) "uyq" = ( @@ -72531,21 +75961,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"uyr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) -"uyu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "uyw" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -72555,15 +75970,15 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/eighties/red, /area/station/maintenance/hallway/abandoned_recreation) -"uyD" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 10 - }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 4 - }, -/turf/open/floor/glass, -/area/station/maintenance/starboard/fore) +"uyA" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"uyG" = ( +/obj/structure/ladder, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "uyN" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -72579,6 +75994,17 @@ dir = 8 }, /area/station/hallway/secondary/exit/departure_lounge) +"uyR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8 + }, +/obj/effect/mapping_helpers/mail_sorting/service/dormitories, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "uyT" = ( /obj/effect/turf_decal/caution/stand_clear{ dir = 8 @@ -72599,29 +76025,32 @@ /turf/open/openspace, /area/station/maintenance/port/aft) "uzg" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 8 +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/obj/machinery/door/poddoor/preopen{ + id = "capshut" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/captain/private) +"uzi" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/maintenance, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "uzj" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"uzs" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"uzu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) +"uzB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "uzI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -72638,20 +76067,15 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"uzN" = ( +"uzV" = ( +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) -"uzY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) +/area/station/engineering/storage/tcomms) "uAi" = ( /obj/effect/turf_decal/trimline/purple/arrow_cw{ dir = 8 @@ -72664,27 +76088,19 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"uAl" = ( -/turf/closed/wall, -/area/station/engineering/lobby) -"uAm" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, +"uAn" = ( +/obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/structure/disposalpipe/junction/flip, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=17-Dorms"; - location = "16-Laundry" +/obj/machinery/camera/autoname/directional/north{ + dir = 2 }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"uAn" = ( -/obj/machinery/light/dim/directional/south, /turf/open/openspace, -/area/station/cargo/storage) +/area/station/hallway/primary/central) +"uAp" = ( +/turf/closed/wall, +/area/station/maintenance/starboard) "uAB" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -72716,16 +76132,12 @@ /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) "uAP" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/east, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, +/obj/structure/railing, +/turf/open/openspace, /area/station/cargo/storage) +"uAX" = ( +/turf/open/floor/wood/large, +/area/station/commons/dorms) "uAZ" = ( /obj/machinery/netpod, /obj/effect/decal/cleanable/dirt, @@ -72734,21 +76146,18 @@ /obj/machinery/digital_clock/directional/north, /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) -"uBh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "uBj" = ( /obj/structure/cable, /turf/closed/wall/r_wall, /area/station/hallway/primary/aft) +"uBo" = ( +/mob/living/basic/parrot/poly, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "uBp" = ( /obj/machinery/holopad, /turf/open/floor/iron/smooth, @@ -72768,11 +76177,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, /area/station/science/breakroom) -"uBv" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "uBy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -72791,11 +76195,34 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"uBU" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/starboard) +"uBY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_green/fourcorners, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "Rcommissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/office) +"uCa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "uCb" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -72816,34 +76243,22 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) -"uCA" = ( -/obj/machinery/power/apc/auto_name/directional/north, +"uCs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction, /obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "uCD" = ( +/obj/machinery/light/very_dim/directional/south, +/obj/effect/turf_decal/stripes/red/box, /obj/machinery/conveyor{ dir = 4; id = "garbage" }, -/obj/machinery/light/very_dim/directional/south, /turf/open/floor/plating, /area/station/maintenance/disposal) -"uCE" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "uCF" = ( /turf/open/floor/plating, /area/station/maintenance/port/fore) @@ -72854,6 +76269,20 @@ }, /turf/open/floor/plating, /area/station/maintenance/port) +"uCI" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"uCO" = ( +/turf/open/openspace, +/area/station/maintenance/starboard/fore/upper) "uCP" = ( /obj/machinery/door/airlock/external{ name = "Medical Escape Pod" @@ -72878,6 +76307,9 @@ /obj/structure/railing/corner{ dir = 1 }, +/mob/living/basic/pet/cat/space{ + name = "Tomas" + }, /turf/open/openspace, /area/station/commons/fitness/recreation) "uDa" = ( @@ -72896,9 +76328,12 @@ /turf/open/floor/iron/large, /area/station/maintenance/starboard/central) "uDl" = ( -/obj/effect/landmark/firealarm_sanity, -/turf/open/openspace, -/area/station/command/meeting_room/council) +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "uDp" = ( /obj/structure/railing{ dir = 1 @@ -72911,19 +76346,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"uDv" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"uDD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 +"uDx" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/station/engineering/lobby) +"uDD" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/iron, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "uDE" = ( /obj/effect/turf_decal/trimline/yellow/corner{ @@ -72953,6 +76388,7 @@ /obj/structure/railing/corner/end{ dir = 4 }, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) "uDX" = ( @@ -72965,6 +76401,13 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/security/prison/safe) +"uEi" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/checker, +/area/station/engineering/atmos/upper) "uEk" = ( /obj/structure/showcase/cyborg/old{ dir = 4; @@ -72975,7 +76418,7 @@ network = list("minisat") }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uEl" = ( /obj/effect/spawner/random/contraband/narcotics, /turf/open/floor/plating, @@ -72988,10 +76431,6 @@ /obj/item/stack/rods, /turf/open/openspace, /area/station/maintenance/port/aft) -"uEs" = ( -/obj/effect/spawner/random/structure/crate_loot, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "uEz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -73023,15 +76462,11 @@ /turf/open/floor/iron/dark, /area/station/medical/chemistry) "uEL" = ( -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron, /area/station/cargo/storage) -"uEM" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uEP" = ( /obj/structure/table/wood, /obj/item/radio/intercom, @@ -73041,12 +76476,28 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input, /turf/open/floor/engine/co2, /area/station/engineering/atmos/upper) +"uEU" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "uEZ" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, /obj/machinery/chem_heater/withbuffer, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) +"uFe" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "uFj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -73062,15 +76513,12 @@ /turf/open/floor/plating, /area/station/medical/break_room) "uFo" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 9 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/station/command/bridge) "uFv" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 @@ -73086,6 +76534,11 @@ /obj/effect/spawner/random/maintenance, /turf/open/space/openspace, /area/space/nearstation) +"uFL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) "uFM" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -73107,17 +76560,6 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/checkpoint/science) -"uFX" = ( -/obj/structure/table, -/obj/item/wirecutters, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "uFY" = ( /obj/effect/landmark/start/security_officer, /turf/open/floor/iron/dark, @@ -73129,22 +76571,19 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar) -"uGg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/elevator/directional/east{ - id = "catwalk_atmos"; - name = "Elevator Button" - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/project) "uGj" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/starboard) +"uGm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "uGo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -73162,9 +76601,11 @@ /turf/open/floor/iron/dark, /area/station/medical/cryo) "uGx" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/obj/effect/turf_decal/tile/green{ - dir = 1 +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 }, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) @@ -73176,7 +76617,7 @@ /obj/effect/turf_decal/stripes/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uGH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -73185,14 +76626,14 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "uGJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/railing{ - dir = 8 +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/belt/utility{ + pixel_y = 6 }, -/obj/effect/decal/cleanable/rubble, -/turf/open/floor/iron/dark/smooth_large, -/area/station/cargo/miningoffice) +/turf/open/floor/iron, +/area/station/cargo/storage) "uGP" = ( /obj/effect/turf_decal/siding/purple/corner, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -73201,32 +76642,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/lab) -"uGT" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/obj/structure/closet/crate/medical, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/effect/spawner/random/maintenance, -/obj/item/pen/red{ - pixel_y = 10 - }, -/obj/structure/curtain/cloth/fancy/mechanical{ - name = "Psychologist's Office Curtains"; - id = "psychpriv" - }, -/turf/open/floor/wood/large, -/area/station/medical/psychology) "uGV" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -73238,27 +76653,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8 - }, /obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4 + }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"uHe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"uHg" = ( -/obj/structure/table/wood, -/obj/machinery/computer/arcade/orion_trail{ - desc = "For gamers only. Casuals need not apply."; - icon_screen = "library"; - icon_state = "oldcomp"; - name = "Gamer Computer" - }, -/turf/open/floor/wood, -/area/station/commons/dorms) "uHh" = ( /obj/machinery/computer/teleporter{ dir = 1 @@ -73268,14 +76668,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"uHk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uHo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -73301,15 +76693,18 @@ codes_txt = "patrol;next_patrol=16-Laundry"; location = "15-EVA" }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "uHD" = ( -/obj/structure/chair{ +/obj/effect/landmark/start/cargo_technician, +/obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) "uHH" = ( /obj/machinery/washing_machine, /turf/open/floor/iron/dark/textured_large, @@ -73321,13 +76716,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"uHO" = ( -/obj/item/cigbutt{ - pixel_x = -9; - pixel_y = -2 +"uHT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/disposal) "uHV" = ( /obj/structure/chair/stool/bar/directional/west, /obj/effect/turf_decal/siding/wood{ @@ -73348,17 +76742,27 @@ }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"uHY" = ( -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"uId" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/sign/poster/official/no_erp/directional/north, -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/commons/dorms) +"uIf" = ( +/obj/structure/disposalpipe/segment, +/obj/item/paper_bin{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/stamp/head/ce{ + pixel_x = 7 + }, +/obj/item/stamp/denied{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/pen, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "uIi" = ( /obj/machinery/telecomms/bus/preset_two, /obj/effect/turf_decal/tile/brown/fourcorners, @@ -73376,10 +76780,6 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"uIx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "uIA" = ( /obj/structure/railing{ dir = 4 @@ -73410,22 +76810,12 @@ /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) -"uJy" = ( -/obj/structure/table, -/obj/item/rcl/pre_loaded{ - pixel_y = 7 - }, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 +"uJF" = ( +/obj/item/statuebust{ + pixel_y = 12 }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) +/turf/open/floor/engine/hull/air, +/area/station/maintenance/department/crew_quarters/dorms) "uJI" = ( /obj/structure/table, /obj/item/food/grown/banana{ @@ -73439,17 +76829,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/iron, /area/station/construction/storage_wing) -"uJR" = ( -/obj/item/ammo_casing/spent{ - pixel_x = -11; - pixel_y = -5 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -6; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "uJX" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -73477,11 +76856,6 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) -"uKm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uKn" = ( /obj/effect/turf_decal/trimline/red/filled/warning{ dir = 1 @@ -73503,6 +76877,17 @@ dir = 8 }, /area/station/commons/lounge) +"uKr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/railing, +/turf/open/floor/catwalk_floor/iron, +/area/station/commons/dorms) "uKt" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -73513,6 +76898,18 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"uKy" = ( +/obj/item/storage/toolbox/mechanical/old, +/obj/item/clothing/mask/gas, +/obj/item/toy/balloon/arrest, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"uKL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/welded, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plating, +/area/station/maintenance/port) "uKM" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -73544,6 +76941,11 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) +"uKO" = ( +/obj/structure/lattice, +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/commons/dorms) "uKP" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -73559,7 +76961,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"uLa" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "uLb" = ( /obj/structure/closet/crate/secure/trashcart, /obj/item/sord, @@ -73574,6 +76985,11 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/maintenance/port/aft) +"uLe" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "uLf" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -73599,7 +77015,7 @@ "uLj" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/corner, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uLo" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /obj/effect/landmark/start/coroner, @@ -73608,10 +77024,10 @@ }, /area/station/medical/morgue) "uLt" = ( +/obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/dark/half/contrasted{ dir = 8 }, -/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "uLw" = ( @@ -73623,6 +77039,22 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/ordnance/storage) +"uLD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/structure/sign/poster/contraband/singletank_bomb/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) +"uLI" = ( +/obj/effect/mob_spawn/corpse/human/assistant, +/obj/structure/closet/crate/trashcart, +/obj/effect/mob_spawn/corpse/human/monkey, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "uLL" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -73649,17 +77081,9 @@ }, /turf/open/floor/iron/dark/textured_corner, /area/station/science/ordnance) -"uMD" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored{ - cable_layer = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +"uMt" = ( +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "uME" = ( /obj/structure/stairs/south, /obj/structure/railing{ @@ -73669,35 +77093,30 @@ dir = 1 }, /area/station/service/library/printer) -"uMT" = ( -/obj/effect/turf_decal/siding/wood{ +"uMG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) +"uMJ" = ( +/obj/effect/turf_decal/siding{ dir = 1 }, -/obj/structure/chair{ - dir = 1 +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + pixel_x = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"uNn" = ( -/obj/structure/table, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/spawner/random/techstorage/command_all, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) +"uNu" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"uNo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"uNG" = ( -/obj/machinery/washing_machine, -/obj/machinery/airalarm/directional/north, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/virology) "uNJ" = ( /obj/item/radio/intercom/prison/directional/north, /turf/open/floor/iron/dark/textured_large, @@ -73717,28 +77136,30 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) -"uOo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) "uOx" = ( -/obj/structure/table/glass, -/obj/machinery/wall_healer/directional/west, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 }, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/vending/coffee{ + pixel_x = -3 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "uOC" = ( /obj/machinery/vending/wardrobe/hydro_wardrobe, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"uOF" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) "uOH" = ( /obj/structure/chair, /obj/effect/decal/cleanable/blood/old, @@ -73756,17 +77177,21 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) +"uOO" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/chaplain, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/service/chapel/office) "uOR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) -"uOS" = ( -/obj/structure/table/glass, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uOW" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -73777,6 +77202,14 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"uPj" = ( +/obj/machinery/newscaster/directional/east, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "uPq" = ( /obj/structure/railing/corner{ dir = 1 @@ -73793,22 +77226,16 @@ "uPu" = ( /turf/open/floor/wood, /area/station/service/library) -"uPy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) -"uPB" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/south, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored{ - cable_layer = 1 +"uPz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "uPL" = ( /obj/item/controller, /obj/item/compact_remote, @@ -73823,9 +77250,45 @@ /obj/item/multitool/circuit, /turf/open/floor/iron/dark/smooth_large, /area/station/science/lab) +"uPQ" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"uPY" = ( +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"uPZ" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "uQh" = ( /turf/open/floor/iron/dark, /area/station/security/medical) +"uQi" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"uQl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/sign/poster/official/random/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron, +/area/station/commons/dorms) "uQv" = ( /obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/trimline/blue/filled/line, @@ -73841,12 +77304,15 @@ "uQy" = ( /obj/structure/closet/crate/bin, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) -"uQH" = ( -/obj/structure/girder, -/obj/structure/grille, +/area/station/ai/satellite/maintenance/storage) +"uQX" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard) "uRd" = ( /turf/open/openspace, /area/station/maintenance/port/fore) @@ -73868,11 +77334,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) -"uRx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/boritos, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "uRy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -73890,12 +77351,30 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"uRB" = ( -/obj/machinery/atmospherics/pipe/smart/simple/supply{ - dir = 4 +"uRA" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) +/obj/structure/table, +/obj/item/flashlight{ + pixel_y = -2 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"uRD" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "SM_shutters"; + name = "Supermatter Radiation Shutters"; + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/off/cyan/visible, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/plating, +/area/station/engineering/supermatter) "uRM" = ( /obj/structure/table, /obj/effect/spawner/random/trash/janitor_supplies{ @@ -73954,9 +77433,32 @@ /obj/structure/closet/crate/freezer, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"uSh" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + pixel_x = 8 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "uSl" = ( /turf/open/floor/wood/tile, /area/station/maintenance/port/aft) +"uSn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "uSq" = ( /obj/machinery/camera/autoname/directional/north, /turf/open/openspace, @@ -73970,15 +77472,39 @@ /obj/item/poster/random_contraband, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"uSE" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 4 +"uSz" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/engineering) +"uSI" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 1 }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uSK" = ( +/obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/obj/structure/fluff/paper/stack{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/yellow, +/obj/item/hand_labeler_refill{ + pixel_x = -1 + }, +/obj/structure/fluff/paper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft) "uSL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, @@ -74045,6 +77571,14 @@ }, /turf/open/space/basic, /area/space) +"uTj" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/space/basic, +/area/space/nearstation) "uTy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair, @@ -74054,28 +77588,40 @@ /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) "uTJ" = ( -/obj/machinery/light/directional/west, -/turf/open/openspace, -/area/station/cargo/storage) -"uTK" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 +/obj/structure/sign/directions/evac/directional/north{ + pixel_y = 4 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) +/obj/structure/sign/directions/vault/directional/north{ + pixel_y = -2 + }, +/turf/closed/wall, +/area/station/maintenance/port/fore) "uTP" = ( /obj/effect/turf_decal/siding/dark, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uTY" = ( /obj/structure/fake_stairs/directional/north, /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/science/robotics) +"uUg" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/start/hangover, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/electric_shock/directional/west, +/turf/open/openspace, +/area/station/hallway/primary/starboard) +"uUx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can{ + pixel_x = -8 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "uUC" = ( /obj/structure/bed, /obj/structure/toilet/greyscale{ @@ -74101,33 +77647,10 @@ }, /turf/open/openspace, /area/station/maintenance/port/aft) -"uUH" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"uUK" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/closet/secure_closet/medical3, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/defibrillator/loaded, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 13 - }, -/obj/item/clothing/gloves/latex/nitrile, -/obj/effect/turf_decal/bot_white{ - color = "#52B4E9" - }, -/obj/item/clothing/gloves/latex/nitrile, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/storage) "uUL" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/cargo/miningoffice) "uUO" = ( @@ -74144,6 +77667,16 @@ /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/smooth, /area/station/science/robotics) +"uUS" = ( +/obj/item/cigbutt, +/obj/structure/curtain, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "uUT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74152,16 +77685,20 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) -"uUX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/command/vault) "uUY" = ( /obj/structure/chair/plastic, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/black, /area/station/maintenance/hallway/abandoned_recreation) +"uVb" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "uVf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/west, @@ -74172,9 +77709,24 @@ /turf/closed/wall, /area/station/commons/toilet/auxiliary) "uVn" = ( -/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"uVD" = ( +/obj/structure/mop_bucket{ + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/bucket{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/mop, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/area/station/maintenance/starboard) "uVL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -74204,35 +77756,21 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood/tile, /area/station/science/robotics) -"uVY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/assistant, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "uWi" = ( /turf/open/openspace, -/area/station/ai_monitored/command/storage/eva) -"uWu" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, +/area/station/command/eva) +"uWp" = ( +/obj/machinery/duct, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard/central) "uWE" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/item/storage/box/shipping{ - pixel_x = 4; - pixel_y = 10 +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/item/clothing/head/costume/mailman, -/turf/open/floor/iron, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, /area/station/cargo/sorting) "uWI" = ( /obj/structure/cable, @@ -74270,10 +77808,16 @@ /obj/effect/turf_decal/siding/dark_blue, /turf/open/floor/carpet/blue, /area/station/medical/break_room) +"uXm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/station/engineering/engine_smes) "uXx" = ( /obj/machinery/status_display/evac/directional/west, /turf/open/floor/carpet/black, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "uXz" = ( /obj/structure/bed{ dir = 4 @@ -74291,12 +77835,12 @@ /turf/open/floor/iron/dark/textured, /area/station/medical/virology) "uXE" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/iron, /area/station/cargo/storage) "uXI" = ( @@ -74309,14 +77853,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"uXR" = ( -/obj/structure/table/wood/fancy/cyan, -/obj/item/book/manual/wiki/atmospherics{ - pixel_y = 8 - }, -/obj/machinery/light/directional/east, +"uXL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/directional/east, /turf/open/floor/engine, -/area/station/engineering/break_room) +/area/station/engineering/supermatter/room) +"uXN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) "uXU" = ( /obj/effect/spawner/random/structure/chair_flipped, /obj/effect/decal/cleanable/dirt, @@ -74341,6 +77890,19 @@ /obj/effect/spawner/random/medical/surgery_tool, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"uYg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"uYs" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "uYu" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -74354,16 +77916,9 @@ dir = 8 }, /obj/machinery/vending/coffee, +/obj/machinery/airalarm/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"uYL" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "uYP" = ( /obj/effect/spawner/random/trash/box, /obj/item/clothing/gloves/color/fyellow/old, @@ -74373,18 +77928,27 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"uYT" = ( +/turf/open/floor/iron, +/area/station/engineering/storage_shared) +"uYY" = ( +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) "uZn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/light/cold/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/server) -"uZs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) "uZu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74403,6 +77967,10 @@ /obj/effect/turf_decal/siding/blue, /turf/open/openspace, /area/station/medical/medbay/central) +"uZR" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/aft) "uZS" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/siding/purple{ @@ -74442,31 +78010,15 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/glass/reinforced, /area/station/medical/chemistry) +"vap" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "vav" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/stairs/medium, /area/station/medical/virology) -"vax" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 - }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"vaD" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Dock" - }, -/obj/effect/landmark/navigate_destination/dockaux, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "vaF" = ( /obj/structure/railing{ dir = 8 @@ -74484,11 +78036,16 @@ /obj/machinery/vending/boozeomat, /turf/open/floor/iron/checker, /area/station/service/bar) +"vaR" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "vbe" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/painting/library_private{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/item/cigbutt{ pixel_x = -12; @@ -74511,28 +78068,28 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"vbB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"vbM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ +"vbx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner{ dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/aft) "vbX" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/flora/rock/pile/jungle/style_2, /obj/structure/flora/grass/jungle/a/style_5, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"vbZ" = ( +/obj/machinery/newscaster/directional/south, +/turf/open/openspace, +/area/station/maintenance/aft/upper) +"vca" = ( +/turf/open/openspace, +/area/station/maintenance/aft/upper) "vcf" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -74551,19 +78108,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, /area/station/maintenance/starboard/aft) -"vcn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -2 +"vcp" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 2; + name = "Mix to Port" }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vcF" = ( -/obj/structure/sign/warning/hot_temp, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) +/obj/effect/turf_decal/trimline/dark_green, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "vcH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74588,14 +78140,11 @@ /obj/machinery/holopad, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) -"vcT" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, +"vcX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/engineering/atmos) "vcY" = ( /obj/machinery/flasher/directional/west, /obj/structure/table/wood/fancy/black, @@ -74608,28 +78157,15 @@ pixel_y = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) -"vdg" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/north, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored{ - cable_layer = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/orange/visible{ - dir = 1 - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/area/station/ai/upload/chamber) "vdh" = ( -/obj/structure/secure_safe/directional/north{ - name = "armory safe A"; - pixel_x = -22; - pixel_y = 0 - }, /obj/structure/rack, /obj/effect/spawner/random/armory/laser_gun, +/obj/structure/secure_safe/directional/west{ + name = "Armory safe A" + }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vdi" = ( /obj/effect/landmark/start/ai/secondary, /obj/effect/turf_decal/delivery, @@ -74650,7 +78186,13 @@ name = "Private Channel" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"vdk" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/hallway/primary/central) "vdl" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -74658,36 +78200,12 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"vdm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "vdq" = ( /obj/structure/broken_flooring/side/always_floorplane/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"vdr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"vdG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "vdI" = ( /obj/structure/table, /obj/item/folder/red{ @@ -74702,21 +78220,14 @@ }, /turf/open/floor/carpet, /area/station/service/lawoffice) -"vdN" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/railing/corner/end{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "vdP" = ( /obj/structure/stairs/north, /turf/open/floor/iron/stairs/medium, /area/station/medical/medbay/central) +"vdZ" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) "vef" = ( /obj/machinery/door/airlock{ name = "Coffin Storage" @@ -74731,12 +78242,31 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_smooth, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"veh" = ( +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"vek" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) "vem" = ( /obj/structure/lattice, /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, /area/station/security/courtroom) +"vep" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/item/stack/rods{ + amount = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "ver" = ( /obj/effect/spawner/random/maintenance, /obj/item/storage/fancy/candle_box, @@ -74754,10 +78284,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"vet" = ( -/obj/effect/decal/cleanable/insectguts, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "veu" = ( /turf/closed/indestructible/riveted{ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; @@ -74775,46 +78301,21 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/iron, /area/station/science/lab) -"veS" = ( -/obj/structure/table, -/obj/item/storage/toolbox/artistic{ - pixel_x = -1; - pixel_y = 12 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = -7 - }, -/obj/item/stamp{ - pixel_x = 7; - pixel_y = -1 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = -7 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/station/service/library/printer) "veT" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 }, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"vfb" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/mapping_helpers/broken_machine, -/obj/machinery/vending/tool, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) "vfe" = ( /turf/open/floor/iron, /area/station/commons/dorms) +"vfj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "vfp" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -74835,16 +78336,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vfF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple/half{ - dir = 1 +/area/station/ai/satellite/foyer) +"vfQ" = ( +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "vfV" = ( /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron, @@ -74872,6 +78371,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/service/chapel) +"vgf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "vgh" = ( /obj/structure/lattice/catwalk, /obj/machinery/griddle, @@ -74896,9 +78402,6 @@ /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, /obj/structure/table, /obj/item/radio/off{ pixel_y = 9 @@ -74912,8 +78415,12 @@ pixel_y = 4 }, /obj/item/radio/off, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/textured, +/area/station/command/eva) "vgB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74925,28 +78432,37 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"vgJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vgN" = ( -/obj/machinery/newscaster/directional/north, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Deliveries" +/obj/machinery/computer/security/qm{ + dir = 4 }, -/obj/effect/turf_decal/trimline/brown/filled, -/obj/structure/railing/corner/end/flip{ - dir = 8 +/obj/machinery/button/door/directional/west{ + pixel_y = 6; + name = "Cargo Lockdown"; + id = "cargolockdown"; + req_access = list("cargo") }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/cargo/sorting) +/obj/machinery/button/door/directional/west{ + id = "CargowatchShutter"; + name = "Window Shutters"; + pixel_y = -6 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) +"vgV" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"vgX" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "vhe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, @@ -74973,21 +78489,6 @@ }, /turf/open/floor/iron/checker, /area/station/service/bar/backroom) -"vht" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner{ - dir = 4 - }, -/obj/structure/fluff/paper/stack{ - dir = 4 - }, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/item/folder/yellow{ - pixel_y = -6 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "vhv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -74999,6 +78500,13 @@ /obj/structure/closet/bombcloset/security, /turf/open/floor/iron/dark, /area/station/security/office) +"vhE" = ( +/obj/structure/table, +/obj/effect/spawner/random/entertainment/musical_instrument, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft) "vhJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -75029,19 +78537,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"viy" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/fluff/paper/stack{ - desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging." - }, -/obj/structure/fluff/paper{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "viD" = ( /obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -75053,6 +78548,14 @@ /obj/structure/sign/departments/rndserver/directional/north, /turf/open/floor/iron, /area/station/science/lab) +"viF" = ( +/obj/structure/bed, +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/random/bedsheet, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "viI" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ dir = 4 @@ -75066,14 +78569,7 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai) -"viN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/chamber) "viS" = ( /obj/structure/chair/office{ dir = 8 @@ -75101,30 +78597,18 @@ /area/station/medical/medbay/central) "vjc" = ( /obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"vji" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/atmos/project) -"vjC" = ( -/obj/structure/lattice/catwalk, -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/atmos/project) "vjS" = ( /obj/structure/transit_tube, /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/light/floor, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vjZ" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/open/openspace, @@ -75138,7 +78622,7 @@ /area/station/medical/cryo) "vkd" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vki" = ( /turf/open/openspace, /area/station/engineering/storage_shared) @@ -75151,19 +78635,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"vkl" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner, -/obj/structure/fluff/paper/stack, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/fluff/paper/stack{ - desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "vky" = ( /obj/machinery/vending/drugs, /turf/open/floor/iron/white/textured_large, @@ -75195,6 +78666,21 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/station/security/courtroom) +"vkD" = ( +/obj/item/banner/cargo/mundane, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "vkO" = ( /obj/structure/railing, /obj/effect/turf_decal/trimline/brown/filled/line, @@ -75203,24 +78689,15 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) "vkQ" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase/secure{ - pixel_y = 3 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"vkU" = ( -/obj/item/clothing/head/cone{ - pixel_x = 5; - pixel_y = 10 +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "vkY" = ( /obj/structure/railing{ dir = 8 @@ -75244,6 +78721,15 @@ dir = 8 }, /area/station/science/ordnance) +"vla" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "vlc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -75291,21 +78777,32 @@ }, /area/station/hallway/primary/port) "vlE" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/decal/cleanable/dirt, +/obj/structure/window/spawner/directional/south, /turf/open/floor/plating, /area/station/maintenance/disposal) "vlH" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/space/openspace, /area/space/nearstation) -"vlK" = ( -/obj/effect/turf_decal/siding/white, +"vlI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "CE's Maintenance Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) +"vlK" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "vma" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -75313,11 +78810,14 @@ }, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"vmd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +"vme" = ( +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "vmh" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ @@ -75325,6 +78825,11 @@ }, /turf/open/openspace, /area/station/hallway/secondary/construction) +"vmk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "vmt" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -75351,6 +78856,29 @@ }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) +"vmO" = ( +/obj/structure/rack, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/neck/tie/blue{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/soft/blue, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"vmR" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "vmZ" = ( /obj/structure/table/reinforced, /obj/item/circuitboard/machine/vendor, @@ -75386,6 +78914,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"vnh" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) "vnp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/graffiti, @@ -75403,23 +78937,30 @@ /area/station/command/heads_quarters/ce) "vnz" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 + icon_state = "L8" }, -/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"vnC" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/table/reinforced, +/obj/item/stock_parts/power_store/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/cell_charger, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "vnR" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) "vnV" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L12" +/obj/effect/turf_decal/trimline/dark/arrow_ccw{ + dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "voa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/siding/wood, @@ -75441,17 +78982,6 @@ /obj/effect/landmark/carpspawn, /turf/open/space/openspace, /area/space) -"voi" = ( -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) -"vok" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) "von" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment{ @@ -75490,6 +79020,12 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"voO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "voP" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -75509,10 +79045,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/command/heads_quarters/cmo) -"voV" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "voX" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /obj/structure/railing, @@ -75542,12 +79074,6 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) -"vpi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/eighties, -/area/station/engineering/lobby) "vpo" = ( /obj/machinery/power/terminal{ dir = 1 @@ -75555,12 +79081,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"vpt" = ( -/obj/structure/chair/pew/right{ - dir = 4 +"vpw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port) +"vpy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "vpz" = ( /obj/structure/transport/linear, /turf/open/openspace, @@ -75579,6 +79113,12 @@ /obj/item/wirecutters, /turf/open/floor/iron/dark, /area/station/security/office) +"vpX" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vqc" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -75588,14 +79128,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"vqi" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/engineering/lobby) "vql" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/effect/turf_decal/trimline/red/warning{ @@ -75604,41 +79136,16 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/port) -"vqn" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"vqq" = ( -/obj/structure/table, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/spawner/random/techstorage/ai_all, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "vqs" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Office" +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 9 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/item/pen, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/disposalpipe/segment, /turf/open/floor/iron, -/area/station/cargo/miningoffice) +/area/station/hallway/primary/starboard) "vqu" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -75669,40 +79176,16 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"vqE" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_x = 12; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "revolution"; - name = "graffiti"; - paint_colour = "#FF0000"; - pixel_y = 32 - }, -/obj/item/ammo_casing/spent{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vqH" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"vqM" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 +"vqx" = ( +/obj/machinery/shower/directional/south, +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/item/razor{ + pixel_z = 7; + pixel_w = -7 }, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "vqP" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/newscaster/directional/south, @@ -75717,15 +79200,27 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"vqZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/recharge_floor, -/area/station/maintenance/starboard/lesser) -"vrx" = ( -/obj/machinery/shower/directional/west, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +"vra" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation) +"vre" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/command/meeting_room/council) "vrA" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ @@ -75737,13 +79232,18 @@ /obj/machinery/light/directional/east, /turf/open/openspace, /area/station/science/xenobiology) -"vrO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 10 +"vrR" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +/obj/structure/table, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "vsf" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -75759,30 +79259,6 @@ }, /turf/open/floor/carpet/stellar, /area/station/service/library) -"vsm" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vsq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"vss" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "vsv" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/chapel{ @@ -75799,6 +79275,12 @@ /obj/machinery/photocopier/prebuilt, /turf/open/floor/iron, /area/station/science/research) +"vsD" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/radiation, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "vsK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -75824,16 +79306,6 @@ /obj/effect/mapping_helpers/mail_sorting/medbay/virology, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"vsM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "vsO" = ( /obj/effect/turf_decal/trimline/dark_blue/line{ dir = 8 @@ -75848,7 +79320,7 @@ dir = 4 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vsP" = ( /obj/structure/sign/poster/contraband/gorlex_recruitment, /turf/closed/wall/r_wall, @@ -75871,7 +79343,7 @@ /obj/structure/table/wood/fancy/cyan, /obj/effect/spawner/round_default_module, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vtc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/virology{ @@ -75880,12 +79352,21 @@ /obj/effect/mapping_helpers/airlock/access/all/science/genetics, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) -"vti" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +"vth" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "vtm" = ( /obj/effect/turf_decal/siding/blue/corner, /obj/structure/railing{ @@ -75912,31 +79393,28 @@ }, /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vtF" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) +"vtP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "vtT" = ( /turf/open/floor/glass, /area/station/science/zoo) -"vua" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/large, -/area/station/medical/psychology) "vuc" = ( /obj/item/banner/cargo/mundane, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/open/floor/plating, /area/station/maintenance/starboard/central) +"vuh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "vuo" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -75952,13 +79430,15 @@ /obj/machinery/light/small/red/dim/directional/west, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) -"vuy" = ( -/obj/effect/landmark/start/station_engineer, -/obj/structure/chair/office{ - dir = 1 +"vuC" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/engineering/lobby) +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) "vuN" = ( /obj/machinery/telecomms/message_server/preset, /turf/open/floor/iron/dark/telecomms, @@ -75984,13 +79464,6 @@ }, /turf/open/floor/carpet/orange, /area/station/command/heads_quarters/ce) -"vvb" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/book/manual/wiki/atmospherics, -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/disposal/incinerator) "vvc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -76031,15 +79504,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/science/explab) -"vvE" = ( -/obj/machinery/plumbing/input, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) -"vvL" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vvT" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/fake_stairs/directional/west, @@ -76047,21 +79511,6 @@ /obj/structure/stairs/west, /turf/open/floor/iron, /area/station/science/zoo) -"vvV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/item/stack/rods/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vvY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/structure/light_construct/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) "vwa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, @@ -76088,6 +79537,9 @@ /obj/structure/lattice/catwalk, /turf/open/space/openspace, /area/station/solars/starboard/aft) +"vwg" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/starboard) "vwh" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -76102,18 +79554,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) +"vwp" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) "vwr" = ( /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"vwx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking/circle/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "vwB" = ( /obj/machinery/camera/directional/east{ c_tag = "Arrivals - Aft Arm" @@ -76124,6 +79576,11 @@ /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) +"vwI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/plating, +/area/station/cargo/miningoffice) "vwK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -76135,20 +79592,17 @@ /obj/machinery/air_sensor, /turf/open/floor/iron, /area/station/security/prison/mess) -"vwQ" = ( -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/delivery/white{ - color = "#ff6600" - }, -/turf/open/floor/engine, -/area/station/engineering/break_room) -"vwR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"vwL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, /obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard/upper) +"vxa" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/wood, +/area/station/maintenance/aft) "vxc" = ( /obj/machinery/door/airlock/security{ name = "Courtroom Cell" @@ -76174,6 +79628,19 @@ }, /turf/open/floor/iron/dark/smooth_half, /area/station/service/library) +"vxi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/station/maintenance/starboard) +"vxr" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/fore/upper) +"vxz" = ( +/obj/machinery/duct, +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "vxJ" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ @@ -76181,22 +79648,21 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) -"vyp" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/modular_computer/preset/engineering{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +"vxS" = ( +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"vyu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 1; + name = "Airlock Pump"; + target_pressure = 300; + hide = 1 }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) -"vyt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard/fore/upper) "vyA" = ( /obj/structure/table/reinforced, /obj/item/camera, @@ -76212,6 +79678,13 @@ /obj/effect/spawner/random/trash/grime, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"vyG" = ( +/obj/machinery/computer/atmos_control/air_tank, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "vyH" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -76223,7 +79696,26 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) +"vze" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"vzf" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "vzk" = ( /obj/effect/decal/cleanable/blood/oil/slippery, /obj/structure/cable, @@ -76239,28 +79731,31 @@ /turf/open/floor/iron/dark, /area/station/science/server) "vzr" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; dir = 8 }, -/obj/machinery/computer/cargo{ - dir = 1 +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = -10 }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/right/directional/east{ + req_access = list("cargo"); + name = "Cargo Desk" + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/pen, /turf/open/floor/iron, /area/station/cargo/storage) -"vzx" = ( -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) "vzB" = ( /turf/closed/wall, /area/station/command/heads_quarters/hop) -"vzM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) "vzN" = ( /obj/effect/turf_decal/tile/red/opposingcorners{ dir = 1 @@ -76295,16 +79790,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"vAa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "space-outpost" +"vzZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door/airlock/external, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "vAd" = ( /obj/structure/grille, /obj/structure/lattice, @@ -76321,19 +79813,8 @@ /turf/open/floor/iron, /area/station/service/cafeteria) "vAh" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/plasticflaps, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/engine/hull/air, /area/station/cargo/storage) -"vAl" = ( -/obj/structure/ladder, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "vAn" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -76350,30 +79831,6 @@ "vAs" = ( /turf/closed/wall, /area/station/command/corporate_showroom) -"vAv" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vAx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = -2 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vAF" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/ghetto_containers, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vAL" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4 @@ -76392,17 +79849,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/cytology) -"vBg" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "vBi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "vBj" = ( /obj/machinery/porta_turret/ai{ @@ -76412,7 +79865,7 @@ dir = 6 }, /turf/open/floor/engine/hull/reinforced/air, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vBq" = ( /obj/machinery/power/terminal{ dir = 1 @@ -76420,7 +79873,7 @@ /obj/structure/cable/multilayer/connected, /obj/machinery/power/port_gen/pacman, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vBt" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/tile/purple, @@ -76471,6 +79924,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/xenobiology/hallway) +"vBT" = ( +/obj/structure/table, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/pen, +/obj/item/airlock_painter, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "vBU" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -76480,14 +79943,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"vBX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) "vBY" = ( /obj/item/raw_anomaly_core/random{ pixel_x = -5; @@ -76520,25 +79975,23 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/execution/transfer) "vCk" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ +/obj/structure/railing{ dir = 4 }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) -"vCr" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "vCB" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/status_display/ai/directional/south, @@ -76546,7 +79999,29 @@ /area/station/science/lobby) "vCE" = ( /turf/closed/wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) +"vCF" = ( +/obj/item/kirbyplants/synthetic/plant26{ + pixel_x = 10; + pixel_y = 18 + }, +/obj/item/kirbyplants/synthetic/plant27{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"vCG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "vCN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/public/glass{ @@ -76570,18 +80045,16 @@ }, /area/station/hallway/secondary/entry) "vCT" = ( -/obj/structure/bookcase/random/reference, -/obj/machinery/camera/autoname/directional/south, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "vCW" = ( /obj/structure/table/wood/poker, /obj/item/toy/cards/deck{ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "vDa" = ( /obj/machinery/camera/directional/west{ @@ -76602,37 +80075,31 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "vDi" = ( /turf/open/floor/iron/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vDF" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) -"vDL" = ( +/area/station/ai/satellite/foyer) +"vDu" = ( +/obj/structure/reagent_dispensers/plumbed, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"vDv" = ( +/obj/effect/spawner/random/engineering/tank, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/plasma, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"vDT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"vDV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"vDM" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/soda_cans/thirteenloko{ + pixel_x = 14; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_construction, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "vEi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -76640,6 +80107,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"vEp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "CO2 to Mix" + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"vEv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "vEF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -76653,52 +80134,41 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"vEI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +"vEH" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson{ + pixel_y = 8 }, -/obj/structure/railing{ - dir = 4 +/obj/item/clothing/glasses/meson{ + pixel_y = 8 }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, -/area/station/engineering/atmos/project) -"vEU" = ( -/obj/machinery/skill_station, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/area/station/engineering/supermatter/room) +"vEW" = ( +/obj/item/clothing/head/cone{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vEX" = ( /obj/structure/cable, /turf/open/floor/glass/reinforced, /area/station/solars/starboard/fore) +"vFf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vFk" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plating, /area/station/construction/storage_wing) -"vFl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Grav Gen & Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"vFr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "vFA" = ( /turf/closed/wall, /area/station/science/xenobiology) @@ -76711,44 +80181,19 @@ }, /turf/open/floor/engine/hull/air, /area/station/science/research) -"vFN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/camera/directional/west, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +"vFE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"vFP" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/line, -/obj/structure/railing{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/turf/open/openspace, -/area/station/engineering/break_room) +/obj/machinery/light/directional/east, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "vFR" = ( /turf/closed/mineral/random/stationside/asteroid/porus, /area/station/science/ordnance/bomb) -"vFU" = ( -/obj/structure/table/reinforced, -/obj/item/trash/candle{ - pixel_x = 11; - pixel_y = 11 - }, -/obj/item/trash/candle{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/trash/candle{ - pixel_x = -9; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "vFV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, @@ -76761,9 +80206,14 @@ /turf/open/floor/iron, /area/station/security/prison/mess) "vFZ" = ( -/obj/effect/turf_decal/siding/green, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) "vGi" = ( /obj/structure/table, /obj/item/training_toolbox{ @@ -76776,16 +80226,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"vGl" = ( -/obj/structure/fluff/paper/stack{ - dir = 10 - }, -/obj/structure/sign/flag/nanotrasen/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "vGr" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/green/filled/mid_joiner, @@ -76801,6 +80241,19 @@ /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) +"vGu" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/item/cigbutt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"vGB" = ( +/obj/structure/sign/poster/official/soft_cap_pop_art/directional/west, +/turf/open/openspace, +/area/station/maintenance/department/crew_quarters/dorms) "vGC" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -76810,30 +80263,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"vGE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine/hull/reinforced, -/area/station/engineering/atmos/hfr_room) -"vGQ" = ( -/obj/structure/table, -/obj/item/clothing/under/costume/seifuku/tan{ - pixel_x = -14; - pixel_y = -2 - }, -/obj/item/trash/boritos{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/clothing/glasses/sunglasses/gar/orange{ - pixel_x = 4 - }, -/obj/structure/sign/poster/contraband/energy_swords/directional/north, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) -"vHa" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input, -/turf/open/floor/engine/airless, -/area/station/maintenance/disposal/incinerator) "vHe" = ( /obj/structure/closet/crate/trashcart/laundry, /obj/item/clothing/under/rank/prisoner, @@ -76845,27 +80274,30 @@ /turf/open/floor/iron/dark/textured_large, /area/station/security/prison) "vHo" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/station/hallway/secondary/command) "vHp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "vHz" = ( /obj/structure/table, /obj/machinery/air_sensor, /turf/open/floor/iron/grimy, /area/station/security/interrogation) -"vHO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 +"vHC" = ( +/obj/structure/stairs/east, +/obj/machinery/status_display/supply{ + pixel_x = 32 }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/station/cargo/storage) "vHV" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -76875,10 +80307,27 @@ /obj/effect/spawner/random/bureaucracy/pen, /turf/open/openspace, /area/station/maintenance/port/aft) +"vIb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "vIc" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"vId" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) "vIg" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -76906,19 +80355,11 @@ dir = 8 }, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vIw" = ( /obj/structure/railing, /turf/open/openspace, /area/station/hallway/primary/central) -"vIy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) "vIz" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -76926,24 +80367,44 @@ }, /turf/open/floor/iron, /area/station/science/research) -"vIX" = ( -/obj/machinery/camera/autoname/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) +"vIE" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) +"vIG" = ( +/obj/structure/fluff/paper/stack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) "vJe" = ( /obj/structure/chair, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) +"vJf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/east, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "vJz" = ( /obj/structure/railing{ dir = 4 }, -/turf/open/floor/wood, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "HoPsToy"; + name = "Loading Conveyor"; + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "vJB" = ( /obj/effect/turf_decal/trimline/red/filled/line{ @@ -76952,12 +80413,17 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/port) +"vJD" = ( +/obj/structure/lattice, +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/commons/fitness/recreation) "vJF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/structure/disposalpipe/junction, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "vJI" = ( /obj/effect/turf_decal/siding/blue{ @@ -76984,14 +80450,6 @@ }, /turf/open/floor/eighties, /area/station/construction/storage_wing) -"vJV" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vKc" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -77007,56 +80465,42 @@ /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) "vKi" = ( -/obj/structure/table/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/maintenance/starboard/central) +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) "vKq" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/vending/assist, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "vKt" = ( /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) -"vKL" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/table, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -2; - pixel_y = 6 +"vKA" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -6; - pixel_y = 5 +/obj/effect/turf_decal/siding/blue{ + dir = 10 }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/autoname/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vKL" = ( /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ dir = 8 }, /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"vKW" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/locker) +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/textured, +/area/station/command/eva) "vKZ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -77075,15 +80519,6 @@ /obj/structure/sink/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"vLb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/openspace, -/area/station/engineering/lobby) "vLe" = ( /obj/structure/table, /obj/item/taperecorder{ @@ -77098,21 +80533,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/security/execution/education) -"vLj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "vLx" = ( /obj/machinery/conveyor{ dir = 4; id = "garbage" }, +/obj/effect/turf_decal/stripes/red/box, /turf/open/floor/plating, /area/station/maintenance/disposal) "vLC" = ( @@ -77133,29 +80559,14 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron, /area/station/science/research) -"vLU" = ( -/obj/item/kirbyplants/random/fullysynthetic, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"vMn" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"vMs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +"vMm" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Freezer Bypass" }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "vMt" = ( /obj/structure/cable, /turf/closed/wall/r_wall, @@ -77165,40 +80576,20 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"vMG" = ( -/obj/item/kirbyplants/random, -/obj/machinery/button/door/directional/west{ - id = "Cabin4"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 +"vMN" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"vMH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/item/reagent_containers/blood/ethereal{ - pixel_x = -6; - pixel_y = 6 +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 }, -/obj/item/cigbutt{ - pixel_x = 9; - pixel_y = 14 +/obj/effect/turf_decal/siding/red{ + dir = 4 }, -/obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/west, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) -"vMO" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 +/turf/open/floor/iron/textured_edge{ + dir = 4 }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/grass, -/area/station/engineering/lobby) +/area/station/command/gateway) "vMP" = ( /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, @@ -77216,8 +80607,15 @@ dir = 4 }, /obj/structure/cable, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) +"vNb" = ( +/obj/machinery/atmospherics/components/unary/passive_vent, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) "vNc" = ( /obj/structure/railing{ dir = 10 @@ -77234,6 +80632,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) +"vNl" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "vNm" = ( /obj/item/bodypart/chest/lizard, /obj/effect/mapping_helpers/broken_floor, @@ -77272,23 +80678,18 @@ }, /turf/open/floor/plating, /area/station/science/zoo) +"vNE" = ( +/obj/structure/stairs/south, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/maintenance/starboard) "vNJ" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/window/reinforced/tinted/spawner/directional/west, /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"vNM" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vNX" = ( -/obj/structure/transport/linear{ - radial_travel = 0 - }, -/turf/open/openspace, -/area/station/engineering/atmos/project) "vOg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77300,43 +80701,56 @@ /obj/structure/disposalpipe/segment{ dir = 2 }, -/obj/structure/sign/directions/medical/directional/east{ - dir = 2; - pixel_y = 9 - }, -/obj/structure/sign/directions/science/directional/east{ - dir = 2; - pixel_y = 3 - }, -/obj/structure/sign/directions/security/directional/east{ - dir = 2; - pixel_y = -3 +/turf/open/floor/iron/edge{ + dir = 4 }, -/turf/open/floor/iron/large, /area/station/hallway/primary/central) "vOy" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/status_display/ai/directional/north, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner{ dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) "vOE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) -"vPa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +"vON" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/stamp/denied{ + pixel_x = 6 + }, +/obj/item/stamp/granted{ + pixel_x = -4 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) +"vPk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/effect/decal/cleanable/cobweb, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "vPp" = ( /obj/machinery/microwave, /turf/open/floor/plating, @@ -77349,6 +80763,26 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"vPE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"vPF" = ( +/obj/machinery/atmospherics/pipe/multiz/green/visible{ + dir = 8; + name = "mix to space multi-deck adaper" + }, +/obj/effect/turf_decal/tile/dark_green/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "vPN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77358,10 +80792,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"vPU" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) "vPX" = ( /obj/effect/turf_decal/tile/dark_blue, /obj/structure/cable, @@ -77374,15 +80804,16 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 }, -/obj/effect/landmark/start/shaft_miner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/cargo/miningoffice) -"vQf" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, +/area/station/cargo/storage) +"vQe" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/area/station/engineering/supermatter/room/upper) "vQj" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -77393,6 +80824,16 @@ }, /turf/open/floor/engine, /area/station/medical/chemistry) +"vQm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/button/door/directional/north{ + id = "abandoned_kitchen" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vQo" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line, @@ -77407,15 +80848,6 @@ "vQq" = ( /turf/closed/wall/r_wall, /area/station/maintenance/port/greater) -"vQw" = ( -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/small, -/area/station/command/heads_quarters/ce) "vQy" = ( /obj/machinery/suit_storage_unit/security, /obj/machinery/light/directional/west, @@ -77464,6 +80896,7 @@ }, /obj/machinery/light/directional/south, /obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/green/filled/corner, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "vQP" = ( @@ -77474,12 +80907,15 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/wood, /area/station/security/courtroom) +"vQQ" = ( +/turf/open/floor/plating, +/area/station/hallway/secondary/construction) "vQR" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/computer/gateway_control{ dir = 4 }, -/turf/open/floor/carpet, +/turf/open/floor/carpet/purple, /area/station/command/gateway) "vRb" = ( /obj/structure/sign/poster/official/tactical_game_cards/directional/west, @@ -77488,15 +80924,6 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/textured_large, /area/station/cargo/bitrunning/den) -"vRc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/station/medical/psychology) "vRd" = ( /obj/effect/decal/cleanable/dirt, /obj/item/circuitboard/computer/operating, @@ -77509,45 +80936,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"vRi" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "vRp" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/item/clothing/mask/bandana/skull/black, /obj/structure/sign/poster/contraband/lizard/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"vRt" = ( -/obj/machinery/computer/atmos_control/nitrous_tank, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"vRz" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) +"vRy" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "vRD" = ( /obj/structure/table, /obj/item/toy/cards/deck/wizoff{ @@ -77556,12 +80955,6 @@ }, /turf/open/floor/iron, /area/station/science/breakroom) -"vRE" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "vRF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -77658,6 +81051,10 @@ }, /turf/open/floor/iron, /area/station/science/robotics) +"vSA" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "vSC" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ name = "euthanization chamber freezer" @@ -77705,16 +81102,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"vSU" = ( -/obj/effect/decal/cleanable/glitter, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "vSW" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vSX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77724,6 +81117,10 @@ /obj/structure/railing/corner, /turf/open/floor/iron, /area/station/science/robotics) +"vTh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "vTm" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -77734,15 +81131,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"vTq" = ( -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) "vTu" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -77750,25 +81138,24 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"vTv" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 +"vTB" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 +/obj/effect/turf_decal/plaque{ + icon_state = "L13" }, -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter) +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/primary/central) "vTE" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"vTH" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) +/obj/machinery/door/airlock/mining{ + name = "Deliveries" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/shipping, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) "vTI" = ( /obj/structure/railing{ dir = 1 @@ -77777,25 +81164,15 @@ /obj/effect/turf_decal/tile/purple/fourcorners, /turf/open/floor/iron, /area/station/science/research) -"vTL" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_all, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +"vTQ" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"vTV" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark/corner, -/obj/effect/turf_decal/trimline/dark/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/turf/open/floor/engine, +/area/station/engineering/supermatter) "vUd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77806,6 +81183,11 @@ }, /turf/open/floor/wood, /area/station/service/library) +"vUf" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) "vUi" = ( /obj/structure/chair/pew/left{ dir = 8 @@ -77813,17 +81195,19 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/service/chapel) -"vUm" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/engine_smes) -"vUw" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ +"vUx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ dir = 4 }, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vUN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "vUQ" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/table/wood, @@ -77847,35 +81231,33 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/science/lobby) -"vVb" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"vVi" = ( +/obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"vVp" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"vVv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"vVD" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/obj/effect/turf_decal/trimline/green/filled/mid_joiner{ +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"vVp" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/textured_large, -/area/station/medical/virology) +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) +"vVt" = ( +/obj/structure/chair/sofa/right/brown, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/poster/contraband/pwr_game/directional/north, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) +"vVH" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/docking/directional/south, +/turf/open/space/basic, +/area/space/nearstation) "vVR" = ( /obj/structure/broken_flooring/pile/directional/north, /turf/open/floor/plating, @@ -77912,13 +81294,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/port) -"vWt" = ( -/obj/machinery/computer/atmos_control/air_tank, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "vWv" = ( /obj/effect/turf_decal/bot_white, /obj/effect/decal/cleanable/dirt, @@ -77960,11 +81335,16 @@ /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) "vXt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) +"vXv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/science/breakroom) "vXz" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 @@ -77974,6 +81354,16 @@ /obj/machinery/mining_weather_monitor/directional/north, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"vXB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured_large, +/area/station/medical/abandoned) +"vXC" = ( +/obj/machinery/newscaster/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) "vXQ" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -77983,21 +81373,12 @@ }, /turf/open/floor/iron, /area/station/science/lab) -"vXU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "vYe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "vYm" = ( /obj/effect/turf_decal/stripes/corner{ @@ -78005,6 +81386,12 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"vYq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "vYs" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 @@ -78026,10 +81413,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"vYI" = ( -/obj/structure/reagent_dispensers/plumbed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"vYN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/dorms) +"vYQ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) "vYS" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -78048,16 +81443,19 @@ }, /turf/open/floor/iron, /area/station/science/breakroom) -"vYV" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/aft) "vYX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) +"vZa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "vZd" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners, /obj/structure/railing/corner/end/flip{ @@ -78069,6 +81467,11 @@ "vZG" = ( /turf/open/openspace, /area/station/maintenance/department/medical) +"vZH" = ( +/obj/item/radio/headset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "vZI" = ( /obj/effect/turf_decal/tile/dark_green{ dir = 4 @@ -78102,18 +81505,24 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron, /area/station/science/lab) -"wag" = ( -/obj/item/cigbutt{ - pixel_x = -11; - pixel_y = 14 +"wap" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/arrows/red{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"waq" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) +/obj/effect/turf_decal/arrows/red{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) +"war" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "was" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/effect/turf_decal/trimline/red/warning{ @@ -78127,18 +81536,12 @@ "wau" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"way" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/area/station/ai/satellite/interior) "waz" = ( /turf/closed/wall, /area/station/security/interrogation) "waA" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/iron/dark, /area/station/science/lobby) "waH" = ( @@ -78152,7 +81555,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "waU" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/floor/engine{ @@ -78186,18 +81589,21 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/turf_decal/arrows{ - dir = 1 - }, /obj/machinery/button/door/directional/south{ id = "gateshutter"; name = "Gateway Shutter Control"; pixel_x = -24; pixel_y = 0; - req_access = list("command") + req_access = list("command"); + dir = 8 }, /obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, /area/station/command/gateway) "wbJ" = ( /obj/effect/turf_decal/siding/dark_blue/corner, @@ -78209,6 +81615,13 @@ /obj/structure/cursed_money, /turf/open/floor/plating, /area/station/maintenance/port) +"wbM" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/warning/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "wbR" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 8 @@ -78248,14 +81661,6 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"wcJ" = ( -/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ - dir = 4; - name = "Atmos to Engine" - }, -/obj/effect/turf_decal/trimline/brown, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "wcN" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -78264,15 +81669,6 @@ /obj/machinery/holopad, /turf/open/floor/wood, /area/station/hallway/primary/central) -"wcT" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"wcV" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) "wcY" = ( /obj/structure/railing{ dir = 8 @@ -78288,8 +81684,8 @@ /area/station/science/research) "wdb" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/wood/tile, /area/station/maintenance/port/aft) "wdd" = ( @@ -78320,11 +81716,14 @@ /obj/effect/spawner/random/trash/botanical_waste, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"wdu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +"wdt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/hallway/primary/central) "wdw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, @@ -78344,23 +81743,22 @@ /turf/open/floor/iron/dark/textured_edge{ dir = 4 }, -/area/station/ai_monitored/turret_protected/ai) -"wdD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/communist_state/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wdJ" = ( -/obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/area/station/ai/satellite/chamber) +"wdB" = ( +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/engineering/break_room) +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"wdF" = ( +/obj/machinery/shower/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "wdQ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair{ @@ -78372,7 +81770,10 @@ /obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 4 }, -/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/storage) "weg" = ( @@ -78402,6 +81803,12 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/security/brig) +"wel" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/engine/hull, +/area/station/maintenance/starboard/aft/upper) "weo" = ( /obj/effect/spawner/random/trash/garbage, /obj/item/clothing/head/cone{ @@ -78429,11 +81836,20 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/yellow/fourcorners, /obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/dark, /area/station/construction/mining/aux_base) +"weC" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/directional/west, +/turf/open/openspace, +/area/station/engineering/lobby) "weF" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -78452,20 +81868,13 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark, /area/station/security/warden) -"weJ" = ( +"weM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/cable, /turf/open/floor/plating/airless, -/area/station/maintenance/starboard/aft) -"weK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/aft/upper) "weO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -78479,7 +81888,10 @@ dir = 8; id = "cargounload" }, -/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/plating, /area/station/cargo/storage) "weX" = ( @@ -78492,23 +81904,6 @@ /obj/item/tank/internals/oxygen/yellow, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"wfk" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/south, -/obj/item/cigbutt, -/obj/structure/bed/maint, -/obj/effect/spawner/random/bedsheet, -/turf/open/floor/wood, -/area/station/commons/dorms) -"wfp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump/on/layer5{ - name = "O2 to Airmix" - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "wfq" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, @@ -78518,17 +81913,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) -"wfz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4 - }, -/obj/effect/mapping_helpers/mail_sorting/engineering/general, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "wfF" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 4 @@ -78547,10 +81931,16 @@ }, /area/station/tcommsat/server) "wfN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) +"wfO" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/station/maintenance/starboard/upper) "wfV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -78596,6 +81986,13 @@ }, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/burnchamber) +"wgq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "wgx" = ( /obj/machinery/light_switch/directional/east, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -78606,11 +82003,22 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/chem_storage) -"wgD" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"wgE" = ( +/obj/structure/sign/directions/engineering/directional/west{ + dir = 1; + pixel_y = 6; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/west{ + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/science/directional/west{ + pixel_y = -6; + pixel_x = 0 + }, +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) "wgM" = ( /obj/structure/statue/sandstone/venus{ dir = 1 @@ -78634,16 +82042,17 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"wgU" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/airlock_painter, -/obj/item/storage/belt/utility, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/gloves/color/fyellow, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/commons/storage/primary) +"wgZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/office) "wha" = ( /obj/structure/cable, /obj/machinery/fax{ @@ -78665,6 +82074,12 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"whn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "whs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -78686,7 +82101,18 @@ "whw" = ( /obj/machinery/teleport/hub, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) +"whG" = ( +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"whH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/photocopier/prebuilt, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "whJ" = ( /obj/structure/sign/departments/science/alt/directional/south, /obj/effect/turf_decal/tile/green/full, @@ -78731,10 +82157,6 @@ /obj/structure/sign/departments/genetics/directional/east, /turf/open/floor/iron/stairs/medium, /area/station/science/cytology) -"wid" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "wie" = ( /obj/structure/chair{ dir = 4 @@ -78742,6 +82164,10 @@ /obj/structure/reagent_dispensers/wall/peppertank/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/security/courtroom) +"wij" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "wik" = ( /obj/machinery/camera/autoname/directional/west, /obj/effect/turf_decal/siding/thinplating_new/dark/end{ @@ -78749,6 +82175,20 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) +"wim" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) +"win" = ( +/obj/machinery/plumbing/input, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard) "wiq" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, @@ -78756,6 +82196,20 @@ /obj/machinery/airalarm/directional/north, /turf/open/openspace, /area/station/maintenance/department/medical) +"wir" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wit" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "wiv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/box, @@ -78775,11 +82229,6 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/virology, /turf/open/floor/iron/dark/textured_large, /area/station/medical/virology) -"wiA" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "wiF" = ( /obj/effect/spawner/random/structure/crate_abandoned, /obj/effect/spawner/random/maintenance, @@ -78789,36 +82238,15 @@ "wiK" = ( /turf/open/floor/carpet/black, /area/station/service/library/private) -"wiO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "CE's Maintenance Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"wiZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/effect/landmark/start/hangover, -/turf/open/openspace, -/area/station/commons/dorms) "wji" = ( /obj/structure/chair/stool/bar/directional/west, /obj/effect/landmark/start/assistant, /turf/open/floor/carpet/orange, /area/station/commons/lounge) -"wju" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/item/mop, -/obj/item/grenade/chem_grenade/cleaner, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "wjv" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -78827,39 +82255,32 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) +"wjx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/flag/terragov/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"wjG" = ( +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "wjH" = ( /obj/structure/stairs/west, /obj/structure/railing{ dir = 1 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wjO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/stack{ - dir = 8 - }, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) +/area/station/ai/satellite/interior) "wjP" = ( /obj/structure/lattice/catwalk, /obj/item/stack/cable_coil, /turf/open/space/basic, /area/station/solars/starboard/fore) -"wjT" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/lobby) "wjV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -78885,6 +82306,30 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"wkb" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/command/bridge) +"wkf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/mod/module/thermal_regulator, +/obj/item/mod/module/plasma_stabilizer, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) +"wkh" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) +"wkn" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "wko" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -78897,9 +82342,6 @@ "wkt" = ( /obj/machinery/shower/directional/east, /obj/structure/curtain, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, /obj/item/soap, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) @@ -78908,24 +82350,39 @@ /obj/effect/spawner/random/engineering/canister, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"wkF" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "wkH" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/service/kitchen/abandoned) -"wkP" = ( -/obj/effect/turf_decal/siding{ - dir = 1 - }, +"wkW" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) +"wkX" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 1; + name = "Mix to Chamber" + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "wlc" = ( /obj/effect/turf_decal/trimline/dark_green/filled/line{ dir = 8 @@ -78945,11 +82402,25 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/pharmacy) -"wlF" = ( +"wlx" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/item/storage/toolbox/fishing, +/obj/item/storage/box/lights/mixed{ + pixel_x = -8; + pixel_y = 1 + }, /obj/structure/lattice/catwalk, -/obj/effect/spawner/random/maintenance/two, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/obj/structure/railing{ + dir = 4 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) +"wlI" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/engineering/tank, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) "wlL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -78966,13 +82437,13 @@ /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) "wlY" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/command/eva) "wma" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -78982,6 +82453,13 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) +"wmg" = ( +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/arrow_ccw, +/turf/open/floor/iron, +/area/station/cargo/sorting) "wmm" = ( /obj/structure/railing{ dir = 4 @@ -78992,40 +82470,30 @@ /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 4 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) -"wmn" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/chair/sofa/corp/right{ +"wmt" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ dir = 1 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wmt" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/item/clothing/head/fedora/white, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/qm) +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "wmw" = ( /obj/structure/bookcase/random/reference, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/science/zoo) -"wmx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/starboard/lesser) "wmy" = ( /obj/machinery/pdapainter{ pixel_y = 2 }, /obj/structure/railing, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/tile, /area/station/command/heads_quarters/hop) "wmC" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -79042,13 +82510,24 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wmR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/iron/dark, /area/station/science/lobby) +"wmS" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"wmX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "wmZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/tank_holder, @@ -79067,6 +82546,13 @@ }, /turf/open/floor/plating, /area/station/construction/mining/aux_base) +"wnm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/iron/dark, +/area/station/engineering/engine_smes) "wny" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -79078,7 +82564,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wnD" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance/three, @@ -79123,19 +82609,13 @@ }, /turf/open/floor/wood/large, /area/station/hallway/primary/central) -"woh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/sign/poster/official/work_for_a_future/directional/west, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/carpet/black, -/area/station/service/library/private) "wom" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/internals, /obj/effect/spawner/random/maintenance, /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, -/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured, /area/station/cargo/warehouse) "wot" = ( @@ -79150,6 +82630,12 @@ /obj/structure/sign/poster/contraband/free_drone/directional/north, /turf/open/openspace, /area/station/maintenance/port/fore) +"woy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 5 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "woA" = ( /obj/structure/ladder, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -79157,32 +82643,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/science/xenobiology) -"woG" = ( -/obj/structure/window/reinforced/plasma/spawner/directional/east, -/obj/item/storage/box/lights/mixed{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/stock_parts/power_store/cell/emproof{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/stock_parts/power_store/cell/emproof{ - pixel_x = -4; - pixel_y = 6 +"woN" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 }, -/obj/item/stock_parts/power_store/cell/emproof{ - pixel_x = -4; - pixel_y = 6 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +/obj/structure/sign/warning/gas_mask/directional/west, +/turf/open/floor/plating/airless, +/area/space/nearstation) "woT" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/item/kirbyplants/random, @@ -79196,15 +82666,23 @@ /turf/open/floor/plating, /area/station/service/kitchen/abandoned) "woX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"wpd" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/machinery/door/window/left/directional/south{ + req_access = list("shipping"); + name = "Chute Access" + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"wpg" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "wps" = ( /turf/open/floor/engine, /area/station/science/xenobiology) @@ -79221,16 +82699,39 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/brig) +"wpK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"wpL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/station/maintenance/starboard) +"wpM" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/command/heads_quarters/ce) "wpW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/red/dim/directional/north, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) -"wqb" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/maintenance/starboard/lesser) +"wqe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/starboard) "wqi" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -79255,18 +82756,12 @@ /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "wqB" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sign/directions/command/directional/north{ - dir = 2 - }, -/obj/structure/sign/directions/security/directional/north{ +/obj/structure/sign/directions/medical/directional/east{ dir = 2; - pixel_y = 38 + pixel_x = 0 }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) +/turf/closed/wall, +/area/station/commons/vacant_room/office) "wqI" = ( /obj/item/cigarette/cigar{ pixel_x = 4 @@ -79277,26 +82772,38 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) "wqN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" }, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/cargo/storage) +"wqU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "wqZ" = ( /obj/machinery/door/airlock{ name = "Prison Showers" }, /turf/open/floor/iron/freezer, /area/station/security/prison/shower) -"wre" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ +"wrb" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"wrd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, -/turf/open/openspace, -/area/station/engineering/break_room) +/turf/open/floor/iron/dark, +/area/station/engineering/storage) "wrf" = ( /obj/machinery/atmospherics/pipe/multiz/yellow/visible{ dir = 8 @@ -79306,45 +82813,35 @@ dir = 1 }, /area/station/science/ordnance/storage) -"wrt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"wrn" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "wrE" = ( /turf/open/floor/glass, /area/station/hallway/secondary/entry) "wrI" = ( /obj/machinery/light/directional/north, -/obj/structure/sign/directions/vault/directional/north{ - pixel_y = 30 - }, -/obj/structure/sign/directions/evac/directional/north{ - pixel_y = 36 +/turf/open/floor/iron/edge{ + dir = 1 }, -/turf/open/floor/iron/large, /area/station/hallway/primary/central) -"wrM" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "wrQ" = ( /turf/open/floor/iron/smooth, /area/station/engineering/main) -"wsc" = ( -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +"wrT" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/upper) "wsm" = ( /obj/structure/lattice/catwalk, /obj/machinery/light/directional/east, /obj/item/wrench, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wsn" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/random/directional/west, @@ -79367,11 +82864,17 @@ }, /turf/open/floor/iron, /area/station/service/cafeteria) -"wsR" = ( -/obj/structure/table, -/obj/item/wrench, -/turf/open/floor/wood, -/area/station/commons/dorms) +"wsP" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) "wsU" = ( /obj/structure/railing{ dir = 10 @@ -79382,10 +82885,6 @@ /obj/structure/table/reinforced, /turf/open/floor/engine/hull, /area/space/nearstation) -"wtd" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/stairs/medium, -/area/station/maintenance/disposal/incinerator) "wti" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/spawner/directional/north, @@ -79406,14 +82905,7 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wtn" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "wts" = ( /obj/structure/railing/corner{ dir = 4 @@ -79426,8 +82918,9 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "wtz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "wtB" = ( /obj/structure/window/reinforced/spawner/directional/south, @@ -79439,6 +82932,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/solars/starboard/aft) +"wtD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/security/detectives_office/private_investigators_office) "wtI" = ( /obj/structure/table, /obj/item/pipe_dispenser, @@ -79464,6 +82967,13 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) +"wtN" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "wtO" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -79472,13 +82982,6 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/space/openspace, /area/space/nearstation) -"wul" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/structure/steam_vent, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "wuo" = ( /obj/structure/table/wood, /obj/machinery/light_switch/directional/north, @@ -79518,15 +83021,16 @@ /turf/open/floor/glass/reinforced, /area/station/solars/starboard/fore) "wuz" = ( -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/warning{ dir = 8 }, -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) "wuG" = ( @@ -79548,34 +83052,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/closed/wall/r_wall, /area/station/science/ordnance/burnchamber) -"wuX" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/yellow/filled/warning/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"wuZ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"wuV" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "wvc" = ( /obj/structure/table/wood/poker, /obj/item/storage/dice, /turf/open/floor/carpet/stellar, /area/station/service/library) -"wve" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "wvi" = ( /obj/effect/turf_decal/tile/dark_green{ dir = 4 @@ -79602,21 +83088,12 @@ /turf/open/floor/iron/checker, /area/station/service/bar) "wvw" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/structure/railing, -/turf/open/floor/iron, -/area/station/cargo/storage) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "wvx" = ( /obj/structure/cable, /turf/open/floor/iron/stairs, @@ -79650,21 +83127,50 @@ }, /turf/open/openspace, /area/station/commons/fitness/recreation) +"wvM" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/station/service/library/printer) +"wvR" = ( +/obj/machinery/power/turbine/core_rotor{ + dir = 8; + mapping_id = "main_turbine" + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"wwd" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/starboard) "wwf" = ( -/obj/machinery/computer/communications, /obj/effect/turf_decal/siding/blue{ dir = 1 }, /obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) -"wwj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/virology) +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "wwl" = ( /obj/structure/railing/corner{ dir = 8 @@ -79684,10 +83190,24 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/station/security/detectives_office) -"www" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +"wwn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/station/maintenance/aft) +"wwt" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "wwx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -79728,7 +83248,7 @@ }, /obj/structure/table/reinforced, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wwG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/optable, @@ -79770,14 +83290,31 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) -"wxq" = ( -/obj/effect/landmark/event_spawn, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) "wxx" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/vacant_room/office) +"wxy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -2 + }, +/obj/structure/rack, +/turf/open/floor/iron, +/area/station/engineering/lobby) "wxE" = ( /obj/machinery/light/floor, /turf/open/floor/iron/dark/textured_half, @@ -79797,18 +83334,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/security/brig) -"wyc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/structure/holosign/barrier/engineering, -/turf/open/openspace, -/area/station/engineering/atmos/project) "wyj" = ( /obj/item/cigbutt, /turf/open/floor/engine/hull, /area/space/nearstation) +"wyl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/filingcabinet, +/obj/effect/spawner/random/bureaucracy/paper, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/upper) "wyq" = ( /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, @@ -79821,6 +83356,13 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) +"wyv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) "wyx" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 @@ -79840,10 +83382,27 @@ }, /turf/open/floor/iron/dark, /area/station/medical/chemistry) -"wyF" = ( -/obj/structure/flora/tree/palm/style_random, -/turf/open/floor/iron/vaporwave, -/area/station/maintenance/starboard/lesser) +"wyA" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_y = 10 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/engineering/lobby) +"wyV" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"wzi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "wzj" = ( /turf/closed/wall/r_wall, /area/station/tcommsat/server) @@ -79870,24 +83429,6 @@ dir = 1 }, /area/station/hallway/secondary/entry) -"wzB" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron, -/area/station/engineering/main) -"wzD" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"wzM" = ( -/obj/machinery/recharge_station, -/turf/open/floor/wood, -/area/station/commons/toilet/restrooms) "wzO" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -79897,11 +83438,13 @@ /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) "wzS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) +/obj/structure/table/reinforced/rglass, +/obj/machinery/keycard_auth{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "wzT" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, @@ -79933,7 +83476,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wAx" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -79948,15 +83491,6 @@ /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) -"wAO" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/storage/toolbox/mechanical/old, -/obj/item/sticker/syndicate{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) "wAQ" = ( /obj/machinery/door/airlock/public/glass{ name = "Circle Center" @@ -79983,11 +83517,10 @@ /obj/effect/turf_decal/siding/red/corner, /turf/open/floor/engine, /area/station/engineering/supermatter) -"wAW" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/condiment, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) +"wAV" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "wAZ" = ( /obj/machinery/light/directional/west, /obj/structure/cable, @@ -79997,6 +83530,11 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"wBd" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname/directional/west, +/turf/open/openspace, +/area/station/commons/dorms) "wBu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -80006,18 +83544,14 @@ /obj/structure/railing{ dir = 4 }, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/red/opposingcorners{ +/obj/structure/chair/plastic{ dir = 1 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, /area/station/hallway/primary/central) "wBJ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -80025,11 +83559,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/medical) -"wBK" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/maintenance/starboard/lesser) "wBO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -80051,6 +83580,24 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"wBT" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"wBY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) "wCa" = ( /obj/effect/turf_decal/arrows/white{ color = "#F7F707"; @@ -80061,27 +83608,6 @@ }, /turf/open/floor/engine/hull, /area/space/nearstation) -"wCj" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/fluff/paper/corner{ - dir = 4 - }, -/obj/structure/fluff/paper/stack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wCn" = ( -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/box{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/openspace, -/area/station/engineering/break_room) "wCv" = ( /obj/structure/table, /obj/item/storage/box{ @@ -80098,47 +83624,34 @@ /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) "wCP" = ( -/obj/effect/turf_decal/siding/white{ - dir = 6 +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/flasher/directional/east{ + id = "hopflash" + }, +/obj/effect/turf_decal/arrows{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "wCZ" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/south, /turf/open/floor/carpet/executive, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wDf" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/commons/fitness/recreation) -"wDh" = ( -/obj/machinery/camera/autoname/directional/east, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/station/engineering/atmos/project) +/area/station/ai/satellite/interior) +"wDp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "wDs" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/rack, /obj/item/clothing/gloves/latex, /turf/open/floor/iron/dark, /area/station/science/lobby) -"wDt" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "wDu" = ( /obj/machinery/light/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -80152,19 +83665,27 @@ }, /turf/open/floor/wood/large, /area/station/medical/psychology) -"wDQ" = ( -/obj/structure/chair/office{ - dir = 8 +"wDz" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) +"wDK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"wDS" = ( -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wDX" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/station/maintenance/starboard) "wDY" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/machinery/door/airlock/public/glass{ @@ -80187,13 +83708,19 @@ /obj/machinery/telecomms/processor/preset_four, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"wEn" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin2"; - name = "Decomissioned Cabin" +"wEg" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fluff/paper/corner, +/obj/structure/fluff/paper/stack, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/structure/fluff/paper/stack{ + desc = "A stack of various papers, absolutely unreadable due to scorch marks and aging."; + dir = 1 }, /turf/open/floor/plating, -/area/station/commons/dorms) +/area/station/maintenance/aft) "wEt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate_loot, @@ -80207,6 +83734,11 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/security/checkpoint/science) +"wEK" = ( +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "wEN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80225,6 +83757,19 @@ dir = 1 }, /area/station/medical/surgery) +"wES" = ( +/obj/effect/spawner/random/decoration/showcase, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wEU" = ( +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "wEX" = ( /obj/structure/sign/poster/contraband/hacking_guide/directional/east, /turf/open/floor/plating, @@ -80248,12 +83793,19 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) -"wFj" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/reagent_containers/cup/soda_cans/pwr_game, -/obj/item/radio/intercom/directional/north, +"wFi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/pen/red{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/wood, -/area/station/commons/dorms) +/area/station/maintenance/aft) "wFk" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -80318,19 +83870,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/security/courtroom) -"wGi" = ( -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "wGD" = ( /obj/effect/turf_decal/trimline/purple/arrow_cw{ dir = 8 @@ -80345,7 +83884,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wGN" = ( /obj/machinery/light/warm/dim/directional/south, /obj/item/kirbyplants/potty, @@ -80355,6 +83894,10 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) +"wGP" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "wGS" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -80391,6 +83934,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"wHw" = ( +/obj/machinery/door/airlock/mining{ + name = "Deliveries" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/supply/shipping, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den, +/turf/open/floor/iron, +/area/station/cargo/sorting) "wHx" = ( /obj/machinery/camera/directional/east, /turf/open/openspace, @@ -80401,6 +83959,23 @@ }, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) +"wHz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/port/fore) +"wHB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/engineering/engine_smes) "wHE" = ( /obj/effect/turf_decal/siding/dark{ dir = 10 @@ -80409,7 +83984,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wHK" = ( /turf/open/floor/engine/hull/reinforced/air, /area/station/maintenance/port) @@ -80431,26 +84006,32 @@ "wIf" = ( /obj/machinery/button/door/directional/east{ id = "qm_cargobay"; - name = "Cargo Bay Door Control"; - pixel_x = -24 + name = "Cargo Bay Inner Shutters"; + pixel_x = -24; + dir = 8 }, /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 }, -/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) -"wIg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +"wIi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) -"wIl" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"wIo" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin4"; + name = "Cabin 5" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) "wIw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -80459,19 +84040,10 @@ }, /turf/open/floor/wood, /area/station/service/abandoned_gambling_den) -"wIK" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/station/commons/dorms) -"wIS" = ( -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"wIW" = ( -/obj/structure/ladder, +"wIN" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/area/station/maintenance/department/crew_quarters/dorms) "wJn" = ( /obj/machinery/door/airlock/command{ name = "E.V.A. Storage" @@ -80479,8 +84051,9 @@ /obj/effect/mapping_helpers/airlock/access/all/command/eva, /obj/effect/landmark/navigate_destination/eva, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wJs" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -80495,12 +84068,6 @@ /obj/machinery/holopad, /turf/open/floor/wood, /area/station/service/chapel) -"wJF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/light/directional/south, -/obj/structure/tank_dispenser, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) "wJI" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/siding/dark{ @@ -80511,16 +84078,7 @@ network = list("aicore") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"wJJ" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"wJU" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) +/area/station/ai/satellite/chamber) "wJV" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -80554,8 +84112,11 @@ "wKi" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "wKl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -80574,6 +84135,19 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) +"wKx" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/fore) +"wKC" = ( +/obj/structure/reagent_dispensers/plumbed, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) "wKD" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -80585,49 +84159,28 @@ }, /turf/open/floor/iron/dark, /area/station/security/range) -"wKI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"wKJ" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 4 - }, -/turf/open/floor/glass/reinforced/plasma, -/area/station/engineering/atmos/project) "wKR" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/carpet, /area/station/service/chapel) -"wKV" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) +"wKS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "wLc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/command/corporate_showroom) -"wLf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/storage/box/lights/mixed{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wLg" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) "wLi" = ( /obj/machinery/holopad, /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) +"wLm" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/command/bridge) "wLv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -80666,16 +84219,15 @@ /turf/open/floor/engine/hull, /area/space/nearstation) "wLV" = ( -/obj/machinery/button/door/directional/west{ - id = "hosprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 8; - pixel_y = 25 - }, /obj/machinery/holopad/secure, /obj/machinery/keycard_auth/wall_mounted/directional/north{ pixel_x = -6 }, +/obj/machinery/button/door/directional/north{ + pixel_x = 7; + name = "Privacy Shutters Control"; + id = "hosprivacy" + }, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) "wMc" = ( @@ -80684,10 +84236,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/port) -"wMi" = ( -/obj/structure/sign/warning/radiation/rad_area, -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) "wMn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -80703,11 +84251,11 @@ }, /turf/open/floor/iron/large, /area/station/hallway/primary/central) -"wMu" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) +"wMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "wMD" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/poster/contraband/clown/directional/south, @@ -80727,6 +84275,19 @@ /obj/machinery/vending/snack/blue, /turf/open/floor/iron, /area/station/construction/storage_wing) +"wMO" = ( +/obj/effect/turf_decal/tile/dark/half{ + dir = 1 + }, +/obj/machinery/meter{ + name = "C02 meter" + }, +/obj/machinery/atmospherics/pipe/multiz/yellow/visible{ + name = "CO2 Multideck Adapter"; + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "wMS" = ( /obj/item/kirbyplants/random, /obj/machinery/firealarm/directional/east, @@ -80745,16 +84306,6 @@ }, /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) -"wMZ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "wNi" = ( /obj/effect/spawner/random/vending/colavend, /obj/structure/disposalpipe/segment{ @@ -80769,6 +84320,10 @@ /obj/structure/cable, /turf/open/floor/iron/sepia, /area/station/hallway/secondary/construction) +"wNp" = ( +/obj/item/binoculars, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/aft/upper) "wNq" = ( /obj/structure/cable, /obj/machinery/computer/records/security{ @@ -80789,27 +84344,47 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) "wNw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/obj/machinery/camera/autoname/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/gun/energy/recharge/kinetic_accelerator{ + name = "the QM's Accelerator"; + pixel_y = 6 + }, +/obj/item/clothing/head/fedora/white, +/obj/effect/turf_decal/siding/dark/end, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/qm) "wNC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/item/radio/intercom/directional/east, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, /area/station/science/server) +"wNJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) "wNL" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/commons/storage/tools) +"wNN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) "wNO" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured_half, /area/station/science/ordnance) +"wNR" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "wOb" = ( /obj/structure/table/wood/fancy, /obj/effect/spawner/random/decoration/statue{ @@ -80840,16 +84415,11 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/command/bridge) +/area/station/command/meeting_room/council) "wOx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/station/maintenance/starboard/aft) -"wOG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "wOK" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -80878,10 +84448,31 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"wPj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/iron, +/area/station/engineering/lobby) "wPl" = ( /obj/effect/decal/cleanable/blood/oil/slippery, /turf/open/floor/iron/dark/smooth_large, /area/station/maintenance/port) +"wPp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"wPt" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) "wPG" = ( /turf/open/floor/carpet/black, /area/station/service/theater) @@ -80889,17 +84480,9 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"wPP" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "wPV" = ( /turf/closed/wall, /area/station/security/detectives_office/private_investigators_office) -"wPX" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/maintenance/port) "wQc" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -80932,6 +84515,20 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"wQt" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wQu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/lobby) "wQw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, @@ -80956,6 +84553,11 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) +"wQA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard) "wQD" = ( /obj/machinery/light/small/directional/east, /obj/item/solar_assembly, @@ -80999,14 +84601,11 @@ }, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"wRi" = ( +"wRb" = ( /obj/effect/turf_decal/siding/wood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/tile, -/area/station/security/detectives_office/private_investigators_office) +/obj/machinery/holopad, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "wRj" = ( /obj/item/storage/fancy/cigarettes/cigpack_shadyjims, /obj/structure/rack, @@ -81021,11 +84620,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"wRs" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/space_heater, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/upper) "wRt" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -81055,6 +84649,31 @@ /obj/structure/cable, /turf/open/floor/iron/grimy, /area/station/security/interrogation) +"wRL" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/trash/can{ + pixel_x = -8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"wRQ" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) +"wRT" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "wSa" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -81062,12 +84681,25 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wSj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet, /area/station/service/abandoned_gambling_den) +"wSn" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/effect/landmark/navigate_destination/dorms, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) "wSs" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/iron/smooth, @@ -81086,14 +84718,14 @@ }, /turf/open/floor/iron, /area/station/science/research) -"wSE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump" +"wSD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/chair, +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) +/turf/open/floor/iron, +/area/station/maintenance/starboard) "wSP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/autoname/directional/north, @@ -81102,10 +84734,6 @@ }, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"wSW" = ( -/obj/structure/bonfire/prelit, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "wSZ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -81120,31 +84748,12 @@ /turf/open/floor/plating, /area/station/maintenance/port) "wTn" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" +/obj/machinery/computer/cargo/request{ + dir = 1 }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/effect/turf_decal/tile/brown/fourcorners, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /turf/open/floor/iron, -/area/station/cargo/storage) -"wTr" = ( -/obj/structure/railing, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -12; - pixel_y = 7 - }, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/structure/cable, -/turf/open/floor/wood/large, -/area/station/service/library/private) +/area/station/hallway/primary/starboard) "wTx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -81152,7 +84761,9 @@ /obj/structure/disposalpipe/junction/flip{ dir = 8 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 4 + }, /area/station/hallway/primary/central) "wTE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -81175,6 +84786,14 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/maintenance/port/aft) +"wTP" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/structure/closet/secure_closet/medical3, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/storage) "wTR" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -81188,8 +84807,14 @@ /area/station/security/office) "wTU" = ( /obj/structure/chair/comfy/brown, -/obj/structure/cable, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = -5 + }, +/turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) "wUb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ @@ -81198,29 +84823,25 @@ /obj/effect/turf_decal/trimline/green/filled/mid_joiner{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge{ + dir = 1 + }, /area/station/hallway/primary/central) +"wUh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/airless, +/area/station/maintenance/starboard/aft) "wUk" = ( /obj/structure/ladder, /turf/open/floor/engine/hull, /area/space/nearstation) -"wUm" = ( -/obj/effect/spawner/random/structure/chair_flipped{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) "wUu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /obj/structure/grille/broken, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"wUI" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "wVd" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, @@ -81228,6 +84849,19 @@ "wVf" = ( /turf/closed/wall, /area/station/security/prison/rec) +"wVh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"wVu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "wVx" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -81273,13 +84907,35 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"wVX" = ( -/obj/structure/railing{ +"wVP" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Testing Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"wVY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/maintenance/aft) +"wWg" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) +"wWi" = ( +/obj/effect/turf_decal/stripes/red/end, +/obj/effect/turf_decal/siding/red/end, +/turf/open/floor/iron/textured_corner{ dir = 1 }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/break_room) +/area/station/command/gateway) "wWk" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -81318,6 +84974,14 @@ }, /turf/open/floor/carpet, /area/station/service/lawoffice) +"wWM" = ( +/obj/effect/spawner/random/techstorage/command_all, +/obj/structure/rack, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "wWO" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input, /turf/open/floor/engine/n2, @@ -81330,14 +84994,14 @@ /turf/open/floor/iron/white/smooth_large, /area/station/hallway/secondary/entry) "wWV" = ( -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/obj/effect/turf_decal/arrows{ - dir = 8 +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "Privacy Shutters" }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/primary/central) +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) "wWX" = ( /obj/structure/railing/corner{ dir = 1 @@ -81377,6 +85041,14 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"wXj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "wXk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/smooth_large, @@ -81431,18 +85103,34 @@ /area/station/medical/pharmacy) "wXM" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 + dir = 1 }, -/obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/storage) +"wXQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible, +/obj/machinery/meter{ + name = "Mix Meter" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "wXU" = ( -/obj/item/bedsheet/captain, -/obj/structure/bed, -/obj/effect/landmark/start/captain, -/turf/open/floor/wood, +/obj/machinery/newscaster/directional/south, +/obj/machinery/suit_storage_unit/captain, +/obj/item/mod/module/longfall{ + pixel_x = 8 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) +"wYb" = ( +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "wYk" = ( /obj/effect/turf_decal/siding/dark/end{ dir = 8 @@ -81519,10 +85207,9 @@ /area/station/commons/lounge) "wYS" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/plating, -/area/station/maintenance/starboard/central) +/area/station/cargo/storage) "wYU" = ( /obj/item/radio/intercom/directional/south, /obj/effect/turf_decal/siding/thinplating_new/dark, @@ -81531,25 +85218,14 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"wZb" = ( -/obj/effect/turf_decal/stripes/line{ +"wYX" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"wZd" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "wZg" = ( /obj/structure/toilet{ dir = 8; @@ -81575,27 +85251,24 @@ /obj/machinery/light/directional/north, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"wZk" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/commons/dorms) "wZn" = ( /obj/machinery/light/directional/east, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wZy" = ( /obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) -"wZA" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/turf/open/floor/iron/edge{ + dir = 8 }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/central) "wZE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -81618,11 +85291,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/freezer, /area/station/commons/toilet/auxiliary) -"xah" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/aft) +"xae" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/indigo, +/turf/open/space/basic, +/area/space/nearstation) "xaj" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -81661,6 +85334,22 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) +"xau" = ( +/obj/machinery/light/warm/dim/directional/east, +/obj/structure/table, +/obj/item/clothing/gloves/cargo_gauntlet, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 3 + }, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "xaz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -81671,25 +85360,6 @@ /obj/effect/landmark/start/medical_doctor, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"xaP" = ( -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/stamp{ - pixel_x = -7; - pixel_y = 2 - }, -/turf/open/floor/wood/large, -/area/station/service/library/private) "xaQ" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -81708,24 +85378,16 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/security/prison/mess) +"xba" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/virology) "xbm" = ( /obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/construction) -"xbp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"xbz" = ( -/obj/structure/chair/sofa/left/brown{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/wood, -/area/station/commons/dorms) "xbF" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ @@ -81733,22 +85395,9 @@ }, /turf/open/space/basic, /area/space/nearstation) -"xbI" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Oxygen Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos/upper) "xbL" = ( /turf/open/floor/iron/dark, /area/station/service/chapel) -"xbP" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/engineering/atmos/project) "xbR" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -81760,12 +85409,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xbZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/ladder, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "xca" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 @@ -81780,10 +85423,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"xce" = ( -/obj/machinery/light/warm/dim/directional/west, -/turf/open/openspace, -/area/station/hallway/primary/central) "xci" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/openspace, @@ -81797,6 +85436,11 @@ /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) +"xcq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/smooth, +/area/station/science/robotics) "xcx" = ( /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/smooth_large, @@ -81809,19 +85453,12 @@ /obj/structure/closet/secure_closet/evidence, /turf/open/floor/iron/dark, /area/station/security/evidence) -"xcV" = ( -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +"xcZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible, +/obj/machinery/light/directional/south, +/obj/structure/sign/warning/radiation/rad_area/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xda" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -81859,13 +85496,16 @@ /area/station/service/hydroponics) "xdG" = ( /obj/structure/cable, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xdK" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 6 @@ -81873,22 +85513,20 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) -"xdP" = ( -/obj/structure/table, -/obj/item/t_scanner{ - pixel_y = 8 - }, -/obj/item/multitool{ - pixel_x = -5 - }, -/obj/item/multitool{ - pixel_x = 5 +"xdS" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmoslowersm" }, /turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) +/area/station/engineering/atmos/office) "xdT" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/vending/coffee, @@ -81896,21 +85534,16 @@ /turf/open/floor/iron, /area/station/science/lab) "xdU" = ( -/obj/structure/railing/corner, -/obj/structure/table/glass, -/obj/item/assembly/flash/handheld{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/cigarette/cigar{ - pixel_x = -6; - pixel_y = 5 +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 }, -/obj/effect/turf_decal/tile/red{ - dir = 1 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xdV" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -81929,6 +85562,7 @@ /obj/item/pai_card{ pixel_y = 5 }, +/obj/effect/turf_decal/siding/green, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) "xej" = ( @@ -81947,6 +85581,11 @@ /obj/machinery/light/directional/west, /turf/open/openspace, /area/station/medical/medbay/central) +"xex" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "xeD" = ( /obj/machinery/airalarm/directional/west, /obj/structure/bed/dogbed/runtime, @@ -81955,11 +85594,6 @@ /obj/machinery/light/small/dim/directional/north, /turf/open/floor/carpet/cyan, /area/station/command/heads_quarters/cmo) -"xeI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) "xeM" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -81967,20 +85601,13 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "xeN" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/button/door/directional/east{ - id = "cargounload"; - name = "Loading Doors"; - pixel_y = 6 +/obj/machinery/conveyor{ + dir = 5; + id = "cargoload" }, -/obj/machinery/button/door/directional/east{ - id = "cargoload"; - name = "Loading Doors"; - pixel_y = -6 +/obj/effect/turf_decal/stripes/end{ + dir = 8 }, -/obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/cargo/storage) "xeQ" = ( @@ -82006,26 +85633,21 @@ /obj/structure/chair/office, /turf/open/floor/iron/dark/smooth_large, /area/station/tcommsat/server) -"xfa" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - pixel_x = 8 - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, +"xeY" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) -"xfj" = ( -/obj/structure/railing{ - dir = 4 +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/maintenance/starboard) +"xfi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, -/area/station/engineering/lobby) +/area/station/maintenance/starboard/aft/upper) "xfn" = ( /obj/effect/decal/cleanable/glitter{ color = "ff8080" @@ -82036,23 +85658,38 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"xfr" = ( -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - name = "decommissioned sleeper" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct/directional/east{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "xfs" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"xfy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/engineering/lobby) +"xfQ" = ( +/obj/effect/decal/cleanable/crayon{ + icon_state = "body"; + name = "body"; + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/ammo_casing/spent{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "xfV" = ( /obj/structure/railing/corner{ dir = 8 @@ -82065,19 +85702,9 @@ dir = 1 }, /obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/light/floor, /turf/open/floor/iron/white, /area/station/hallway/secondary/entry) -"xfX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"xgb" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/cup/soda_cans/monkey_energy, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) "xgC" = ( /obj/machinery/light_switch{ pixel_x = -9; @@ -82091,7 +85718,35 @@ name = "Unit 2" }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"xgK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured, +/area/station/commons/dorms) +"xgP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/elevator/directional/east{ + id = "catwalk_atmos"; + name = "Elevator Button" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) +"xgR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "xgT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -82116,11 +85771,12 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) -"xhr" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/carpet, -/area/station/maintenance/starboard/lesser) +"xhv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/closet/emcloset, +/obj/effect/spawner/random/maintenance, +/turf/open/openspace, +/area/station/maintenance/starboard/aft/upper) "xhF" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark/textured_corner{ @@ -82149,20 +85805,28 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) +"xhV" = ( +/obj/item/melee/flyswatter{ + pixel_x = -2 + }, +/obj/item/toy/plush/lizard_plushie/green{ + name = "Steals-The-Cheese"; + pixel_x = 8; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/dark_green/opposingcorners, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/lizard/directional/west, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "xhX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) -"xib" = ( -/obj/structure/lattice/catwalk, -/obj/item/toy/plush/lizard_plushie/green{ - name = "Hides-In-Rafters" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "xif" = ( /turf/open/floor/iron/textured_large, /area/station/medical/abandoned) @@ -82177,17 +85841,25 @@ /obj/effect/turf_decal/trimline/yellow/filled/corner, /obj/structure/sign/departments/telecomms/directional/south, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xiy" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cargo Lockdown Shutters"; + id = "cargolockdown"; + dir = 8 }, -/turf/open/floor/iron, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/station/cargo/sorting) "xiQ" = ( -/obj/effect/turf_decal/tile/red/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xiR" = ( /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/plating, @@ -82213,10 +85885,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/circuit/red, /area/station/maintenance/hallway/abandoned_recreation) -"xjc" = ( -/obj/effect/landmark/event_spawn, -/turf/open/openspace, -/area/station/science/explab) "xjm" = ( /obj/item/vending_refill/donksnackvendor{ pixel_y = 15 @@ -82236,36 +85904,18 @@ /turf/open/floor/plating, /area/station/maintenance/port/greater) "xjr" = ( -/obj/machinery/modular_computer/preset/id{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/secure_safe/caps_spare{ - pixel_x = 35 +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 }, -/obj/effect/turf_decal/tile/green/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xjz" = ( /turf/open/floor/plating/elevatorshaft, /area/station/science/robotics) -"xjK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/filingcabinet, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"xjL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "xjR" = ( /obj/structure/railing/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -82293,15 +85943,39 @@ }, /turf/open/floor/iron/dark, /area/station/science/cytology) +"xkc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/engineering/atmos/office) "xkn" = ( /obj/structure/railing/corner, /obj/structure/cable, /turf/open/floor/engine/hull/air, /area/station/maintenance/port) "xky" = ( -/obj/structure/chair, -/turf/open/floor/engine/hull, -/area/space/nearstation) +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/cargo/storage) +"xkG" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"xkJ" = ( +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/storage) "xkL" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -82319,15 +85993,10 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) "xkV" = ( -/obj/machinery/camera/motion{ - c_tag = "Armory - Internal"; - dir = 8 - }, -/obj/effect/turf_decal/caution{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/rd) "xkZ" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -82353,6 +86022,12 @@ }, /turf/open/openspace, /area/station/hallway/primary/central) +"xlt" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/turf/open/floor/iron, +/area/station/maintenance/starboard) "xlw" = ( /obj/structure/bed/dogbed{ name = "spider bed" @@ -82361,13 +86036,6 @@ /obj/structure/flora/bush/flowers_br, /turf/open/floor/grass, /area/station/command/heads_quarters/hos) -"xlH" = ( -/obj/structure/window/reinforced/tinted/spawner/directional/east, -/obj/machinery/shower/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/commons/dorms) "xlL" = ( /obj/effect/turf_decal/delivery, /obj/machinery/vending/coffee, @@ -82379,22 +86047,6 @@ /obj/structure/broken_flooring/corner/always_floorplane/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"xmb" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"xmd" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "SM_shutters"; - name = "Supermatter Radiation Shutters" - }, -/obj/machinery/atmospherics/components/binary/pump/off/cyan/visible, -/obj/effect/turf_decal/trimline/blue, -/turf/open/floor/plating, -/area/station/engineering/supermatter) "xme" = ( /obj/structure/flora/bush/large/style_2, /obj/structure/flora/rock/pile/style_2, @@ -82421,10 +86073,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/brig) -"xmq" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) "xms" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -82438,15 +86086,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/command) -"xmx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "xmA" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/camera/autoname/directional/south, @@ -82462,12 +86101,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"xmQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "xne" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -82506,6 +86139,14 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"xnL" = ( +/obj/structure/cable, +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "xnP" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 8 @@ -82536,12 +86177,6 @@ dir = 4 }, /area/station/service/chapel) -"xoh" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/engine, -/area/station/engineering/break_room) "xol" = ( /obj/effect/turf_decal/delivery, /obj/machinery/airalarm/directional/north, @@ -82571,28 +86206,23 @@ /obj/effect/turf_decal/trimline/purple/filled/mid_joiner, /turf/open/floor/iron/dark/smooth_large, /area/station/science/xenobiology) -"xoH" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/light_switch/directional/north, -/turf/open/openspace, -/area/station/engineering/break_room) "xoT" = ( /obj/structure/barricade/wooden, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/central) -"xoZ" = ( -/obj/effect/turf_decal/siding{ +"xpd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ dir = 1 }, -/obj/effect/turf_decal/trimline/white/corner{ - dir = 8 +/obj/structure/railing{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/tile/brown/full, -/turf/open/floor/iron/large, -/area/station/maintenance/starboard/lesser) +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xpj" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -82606,47 +86236,20 @@ /obj/structure/closet/secure_closet/security/sec, /turf/open/floor/iron/dark/smooth_large, /area/station/security/lockers) -"xpn" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"xpq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/morgue) -"xpr" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"xpv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/structure/steam_vent, +"xpo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, /turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) +"xpq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) "xpw" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/engine/hull/air, /area/station/hallway/secondary/entry) -"xpF" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "xpV" = ( /obj/effect/landmark/start/bartender, /obj/effect/turf_decal/tile/dark_green{ @@ -82672,12 +86275,6 @@ }, /turf/open/floor/wood, /area/station/hallway/secondary/service) -"xqb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) "xqd" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -82687,11 +86284,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/openspace, /area/station/hallway/secondary/exit/departure_lounge) -"xqi" = ( -/obj/structure/cable, -/obj/item/airlock_painter/decal, -/turf/open/floor/plating, -/area/station/maintenance/port) "xqk" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -82701,16 +86293,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/lobby) -"xqm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 6 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/openspace, -/area/station/engineering/lobby) "xqo" = ( /obj/effect/decal/cleanable/ash{ beauty = 50; @@ -82726,10 +86308,6 @@ "xqs" = ( /turf/closed/wall/r_wall, /area/station/engineering/engine_smes) -"xqy" = ( -/obj/structure/stairs/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "xqD" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -82737,30 +86315,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/station/medical/chemistry) -"xqE" = ( -/obj/machinery/camera/autoname/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xqG" = ( -/obj/structure/sign/poster/contraband/communist_state/directional/south, -/obj/item/ammo_casing/spent{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "xqK" = ( /obj/structure/table, /obj/item/instrument/harmonica, @@ -82829,6 +86383,18 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/station/hallway/primary/central) +"xrw" = ( +/obj/item/stack/sheet/iron{ + amount = 34 + }, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) "xrx" = ( /obj/structure/lattice/catwalk, /turf/open/space/openspace, @@ -82867,13 +86433,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"xrJ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) +"xrI" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/engine_smes) "xrP" = ( /obj/structure/lattice/catwalk, /obj/structure/table/reinforced, @@ -82882,6 +86447,12 @@ }, /turf/open/openspace, /area/station/security/checkpoint/customs) +"xrU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "xrX" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -82905,6 +86476,23 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/cytology) +"xsq" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/fitness/recreation) +"xst" = ( +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos/upper) "xsv" = ( /obj/machinery/light/cold/directional/south, /turf/open/floor/engine, @@ -82929,6 +86517,15 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"xsF" = ( +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "catwalk_engi" + }, +/obj/structure/transport/linear{ + radial_travel = 0 + }, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) "xsJ" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -82943,40 +86540,69 @@ }, /turf/open/floor/iron, /area/station/science/explab) +"xsK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "N2O to Mix" + }, +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xsS" = ( /turf/closed/wall/r_wall, /area/station/engineering/transit_tube) "xsU" = ( -/obj/structure/railing{ - dir = 9 +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" }, -/turf/open/openspace, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, /area/station/cargo/storage) "xta" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"xtf" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/sign/directions/engineering/directional/east{ - dir = 1 +"xts" = ( +/obj/structure/closet/crate/bin, +/obj/structure/sign/poster/official/random/directional/south, +/obj/machinery/button/door/directional/east{ + id = "Cabin5"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/turf/open/floor/iron/dark/smooth_large, +/area/station/commons/dorms) +"xtA" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xtC" = ( -/obj/structure/chair{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 +/obj/machinery/light/floor, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"xtE" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 }, +/obj/effect/landmark/start/depsec/engineering, /turf/open/floor/iron/dark, -/area/station/hallway/primary/central) +/area/station/security/checkpoint/engineering) "xtG" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -82995,18 +86621,14 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/space/basic, /area/station/maintenance/solars/port/aft) +"xtW" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/east, +/turf/open/space/openspace, +/area/space/nearstation) "xut" = ( /turf/closed/wall, /area/station/service/abandoned_gambling_den) -"xuu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/lesser) -"xuy" = ( -/obj/effect/spawner/random/trash/hobo_squat, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "xuz" = ( /obj/machinery/door/poddoor/shutters/preopen{ dir = 1; @@ -83016,38 +86638,34 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/medical/pharmacy) -"xuB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "xuF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) -"xuG" = ( -/obj/machinery/firealarm/directional/west, +"xuM" = ( /obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) +/obj/machinery/requests_console/directional/south{ + department = "Engineering"; + name = "Engineering Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "xuP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) -"xuQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/turf/open/floor/wood/large, -/area/station/medical/psychology) -"xuU" = ( -/obj/machinery/door/airlock{ - name = "Abandoned Chapel" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) "xuV" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -83081,18 +86699,33 @@ dir = 4 }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) -"xvv" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/chamber) "xvw" = ( -/obj/machinery/door/window/right/directional/east{ - name = "Captain's Desk"; - req_access = list("captain") +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/turf/open/floor/wood, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/melee/chainofcommand{ + pixel_y = -12 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/stamp/head/captain{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "xvy" = ( /obj/structure/table, @@ -83111,48 +86744,34 @@ /obj/machinery/shower/directional/west, /turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/central) -"xvC" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ +"xvN" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/stripes{ dir = 8 }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"xvD" = ( -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"xvH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) -"xvN" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/carpet, -/area/station/ai_monitored/command/storage/eva) +/turf/open/floor/iron/textured, +/area/station/command/eva) "xwg" = ( /obj/structure/railing/corner/end, /obj/machinery/light/cold/directional/north, /turf/open/floor/iron/dark/textured_large, /area/station/science/genetics) +"xwk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "xwn" = ( /obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/engine/hull, /area/space/nearstation) -"xwu" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) "xwB" = ( /obj/structure/fake_stairs/directional/east, /obj/structure/railing, @@ -83163,15 +86782,6 @@ }, /turf/open/floor/iron/smooth, /area/station/science/robotics) -"xwC" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) "xwF" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, @@ -83194,19 +86804,28 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/fore) -"xxd" = ( -/obj/effect/turf_decal/tile/dark_green{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) "xxe" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/openspace, /area/station/hallway/primary/fore) +"xxh" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"xxr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/heads_quarters/ce) +"xxs" = ( +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/maintenance/starboard/central/upper) "xxz" = ( /obj/structure/sign/warning/gas_mask/directional/west, /obj/structure/table/reinforced/plasmarglass, @@ -83230,6 +86849,11 @@ }, /turf/open/floor/engine, /area/station/medical/chemistry) +"xxE" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xxF" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 4 @@ -83255,14 +86879,33 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"xym" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "xyn" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - name = "AI Upload Turret Control"; - icon_state = "control_stun" + control_area = "/area/station/ai/upload/chamber"; + name = "AI Upload Turret Control" }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) +"xyt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/spawner/random/engineering/vending_restock/common, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) "xyz" = ( /turf/open/openspace, /area/station/medical/virology) @@ -83273,6 +86916,14 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/glass, /area/station/medical/patients_rooms/room_a) +"xyD" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/main) "xyF" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/service/hydroponics) @@ -83283,11 +86934,14 @@ }, /turf/open/space/basic, /area/space/nearstation) -"xzm" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/table, +"xzl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard) "xzn" = ( /obj/machinery/light/red/directional/south, /obj/structure/window/reinforced/plasma/spawner/directional/east, @@ -83296,16 +86950,11 @@ }, /turf/open/floor/engine, /area/station/medical/chemistry) -"xzo" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"xzr" = ( +/obj/structure/table/wood, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "xzy" = ( /turf/closed/wall, /area/station/science/genetics) @@ -83330,20 +86979,6 @@ dir = 4 }, /area/station/science/robotics/lab) -"xzT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/requests_console/directional/south{ - department = "Engineering"; - name = "Engineering Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/assistance, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/machinery/meter, -/turf/open/floor/catwalk_floor, -/area/station/engineering/atmos/upper) "xzX" = ( /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron, @@ -83353,13 +86988,37 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/hallway/secondary/service) +"xAm" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/airlock_painter, +/obj/item/storage/belt/utility, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/gloves/color/fyellow, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "xAn" = ( /obj/machinery/shower/directional/west, /obj/effect/turf_decal/trimline/blue/end{ dir = 8 }, /turf/open/floor/iron/freezer, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"xAr" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 4; + name = "Mix to Recycle" + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xAs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /obj/machinery/door/window/brigdoor/left/directional/north{ @@ -83378,9 +87037,16 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/hallway/secondary/service) -"xAI" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"xAC" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "xAN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue/full, @@ -83395,17 +87061,6 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/space/openspace, /area/space/nearstation) -"xBa" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/security/telescreen/ce/directional/west, -/turf/open/floor/iron/dark/small, -/area/station/command/heads_quarters/ce) "xBd" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/lattice/catwalk, @@ -83440,7 +87095,7 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xBr" = ( /obj/structure/closet/crate/coffin, /obj/item/toy/plush/lizard_plushie/green{ @@ -83448,30 +87103,28 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"xBt" = ( -/obj/machinery/camera/autoname/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) +"xBC" = ( +/obj/structure/safe, +/obj/item/storage/fancy/pickles_jar, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xBE" = ( /turf/closed/wall/r_wall, /area/station/engineering/supermatter) -"xBO" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/chaplain, -/obj/structure/disposalpipe/segment{ - dir = 4 +"xBP" = ( +/obj/item/trash/can{ + pixel_x = -8 }, -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"xBQ" = ( +/turf/open/floor/engine/hull/air, +/area/station/commons/dorms) +"xBU" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ - dir = 9 + dir = 1 }, -/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/corner, /turf/open/openspace, -/area/station/engineering/atmos/project) +/area/station/engineering/supermatter/room/upper) "xBZ" = ( /obj/effect/turf_decal/siding/dark{ dir = 8 @@ -83480,7 +87133,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xCe" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -83488,6 +87141,17 @@ /obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron, /area/station/cargo/storage) +"xCj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) "xCq" = ( /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ dir = 4 @@ -83499,12 +87163,10 @@ dir = 4 }, /area/station/hallway/secondary/exit/departure_lounge) -"xCt" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, +"xCs" = ( +/obj/structure/table/glass, /turf/open/floor/wood, -/area/station/commons/fitness/recreation) +/area/station/maintenance/starboard) "xCu" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83522,14 +87184,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) -"xCx" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) "xCz" = ( /obj/structure/bed/pod{ desc = "An old medical bed, just waiting for replacement with something up to date."; @@ -83541,48 +87195,28 @@ /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) "xCI" = ( -/obj/structure/railing, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xCJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/door/firedoor, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xCK" = ( /turf/open/openspace, /area/station/security/interrogation) "xCO" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/east{ - name = "Cargo Desk"; - req_access = list("cargo") +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 }, -/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/effect/turf_decal/trimline/brown/arrow_ccw, /turf/open/floor/iron, -/area/station/cargo/storage) +/area/station/hallway/primary/starboard) "xCQ" = ( /obj/structure/lattice/catwalk, /obj/structure/ladder, /obj/item/radio/intercom/directional/east, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xCS" = ( /obj/item/clothing/suit/jacket/straight_jacket, /obj/structure/closet, @@ -83606,23 +87240,54 @@ /turf/open/floor/iron/dark/textured_half{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"xCV" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) "xCW" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"xDp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"xDe" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste to Filter"; + dir = 4 + }, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"xDq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter/monitored/waste_loop, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"xDw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central/upper) "xDB" = ( /obj/machinery/computer/dna_console{ dir = 1 @@ -83633,15 +87298,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xDR" = ( -/obj/machinery/wall_healer/directional/south, -/turf/open/floor/iron/large, -/area/station/hallway/primary/central) "xDW" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -83674,6 +87335,13 @@ /obj/effect/landmark/start/bitrunner, /turf/open/floor/iron/dark/textured_half, /area/station/cargo/bitrunning/den) +"xEh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/engineering/lobby) "xEm" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -83684,15 +87352,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"xEo" = ( -/obj/structure/railing/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) "xEr" = ( /obj/item/radio/intercom/directional/north, /turf/open/floor/plating, /area/station/maintenance/disposal) +"xEt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "xEB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -83700,10 +87368,21 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"xED" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "xEF" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input, /turf/open/floor/engine/plasma, /area/station/engineering/atmos/upper) +"xEJ" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/upper) "xEL" = ( /obj/structure/rack, /obj/item/melee/skateboard{ @@ -83722,6 +87401,15 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/port) +"xEM" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "Chief Engineers Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) "xEO" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 6 @@ -83747,6 +87435,23 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) +"xEW" = ( +/obj/structure/rack, +/obj/item/analyzer, +/obj/item/wrench, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"xFg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"xFh" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/station/medical/surgery) "xFj" = ( /obj/effect/turf_decal/tile/blue/full, /obj/effect/turf_decal/tile/dark/full, @@ -83776,21 +87481,6 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) -"xFw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xFA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/athletic_mixed, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "xFH" = ( /obj/machinery/light/directional/east, /obj/structure/cable, @@ -83799,11 +87489,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/evidence) -"xFJ" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "xFM" = ( /obj/structure/plaque/static_plaque/golden/commission/birdboat{ pixel_y = 32 @@ -83827,21 +87512,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"xFS" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/machinery/door/airlock/command{ - name = "Abandoned Lab" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) +"xFN" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine, +/area/station/engineering/atmos/upper) "xFT" = ( /turf/open/floor/iron/stairs, /area/station/maintenance/starboard/aft) +"xGb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/water/no_planet_atmos, +/area/station/maintenance/starboard/fore) "xGe" = ( /obj/structure/railing/corner, /turf/open/openspace, @@ -83859,16 +87544,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) -"xGG" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "xGL" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -83881,6 +87556,17 @@ }, /turf/open/floor/iron, /area/station/science/explab) +"xGN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/station/maintenance/aft) +"xGS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xGU" = ( /obj/structure/table/reinforced, /obj/item/tank/internals/oxygen, @@ -83890,6 +87576,19 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"xGV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/openspace, +/area/station/engineering/lobby) "xHi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, @@ -83904,38 +87603,78 @@ /obj/item/storage/medkit/brute, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xHP" = ( -/obj/structure/chair{ - dir = 1; - pixel_y = -2 +"xHC" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 }, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"xHU" = ( -/obj/machinery/modular_computer/preset/id{ - dir = 1 +/turf/open/floor/engine/hull/air, +/area/station/maintenance/aft/upper) +"xHE" = ( +/obj/structure/sign/directions/command/directional/west{ + dir = 2; + pixel_y = 5; + pixel_x = 0 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/structure/sign/directions/evac/directional/west{ + dir = 2; + pixel_y = -3; + pixel_x = 0 }, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) +/turf/closed/wall, +/area/station/commons/locker) +"xHS" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "xHV" = ( -/obj/effect/turf_decal/siding/blue, -/obj/effect/turf_decal/siding/blue{ +/obj/effect/landmark/navigate_destination/hop, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/blue/corner{ dir = 1 }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - location = "Head of Personnel" +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 }, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/primary/central) +"xId" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/station/maintenance/starboard) "xIe" = ( /obj/structure/lattice, /obj/effect/spawner/random/structure/grille, /turf/open/space/openspace, /area/space/nearstation) +"xIh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/clock/directional/east, +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"xIk" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/bot_red, +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xIl" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -83948,12 +87687,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/lab) -"xIo" = ( -/obj/machinery/newscaster/directional/east, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/small, -/area/station/command/heads_quarters/ce) "xIp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -83962,42 +87695,36 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"xIz" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/effect/turf_decal/tile/neutral/half{ +"xIs" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"xIJ" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/obj/structure/chair/office, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "xIN" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, /turf/open/openspace, /area/station/maintenance/port/fore) -"xIS" = ( -/obj/machinery/meter{ - name = "Mix Meter" +"xIT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/multiz/cyan/visible{ - dir = 8; - name = "Air Mix Multideck Adapter" +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 }, -/obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"xIV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/rebels_unite/directional/west, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/department/crew_quarters/dorms) +"xIW" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/engine/hull, +/area/station/solars/starboard/fore) "xJo" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, @@ -84006,15 +87733,16 @@ /obj/machinery/vending/cigarette, /turf/open/floor/wood/large, /area/station/medical/break_room) -"xJt" = ( -/obj/structure/lattice/catwalk, -/obj/item/clothing/accessory/armband/cargo{ - pixel_x = 8; - pixel_y = 10 +"xJs" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/dark_green/half/contrasted{ + dir = 1 }, -/obj/structure/sign/poster/contraband/rebels_unite/directional/north, -/turf/open/openspace, -/area/station/maintenance/starboard/aft) +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) "xJH" = ( /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ @@ -84030,20 +87758,32 @@ pixel_y = 5 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xJI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 +/area/station/ai/satellite/interior) +"xJJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/flag/tizira/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"xJL" = ( +/obj/item/clothing/head/cone{ + pixel_x = 5; + pixel_y = 10 }, /turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/area/station/maintenance/starboard) "xJV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"xJZ" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/eighties, +/area/station/maintenance/department/crew_quarters/dorms) "xKb" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84052,14 +87792,17 @@ /turf/open/floor/iron/dark/textured, /area/station/construction/mining/aux_base) "xKc" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 +/obj/machinery/light/directional/east, +/obj/machinery/status_display/supply{ + pixel_x = 32 }, +/obj/structure/railing, /obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, /obj/structure/disposalpipe/trunk{ dir = 8 }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor/border_only, /turf/open/floor/iron, /area/station/cargo/storage) "xKg" = ( @@ -84078,6 +87821,12 @@ /obj/structure/railing/corner/end, /turf/open/openspace, /area/station/maintenance/port/aft) +"xKo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "xKr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/warm/dim/directional/east, @@ -84086,6 +87835,22 @@ }, /turf/open/floor/glass, /area/station/science/zoo) +"xKs" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "xKx" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron, @@ -84100,6 +87865,11 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/station/medical/virology) +"xKJ" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/directional/north, +/turf/open/openspace, +/area/station/commons/fitness/recreation) "xKQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -84108,6 +87878,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/hallway/abandoned_recreation) +"xKS" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) "xLf" = ( /obj/structure/window/reinforced/tinted/frosted/spawner/directional/west, /obj/structure/chair/sofa/middle/brown{ @@ -84115,16 +87889,11 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/library) -"xLg" = ( -/obj/machinery/computer/atmos_control/carbon_tank, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark/half{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) +"xLl" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/firealarm_sanity, +/turf/open/openspace, +/area/station/commons/dorms) "xLy" = ( /obj/structure/cable, /obj/effect/landmark/secequipment, @@ -84141,13 +87910,6 @@ /obj/structure/sign/poster/abductor/ayy_cops, /turf/closed/wall, /area/station/maintenance/port) -"xLF" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/hallway) "xLQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -84169,6 +87931,25 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/station/security/execution/education) +"xMf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) +"xMn" = ( +/obj/structure/table, +/obj/machinery/computer/arcade/orion_trail{ + desc = "For gamers only. Casuals need not apply."; + icon_screen = "library"; + icon_state = "oldcomp"; + name = "Gamer Computer" + }, +/turf/open/floor/engine/hull/air, +/area/station/maintenance/starboard/upper) "xMq" = ( /obj/structure/chair/sofa/corp/left{ dir = 8 @@ -84178,13 +87959,11 @@ /obj/structure/sign/poster/official/moth_epi/directional/east, /turf/open/floor/carpet/blue, /area/station/medical/break_room) -"xMv" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/openspace, -/area/station/maintenance/starboard/lesser) +"xMu" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xMz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84203,11 +87982,25 @@ }, /turf/open/floor/iron/textured_large, /area/station/medical/virology) +"xMJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) "xML" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/directional/west, /turf/open/floor/wood, /area/station/hallway/primary/central) +"xMT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "xMV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84244,15 +88037,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"xNe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/area/station/ai/satellite/foyer) +"xNk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 1 + }, /obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) "xNn" = ( /obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ dir = 4 @@ -84277,16 +88075,21 @@ /turf/open/floor/wood, /area/station/security/courtroom) "xNB" = ( -/obj/structure/table/wood, /obj/structure/sign/painting/library{ persistence_id = "captain"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, -/obj/machinery/fax{ - fax_name = "Captain's Office"; - name = "Captain's Fax Machine" +/obj/structure/table/wood, +/obj/item/storage/briefcase/secure{ + pixel_x = 4; + pixel_y = 8 }, -/turf/open/floor/wood, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "xNF" = ( /obj/structure/lattice/catwalk, @@ -84323,20 +88126,17 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_white, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xNX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ +/area/station/ai/satellite/interior) +"xOh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "CargowatchShutter"; + name = "Outside Shutter"; dir = 4 }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) -"xOh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/qm) "xOl" = ( /obj/item/restraints/handcuffs/fake, /obj/structure/table/wood, @@ -84389,24 +88189,32 @@ }, /turf/open/space/openspace, /area/space/nearstation) +"xOG" = ( +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"xOU" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/briefcase, +/obj/effect/spawner/random/bureaucracy/folder, +/turf/open/floor/wood/large, +/area/station/commons/dorms) "xOW" = ( /turf/open/floor/plating, /area/station/security/interrogation) -"xPg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"xPj" = ( -/obj/machinery/duct, -/obj/machinery/door/airlock/maintenance, +"xPy" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/sign/warning/electric_shock/directional/north, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/engine_smes) "xPU" = ( /obj/structure/sign/poster/contraband/space_cube/directional/east, /turf/open/floor/plating, @@ -84417,13 +88225,16 @@ }, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"xQB" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - co2 Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos/upper) +"xQg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"xQr" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/maintenance/two, +/turf/open/openspace, +/area/station/maintenance/aft/upper) "xQC" = ( /obj/machinery/camera/autoname/directional/north, /obj/structure/closet/crate/trashcart/filled, @@ -84442,6 +88253,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/maintenance/department/medical) +"xQJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/engineering/atmos/office) "xQK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84462,32 +88281,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) -"xQU" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/modular_computer/preset/cargochat/engineering{ - dir = 1 - }, -/obj/machinery/requests_console/directional/west{ - name = "Engineering Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/supplies, -/obj/effect/mapping_helpers/requests_console/assistance, -/turf/open/floor/wood, -/area/station/engineering/lobby) -"xQV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/photocopier/prebuilt, -/turf/open/floor/wood, -/area/station/engineering/lobby) "xQW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, /obj/machinery/light/directional/south, /obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/large, +/turf/open/floor/iron/edge, /area/station/hallway/primary/central) "xRg" = ( /obj/effect/decal/cleanable/dirt, @@ -84514,11 +88311,30 @@ /obj/item/storage/bag/plants, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden/abandoned) -"xRI" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" +"xRp" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/minisat, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "transitlockdown" }, +/obj/effect/landmark/navigate_destination/minisat_access_tcomms_ai, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) +"xRD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"xRI" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 1 }, @@ -84528,25 +88344,17 @@ dir = 1 }, /obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xRJ" = ( -/obj/item/banner/cargo/mundane{ - pixel_y = 27 +/obj/structure/railing{ + dir = 8 }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "body"; - name = "body"; - pixel_y = 10 +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 }, -/obj/item/ammo_casing/spent{ - pixel_x = -8; - pixel_y = -4 +/obj/machinery/door/firedoor/border_only{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/turf/open/floor/iron, +/area/station/cargo/storage) "xRK" = ( /obj/structure/lattice/catwalk, /obj/effect/turf_decal/stripes/line{ @@ -84580,6 +88388,10 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/surgery) +"xSc" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine/airless, +/area/station/engineering/atmos/upper) "xSj" = ( /obj/structure/railing, /turf/open/floor/iron/stairs/medium{ @@ -84592,8 +88404,22 @@ dir = 8 }, /obj/effect/baseturf_helper/reinforced_plating/ceiling, -/turf/open/floor/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) +"xSq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/command/meeting_room/council) "xSv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -84606,10 +88432,27 @@ /obj/machinery/door/firedoor, /turf/open/floor/engine/hull/air, /area/station/hallway/primary/starboard) +"xSA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/multiz/purple/visible{ + dir = 2; + name = "mix to recycle multi-deck adapter" + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) +"xSB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xSD" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron, /area/station/science/breakroom) +"xSL" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "xSO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84632,7 +88475,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xSS" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84668,23 +88511,39 @@ /obj/effect/spawner/random/trash/crushed_can, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/medical) +"xTq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"xTs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "xTt" = ( -/obj/structure/table/wood, /obj/item/radio/intercom/directional/west{ freerange = 1; name = "Captain's Intercom"; pixel_x = 0; pixel_y = 25 }, -/obj/item/pinpointer/nuke{ - pixel_x = -7; +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; pixel_y = 5 }, +/obj/item/pen/fourcolor{ + pixel_x = -15; + pixel_y = 1 + }, /obj/item/hand_tele{ pixel_x = 13; - pixel_y = 15 + pixel_y = 5 }, -/turf/open/floor/wood, +/turf/open/floor/wood/large, /area/station/command/heads_quarters/captain/private) "xTD" = ( /obj/structure/disposalpipe/segment{ @@ -84695,6 +88554,13 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"xTJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) "xTT" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/disposal/bin, @@ -84713,8 +88579,16 @@ /area/space/nearstation) "xUa" = ( /obj/effect/mapping_helpers/iannewyear, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) +"xUf" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) "xUj" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -84756,7 +88630,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xUy" = ( /obj/machinery/light/directional/west, /obj/machinery/light_switch/directional/west, @@ -84782,7 +88656,7 @@ pixel_y = 2 }, /obj/structure/window/reinforced/spawner/directional/west, -/turf/open/floor/wood, +/turf/open/floor/iron/dark, /area/station/command/gateway) "xUE" = ( /obj/effect/turf_decal/stripes/line{ @@ -84823,18 +88697,11 @@ }, /turf/open/floor/iron/white/textured_large, /area/station/medical/medbay/central) -"xUV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/east, +"xUT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, /turf/open/floor/iron, -/area/station/commons/dorms) -"xUW" = ( -/obj/structure/cable, -/obj/structure/sign/poster/contraband/fake_bombable/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/maintenance/starboard) "xVq" = ( /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, @@ -84858,7 +88725,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -84880,13 +88747,12 @@ /obj/structure/sign/poster/official/obey/directional/north, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"xVF" = ( -/obj/structure/lattice/catwalk, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/break_room) +"xVG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "xVJ" = ( /obj/machinery/firealarm/directional/south, /obj/structure/chair/stool/bar/directional/east, @@ -84895,30 +88761,17 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/commons/lounge) -"xVL" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "xVM" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) -"xVZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/openspace, -/area/station/maintenance/starboard/fore) +"xVP" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "xWw" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -84938,12 +88791,16 @@ }, /turf/open/openspace, /area/station/maintenance/port/fore) -"xWy" = ( +"xWz" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/engineering/atmos) "xWK" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -84953,13 +88810,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/eighties, /area/station/maintenance/hallway/abandoned_recreation) -"xWM" = ( -/obj/item/grapple_gun{ - pixel_x = 2; - pixel_y = 3 +"xWN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/upper) "xWS" = ( /obj/effect/turf_decal/trimline/dark_blue/corner{ dir = 4 @@ -84967,7 +88828,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xWT" = ( /obj/structure/railing{ dir = 1 @@ -84992,6 +88853,28 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron/dark/smooth_half, /area/station/service/library) +"xXj" = ( +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Air Pump Room"; + req_access = list("atmospherics") + }, +/turf/open/floor/iron/freezer, +/area/station/engineering/atmos/pumproom) +"xXm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=7-Gateway"; + location = "6-Courtroom" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron, +/area/station/hallway/primary/central) "xXr" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/cobweb, @@ -85013,12 +88896,6 @@ dir = 8 }, /area/station/maintenance/hallway/abandoned_recreation) -"xXx" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "xXy" = ( /obj/structure/railing{ dir = 1 @@ -85029,6 +88906,16 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"xXC" = ( +/obj/item/pickaxe{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "xXH" = ( /obj/effect/turf_decal/siding/blue{ dir = 5 @@ -85045,6 +88932,18 @@ /obj/structure/broken_flooring/singular/always_floorplane/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"xXQ" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/glass/plasma, +/area/station/engineering/atmos/upper) +"xXR" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/upper) "xXU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -85060,7 +88959,7 @@ codes_txt = "patrol;next_patrol=10-Vault"; location = "9-Bridge" }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "xXV" = ( /obj/structure/reflector/double{ @@ -85077,24 +88976,13 @@ /obj/item/kirbyplants/random, /turf/open/floor/wood, /area/station/security/detectives_office) -"xYa" = ( -/obj/structure/frame, -/obj/structure/sign/poster/contraband/shamblers_juice/directional/east, -/turf/open/floor/eighties, -/area/station/maintenance/starboard/fore) -"xYb" = ( -/obj/structure/cable/layer1, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) -"xYf" = ( -/obj/structure/table, -/obj/item/reagent_containers/cup/soda_cans/cola{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/effect/spawner/random/entertainment/coin, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +"xYc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos/upper) "xYh" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -85103,37 +88991,26 @@ /obj/structure/cable, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"xYi" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) "xYk" = ( -/obj/machinery/computer/monitor{ +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/dark_blue{ dir = 1 }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/meeting_room/council) "xYm" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/thinplating/corner, /turf/open/floor/iron/dark/smooth_half, /area/station/service/library) "xYn" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/stamp/head/hop{ - pixel_x = 8; - pixel_y = 4 - }, /obj/structure/cable, -/turf/open/floor/carpet, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/green, /area/station/command/heads_quarters/hop) "xYy" = ( /obj/machinery/nuclearbomb/selfdestruct, @@ -85141,12 +89018,13 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) -"xYL" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/command/vault) +"xYC" = ( +/obj/machinery/shower/directional/south, +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/turf/open/floor/iron/freezer, +/area/station/commons/dorms) "xYS" = ( /obj/machinery/computer/operating{ dir = 1 @@ -85154,17 +89032,26 @@ /obj/effect/turf_decal/tile/purple/half, /turf/open/floor/iron/white/textured_half, /area/station/science/robotics) -"xZd" = ( -/turf/open/floor/iron/smooth, -/area/station/engineering/atmos/upper) "xZn" = ( /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/aft) "xZp" = ( -/obj/machinery/modular_computer/preset/research, -/turf/open/floor/carpet, -/area/station/command/bridge) +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1 + }, +/obj/item/lighter{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) +"xZu" = ( +/obj/machinery/photocopier/prebuilt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/aft) "xZG" = ( /obj/structure/table/wood, /obj/item/pen/fourcolor{ @@ -85176,6 +89063,12 @@ }, /turf/open/floor/carpet, /area/station/service/chapel/office) +"xZM" = ( +/obj/effect/spawner/random/structure/chair_maintenance{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "xZP" = ( /obj/structure/table, /obj/item/wrench{ @@ -85191,12 +89084,12 @@ dir = 2 }, /obj/effect/mapping_helpers/mail_sorting/security/detectives_office, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) -"yav" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/engine/hull/air, -/area/station/maintenance/starboard/fore) +"yau" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) "yaw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85209,11 +89102,19 @@ }, /turf/open/floor/wood/large, /area/station/hallway/secondary/service) +"yay" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "yaE" = ( /obj/effect/decal/cleanable/dirt, /obj/item/kirbyplants/random/fullysynthetic, /turf/open/floor/wood, /area/station/maintenance/hallway/abandoned_recreation) +"yaI" = ( +/turf/closed/wall, +/area/station/hallway/primary/fore) "yaM" = ( /obj/machinery/vending/wardrobe/gene_wardrobe, /obj/structure/extinguisher_cabinet/directional/north, @@ -85238,18 +89139,6 @@ }, /turf/open/floor/plating, /area/station/security/execution/education) -"ybh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/stamp/granted{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/stamp/denied{ - pixel_x = 7 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) "ybF" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/green/filled/corner{ @@ -85270,6 +89159,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/space_hut) +"ybM" = ( +/obj/machinery/computer/atmos_control/oxygen_tank, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ybO" = ( /obj/structure/rack, /obj/structure/window/reinforced/spawner/directional/north{ @@ -85284,8 +89180,12 @@ pixel_x = -4; pixel_y = 1 }, -/turf/open/floor/wood, -/area/station/ai_monitored/command/storage/eva) +/obj/machinery/door/window/right/directional/east{ + name = "Jetpack Storage"; + req_access = list("eva") + }, +/turf/open/floor/iron/dark/small, +/area/station/command/eva) "ybR" = ( /turf/open/floor/glass/reinforced, /area/station/construction/storage_wing) @@ -85296,14 +89196,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/textured_half, /area/station/science/robotics/lab) -"ybT" = ( -/obj/structure/table/reinforced/rglass, -/obj/machinery/fax{ - fax_name = "Chief Engineer's Office"; - name = "Chief Engineer's Fax Machine" - }, -/turf/open/floor/engine, -/area/station/command/heads_quarters/ce) "ybW" = ( /obj/item/melee/flyswatter{ pixel_x = 10 @@ -85369,15 +89261,16 @@ /turf/open/floor/wood/large, /area/station/command/heads_quarters/cmo) "yco" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/command/heads_quarters/qm) +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/textured, +/area/station/cargo/storage) "yct" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -85388,6 +89281,19 @@ /obj/machinery/light/floor, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"ycy" = ( +/obj/structure/closet/crate/secure/engineering{ + name = "Advanced Materials" + }, +/obj/item/stack/sheet/plasteel, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room/upper) "ycC" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -85396,7 +89302,17 @@ pixel_y = 12 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) +"ycK" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_large, +/area/station/medical/virology) "ycM" = ( /obj/structure/lattice, /turf/open/floor/plating/airless, @@ -85409,10 +89325,6 @@ /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, /area/station/hallway/primary/central) -"ydi" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/hallway) "ydo" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -85424,15 +89336,6 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/dark, /area/station/maintenance/port) -"ydH" = ( -/obj/effect/landmark/firealarm_sanity, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/fore) -"ydI" = ( -/obj/structure/fake_stairs/directional/south, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "ydN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/wood{ @@ -85451,6 +89354,11 @@ }, /turf/open/openspace, /area/station/construction/storage_wing) +"ydV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/engine, +/area/station/engineering/atmos) "ydX" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, @@ -85462,58 +89370,53 @@ dir = 1 }, /turf/open/floor/iron/checker, -/area/station/ai_monitored/command/storage/satellite) -"yee" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/clothing/gloves/latex/nitrile, -/obj/item/defibrillator/loaded, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 13 - }, -/obj/item/clothing/gloves/latex/nitrile, -/obj/effect/turf_decal/bot_white{ - color = "#52B4E9" - }, -/obj/machinery/newscaster/directional/south, -/obj/item/clothing/gloves/latex/nitrile, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/storage) +/area/station/ai/satellite/maintenance/storage) "yeg" = ( -/obj/structure/chair/office/light{ - dir = 1; - name = "RD's Chair"; - pixel_y = 3 +/obj/structure/table/wood, +/obj/item/radio/intercom, +/turf/open/floor/carpet/executive, +/area/station/command/meeting_room/council) +"yel" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft/upper) +"yeo" = ( +/obj/structure/fireaxecabinet/directional/east, +/obj/machinery/airalarm/directional/north, +/obj/structure/table/reinforced/rglass, +/obj/item/radio/off{ + pixel_x = 3; + pixel_y = 5 }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination/bridge, -/turf/open/floor/carpet, +/obj/item/assembly/signaler{ + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, /area/station/command/bridge) -"yem" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "yer" = ( /turf/open/openspace, /area/station/science/genetics) "yes" = ( -/obj/machinery/door/window/left/directional/east{ - name = "Captain's Desk"; - req_access = list("captain") - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"yeu" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_y = 6 +/obj/machinery/door/window/right/directional/west{ + req_access = list("captain"); + name = "Captain's Desk" }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain/private) "yeA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -85531,10 +89434,13 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 5 }, -/obj/structure/table, -/obj/item/wrench, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, +/obj/structure/table/reinforced, +/obj/machinery/button/door/directional/west{ + id = "Rcommissaryshutter"; + name = "Right Shutter Control"; + pixel_x = 0 + }, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/office) "yeJ" = ( @@ -85557,12 +89463,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) -"yeT" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/water, -/area/station/maintenance/starboard/fore) +/area/station/ai/satellite/interior) "yfj" = ( /obj/structure/ladder, /turf/open/floor/plating, @@ -85570,11 +89471,16 @@ "yfm" = ( /turf/closed/wall, /area/station/science/explab) -"yfs" = ( -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +"yfq" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) "yfv" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/item/clothing/gloves/latex/nitrile, @@ -85592,6 +89498,30 @@ }, /turf/open/floor/iron/dark/textured_large, /area/station/medical/storage) +"yfx" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 1; + name = "Ports To Mix" + }, +/obj/effect/turf_decal/trimline/dark_green, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"yfH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_all, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) +"yfJ" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron, +/area/station/commons/dorms) "yfK" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -85599,15 +89529,24 @@ /obj/effect/turf_decal/siding/purple, /turf/open/floor/iron, /area/station/science/lab) -"yfM" = ( +"yfS" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, /obj/structure/table, -/obj/item/gavelhammer{ - pixel_y = 3 +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 }, -/obj/structure/cable, -/obj/machinery/light/small/directional/north, -/turf/open/floor/wood, -/area/station/security/courtroom) +/obj/item/storage/toolbox/electrical{ + pixel_y = 2 + }, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "yge" = ( /obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/tile/purple/opposingcorners, @@ -85629,7 +89568,7 @@ "ygq" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ygr" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -85653,12 +89592,12 @@ "ygD" = ( /turf/closed/wall, /area/station/medical/coldroom) -"ygH" = ( -/obj/structure/cable/layer1, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor, -/area/station/engineering/main) +"ygK" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/engineering/atmos) "ygM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85666,7 +89605,7 @@ /obj/structure/disposalpipe/junction/flip{ dir = 1 }, -/turf/open/floor/iron/large, +/turf/open/floor/catwalk_floor/iron, /area/station/hallway/primary/central) "ygN" = ( /obj/structure/table, @@ -85690,23 +89629,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/iron/checker, /area/station/maintenance/hallway/abandoned_recreation) -"yha" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/weldingtool, -/obj/item/wrench, -/obj/item/clothing/head/utility/welding, -/obj/structure/rack, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"yhf" = ( -/obj/structure/cable/layer1, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "yhq" = ( /obj/effect/turf_decal/caution, /obj/effect/turf_decal/stripes/line, @@ -85718,18 +89640,27 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "yhu" = ( -/obj/machinery/button/door/directional/south{ - id = "CargowatchShutter"; - name = "Outside Shutter Control" +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/parquet, +/area/station/command/heads_quarters/qm) "yhx" = ( /obj/structure/musician/piano/unanchored, /turf/open/floor/plating, /area/station/maintenance/department/science/central) +"yhD" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/tile/brown/full, +/turf/open/floor/iron/large, +/area/station/maintenance/starboard) "yhJ" = ( /obj/structure/grille, /turf/open/space/basic, @@ -85739,11 +89670,6 @@ dir = 1 }, /area/station/service/library/private) -"yhN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/layer1, -/turf/open/floor/catwalk_floor, -/area/station/engineering/engine_smes) "yhO" = ( /obj/machinery/door/airlock/atmos/glass{ name = "Atmospherics Testing Room" @@ -85766,22 +89692,6 @@ /obj/machinery/portable_atmospherics/canister/anesthetic_mix, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/medical/coldroom) -"yhT" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/flatpack{ - board = /obj/item/circuitboard/machine/flatpacker; - pixel_x = -5 - }, -/obj/item/multitool{ - pixel_x = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) "yhW" = ( /obj/structure/table/reinforced, /obj/item/screwdriver{ @@ -85815,32 +89725,39 @@ /obj/structure/cable/layer3, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "yin" = ( /obj/structure/chair, /turf/open/floor/iron/dark/smooth_large, /area/station/security/interrogation) -"yiy" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"yiL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/showcase/machinery/cloning_pod{ - desc = "An old prototype cloning pod, permanently decommissioned following the incident."; - name = "decommissioned cloner" +"yiw" = ( +/obj/structure/chair/pew/left{ + dir = 4 }, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/lesser) +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/maintenance/starboard) +"yiB" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) +"yiF" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/fax{ + fax_name = "Engineering Lobby"; + name = "Engineering Lobby Fax Machine" + }, +/turf/open/floor/wood/large, +/area/station/engineering/lobby) "yiP" = ( /obj/machinery/washing_machine, /turf/open/floor/iron/white/textured_half, -/area/station/ai_monitored/turret_protected/aisat_interior) -"yiW" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) +/area/station/ai/satellite/interior) "yiY" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/item/wrench{ @@ -85875,22 +89792,18 @@ pixel_x = -5; pixel_y = -3 }, -/obj/structure/fireaxecabinet/jawsofrecovery/directional/south, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/white, /area/station/medical/office) "yjM" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_x = 32; - pixel_y = 37 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_x = 32; - pixel_y = 27 +/obj/structure/sign/directions/upload/directional/north{ + desc = "It stands for Up Le Dable"; + dir = 2; + name = "Button Indicator"; + pixel_y = 10 }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) +/turf/closed/wall, +/area/station/service/kitchen) "yjT" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{ dir = 8 @@ -85899,12 +89812,19 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "yjV" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/effect/landmark/event_spawn, /turf/open/floor/grass, /area/station/science/cytology) +"ykc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "ykf" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -85940,14 +89860,25 @@ /turf/closed/wall, /area/station/maintenance/port) "ykz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, /area/station/command/gateway) "ykG" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"ykK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/rebels_unite/directional/west, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central/upper) "yla" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -85964,23 +89895,7 @@ name = "Minisat Monitor" }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) -"yli" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"ylo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/gravity_generator) +/area/station/ai/satellite/interior) "ylu" = ( /obj/structure/closet/crate, /obj/effect/spawner/random/contraband/prison, @@ -85995,16 +89910,25 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/textured_large, /area/station/security/prison) -"ylO" = ( -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"yma" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 +"ylN" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/obj/machinery/door/window/right/directional/south{ + req_access = list("shipping"); + name = "Chute Access" + }, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/sorting) +"yme" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore/upper) (1,1,1) = {" dcE @@ -105142,7 +109066,7 @@ tDx bHr xLX hRx -edN +kRR uHH wVf wVf @@ -105428,7 +109352,7 @@ bWY dcE dcE dcE -jJm +bWY dcE dcE dcE @@ -105685,7 +109609,7 @@ iWu iWu fWI iWu -kzG +bYT fWI iWu heR @@ -105942,7 +109866,7 @@ dLq dLq jPs heR -eYH +bWY dcE heR bYT @@ -106199,7 +110123,7 @@ dLq heR dcE dcE -eYH +bWY dcE dcE heR @@ -106456,7 +110380,7 @@ dcE dcE dcE dcE -eYH +bWY dcE dcE heR @@ -106713,7 +110637,7 @@ dLq heR dcE dcE -eYH +bWY dcE dcE iWu @@ -106970,7 +110894,7 @@ riD riD riD heR -eYH +bWY dcE dcE iWu @@ -107227,7 +111151,7 @@ jgR aEO riD riD -nXp +dLq dcE dcE gmt @@ -107484,7 +111408,7 @@ gjW wTk eoI riD -bHM +kxE dLq dcE dcE @@ -107736,12 +111660,12 @@ nJk rjd riD riD -alx +fYa riD riD riD riD -bDm +uKL oaa oaa dcE @@ -107992,14 +111916,14 @@ rjd ydo xJo riD -cJb -unK -awv -rPU -uJi -uJi -qnS -tlQ +mpW +tEv +sHr +nOV +wTk +wTk +tEv +wTk oaa oaa dcE @@ -108249,14 +112173,14 @@ mqt fyx riD riD -uJi +wTk wTk riD riD tEv twD wTk -tlQ +wTk tEv oaa heR @@ -108505,15 +112429,15 @@ oCE xJo riD riD -uJi -unK +wTk +tEv sPT riD wRj wTk wTk tEv -tlQ +wTk wTk oaa heR @@ -108762,7 +112686,7 @@ nFL riD riD gir -pQG +upp wTk cbx riD @@ -108770,7 +112694,7 @@ riD nCM fES juE -tlQ +wTk oaa oaa heR @@ -109019,7 +112943,7 @@ kUq aJV riD tOW -uJi +wTk wTk wTk qTy @@ -109027,7 +112951,7 @@ riD riD riD riD -bDm +uKL oaa heR heR @@ -109276,7 +113200,7 @@ eYP bsy riD mXW -uJi +wTk ifC tEv tEv @@ -109284,7 +113208,7 @@ pmI wbK riD kxE -crE +dLq heR dcE dcE @@ -109532,8 +113456,8 @@ dNR gAl uIG riD -riv -uJi +iBW +wTk wTk wTk wTk @@ -109541,7 +113465,7 @@ riD riD riD dLq -mRf +heR dcE dcE dcE @@ -109789,7 +113713,7 @@ kTw wNv riD riD -dEu +mXW wTk tEv okf @@ -109798,7 +113722,7 @@ riD nPY riD riD -nxv +tao heR heR slD @@ -110045,8 +113969,8 @@ iTI kTw wNv wPl -mpT -dEu +wNv +mXW tzi flg riD @@ -110055,7 +113979,7 @@ uwu cOm deC ckM -tEc +mCR ckM ckM ckM @@ -110261,7 +114185,7 @@ oLN vwl ilE chu -wNu +lUD sQY aHS pMT @@ -110303,7 +114227,7 @@ kTw riD riD flg -dEu +mXW uCG riD riD @@ -110331,7 +114255,7 @@ uIO ceQ eKW gLQ -jea +pTp wKr xQI cVe @@ -110568,7 +114492,7 @@ mRt pPl kUq kUq -ssO +uSn hyi cIE oid @@ -110825,8 +114749,8 @@ eTY cOm dHm dFG -hyi -lIp +lUg +qIQ ckM ckM ckM @@ -111068,7 +114992,7 @@ riD riD riD riD -wPX +riD riD riD riD @@ -111325,7 +115249,7 @@ bmI wVL mTq sTv -arN +bOt qMr sTv hNC @@ -111343,8 +115267,8 @@ jHr ckM iVX ijh -wwj -wwj +xba +xba bZo ckM ckM @@ -111565,12 +115489,12 @@ fWY bNt aHO bNt -bNt -wqB +awD +wAx sRY xDM uKn -vzM +ruR tZz riD uJi @@ -111582,7 +115506,7 @@ lqn ykm bAL sTv -yfM +avj ojE sTv hTI @@ -111600,11 +115524,11 @@ rzp cDs dAR lAN -fxc +ldL lAN -goI -rUf -oNb +fYH +etQ +lja ybF njH njH @@ -111827,7 +115751,7 @@ ssg ubo bNt gBF -dMR +vId pTT lmB uJi @@ -111839,17 +115763,17 @@ sTv ait sTv sTv -teZ +sTv dNA sTv uga riD gZY dEu -uJi -uJi -uJi -uJi +wTk +wTk +wTk +wTk ayF kUq iKx @@ -111857,11 +115781,11 @@ rzp ckM tKx oiR -iea -pHC +xba +uNu dos ckM -npG +aWE cMq uZV nKn @@ -112084,7 +116008,7 @@ gfc bNt bNt fhO -dMR +vId xmA riD riD @@ -112096,17 +116020,17 @@ sTv qAJ aZC kzi -ers +pMu izl ahD wie riD riD -qgD +ihn riD osU flg -uJi +wTk nBu kUq fJx @@ -112118,7 +116042,7 @@ lqd jDe ygB ygB -vVD +jAg jgW qaL nKn @@ -112341,7 +116265,7 @@ teC bNt iJX bOC -dMR +vId jUt sTv aVb @@ -112353,17 +116277,17 @@ sTv qdk ksO aPq -cLP +nCT jFo nLC lQd riD fLX -pSF +qIL tVl srD flg -uJi +wTk xKB kUq gga @@ -112375,7 +116299,7 @@ wix cDs ygB aWo -rIZ +ycK pOD kUq kUq @@ -112567,9 +116491,9 @@ rqR pvg anm sES -cCA +oUL crW -veS +bFx ayR gPW acl @@ -112598,7 +116522,7 @@ icO bNt tiG jUu -dMR +vId hDT nDA aLJ @@ -112620,7 +116544,7 @@ bFe pyA srD flg -xqi +tZx riD kUq kUq @@ -112629,10 +116553,10 @@ kPZ nIW toh als -meF -hET -fAB -pHd +cjW +cjW +eeE +vFE kUq kUq xNK @@ -112874,10 +116798,10 @@ xor riD rPE bFe -pqQ -qDn -uJi -rkU +wQt +cxs +wTk +nVV riD cTJ kUq @@ -112887,7 +116811,7 @@ lUn oFg hIE cPq -bBy +xMT pOD kUq kUq @@ -113072,7 +116996,7 @@ gIw eCD qPX tci -xBO +uOO xZG qPX lrp @@ -113082,7 +117006,7 @@ rqR xxZ lFK lFK -bRv +wvM bxT wIa gPW @@ -113136,15 +117060,15 @@ voz jDx ovx ovx -tRJ -dWj +eNb +wES kUq kUq kUq kUq vsP kUq -rea +ucc kUq kUq wTk @@ -113394,14 +117318,14 @@ bvH riD riD uEl -vOg -vOg -vOg -ciS -vOg -vOg -dXD -alI +uJi +uJi +uJi +uJi +uJi +uJi +for +wir jNe onB jNe @@ -113409,8 +117333,8 @@ jNe jNe jNe pFS -bit -jqA +vXB +mpp spl dmV biZ @@ -113604,7 +117528,7 @@ gPW egU gPW gPW -hRX +yjM neF lAW pbk @@ -113651,7 +117575,7 @@ lVs riD cSy eNb -sAG +uJi riD riD riD @@ -113680,12 +117604,12 @@ ekQ jii mHQ mHQ -jii -jii -fHg -jii -jii -jii +hgW +hgW +dri +hgW +hgW +hgW hgW lIr lVM @@ -113908,7 +117832,7 @@ hoP riD riD riD -nen +bzd riD oTS mDX @@ -113935,7 +117859,7 @@ kWO eqV wPV wPV -tBa +gzJ wPV lmV eOG @@ -114163,9 +118087,9 @@ aDm vYs nSu fbC -oIA -mYe -mtD +vdP +fIS +ptM xrX rQU eRT @@ -114188,14 +118112,14 @@ abE lIr lIr lIr -pcQ +wYX lIr wPV nFO wld -hlJ -itV -fUd +iTR +oDu +tQR qVs qQb wPV @@ -114410,7 +118334,7 @@ bJJ iyv iyv kpC -iyv +seD iyv aYR fbC @@ -114422,9 +118346,9 @@ gFt fbC vdP mYe -uCE -kDa -xVL +ptM +fGU +vKA afg iFy bPH @@ -114452,7 +118376,7 @@ wPV aIP tPr ebj -euN +bXl kUr mnG aPQ @@ -114663,13 +118587,13 @@ jOE jOE aUn fYS -gjU -lIM +lRY lIM -peF lIM +nDA +hiA lIM -hWw +nDA fbC nWD frB @@ -114681,7 +118605,7 @@ tqq vJI dUw xeM -lIC +kWp acS cxD fPt @@ -114709,11 +118633,11 @@ wPV eug uXU sIp -wUm -dcv -wRi -mPV -mHQ +eWS +rUq +jSK +wtD +jii fdl dXA lVM @@ -114899,34 +118823,34 @@ gtZ mBb nPW akU -fLr -fLr +itA +itA rfU -fLr +itA dNV nrP pJn ozK -fLr -fLr +itA +itA oLS sJQ aSD sJQ pwz -fLr -ckZ +itA +itA rfU -fLr +itA rHo -cuY -cuY -fLr -fLr -rnd -fLr -fLr -fLr +wdt +wdt +itA +itA +itA +pkx +itA +tLA rTe lPn qMz @@ -114938,7 +118862,7 @@ xeM xeM hrX xeM -lIC +kWp hTy aMK wYH @@ -115133,7 +119057,7 @@ wRp vwb pES gzs -oLO +lOD gPW ndl vxh @@ -115153,8 +119077,8 @@ qpP qNw qNw mDZ -jrz -fyz +idO +tau bmD fUb fUb @@ -115182,7 +119106,7 @@ vYe fcn fcn sXj -cXw +xXm qeZ jDx obQ @@ -115195,7 +119119,7 @@ fkD fkD pEO leK -lIC +kWp asY wqq cqe @@ -115393,52 +119317,52 @@ iUx gPW gPW utq -nyq +cTk wQS svW mHJ -rUC +qGn fFe uPu fEc byY lNg byY -byY +fkp byY oSI hGP fzV xrl -fLr +dlx pzy -gxP -fLr -fLr -fLr -fLr -fLr -fLr +qhz +qNe +qNe +qNe +qNe +qNe +qNe cuY -fLr +qNe fom -fLr -fLr -fLr +qNe +qNe +qNe iwu -aZs +fpw mNY -fLr -fLr -fLr +keq +keq +iBM ulZ -fLr -fLr +qNe +qNe qNe fHW -pVy -fLr -aKc +jeh +qNe +aVN iLm fDd hSk @@ -115452,14 +119376,14 @@ pZQ gie mKs xeM -lIC +kWp rQR jiL oNB jiL emn vqv -ppa +xFh ccN ccN ccN @@ -115667,9 +119591,9 @@ aEG kEn gnA dJV -fLr +idO pzy -fLr +vXt jGw bpl oGG @@ -115683,11 +119607,11 @@ eLU pKd pKd eLU -sle +eLU eLU jKF jKF -eLU +sle eLU vAs qiH @@ -115695,9 +119619,9 @@ tHs gUQ qiH qiH -fLr +idO iLm -fLr +vXt qKV oDq wTE @@ -115709,7 +119633,7 @@ kIt msF iKH xeM -hNj +gNp iQA vJI vJI @@ -115924,26 +119848,26 @@ lDE lDE lDE lDE -fLr +idO pzy -fLr +vXt fOe -lPw +saq qyy qTG cVs -wxq +vuO aZE eIm qae eLU -pdf -pdf +hVC +iiO oST bRW wbH -pdf -pdf +jRH +jRH pdf eLU ucp @@ -115952,9 +119876,9 @@ dnH khi chO qiH -fLr +idO iLm -fLr +vXt qKV cpG nng @@ -115966,7 +119890,7 @@ pkn pkn mQK ene -nyR +eFk ene gPC gPC @@ -116156,9 +120080,9 @@ xvg ixF vsv qXQ -tgV +lZt glz -tLl +lum ixF gPW xKQ @@ -116169,7 +120093,7 @@ wvx fPb vRM haB -uPu +inD hgL gNr gNr @@ -116183,8 +120107,8 @@ pRw lDE cKg vMU -fLr -jwI +vXt +fOe dwf nDS saq @@ -116196,7 +120120,7 @@ ecw eLU dzx pog -dzx +cUl hqf aoQ bvv @@ -116209,9 +120133,9 @@ nrg wLc pJG tdW -fLr +idO iLm -fLr +vXt qKV jGh mFR @@ -116440,23 +120364,23 @@ iTM eEV gSG mEk -fLr -fOe -qTG +vXt +dWp +wCP xHV -dwf +cnL ehZ vuO kyJ eaj xat eLU -hwR -hwR -hwR +jrS +vMN +wWi nrw -hwR -hwR +dHq +jYI chQ hwR eLU @@ -116666,9 +120590,9 @@ dcE dcE dcE dcE -heR +vVH ixF -iZK +avJ myb xbL jHV @@ -116687,27 +120611,27 @@ fvk kHv aUU gNr -eAT -llv +wlI +jJE lDE uKN -lio +wyv vcR qkF eVl hZD iLm -fLr -dWp -okC +vXt +vuO +vuO ams -uzg +wWV wWV vuO kRk kWR hnF -psk +eLU fSl xUD vQR @@ -116725,9 +120649,9 @@ vAs tNV crk fDc -crk +fNB bHV -rsU +oIA mDr fHf sgT @@ -116944,8 +120868,8 @@ bfw kHv uPu ojU -llv -llv +jJE +jJE lDE tjg pJD @@ -116954,12 +120878,12 @@ oHw eVl wUb vMU -fLr -vuO +jMi vuO +bBZ pPt -hRd -vuO +hKy +inh vuO vOy kZo @@ -116982,7 +120906,7 @@ mrj ddz ckZ iLm -fLr +vXt bHV rsU sGy @@ -117189,7 +121113,7 @@ jMr nJl pPf gqp -nmO +fWy gPW dIW rYV @@ -117201,18 +121125,18 @@ bfw tbw scE gNr -edl -llv +aqP +jJE lDE hdX hni uIt cfp lDE -req +osf vMU -jMi -vuO +vXt +rBE ugN tGb xYn @@ -117223,10 +121147,10 @@ kWR iWk vHo vHo -iis -iis -iis -iis +aWV +aWV +aWV +aWV aWV heR heR @@ -117236,21 +121160,21 @@ qeX qeX cqj qeX -cmp -cnL +vNo +idO iLm -fLr +vXt prV qXc jEG mqQ -jUx +eyP sWl rHB yca eoj biO -hYT +fwv rFk eKh eME @@ -117458,8 +121382,8 @@ bfw kHv woT gNr -jYE -llv +wlx +agq lDE lDE hAm @@ -117468,8 +121392,8 @@ lDE lDE kTW vMU -fLr -hRd +vXt +rBE bUO aqo fVx @@ -117478,25 +121402,25 @@ inT whZ bqR ecw -fwP +omw sjC -iis +aWV dNc rPQ qCe aWV dcE gmE -gmE +pxK bTU tBo tBo tBo -tBo +ipi deJ -vNo +nbU iLm -fLr +vXt prV djc mAY @@ -117530,7 +121454,7 @@ rxx fQp fqn hDg -mTp +lCY oAz toj hDg @@ -117715,17 +121639,17 @@ bfw kHv izF gNr -tfr -llv -llv -llv -ayD -lkj -lkj -caF -ckZ +ruA +pkw +jJE +jJE +wHz +jJE +jJE +fQL +idO vMU -fLr +vXt hRd jCt xSk @@ -117737,7 +121661,7 @@ ojx ecw fwP sjC -iis +aWV mYf qSv sSY @@ -117745,15 +121669,15 @@ lll dcE gmE rVE -eRs tbZ -uLt cZE +uLt bnl +rAL mAr ojj -oNM -fLr +iLm +vXt bHV bHV prV @@ -117979,10 +121903,10 @@ weF qqz bOk bOk -bOk +uTJ wrI -fjt -xDR +vMU +vXt vuO ilg wmy @@ -117992,24 +121916,24 @@ vzB gDG lWc ecw -lll -lll -iis +uoF +uoF +aWV wTU vCW jkn -lll +gwk heR gmE mcX -eRs iHB eQA eLc jzP +jmG hXc -nYZ -uFo +ojj +iLm lkC fBQ rJL @@ -118048,7 +121972,7 @@ hDg pYI hDg hDg -nZF +eOh aWH xsh nZF @@ -118237,37 +122161,37 @@ kCP ofi rHD hAi -fLr -fjt +idO +vMU tWt qQd qQd -mmS +qQd qQd qQd qQd jFU bRx ecw -lll +uoF eYe mqm duE ibO ibO -lll +uzg dcE gmE mbY -eRs dmL +xUf uGx -jyd lVt +eRs pGV -kzf -uFo -gxP +ojj +iLm +byR gTL pJS eDq @@ -118303,7 +122227,7 @@ pJS bMo ctm iev -xZn +jkJ eMi nZF aWH @@ -118494,14 +122418,14 @@ qWj qST qST ipt -bsH +qUD xXU rnd mVm dtx iqC qHB -dtx +bdW nvX sJy rHq @@ -118510,9 +122434,9 @@ eLl lzk lzk sAm -wtz +vnh iXw -lll +uzg heR gmE czp @@ -118523,11 +122447,11 @@ bBK eRd vnz hJA -hnb -vYe +pfR +bic wAQ iFU -hDw +iFU kOF vcH iFU @@ -118729,7 +122653,7 @@ izW iXP iXP iXP -vTV +nQE xCq jNL eia @@ -118747,14 +122671,14 @@ fJz bxK fJz fWt -fJz -iIi -aFP +uYY +kuw +pjj jAT -fLr +idO fjt -jOi -qQd +vXt +iRC qQd qQd qQd @@ -118764,7 +122688,7 @@ fDb eIm tXS uoF -fkp +eYe lKk cSO jMo @@ -118779,9 +122703,9 @@ kkd egp scJ gNL -dXh -vlK -vXt +idO +aZs +fLr gTL pJS pJS @@ -118815,9 +122739,9 @@ pJS pJS pJS bMo -pJS -pJS -pJS +vnV +vnV +vnV eMi eGc nZF @@ -118983,14 +122907,14 @@ iFB iFB vyA jZs -cpQ +iXP iXP rpU -sjq +iMX mIa jMr -dCm -dCm +fMH +fMH vCE uka uka @@ -119003,14 +122927,14 @@ luY gIE ykn luY -dCm -dCm -voV -dCm -dCm -jrV +dTL +qTT +dTL +sWH +dTL +wrI fjt -fLr +vXt drX qye rYu @@ -119020,9 +122944,9 @@ pZX gDG lkt tXS -lll -lll -iis +uoF +uoF +aWV yes xvw tRt @@ -119030,14 +122954,14 @@ lll heR gmE xef -vFZ knq kCN +pZv hoq cER edz -vnV -vlK +idO +aZs lkC fXP iXg @@ -119072,7 +122996,7 @@ pHl pHl wgS uqo -yjM +pJS pJS pJS uqo @@ -119243,10 +123167,10 @@ nvv rsb rsb rsb -gnV +hOJ rpU pPk -dCm +fMH dcE dcE dcE @@ -119260,41 +123184,41 @@ dKv xWY iAu bGJ -dCm -eOB -nIq -jUS -voV -fLr +dTL +prZ +rCh +cMj +sWH +idO fjt pKT drX nol -qKB -qKB +oNM +vkQ wKi pZX qhq eIm wFP -fwP +omw sjC -iis -aNb +aWV +jwI gzt jFp lll dcE gmE eqa -vFZ jEw siZ siZ jEw +vTB juH -ibo -wCP +idO +aZs jMi tDY tDY @@ -119328,10 +123252,10 @@ cPY tNP tNP fAl -jkr -ruK -szy -djL +bCD +pJS +pJS +pJS pQc pQU nZF @@ -119500,10 +123424,10 @@ xCq cGa nUC cGa -eds +nsr rpU gOR -dCm +fMH dcE dcE jph @@ -119513,19 +123437,19 @@ jph jph dcE luY -uJy -aYk +jHH +cVQ cBB -bNu -dCm -emL -jGQ -rJe -voV -fLr +rZH +dTL +jaY +ini +eBo +sWH +idO fjt -qtW -jFV +drg +drX maO wlY twp @@ -119536,23 +123460,23 @@ eZA tXS fwP sjC -iis +aWV nFA oSb gBG aWV dcE gmE -gmE +oRD ruc pcf pcf pcf -pcf enE vNo +idO aZs -fLr +vXt tDY kVK eXe @@ -119585,10 +123509,10 @@ pHc thf thf vXQ -fAl -tUH -nLp -nLp +lPw +pJS +pJS +pJS eap fxY qBm @@ -119757,10 +123681,10 @@ iol eet jMr ibK -jqv +sBv oFC -nhP -dCm +sxO +fMH heR heR jph @@ -119774,15 +123698,15 @@ luY luY luY luY -dCm -cbS -rpL -hmY -dCm -rdx +dTL +itm +eBo +rNa +dTL +vdk fjt qtW -jFV +mmS svp sqQ bMd @@ -119806,15 +123730,15 @@ qeX qeX qeX qeX -keq +vNo idO aZs -fLr +vXt vUS wDZ quJ egX -ghV +aOE quJ wDs jJX @@ -119844,8 +123768,8 @@ ntN nTK fAl tVo -nLp -nLp +szy +djL eap eap qhH @@ -120008,17 +123932,17 @@ dcE dcE iFB iFB -dCm -dCm -dCm -dCm -dCm -dCm -pfK -dCm -dCm -dCm -dCm +fMH +fMH +fMH +fMH +fMH +fMH +xIT +fMH +fMH +fMH +fMH dcE jph frY @@ -120026,24 +123950,24 @@ uUT nyA jph dcE +bbn +iqX +kJG +fDV +kiY dTL -oHs -xYf -fpM -gTH -dCm -jqo -eaw -tEt -voV -fLr +kfo +azj +reW +sWH +idO uHy qtW jFV tgT sGj -qKB -ckd +nRN +goK pZX gyq wXk @@ -120051,7 +123975,7 @@ rTR aWV bCC lZn -aNb +vFZ opj wXU aWV @@ -120064,9 +123988,9 @@ oOx bpx oht kfA -fLr +idO aZs -fLr +vXt vUS afL quJ @@ -120082,7 +124006,7 @@ xhn sns jZc wSs -mHi +xcq mZA fTt kTJ @@ -120104,12 +124028,12 @@ jYq nLp hFi dVx -wKb -wKb -rdN -wKb -wKb -wKb +ohG +ohG +uPY +ohG +ohG +ohG jWB odZ nCo @@ -120186,57 +124110,8 @@ dcE dcE dcE dcE -"} -(134,1,1) = {" -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +"} +(134,1,1) = {" dcE dcE dcE @@ -120265,17 +124140,66 @@ dcE dcE dcE dcE -dCm -akS -wag -gaj -uHO -dXy -tmO -xNe -wIW -tAV -dCm +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +lnB +fMH +nrT +mTo +sQK +ixG +hMJ +sZA +hSe +hoe +crP +fMH heR jph oIT @@ -120283,20 +124207,20 @@ xYy iOE jph heR +gVQ +aOI +oFa +eJS +tHu dTL -jDr -oNp -sPC -sOw -dCm -rpL -lHY -uyD -voV -fLr +nAv +mTv +lYH +sWH +idO fjt qtW -jFV +mmS svp hEE qKB @@ -120323,7 +124247,7 @@ dBm hsR crk ucO -crk +fNB tDY dqj oJs @@ -120361,12 +124285,12 @@ vdl hFi sQJ gzh -wKb -uUX -eEv -eEv -uWu -wKb +ohG +npw +oHF +oHF +hwQ +ohG fTM odZ nCo @@ -120521,18 +124445,18 @@ dcE dcE dcE dcE -dcE -dCm -nit -eOn -uHO -dCm -dCm -dCm -rvH -dCm -dCm -dCm +heR +fMH +qGC +pSi +ixG +fMH +jnR +fMH +cQv +fMH +fMH +fMH dcE jph jph @@ -120540,27 +124464,27 @@ jph jph jph dcE +bbn +jOZ +koH +wzi +eQZ dTL -nCC -sjO -skC -qQj -dCm -dCE -bLf -jiv -dCm -wKV +jOG +eBo +rNa +dTL +rdx fjt -qtW -jFV -svp +ewt +drX +psk sGj qKB cbC pZX cfx -bic +eaj fDs aWV xTt @@ -120578,9 +124502,9 @@ nVc hQU drn cRa -fLr +idO aZs -fLr +vXt gNZ sfM guk @@ -120603,7 +124527,7 @@ gBg kYd vSX neB -nwd +ijJ hsx xYS tNP @@ -120615,15 +124539,15 @@ lei lmc fAl lGy -ajB -uxt -uxt -pHx -ltC -ltC -byJ -wLf -wKb +mSU +tyv +tyv +dvt +qOE +qOE +aAM +idf +ohG wCv qEE nxh @@ -120778,18 +124702,18 @@ dcE dcE dcE dcE -dcE -dCm -yiy -nAS -nit -nAS -dXy -hqg -rvH -ecP -nPB -dCm +heR +fMH +jln +kWL +hMJ +qwG +hMJ +ofs +cQv +qEj +cYn +fMH dcE dcE heR @@ -120797,23 +124721,23 @@ dcE heR dcE dcE +bbn +cXF +nZq +pJt +iTF dTL -rSu -uzN -oqd -mkv -dCm -nZb -ayn -bXg -voV +ipv +lik +eBo +sWH pVy fjt xQW drX jtU fry -qKB +cuL ckd pZX xms @@ -120822,7 +124746,7 @@ tXS aWV bzS eAg -ndK +nYZ ndK cif gZn @@ -120831,13 +124755,13 @@ aPV aWV hxd gnf -drn -drn -drn -cRa -fLr +dEN +dEN +dEN +lwJ +idO aZs -fLr +vXt aTx afL quJ @@ -120872,29 +124796,29 @@ rPd omG fAl wmC -xeI +cOE jbW qnM -wKb -wKb -hGD -wKb -wKb -wKb -wKb -wKb -wKb -wKb -ozw -wKb -wKb -wKb -wKb -wKb -ssm -wKb -wKb -wKb +ohG +ohG +rYR +ohG +ohG +ohG +ohG +ohG +ohG +ohG +cBs +ohG +ohG +ohG +ohG +ohG +tFO +ohG +ohG +ohG eap hxg eap @@ -121035,38 +124959,38 @@ dcE dcE dcE dcE -dcE -dCm -dCm -dCm -dCm -dCm -hmM -dCm -vRi -dCm -dCm -dCm -ega -dCm -dCm -dCm -dCm -dCm -dCm +heR +fMH +fMH +fMH +fMH +fMH +fMH +fMH +qtl +fMH +fMH +fMH +pRO +oDB +pRO +pRO +pRO +oDB +pRO +bbn +qbI +uzB +cmW +fvb dTL -uNG -jQu -oqd -yeu -dCm -emL -bXg -nZb -voV -fLr +fnH +mSQ +bKI +sWH +idO fjt -fLr +qpG drX qvg iEI @@ -121087,14 +125011,14 @@ kBA hAl aWV efC -hzY -drn -xtC -drn +gnf +dEN +dEN +dEN lwJ -fLr +idO aZs -fLr +vXt tDY qTl ghV @@ -121129,29 +125053,29 @@ rkW lmc fAl bCx -xeI +cOE sQJ -wKb -wKb -yfj -lAJ -ukZ -uMT -qyU -lKV -rHN -wKb -vht -oxM -ftK -wKb -mJb -cJU -wCj -mjB -lAJ -rFr -wKb +ohG +ohG +pxz +pBv +trv +jHb +gDe +fmq +pBf +ohG +fXF +qxV +gcb +ohG +mxJ +bpf +hSq +uZR +pBv +tFa +ohG eIO eIO eIO @@ -121291,52 +125215,52 @@ dcE dcE dcE bPW +ixf bPW bPW -bPW -sSk -nVH -sFV -dCm -dCm -dCm -kqk -ydI -qNg -dCm -dCm -pRO -aSd -tFy -xbz -fha -mrq +bIf +dOE +sUH +mCi +dlK +wEU +cpl +ohH +gwN +eRc pRO +iTw +eLV +vzf +iQE +iGe +kSR +bbn +bbn +rXM +aas +bbn +xHE +kEY dTL -mRq -vKW -dTL -dCm -dCm -dCm -voV -rnp -oUO -toM +sWH +fYo crk +toM +fNB drX drX wJn -npf +drX drX drX cfx -bic +eaj fDs aWV aWV aWV -eFq +aWV aWV aWV aWV @@ -121349,9 +125273,9 @@ hCy bCv wBv nGH -fLr +idO aZs -fLr +vXt suy nfG quJ @@ -121385,30 +125309,30 @@ ntN gPd qyA fAl -pcR -rNG +tUH +frP nLp -wKb -mWI -lAJ -rps -lAJ -uMT -qyU -qyU -eEv -aRg -qNq -eCO -htb -gnU -uuE -hHP -pTX -pOW -aAk -fGM -apE +ohG +fxL +pBv +nCp +pBv +jHb +gDe +gDe +oHF +xGN +dPq +wwn +mgN +aBz +vbx +aMl +vxa +gXH +bZI +lzH +nNA eIO ncO eIO @@ -121547,65 +125471,65 @@ dcE dcE dcE heR -bPW -dYl -oYn -fVa +ixf +xxh +rnV +lwu vwr vwr +new +qAk vwr -ukM -qOv -lwu -uen -lIk -lIk -dgR -bqA -pRO -rEG -hXE -pKp -dKa -qGv -pRO -wcT -kqt +vwr +mma +xEt +vtP +hrE +xgK +kaq +vfe +vfe +mUt +kaq +vfe +xgK +hxA +eDI vfe ofd -otb vfe -gpU -fLr -fLr -fLr +svH +vfe +vfe +fwq +dlx fjt gxP -fLr -fLr -fLr -fLr -fLr -fLr -fLr -fLr -pzy -fLr -fLr +bVS +itA +itA +upE +itA +itA +itA +itA +iyI +itA +itA wZy -fLr -fLr -fLr +itA +itA +itA mMA -fLr +gpU obn dFt hHd itA -fLr -fLr -fLr -fLr +itA +itA +itA +itA aKc aZs fLr @@ -121614,12 +125538,12 @@ afL kzm kFt voP -cKR +egH qez gRB anp tIq -olM +vXv tIq gde fXN @@ -121642,30 +125566,30 @@ vWv vWv lmc tNP -lGy -xeI +xIp +cOE cOe -wKb -cpD -rps -lAJ -eEv -pEI -qyU -qyU -yfj -wKb -txT -siM -fdI -wKb -wjO -weK -dZs -fGM -eyg -vkl -wKb +ohG +vhE +nCp +pBv +oHF +hWJ +gDe +gDe +pxz +ohG +pxe +ejB +jEd +ohG +jBr +rdz +uQi +lzH +gBe +wEg +ohG eIO eIO eIO @@ -121804,39 +125728,39 @@ dcE dcE fRO heR -bPW -nIH -vwr -vwr -vwr -ibr -qek -qek -qek -qek -tWR -tWR +ixf +xxh +aQq +fMS +fMS +lAo +olG +olG +olG +tFB +olG +vPE tWR -bIS -ebC -pRO -rPs -kdG -gqh -jOT -iQR -etf -xWy -uAm -jyX -jyX -lCf -lCf -chU -cib -cib -cib -gki +fjo +xgK +vfe +uQl +tCt +bFl +pSv +laC +fdN +laC +lnE +rdW +afQ +ork +rjc +kVf +kVf +wSn +ncC +ber cib cib cib @@ -121850,7 +125774,7 @@ ygM cib cib cib -jiE +rXt aZs aZs aZs @@ -121864,7 +125788,7 @@ aZs aZs aZs aZs -bTZ +jcH vXt gNZ bXO @@ -121894,35 +125818,35 @@ jFH uGP kxo iCa -lbe +fdz xIl idj uix tNP pcR -izU +wNo dxN -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -dvu -dNu -nlo -wKb -wKb -wKb +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +gNx +wFi +dXE +xZu +ohG +ohG +ohG eap hxg eap @@ -122060,61 +125984,61 @@ gMc heR heR gMc -heR -bPW +oTg +jOO ixf ixf ixf -oOz +vra ixf ixf -dtu +iqe ixf ixf ixf -bPW -fyw -bIS -nMp +jOO +hWN +mTJ pRO -wIK -wfk -bDQ -lvv -jxl pRO -sKT -qAd -ezL -vfe +pRO +pRO +pRO +pRO +pRO +pRO +cyD +kqu vfe +kaq vfe -gpU -fLr +piW +sNz +mTT fwq nkF -jRH -fLr -fLr -fLr -fLr +qNe +qNe +qNe +qNe +qNe qsb -nkF +ruK cwq oHu -fLr -fLr -fLr -kuT -fLr +qNe +qNe +qNe +qNe +qNe wTx tNr vOs tNr -nPW -fLr +ghA +qNe fom -fLr +qNe tXN nzd oGH @@ -122141,8 +126065,8 @@ qSk qSk qSk rOA -aRb -nvA +rsJ +grc hZe uZn tsJ @@ -122157,7 +126081,7 @@ oof exo tNP pcR -xeI +cOE xaz bQe qYi @@ -122173,11 +126097,11 @@ jSD hJE ebL xhF -cWU -fwz -aMa -ybh -wKb +gNx +jbL +qYK +fZh +ohG heR dcE dcE @@ -122330,25 +126254,25 @@ osO osO osO ixf -jcz -bIS -gcm -pRO +ulw +xJJ pRO +vqx +fQG pRO +aKJ +bOf +hsU pRO -pRO -pRO -pRO -uCA -rVT -hQV -lTA +xJs +uyR +eCA +rls +dCm dCm dCm dCm dCm -oKg oKg cLQ cLQ @@ -122359,21 +126283,21 @@ oKg tPU tPU tPU -uzs -tPU +ayi tPU tPU +jMu rWE vai rWE -shs +dtP lSU fbv wMr bFb -hKy +wMr wvI -shs +wqB nAB nAB abT @@ -122398,8 +126322,8 @@ qhB bjq qnC rOA -jBs -aah +fRo +uhz vzq uts uir @@ -122414,7 +126338,7 @@ nCI ifV fAl lGy -rNG +frP xaz bQe iLy @@ -122430,11 +126354,11 @@ tWZ eoH mrC mrC -cWU -cer -qAw -jHD -heC +gNx +jkk +jhg +rOE +nsn dcE dcE dcE @@ -122587,40 +126511,40 @@ kEx osO osO ixf -jcz -bIS -wmn +ykc +oUr pRO -pmn -tFy -pIr -noC -gPA pRO -kqF -qAd -lMe +uUS +pRO +hGy +aHB +ttw +pRO +szf +dnJ +piN rzK dCm -xbZ -rfE -ugX -oKg -bMl +kID +kID +rCP +dCm +ghI bZx kJF kCE ftk vfX oKg -tQt +tVT xan -tNG +vWe vWe baw -dAW +vIE tPU -tuw +gqv vPN vQM shs @@ -122629,7 +126553,7 @@ shs ldX qLg shs -shs +eaM shs kdC vZd @@ -122687,11 +126611,11 @@ uLw fEs sUm qRy -cWU -pGk -iAr -oxi -heC +gNx +kvV +cvq +ibE +nsn dcE dcE dcE @@ -122844,43 +126768,43 @@ osO osO osO ixf -lOh -bIS -mLH +nuR +wjx pRO -rPs -kdG -iNK -jOT -iQR -fVj -xWy -aQj -dhL -sfq -mYK -bNY -bNY +tZf +czG +gij +gbw +sux +wBY +iFK +pjp +sPl +tFj +kPe +hlD +bXk +bXk sCP -oKg -cDC +dCm +uzV tCN swU gzc cWF -jdR +ugp oKg -oTr -bfc -sUi -gmc -scy -aVP -gug -qoD +hqV +dBE +hAy +fBT +bPS +tie +nUr +brb vPN -aCa -abs +caF +okC bgW iDe dkd @@ -122944,11 +126868,11 @@ cpA gLs gvI tOg -cWU -vGl -dNu -aYq -wKb +gNx +bWR +dXE +qwb +ohG dcE dcE dcE @@ -123101,31 +127025,31 @@ osO osO osO ixf -jcz -bIS -ncJ +ykc +oUr pRO -wIK -ekB -bDQ -lvv -pWh +pYg +gAh +cpF +vGu +iMO +gBu pRO -err -qac +qpJ +kqu lMe -rzK +asl dCm -voi -bNY +kID +bXk xGU -oKg -smt +dCm +mQA kwE wma lAn jzk -oyI +ror oKg tPU rJi @@ -123134,10 +127058,10 @@ sVq tPU wOq tPU -aCa +mnK vPN -aCa -abs +caF +dXh skr npb npb @@ -123165,9 +127089,9 @@ mJp wps wps arT -lWg +inZ bwM -jEz +inZ arT wps wps @@ -123201,11 +127125,11 @@ vSw adU iKm qSG -cWU -hqZ -dNu -aaS -wKb +gNx +tMT +dXE +qod +ohG dcE dcE dcE @@ -123346,7 +127270,7 @@ cOu cOu cOu cOu -bPW +jOO mmi osO osO @@ -123357,10 +127281,9 @@ osO osO osO mPB -bPW -jkR -bIS -aFN +jOO +sUK +pHJ pRO pRO pRO @@ -123368,15 +127291,16 @@ pRO pRO pRO pRO -gmh -qAd -lMe -epE +pRO +eJp +dnJ +ugC +bfl dCm lKb -bNY -rCP -oKg +mFU +wqU +dCm oKg oKg hda @@ -123393,8 +127317,8 @@ aTw tPU vfV vPN -aCa -abs +caF +dXh rvu qOw osS @@ -123458,11 +127382,11 @@ bdc aqe qhv ffC -cWU -viy -rYH -men -heC +gNx +nda +qpH +hLW +nsn dcE dcE dcE @@ -123615,30 +127539,30 @@ osO osO osO ixf -lOh -uVY -cWS +dSu +lzy +pRO +xYC +fQG pRO -mcY -tFy -qNn -nym -clF +udu +wBT +iGO pRO -ntw -qAd +oJt +dnJ emE -iOp +kNE dCm wzs -bNY -hTt -udl -xdP -uFX +kux +lgx +dCm +hwL +reI pXL -nbP -txO +mOc +cal qrK udl udl @@ -123650,8 +127574,8 @@ nnH nnH xzX vPN -aCa -dHq +caF +uxW uxW pRt gyN @@ -123715,11 +127639,11 @@ fdg sJX dag wrf -cWU -isv -gjM -jRZ -heC +gNx +lIF +vIG +kaI +nsn dcE dcE dcE @@ -123872,47 +127796,47 @@ osO osO osO ixf -jcz -bIS -hpC +xnL +azG +pRO pRO -vTH -hXE -ogG -wDQ -pgQ +jOJ pRO -sKT -qAd +uAX +sEV +uAX +pRO +oiV +dnJ vfe -beb +ugr dCm -bNY -gAy -khn -udl -cLV -brf -pXL +qfB +knp +tQl +dCm +llC +jhz +tde brf -lom +cdJ brf -vTL -jRJ -hPD +sxR +iwg +yfS udl -bbm -olr -qOm +cjQ +aoi +bGv nnH wFc vPN -aCa +rky vjc -abs -skr +shs +pRt txS -jBx +cQd jYm swZ shs @@ -123958,25 +127882,25 @@ arT gnR qfr vSq -evO -evO -evO -evO -evO -svL -cWU -cWU -cWU -cWU -cWU -cWU -jvL -cWU -cWU -clh -kgi -lBo -iMp +gNx +gNx +gNx +gNx +gNx +mmW +gNx +gNx +gNx +gNx +gNx +gNx +mRO +gNx +gNx +uSK +bfC +rHf +bIX dcE dcE dcE @@ -124129,47 +128053,47 @@ osO osO osO ixf -jcz -bIS -kQf +ykc +oUr pRO -rPs -kdG -iNK -jOT -iQR -hPL -xWy -qAd +mOz +czG +gij +iPx +sux +wBY +nhc +pjp +tje vfe -hpo +uPZ dCm -crG -idM -idM -idM -ffn +lqw +dCm +dCm +dCm +brf fmS pXL -pXL -pXL -uyi +yfH +qZY +lxy qNp -brf -jCY +xIs +uRA udl -wgU +xAm eQF -vzO +tns sKM xtG vPN -aCa +rSX hDF -abs +shs dyS fgd -jBx +fVE uJs lkY shs @@ -124215,25 +128139,25 @@ arT hFi qfr sQJ -xYL -gtd -gGl -bgm -rKA -fUu -wKb -bQz -xqy -eEv -wKb -eEv -eEv -eEv -wKb -wKb -kmQ -wKb -cIB +jGn +oHF +chv +uyA +ohG +wVY +ohG +qaw +lbJ +oHF +ohG +oHF +oHF +oHF +ohG +ohG +jAx +ohG +bxv dcE dcE dcE @@ -124386,44 +128310,44 @@ osO osO osO ixf -lOh -bIS -qnN +rnK +taB pRO -fZq -ekB -bDQ -lvv -aHe +xOU +gAh +xHS +lhR +iMO +but pRO -tqQ -ccZ +cyD +rYw qMN -pOF +aSP dCm -afj -idM -qsC -cTX +qfB +dTs +rWN +dCm +efg +oPO brf -xmb -fNp brf lxa nQu -mcG -acQ -aRs +wpg +ruF +nai udl -csP +aHb vzO -eQF +uaB sKM xtG vPN -aCa -dHq -dHq +caF +abs +abs pRt dyl nSX @@ -124472,25 +128396,25 @@ arT lim efJ rvs -rKA -rKA -rKA -rKA -rKA -fUu -xah -ktt -xXx -pgA -wKb -eEv -eEv -eEv -eEv -eEv -eEv -eEv -cIB +ohG +ohG +ohG +ohG +ohG +wVY +gSH +ulV +aXY +kRX +ohG +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +bxv heR dcE dcE @@ -124630,22 +128554,21 @@ gMc heR heR gMc -heR -bPW +oTg +jOO ixf ixf ixf -oOz +vra ixf ixf -dtu +xsq ixf ixf ixf -bPW -hCB -bIS -alm +jOO +ejc +oUr pRO pRO pRO @@ -124653,17 +128576,18 @@ pRO pRO pRO pRO -gnw -qAd +pRO +vme +kgM vfe -fWc +vmO dCm -cNO -idM -idM -idM -aof -rrn +nBR +dCm +dCm +dCm +mlj +jjZ udl udl qPv @@ -124672,14 +128596,14 @@ udl udl udl udl -jch +oZe nrZ eQF dGQ fLb btE -aCa -abs +caF +uBY cRX sIO igx @@ -124734,19 +128658,19 @@ ofc wWx gbH ewD -fUu -wKb -pcL -fRe -eEv -ooy -eEv -eEv -eEv -eEv -eEv -eEv -eEv +wVY +ohG +cNf +dSq +oHF +bPT +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ cIB heR heR @@ -124888,55 +128812,55 @@ dcE dcE fRO heR -bPW -vEU -uDv -vwr -vwr -vwr -vwr -vwr -vwr -vwr -vwr -jcz -jcz -bIS -pDt -tYz -uus -qVd -cVN -bXH -aQM -cVN -cVN -dux -ezT -pOF +ixf +xxh +vNl +utS +utS +jLS +eeO +eeO +eeO +nuh +eeO +lsy +bPq +oYy +pRO +eel +fQG +pRO +xkG +nEX +flU +pRO +oiV +uKr +csr +dCm +dCm +joA +uaI +uaI dCm -ade -rdl -oMd udl -mlj -jjZ +udl udl vXi ofY -vFN +euH nnH -tWU -aoF -hTc +phn +pcE +hsj lwd eQF -rCO +mJY sKM xtG vPN -aCa -abs +caF +uBY hBM npb npb @@ -124991,19 +128915,19 @@ kKJ gkn dJb ewD -fUu -wKb -wKb -wKb -wKb -wKb -eEv -eEv -eEv -eEv -eEv -eEv -eEv +wVY +ohG +ohG +ohG +ohG +ohG +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ cIB wKb heC @@ -125145,54 +129069,54 @@ dcE dcE dcE heR -bPW -aug -vwr -pAz +ixf +xxh +soR +jwC iSE -kjN -fsf -fsf -vHO -vDV -laQ -laQ -jjn -hfx -jjn -mkI -cxQ -cxQ -xUV -olU -olU -olU -olU -laK -ffR -pOF -dCm -cNO +vwr +xRD +vwr +whn +psp +vtP +cBF +vtP +akk +pRO +pRO +jOJ +pRO +iyV +jBS +olB +pRO +oiV +qXh dCm dCm +kID +xGb +hnI dCm dCm +taf +dXy dCm -udl -brf +hAb ofY -oSs +euH nnH tOG eQF lgb pUU -vzO -nOU +auf +pCZ sKM xtG vPN -aCa +caF abs yeG knB @@ -125248,19 +129172,19 @@ sOT bJj dsV ewD -fUu -cCI -jyL -jyL -siG -wKb -eEv -eEv -eEv -eEv -eEv -eEv -eEv +wVY +kkw +aGx +aGx +rhT +ohG +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ +vQQ bVs lJQ alT @@ -125406,57 +129330,57 @@ dCm dCm dCm dCm -pBG -fUE -nts -aiv -aqG +kqh +nHG +qya +fOF +xCj bPW -tgp -lOh -qSP -wPP -eQg -dCm -dCm -dCm -dCm -oZA -dCm -dCm -dCm -dCm -dCm -dCm +gbo +byW +jPe +aYF +pRO +mOz +czG +gij +iPx +sux +wBY +mFE +tXw +kIr dCm -tMZ +kID +isp +isp +isp +isp +upk +isp +isp dCm -fIg -pfx -kKy -fIg -udl -hvE -ofY -gIN +iHO +enk +vrR nnH -rIw -eTZ -cJE +rOX +bWm +dPv eQl -rmK -hrT +wRL +llf nnH xtG vPN qwa shs -shs +bOb shs ldX ldX -eaM shs +bOb shs abT abT @@ -125495,7 +129419,7 @@ arT arT arT arT -arT +wgE arT nLp lDo @@ -125503,21 +129427,21 @@ vyF ewD rJv eUD -evO -evO -mTH -cWU -cWU -jyL -jyL -wKb -eEv -eEv -eEv -pDf -eEv -eEv -eEv +gNx +gNx +kOK +gNx +gNx +aGx +aGx +ohG +vQQ +vQQ +vQQ +kSI +vQQ +vQQ +vQQ wKb koi wKb @@ -125658,53 +129582,53 @@ dcE dcE dcE dcE -dcE dCm -rmC +dCm +xhV ybW dCm dCm dCm -vFr +rSD dCm dCm dCm dCm -qvU +dMG dCm dCm dCm dCm -cqh -ntW -cNO -cqh -ozE -yeT -cCv -yeT -pov -pov -pov -fIg -cNH -fIg +uvw +xHS +sri +iMO +xts +dCm +dCm +jNW +dCm +kID +isp +kID +lsa +xZM dCm dCm uBD +dCm udl -udl -vFl +muK udl nnH sKM nnH sKM -ggj +hQh sKM nnH -nnH -bCD +jOi +xtG vPN glC oCe @@ -125715,9 +129639,9 @@ cLL mYd iYK shs -nCg -nEO tSp +nEO +vqs abT tGN rmw @@ -125757,30 +129681,30 @@ pps hFi tXs lEP -rKA -rKA -evO -evO -pPg -aLd -aLd -cWU -cWU -cCI -wKb -wKb -heC -heC -vaD -heC -heC -wKb +ohG +ohG +gNx +gNx +pAX +dPl +dPl +gNx +gNx +kkw +ohG +mLm +bSt +bSt +iQj +bSt +bSt +mLm wKb mNN wKb wKb wKb -roY +koi heC dcE dcE @@ -125915,44 +129839,44 @@ dcE dcE dcE dcE -dcE dCm -sbI +xBr +rpj gbJ +nHi +gRv +dXy +adv +mCO dCm -jhU +pcD +qjf +tGo +dXy +ily nit -isp -xBr dCm -wIW -qjf -isp -isp -ust -isp -isp +dCm +dCm +dCm +dCm +dCm +dCm +eMf +aAg +cqh +cqh cqh -hkm -hkm -hkm -hkm -hkm -hkm -hkm -hkm -voi -yeT dCm dCm dCm dCm tFd tCF -gex -aHx +ppu +nmW qGm -pnN +nQi nQi nQi nQi @@ -125984,18 +129908,18 @@ aCa upr qMi aCa -djL -uzj -txz +aCa +aCa +kgr tjR kxY -nLp +moO dOk hFi lim qVm hFi -nLp +uzj uVf lqr lAf @@ -126007,7 +129931,7 @@ hFi hFi hFi hFi -rMe +hFi gnT hFi hFi @@ -126016,13 +129940,13 @@ qfr hFi bnO bse -evO -aLd -aLd -aLd -aLd -aLd -cWU +gNx +dPl +dPl +dPl +dPl +dPl +gNx wNo oJz eyb @@ -126170,212 +130094,148 @@ dcE dcE dcE dcE +mXN dcE -dcE -dcE -dCm -dCm -nHi -dCm -adv -adv -isp -isp -isp -isp -isp -iZx -oTJ -nPB -dyG -pov -aMD -hkm -heR -heR -heR -heR -heR -heR -hkm -voi -yeT -dCm -ooK -nvO -owr -rwW -jBK -kSN -ffj -vTm -qDe -qDe -rHk -qDe -qDe -iPT -qDe -qDe -qDe -qDe -sBk -aCa -jTf -aCa -aCa -aCa -aCa -aCa -aCa -jjv -aCa -aCa -aCa -imq -imq -imq -imq -imq -qMi -qMi -qMi -fok -byE -aXa -epi -aXa -tjA -aXa -epi -epi -epi -epi -epi -epi -epi -epi -epi -epi -aXa -epi -epi -aXa -epi -epi -epi -aXa -epi -aXa -aXa -epi -tXs -qhd -vRF -mAe -evO -aLd -aLd -aLd -aLd -aLd -cWU -owf -kRI -oYp -jvo -qVm -cWk -cWk -cWk -cWk -unM -wBO -vij -hri -wKb -acx -heC -dcE -dcE -dcE -bWY -dcE -dcE -bWY -dcE -dcE -bWY -dcE -dcE -bWY -dcE -dcE -heR -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -"} -(158,1,1) = {" -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +dCm +dCm +dCm +dCm +dCm +adv +adv +hXp +cOz +cOz +kqs +isp +tqv +eBi +eBi +mvT +eBi +ijL +eBi +lps +eBi +ijL +eBi +eBi +wKx +kID +kID +pBe +dCm +lKG +nvO +owr +rwW +mRU +wwd +fyo +vTm +qDe +qDe +rHk +qDe +qDe +iPT +qDe +qDe +qDe +qDe +sBk +aCa +jTf +aCa +aCa +aCa +aCa +aCa +aCa +jjv +aCa +aCa +aCa +imq +imq +imq +imq +imq +qMi +qMi +qMi +fok +fok +fok +pfS +aXa +tjA +aXa +epi +epi +epi +epi +epi +epi +epi +epi +epi +epi +aXa +epi +epi +aXa +epi +epi +epi +aXa +epi +aXa +aXa +epi +tXs +qhd +vRF +mAe +gNx +dPl +dPl +dPl +dPl +dPl +gNx +owf +kRI +oYp +jvo +qVm +cWk +cWk +cWk +cWk +unM +wBO +vij +hri +oTF +koi +heC dcE dcE dcE +bWY dcE dcE +bWY dcE dcE +bWY dcE dcE +bWY dcE dcE +heR dcE dcE dcE @@ -126418,6 +130278,38 @@ dcE dcE dcE dcE +"} +(158,1,1) = {" +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE dcE dcE dcE @@ -126430,41 +130322,73 @@ dcE dcE dcE dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +mXN +heR dCm -jDY -inp -mHH -hQQ -lZQ -nws +syK +ddI +oPf +glF +adv +dXy +dXy itt -nws -ydH +fVp +dXy isp -pov +lZQ xqs xqs xqs xqs xqs xqs -dqJ -dqJ xqs xqs -dqJ -dqJ -jSf -jSf -qpc +xqs +xqs +xqs +xqs +hkm +rGY +hkm kOk kOk kOk kOk hdi -cHC -wZA -fct +iuN +gMB +iah frE iEk qrZ @@ -126473,40 +130397,40 @@ mGb spJ eJX qrZ -xtf +qrZ qrZ qrZ dko oDH oDH -gti -oDH -iYq -caE -dUe -oDH -bEJ -iKT -oDH -oDH -bZJ +jty oDH oDH oDH oDH oDH oDH +iKT +bZJ +bZJ +bZJ +dej +aCa +sVO +lqS +lqS +lqS xCW oDH dGi -oVz -nLp +aCa +kgr gZh hFi ajB nLp wLK -vOE +oVz nLp hFi jbW @@ -126530,13 +130454,13 @@ xEB hFi upt lZM -evO -aLd -aLd -aLd -aLd -aLd -cWU +gNx +dPl +dPl +dPl +dPl +dPl +gNx cMb lue vnp @@ -126684,39 +130608,39 @@ dcE dcE dcE dcE -dcE -dcE +mXN dcE dCm -xxd -mjh +awk +vdZ +hkm bTW -foJ +qRg bTW bTW -jjd +pkW +bTW bTW -jSf isp -pov +dZS xqs -vUm -pLP -vyp +xrI +bjH +uvf dqJ -vBX -mzN -hbO -eKF +cME +gpb +wkf +eZU gmd -iAH +guh dyt -jSf -bKC -vDL +hkm +hKr +oDZ kOk -aGG -aGG +tmG +tIa aGG hdi hdi @@ -126729,71 +130653,71 @@ jwa qKO qKO qKO -oDs -qKO +uln +cwA uDd bgT edJ qHJ vBZ -qKO -uln -qKO -qKO -qPj +pfM +iys +ldp +mHF eao +eao +wmg qPj -qPj -cjh -cjh +vkD +aqi mwS xCO nak -uKP +rRN wTn mQX -cjh -mHf -mHf +rVL mHf +tUg mHf +bQC mHf -rKA -cLq -nuP -awK -rKA -rKA -rKA -dHh -rKA -rKA -rKA -rKA -kRd -rKA -rKA -rKA -sVA -awK -xuU -rKA -cLq -rKA -awK +uAp +qVv +sai +bab +uAp +uAp +uAp +cZD +uAp +uAp +uAp +uAp +vVi +uAp +uAp +uAp +klQ +bab +mKb +uAp +qVv +uAp +bab oAN aXa nBS -rKA -rKA -rKA -evO -evO -aLd -aLd -aLd -cWU -cWU +uAp +uAp +uAp +gNx +gNx +dPl +dPl +dPl +gNx +gNx aSW aSW pQh @@ -126941,50 +130865,50 @@ dcE dcE dcE dcE -dcE -dcE +heR dcE dCm -iBG -oKN -bTW -oPu +fGQ +cWu +hkm +kmz +xDq mvu llK -fYt -nXr +hfL +cDF +bTW +nNi jSf -lnO -cNt -tkO -ovN -oUo +xqs +xPy +wHB klH lVD -uTK +szG fsw -ahT +ggX jHt jHt jHt -wJF -jSf -ucQ -wzB +stt +hkm +aDd +rtv kOk hPP qlF vaF +giG oOs -iKA lNZ ksm -qlf -tul -lge -xQU +duf +bAS +dzw +cnT jwa -qKO +hCL eYw eYw qKO @@ -126994,62 +130918,62 @@ gZW uqm qKO qKO -hbK -eYw -qKO -qgr +qPj +toT +hIS +xiy xiy -lmt +sta qPj -caQ -gNy +cjh +nJU qgI lMT mie vzr +mie nJU -nJU -mhP +cjh mHf gFB sLS pGs mHf -swp -gKL -mHx -mwj -qWv -rKA -bpB -gtd -lHT -rKA -dsR -djE -tpA -iCN -rKA -gZD -agO -agO -kAV -oLE -agO -agO -rKA -rKA -yli -iRa -rKA -bZq -tRG -bZq -evO -evO -mTH -cWU -cWU +tJH +hpr +pLS +kJk +kZq +uAp +iCV +lLN +iTh +uAp +qNP +iai +wRT +hew +uAp +kcL +lFF +lFF +mmM +kJl +lFF +lFF +uAp +uAp +kuB +wqe +uAp +iwY +fWB +iwY +gNx +gNx +kOK +gNx +gNx msr aSW xNN @@ -127196,52 +131120,52 @@ dcE dcE dcE dcE -xXv +iWu mXN -dcE -dcE -dcE +mXN +heR dCm +pZZ lNm -oTE -bTW -iqs -sRa -nfM +hkm +xEW +xDe +mtM +aVZ bCb -mId -jSf -pIn -qhl -xqs -vUm -lff -wLg +gKT +bTW +xyD +ahl +tkO +plk +wHB +uqN dqJ tMD pDT -xwC +mQH hKn hKn hyo -lRr -jSf -bBu -vRz +wnm +hkm +dxU +kAc kOk hun cZN kAX -fjy -osu -xfX +eAl +gNg +sII ezE -udY -xQV -lge -rNx +tck +whH +dzw +lzg jwa -qKO +whG hbK qKO qKO @@ -127252,59 +131176,59 @@ qKO qKO qKO bPw -eYw -qKO +oII +iYq fGL uDD qxr opL pLd -eOa -eOa +raF +piF kIw -eOa -eOa -eOa +geK +kIw +cTo pOQ jBX jkG ggH -hXm +uqB bKs mHf -pGv -agO -vdr -tbf -cCr -rKA -ops -qHN -gtd -rKA -lBF -gtd -cIX -iCN -rKA -agO -agO -oLE -kAV -oLE -gtd -agO -rKA -vok -viN -eJZ -rKA -rPV -qZv -nTM -yiL -rKA -jmh +xpo +lFF +lMj +qQe +uLe +uAp +xMu +qGe +lLN +uAp +tzK +lLN +agL +hew +uAp +lFF +lFF +kJl +mmM +kJl +lLN +lFF +uAp +pqo +qqs +cXO +uAp +dGX +okJ +rDz +tfq +wKb +dlt qdA wOx vcm @@ -127454,49 +131378,49 @@ dcE dcE dcE mXN -heR -heR -heR -heR -unl -kQy -unl -unl -lUO -kUW -lVA -gBY -kUW -jSf -orm +dcE +dcE +dZJ +pZJ +pZJ +gtm +pZJ +nbQ +qnB +ing +xXj +lbp +aEA +bTW +aaq cil xqs xqs -yhN +uXm xqs xqs -dqJ +rgq wDY -dqJ -dqJ +rgq +rgq vzW -dqJ +rgq xqs jSf -aqy -fZR +pdY +jSf kOk -vMO -vqi +sDD +tEQ seA -cuT -gFk -fBX -hpe -nbY -bKb -lXK -lBQ +siD +dmk +bAW +cwe +cbn +xgR +qqV +yiF jTQ jwa gtA @@ -127505,63 +131429,63 @@ tkm lAg xoT aVm -hKw +eYw hfX qKO woX -hbK -qKO -vgN +fNW +eJa +cJK cJK rSb qPj kHy -hHA +blm ghZ -geK +aSU pce -rxk -ntx +gSn +gSn gSn mDS -iju +mHf sXk kdp lfK mHf -nqu -xuB -tbI -gKL -oSZ -uKm -gtd -gtd -sUV -rKA -dFo -qHN -oCA -rVx -rKA -gtd -agO -cEf -afP -rXI -gtd -agO -rKA -gvk -mRI -iRa -rKA -oOd -qHN -qHN -eAP -rKA -jmh +oAf +xId +llM +hpr +bNe +hgi +lLN +lLN +kpl +uAp +rxW +qGe +lbk +ihJ +uAp +lLN +lFF +cgG +lSM +sGT +lLN +lFF +uAp +pbY +kjr +wqe +uAp +syN +qGe +qGe +dhf +wKb +dlt dlt wKl rNT @@ -127705,7 +131629,7 @@ dcE dcE dcE dcE -dcE +heR dcE dcE dcE @@ -127714,64 +131638,64 @@ mXN dcE dcE heR -unl -unl -eGE -hVk -hBw -fgx -kqH -vLj -hYg -fGD -eQO -lsV -xCJ +pZJ +gBr +oZS +fOs +vfQ +rtr +jwO +qMF +nKp +dvr +lPP +pny +qYP tNb lqA -ygH -rrz +vEv +sOU hKE nNY tIl xkL -kTN -nNY +sOU nNY +oOE tKa nNY -ocF +nzx jSf jSf njk njk njk -uAl -dGS -bAW -idm +njk +hFp +cMR +ezt oOs -wfz +pVM gsL -iDS +wQu aKR jwa eYw qKO -eYw +mzH qKO qKO hlF ctT leR qKO -qKO -eYw -qKO +ylN +gNS +qNi tLq jua nUd -qPj +opL ivz hHA nml @@ -127779,46 +131703,46 @@ ebO web ebO rOb -gSn +dUe jYs -mHf +jkG iUM -uqB +kdp puR mHf -gim -gtd -agO -gKL -gtd -rKA -lxN -gtd -aFm -rKA -oPW -sfJ -mHD -gtd -rKA -agO -agO -oLE -kAV -agO -agO -agO -rKA -gAM -viN -vsq -rKA -xfr -nvM -qHN -qHN -rKA -jmh +vgV +lLN +lFF +hpr +lLN +uAp +oRA +lLN +wpL +uAp +uLI +ouJ +cZz +lLN +uAp +lFF +lFF +kJl +mmM +lFF +lFF +lFF +uAp +qcW +qqs +vIb +uAp +fiZ +iiN +qGe +qGe +wKb +dlt qdA wOx tVR @@ -127832,8 +131756,8 @@ uVg uVg pWZ uVg -uVg gLU +bDq foj koi wKb @@ -127961,32 +131885,32 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -dcE +dZJ +iWu mXN -dcE -dcE -gOE -jsV -nAN -uhl -rZl -gXQ -kXt -aTV -kUf -unl -unl -unl -unl -jSf +mXN +mXN +mXN +iWu +heR +bWY +ule +tMN +lLT +ePI +shl +qBr +dkb +dkb +jBf +pZJ +pZJ +pZJ +pZJ +pZJ hmX wrQ -ygH +vEv wrQ wrQ wrQ @@ -127997,85 +131921,85 @@ wrQ hns xgZ wrQ -rOB +lkf jSf -jDl +bau ncV hsI -dtj +fOY pdB -bRC -bAW -rIU -bAW -loh -bAW -rIU -kmm +mlx +xRj +wjX +qtj +doK +gUr +oyz +ipo jwa eYw qKO ggQ -hbK +uoz qKO ceh rvt ufx -jia -qjV -hKw qjV -rwd +jRe +sXu +eJa +deg deg qJb qPj -qNi +cjh ssa cjh -osx csb +aIR csb cjh glU -qNi +cjh mHf fEA -uqB +akv dKD mHf -vCr -bMq -xvv -lYw -mPn -rKA -rKA -daz -rKA -rKA -sJK -gtd -dOq -gtd -fhA -agO -agO -vpt -afP -qGx -agO -gtd -rKA -rKA -mRI -nlP -rKA -qHN -qHN -fUh -ogn -rKA -jmh +iPv +kFN +qOj +lhq +fCM +uAp +uAp +afI +uAp +uAp +uVD +lLN +iEe +lLN +cMJ +lFF +lFF +mSG +lSM +yiw +lFF +lLN +uAp +uAp +kjr +peI +uAp +qGe +qGe +fjO +wDX +wKb +dlt rOn iXD kiu @@ -128087,7 +132011,7 @@ xRn aSW jjG uVg -ucl +nax uVg hRW bDq @@ -128219,120 +132143,120 @@ dcE dcE dcE dcE +mXN dcE dcE -dcE -dcE +heR dcE mXN heR -heR -heR -kbu -naa -mFk -rZl -nyz -fgx -vLU -oKx -bUb -nBH -inu -inu -jSf -fvu +bWY +vNb +tMN +sZk +cPr +shl +qBr +dkb +dkb +jBf +qVU +aIZ +kay +kfI +pZJ +rnN lpj -oob -fVd -fVd -fVd -uyr -uyr -uyr -uyr -uyr -nGB -ien -aat -oxn +aaN +lsv +lsv +lsv +aaN +aaN +aaN +aaN +aaN +uCs +iti +iti +mCN itX ngp -qzQ -hYa -jCv -mYm -xRj -wjX -qtj -doK -smk -gTe -eSW -iSh -nES +mPt +mLd +pBh +wsP +spn +wyA +vDM +vYQ +fnF +lRs +bFm +kTe +mtv qKO qKO -eYw +mzH qKO vuc xmf -aVm -vKi +leR +qKO tiK eSK csS cHS spr uWE -qPj +wHw bfN kbf wIf onn ueR -ueR +rNI ezW pgx iJC mHf +jkG +bwv +jkG mHf -iju -mHf -mHf -rKA -etu -spw -spw -qzf -rKA -aNT -gtd -rKA -pbU -cac -dOq -stY -fUg -rKA -agO -gtd -oLE -kAV -oLE -agO -agO -tuj -qHN -mRI -nlP -rdV -iBI -sbn -qei -ggp -rKA -bHO +uAp +upz +lgg +lgg +tpB +uAp +awX +lLN +uAp +wKS +wQA +iEe +qxW +kCk +uAp +lFF +lLN +kJl +mmM +kJl +lFF +lFF +xlt +qGe +kjr +peI +adg +qTZ +jpq +kTQ +oBr +wKb +oUS qdA xZP aKk @@ -128476,75 +132400,75 @@ dcE dcE dcE dcE -dcE -dcE -dcE +mXN +heR +heR pGP pGP pGP pGP pGP heR -unl -fgx -fgx -rZl -bmO -fgx -vdm -xvH -jRo -lwe -rSk -rSk -fOM +pZJ +jkD +bTp +shl +fNx +uuH +uuH +vth +aYU +ydV +lyv +lyv +jxQ noI wrQ -nKD +jke +wrQ wrQ -hMv dYy wrQ -tST +bnh uBp wrQ wrQ wrQ -wrQ -tFC -fTF -dnb +lpE +tPl +jSf +lGC gym inI -gkW +ovV njk -iRX -gef -koC -oVY -oCr -bAW +xEh +gAb +dOC +fPn +hKs +oxc rIU -svB +wPj jwa -nES +mtv qKO -eYw +agF ovQ qKO eZd gNf -eYw +mPf jaN -qKO +aLq pnq -qKO -qPj qPj qPj +vTE +vTE qPj ipR -hHA +rxc jeW jgd qxA @@ -128552,44 +132476,44 @@ hHr bhN gbE uro -hIA +abI leT vQd fPX -hIA -rxM -afr -afr -qHN -afr -rKA -sVA -gtd -rKA -dOq -rKA -ddw -rKA -rKA -rKA -agO -xuB -gKO -afP -gEE -agO -agO -rKA -qHN -mRI -vsq -rKA -oZt -jxo -nvM -rKA -rKA -jmh +cjh +gSF +pAd +pAd +qGe +pAd +uAp +klQ +lLN +uAp +iEe +uAp +kBB +uAp +uAp +uAp +lFF +xId +cJZ +lSM +cvM +lFF +lFF +uAp +qGe +kjr +vIb +uAp +bNl +hmp +iiN +uAp +wKb +dlt wKb wKb wKb @@ -128733,7 +132657,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -128741,50 +132665,50 @@ wFl wFl wWO rbl -xpn -sZu -muW -hhE -qEZ -esk -vMn -rND -cMW -jRo -kNB -rSk -rSk -jSf -anB +clX +hMp +rnB +hpw +aqp +rmb +lxV +lxq +gJv +aYU +mEo +lyv +lyv +pZJ +nox wrQ -pvU -xYb +mfT +lpE mwx wrQ dje -qbm +lEH dje wrQ mwx -wrQ -tHR -oZV -pCb -wSZ -wSZ -rct -rct -uAl -aLX -gAb -gEZ -lyw -vuy +dGY +mfT +bkk +jSf +uaP +uaP +njk +njk +njk +iAa +sXf +tBn +tBn bAW -tOO -pJM +bAW +rIU +cjY jwa -nAA +tEW qKO tWK qKO @@ -128793,12 +132717,12 @@ qKO qKO qKO qKO -qKO +fjz gVv qKO ifn -oII -hhw +vYX +vYX kxf dbw dLM @@ -128808,45 +132732,45 @@ szK usf kso cRO -aiP -rRN -pKC -bMi +geK +geK +geK +cfS uGJ -hIA -kEy -dWM -wmx -nrO -xPg -ncI -iCS -nBg -rKA -tpA -rKA -agO -gtd -gtW -tEy -agO -agO -gtd -oLE -oLE -agO -agO -rKA -tkh -viN -onG -rKA -jSW -qHN -gGl -erj -rKA -jmh +cjh +vQm +jCV +kHe +eBX +nNg +iHi +cHx +asZ +uAp +wRT +uAp +lFF +lLN +oHY +hLi +lFF +lFF +lLN +kJl +kJl +lFF +lFF +uAp +jaT +qqs +mqN +uAp +wuV +qGe +bHC +vNE +wKb +dlt wKb bAw xFT @@ -128924,40 +132848,23 @@ dcE dcE dcE dcE -"} -(168,1,1) = {" -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +"} +(168,1,1) = {" +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE dcE dcE dcE @@ -128993,117 +132900,134 @@ dcE dcE dcE dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +heR +iWu +dcE +dcE pGP -gPj +qnU ftG kGD pQS heR -kbu -aKq -ilP -jBb -mOo -nBs -dDV -xzT -unl -unl -unl -unl -jSf -pvp -pvp -jSf -iyb -jSf -pvp -pvp -jSf -pvp -pvp -jSf -pom -jSf -kvl -pCb -gTm +wNN +aim +sSx +fQT +bLP +vla +aEg +xuM +pZJ +pZJ +pZJ +pZJ +eaV +cOR +cOR +eaV +fTw +eaV +cOR +cOR +eaV +cOR +cOR +eaV +qIo +eaV +cOR +eaV +gUc rnX -sYg -bIP -hdi -afS +sfS +gUE +cWb +ckF +oCN bAW -tBn -vss xKx -fMu -rHZ -jwa +vvB +tIE +wxy +pJM jwa -nES -nES -nES +mtv +mtv +dXu rfu -nES -nES +nEM +nEM pQQ rfu -nES -nES +nEM +kkQ imz qKO nPb hfM vYX kxf -dbw +xCe iPz -wvw +oip oqA oqA aGb -gNS +dbw mbz -hIS -vqs -qAI +eOa +eOa +eOa guV rtb mID -dzt -bFc -pHQ -pNA -afr -rKA -sVA -cYx -rKA -tpA -oQk -ihE -agO -nBq -rKA -agO -agO -oLE -oLE -oLE -agO -agO -rKA -rKA -hMI -iRa -rKA -rKA -rKA -rKA -rKA -rKA -jmh +uXN +xeY +aSL +iAx +pAd +uAp +klQ +vFf +uAp +wRT +vTh +bBL +lFF +jau +uAp +lFF +lFF +kJl +kJl +kJl +lFF +lFF +uAp +uAp +hBs +wqe +uAp +uAp +uAp +uAp +uAp +wKb +dlt wKb wKb wKb @@ -129247,7 +133171,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -129255,24 +133179,24 @@ wFl wFl iqj kJI -hce -hsW -nPS -wZd -acU -vdG -xZd -dDV -alk -tCX -cDU -sTO -sTO -jSf -dHC +mJI +pWi +pUx +ktD +woy +pDQ +dkb +aEg +gJv +jDm +hxf +gqH +hxf +eaV +qHP lqH lqH -aGp +bdX lqH lqH lqH @@ -129282,25 +133206,25 @@ lqH lqH lqH lqH -buu -pCb -pzZ -pbB -aMw -hYj -uAl -svM -fjy -aVD -aUD +inQ +eaV +kNj +rMr +thY +ufc +rct +rct +bmK +frN hWk fJL +gJY +lcS fJL -fJL -fJL -fJL +jwa +jwa qKO -eYw +now eYw qKO qKO @@ -129312,55 +133236,55 @@ imz qKO hzq vvw -vvw +pXF tBc tXY twX abM goD -goD +vHC eru jfd -pBJ +pBa tcr -hIA +nba htm -uHe +dep dAV -hIA -bZQ -qHN -afr -qHN -afr -rKA -lmv -vgJ -rKA -tEH -oQk -laj -bJB -agO -wMZ -pRA -agO -idQ -xhr -dsg -agO -gtd -rKA -mjm -fTZ -vsq -gAM -gvk -ouH -tkh -dEX -rKA -cBu +cjh +ezh +qGe +pAd +qGe +pAd +uAp +oln +tCm +uAp +jkb +vTh +kKU +nmE +lFF +epn +vxi +lFF +gQj +vUf +syT +lFF +lLN +uAp +oWt +gsd +vIb +qcW +pbY +ego +jaT +xTs +wKb +clq wKb unh hZf @@ -129504,120 +133428,120 @@ dcE dcE dcE dcE -dcE -dcE -dcE +mXN +heR +heR pGP pGP pGP pGP pGP heR -unl -esK -rUM -krK -dWg -xZd -dDV -alk -ppL -ndg -ndg -ndg -fOM +pZJ +ozS +exr +tSB +dkb +dkb +aEg +gJv +nXq +lWs +lWs +lWs +rki sMy rxH mDD -goU -oLX -yhf -meE -nFx -ich -eXf -gro -goU +wGP +rKj +ptS +tND +cZr +tmZ +qrY +bqd +wGP rxH -lFW -pCb -aGX -mur -sok -wSZ -uAl -uAl -afS -bAW -xfX -hWk -eSA -hXA -iNX -cbB -fJL -qKO -qKO -eYw +hXW +cOR +wrd +blI +oyU +efM +eHZ +kEC +oCN +oCN +eWD +gJY +cET +nht +xKs +hKt +jwa +jxB +uWp +hbK qKO gdf cOg jBI jqR qKO -mOg +rOl qKO wom -vvw +pXF diP uxp -tas +cjh abm -tas -tas -tas -tas -tas -tas -tas +rxk +jXm +cjh +cjh +ceC +ibZ +cjh +hIA +hIA +hvL hIA -dej -uHe -cSf hIA -blh -afr -mJe -kcA -hIZ -rKA -cYx -ifA -rKA -dOq -rKA -gRQ -cpE -agO -rKA -agO -agO -dsg -vPU -nEq -agO -agO -rKA -oGO -snQ -lIT -hUU -snQ -iaR -fTZ -jsj -tMu -fKS +ltF +pAd +rsm +eQC +meY +uAp +vFf +wAV +uAp +iEe +uAp +sHh +mSL +lFF +uAp +lFF +lFF +syT +oKy +fUc +lFF +lFF +uAp +grm +nEW +jei +msq +nEW +qbM +gsd +hxU +vlc +wUh vlc mgY mgY @@ -129761,7 +133685,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -129769,53 +133693,53 @@ kYf kYf fbu rbl -xpn -aNf -gOL -cyW -krK -dWg -xZd -dDV -alk -blb -wMu -wMu -wMu -jSf -yha +clX +rum +lqf +cNr +tSB +dkb +dkb +aEg +gJv +bav +fBI +fBI +fBI +eaV +jqz rxH umy -goU -tdN +bfY +vsD xBE xBE oUa xBE xBE -dfG -goU +mOO +bfY rxH -lFW -pCb -gKs -iWh -bvI -wSZ -rRJ -oOs -nID -jrx -xfX -hWk -eSA -iep -qXH -lVH -fJL -wAO -qKO -kcN +vEH +cOR +wrd +lqa +qTa +sok +mNK +afS +bAW +bAW +jcN +gJY +dRx +lhJ +eYN +gco +jwa +wKC +now +eYw qKO daW agF @@ -129833,48 +133757,48 @@ vCk pQq fRE rRg -tas +qxQ mSA hcj -jZl -hIA +cjh +cpQ lxW jBn nSS hIA -rKA -uKm -rKA -rKA -rKA -rKA -cfQ -rKA -rKA -dOq -rKA -rKA -rKA -rKA -rKA -agO -gtd -oLE -oLE -agO -agO -agO -rKA -tkh -jvX -juo -hAd -hLu -bUr -tkh -qHN -rKA -cBu +uAp +hgi +uAp +uAp +uAp +uAp +gDo +uAp +uAp +iEe +uAp +uAp +uAp +uAp +uAp +lFF +lLN +kJl +kJl +lFF +lFF +lFF +uAp +jaT +mrA +jmL +ayU +tjx +ppY +jaT +qGe +wKb +clq wKb yfj nuZ @@ -130017,62 +133941,62 @@ dcE dcE dcE dcE -dcE -dcE +heR +iWu dcE dcE pGP -xbI +qEC sFb kil pQS heR -kbu -aKq -bag -krK -dWg -xZd -dDV -ska -unl -unl -unl -unl -jSf -gJT -iCq -umy -aej -rRh +wNN +aim +ybM +tSB +lEl +dkb +xSA +scO +pZJ +pZJ +pZJ +pZJ +eaV +oan +fnY +hXi +rKj +tQk xBE -vTv +rwn pEG -qvr +hhJ xBE -kbQ -yma -iCq -lFW -pCb -yhT -glJ -rvR -tTz -ulq -smk -smk -smk -smk -rLK +uiU +bqd +rxH +jEM +eaV +lmn +aMw +hKe +udS +rct +rct +gmq +cMR +jcN pnc -gAC -nxN -jLt -fJL -eYw +wdB +pjB +uSz +oPm +jwa qKO -hbK +qKO +fki qKO aTc mdT @@ -130087,51 +134011,51 @@ lWf uxp fyY qsi -rxc +yco emR ijF -tas +vKi nbb ezm -jXm -hIA -lxW -uHe +cjh +bfQ +cSf +jIl lhY -hIA -cme -gtd -gtd -gtd -qHN -sIq -cYx -rKA -gtd -tpA -kyg -rKA -qNM -lxN -rKA -uOS -jIs -agO -oLE -oLE -jIs -bKh -rKA -qHN -wkP -rhM -lzG -iLP -kkM -tkh -ibt -rKA -jmh +mhO +lLN +lLN +lLN +lLN +qGe +kPO +vFf +uAp +dDg +qtv +gTu +uAp +xxE +oRA +uAp +xtA +xCs +lFF +kJl +kJl +xCs +oEh +uAp +qGe +kUk +cPD +pvN +suK +ggK +jaT +bop +wKb +dlt wKb oZh nuZ @@ -130275,7 +134199,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -130283,24 +134207,24 @@ kYf kYf fPA kJI -hce -hsW -wfp -cSq -evv -dqo -xZd -dDV -alk -tCX -jjK -ftF -ftF -jSf -kWx +mJI +pWi +tXE +tRN +qaq +dmj +dkb +aEg +ibC +jDm +bge +bhy +bge +eaV +wXj rxH -wcJ -bdh +fmw +oCp xBE xBE hDq @@ -130308,28 +134232,28 @@ oWZ hDq xBE xBE -edu -fJN -nCO -pCb -sIB -rBO -wSZ -wSZ -rqm -fjy +pjn +rxH +uip +eaV +rHT +qGr +rct +rct +rct +afS bAW -fBX bAW hWk -eSA -sbF -qhW -qTt -fJL -qKO +gJY +eqR +xtE +ffg +sNT +jwa +uKy qKO -hbK +kcN qKO qKO pNk @@ -130343,52 +134267,52 @@ czY mdf uxp pbc -oJd +jxc yco hYo gLD gQa fZg nRz -wmt -hIA -raF +cjh +bhM +bMi amJ moq hIA -cme -gtd -rKA -keE -aHo -rKA -qYs -iCS -iCS -mKV -xpv -tLb -pee -jgB -rKA -rKA -rKA -rKA -eRg -rKA -rKA -rKA -rKA -tkh -xoZ -cTv -lzG -lzG -qmc -tkh -kES -mKV -muF +wij +lLN +uAp +ulo +xBC +uAp +nyF +enY +nIX +uAp +sNF +oIe +enY +gmu +uAp +uAp +uAp +uAp +oyJ +uAp +uAp +uAp +uAp +jaT +kHH +mtd +pvN +pvN +pWl +jaT +eOH +qdx +fAD qdx sPx bOi @@ -130466,35 +134390,23 @@ dcE dcE dcE dcE -"} -(174,1,1) = {" -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +"} +(174,1,1) = {" +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE dcE dcE dcE @@ -130535,57 +134447,69 @@ dcE dcE dcE dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +mXN +heR +heR pGP pGP pGP pGP pGP heR -unl -daE -tGe -qLm -mOo -nBs -dDV -alk -ppL -wRs -wRs -wRs -fOM -edY -iMP -fmw -bdh -lEJ -ewm +pZJ +prX +oNy +ion +bLP +vla +aEg +ibC +nXq +uFL +uFL +uFL +rki +bly +kwb +igb +oCp +iND +oKr wAU kDN aZY -okm -lEJ -nPP -fJN -uip -pCb +iyh +bdM +fFF +rxH +swa +eaV +eaV +wSZ pCb -uqc -cIH cxh gyV kwO -vvB +jrc fMu -fMu -kth -fJL -fJL -fJL -fJL +nlw fJL +alA +pVO +iKw +pUY +jwa +qKO qKO -qPs hbK jxB hbK @@ -130598,54 +134522,54 @@ qKO qKO qKO qKO -qKO -qKO -qKO -qKO +cjh +qAI +jxc +gJm bRQ -qKO -qKO -qKO -qKO -qKO -hIA -hIA -rwG -hIA +gLD +vKi +aHH +rwd +cjh +hXm +rKf +mPO +klU hIA -rKA -lUp -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -vkU -rKA -mSq -tpA -oXZ -rKA -mDV -agO -jyD -rKA -tkh -tkh -qHN -vTq -olL -fXT -jIZ -iET -qHN -ujS -rKA -jmh +uAp +uQX +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +xJL +uAp +pLa +nnQ +jHc +uAp +tOs +lFF +rVS +uAp +jaT +jaT +qGe +iQM +twO +eaN +chV +pKP +qGe +iyL +wKb +dlt wKb byv mKF @@ -130789,120 +134713,120 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP pBP pBP bFn -rTQ -kxy -fCp -xrJ -xIz -drW -xvC -xZd -dDV -alk -ppL -uxj -uxj -uxj -jSf -pbt -rQb -igb +jLv +rDs +lGO +rdh +uCa +lmR +lGV +dkb +aEg +ibC +nXq +pkI +pkI +pkI +eaV +szL +rxH +fmw uip -nYD -uPB +qie +tAX eLK dNX noU -vdg +kcY nYD cKc -fJN +rxH uAB -hFq +ffE eaV -wSZ +heR kOk hdi -kOk +hdi kOk kOk hdi hdi -kOk -kOk -dcE -heR -dcE -heR +fJL +fJL +eSA +eSA +fJL +jwa qKO nxr hbK -hbK -hZi +qPs +fWe sgr jxB qKO ryb sGV -qKO -agF nMC -uoz -wYS -eYw -jxc -eYw eYw hbK -qKC -vVp -hbK eYw +wYS +jCP +jxc +gJm +caQ +bEJ +gQa +vVp +eTm +cjh tSW bXt -buA +sCI hOw hIA -pPG -gtd -rKA -lfG -rEv -tuJ -kLV -gQi -rKA -awK -rce -mTL -qZW -qYs -tLb -pee -wuZ -aqj -wIg -agO -mtw -tkh -rKA -waq -mEG -vax -iKf -xfa -bqv -tkh -bZQ -rKA -jmh +quk +lLN +uAp +rFM +qOC +blW +duG +pgT +uAp +bab +uwl +aWA +vEW +idV +oIe +enY +gDZ +atJ +tks +lFF +vpX +jaT +uAp +kJz +uMJ +uSh +pyN +tmK +eSG +jaT +ezh +wKb +dlt wKb wKb wKb @@ -131045,121 +134969,121 @@ dcE dcE dcE dcE -dcE -dcE +heR +iWu dcE dcE pGP -hng +dtv gIn aUW pQS heR -kbu -aKq -vWt -xZd -dWg -xZd -dDV -kfv -unl -unl -unl -unl -jSf -pbt -rQb +wNN +aim +vyG +dkb +dkb +dkb +aEg +xWz +shQ +shQ +shQ +shQ +eaV +hch +kwb lQA nwJ -xmd -uMD +uRD +sqj aVG shb mwY -tjt +vTQ tbd szp -rWT rxH -iIL +rxH +liN eaV -oAL -mrg +heR +bWY +bWY bWY oAL plB mrg bWY -oAL +uTj plB mrg bWY bWY -dTJ heR qKO -rYJ -qNd +xyt qNd -qNd -diE +clk +clk +mMZ hbK qKO iPk kvJ hKw uve -qKO +gAz chz -qKO +cjh uVn -qKO -qKO -qKO +jxc +mGj +gNy pLv -qKO +bgx oFh -qKO -qKO +cjh +cjh hIA uxG -abI +bMi dvK hIA -rKA -uYL -rKA -lfG -rEv -qHN -gWm -rsn -rKA -djE -gtd -qZW -awK -rKA -gtd -cme -rKA -qMC -lKm -gKL -rKA -qHN -tkh -tkh -vTq -rhM -lzG -rXq -iET -tkh -ujS -rKA -jmh +uAp +mbj +uAp +rFM +qOC +qGe +rSG +avw +uAp +iai +lLN +vEW +bab +uAp +hUb +wij +uAp +fCQ +dZI +hpr +uAp +qGe +jaT +jaT +iQM +cPD +pvN +yhD +pKP +jaT +iyL +wKb +dlt wKb eCM tnh @@ -131303,7 +135227,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -131311,22 +135235,22 @@ pBP pBP mVM jLv -eiG -sXv -faw -oPS -wid -jZx -fpZ -dDV -alk -unl -xLF -ibq -oCS -cGS -cKc -iCq +rDs +dnK +lTd +ihj +ttn +ttn +ttn +iaC +iZt +shQ +pKI +cCp +rzf +eaV +cAG +rxH okh uip xBE @@ -131337,12 +135261,13 @@ aAt xBE xBE jjo -uyu +rvT mmZ uex sCD -nld -jyv +syR +plB +mrg oAL vYt plB @@ -131353,12 +135278,11 @@ plB vYt plB mrg -dTJ -heR +bWY qKO rsH hbK -hbK +mNi hbK bvz cVi @@ -131366,57 +135290,57 @@ qKO sfh sgV sfh -sfh +mpK sfh mzh -qKO -qKO -qKO +cjh +wmt +xkJ etp qip -hbK -qKO -qKO -qKO -hRj -bCh +cnU +krs +xau +cjh +wUk +hIA bZs uUL dpv -bCh +hIA hRj hRj -rKA -eCu -ifF -wBK -wBK -jHL -rKA -sce -rKA -lHT -sVA -rKA -rKA -rKA -rKA -rKA -kWo -rKA -rKA -rKA -rKA -qHN -cUo -udF -fXT -fXT -qRL -tkh -rrY -rKA -jmh +uAp +iwl +igR +fNY +fNY +jVv +uAp +aZa +uAp +iTh +klQ +uAp +uAp +uAp +uAp +uAp +oeQ +uAp +uAp +uAp +uAp +qGe +apv +wkW +eaN +eaN +glw +jaT +tcB +wKb +dlt wKb eCM ghO @@ -131560,30 +135484,30 @@ dcE uCR dcE dcE -dcE -dcE -dcE +mXN +heR +heR pGP pGP pGP pGP pGP heR -unl -hVH -fdY -xZd -xZd -nIi -vRE -fcT -chc -tuD -qQv -oiQ -tOi -ebD -qXx +pZJ +mam +tPb +dkb +dkb +dkb +aEg +aFe +xdS +gWI +bax +qfz +erV +fno +cZg igb uAB jmv @@ -131594,10 +135518,11 @@ aOn oFn jmv vYm -rWT +rxH fYq yhq tHo +heR bWY jyv bve @@ -131610,77 +135535,76 @@ plB vYt mrg jyv -dTJ heR -qKO +pTP jxB hbK -cVi -jDy +qim +sTp hbK -jxB +brh qKO bhJ hvc -nUV -nUV +sfh +gdt rYQ vLx -qKO -xOh -lZV +cjh +etp qAx -hbK -cVi -qKO -hRj -hRj +qAx +qip +puv +cjh +cjh +cjh hRj -bCh +hIA bCh obJ -bCh -bCh +vwI +hIA hRj hRj -rKA -vtF -nEA -nEA -nEA -qHN -rKA -gtd -rKA -rKA -rKA -rKA -iEp -eND -rKA -erI -ubU -oLE -agO -uac -rKA -tkh -tFY -olL -fXT -uSE -kkM -tkh -rrY -rKA -jmh +uAp +dHx +kmv +kmv +kmv +qGe +uAp +lLN +uAp +uAp +uAp +uAp +eIQ +fMr +uAp +hYE +vzZ +kJl +lFF +bVq +uAp +jaT +ciN +twO +eaN +uLa +ggK +jaT +tcB +wKb +dlt wKb dGu gdG sUF -jcQ -jcQ -jcQ +gdG +gdG +gdG gdG gdG eEv @@ -131751,34 +135675,23 @@ dcE dcE dcE dcE -"} -(179,1,1) = {" -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +"} +(179,1,1) = {" +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE dcE dcE dcE @@ -131820,41 +135733,53 @@ dcE dcE dcE dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +mXN +dcE +dcE pGP qpL qpL uEQ rbl -xpn -mSE -vqH -hCt -xZd -xZd -xZd -upL -fcT -unl -uua -xFJ -iTx -ydi -maS -rxH -chR -rxH +clX +lcb +gBZ +wMO +dkb +dkb +dkb +dLS +kWv +shQ +ofK +dNx +rQN +tHo +mgA +plQ +vMm rxH +iCq uip rxH brm rxH cKc -rxH +iCq khI -fPT +rtz uoU xTf sCD +syR plB bOO plB @@ -131867,77 +135792,76 @@ plB bOO nld jyv -dTJ -heR -qKO -bMh -hbK -hbK +bWY +pTP hbK hbK +fWe +fWe hbK +sAR qKO chb ksM -hCm -hCm -nUV +sMr +jZl +osx uCD -qKO +cjh hBh dmn -hbK -hbK -hbK -lAR -hRj -hRj +baY +rvX +eWc +cjh hRj hRj hRj +bCh +bEH llP +pUp +bCh hRj hRj -hRj -hRj -rKA -tSl -nEA -wqb -uta -uta -rKA -sce -rKA -paq -qHN -fvM -sbP -xPg -mKV -mYy -mZf -bcW -bcW -vFU -rKA -qHN -stR -xcV -hgC -jqG -scc -qHN -uHk -rKA -jmh +uAp +txp +kmv +uBU +dcO +dcO +uAp +aZa +uAp +xSB +qGe +uUx +tbv +nNg +hdK +lpw +ewg +loz +loz +nSK +uAp +qGe +iYr +rkE +iKI +cFN +tAe +qGe +xzl +wKb +dlt wKb tKw eEv gdG -jcQ -lBw -jcQ +gdG +pWQ +gdG gdG eEv qwy @@ -132073,45 +135997,46 @@ dcE dcE dcE dcE -dcE -dcE +heR +iWu dcE dcE pGP -xQB +mgR jRb oBp pQS heR -kbu -aKq -xLg -xZd -xNX -xZd -wOG -sxT -kgo -wve -iFf -pcg -gFp -qXj -mjy +wNN +aim +rwV +dkb +dmj +dkb +hRV +mAC +gvi +nhv +bZw +oxy +alM +vuh +msC xNn +lcU tXl +kAQ tXl -nwJ -lcU -vsM -rxH -cKc +xOG +tXl +vZa rxH -cfP -kgf -igK -oXS +vUx +gQH +gQH +kPR eaV +heR bWY bve plB @@ -132124,77 +136049,76 @@ bWY bve plB nld -dTJ heR qKO iJH hbK cVi -jxB +cVi hbK hbK qKO jVs -sWY -sfh +ksM sfh -bQC +caO +vlE sNG -qKO -lqS -hbK -hbK -hbK -hbK -lAR -hRj -hRj -hRj -hRj -hRj +tas +tas +tas +tas +cBU +tas +tas hRj hRj hRj +bCh +bCh +jia +bCh +bCh hRj hRj -rKA -jvf -nEA -jlf -prn -uta -rKA -gtd -rKA -bij -tkh -qHN -bZQ -keY -rKA -fXO -gKL -oLE -bcW -erI -rKA -tkh -tkh -bZQ -tkh -tkh -jTx -tkh -aoK -rKA -jmh +uAp +sml +kmv +bZf +rkA +dcO +uAp +lLN +uAp +qmy +jaT +qGe +ezh +vap +uAp +qHk +hpr +kJl +loz +hYE +uAp +jaT +jaT +ezh +jaT +jaT +aIJ +jaT +bdf +wKb +dlt wKb cjb eEv gdG -jcQ -jcQ -jcQ +gdG +gdG +gdG gdG eEv wKb @@ -132331,7 +136255,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -132339,40 +136263,38 @@ qpL qpL ovq kJI -hce -hsW -iLC -qAQ -jBb -omc -nQs -dDV -aKq -unl -kdZ -bZR -fuU -gjb -oBa -pub -pub -iqf -iqf -naq -wDt +mJI +pWi +tGm +kOj +fQT +bLP +cwy +aEg +oZS +shQ +xQJ +lnm +iRR +eaV +iTU +mqu +mqu +xNk +wDK +bOa +otW fhg wzV -oRU -lCw -hUM +bOa +war +euu eaV iUs eaV eaV -bWY -heR +gKw dcE -heR dcE heR dcE @@ -132382,7 +136304,9 @@ dcE dcE heR dcE -heR +dcE +dcE +epv qKO nNt oHX @@ -132397,54 +136321,54 @@ htF lLe vlE vLx -qKO +tas tsl -hbK -hbK +vgN +eXT tuF -hbK +qgr lAR hRj hRj hRj hRj hRj +pka hRj hRj hRj hRj -hRj -rKA -tSl -nEA -uta -uta -bGs -drA -gtd -rKA -qHN -uRx -qHN -jTx -bRD -rKA -rKA -rKA -rKA -kRd -rKA -rKA -qHN -tkh -jTx -tkh -sbP -nCx -lxJ -xFA -rKA -glN +uAp +txp +kmv +dcO +dcO +kxd +aKo +lLN +uAp +qGe +jrC +qGe +aIJ +tjB +uAp +uAp +uAp +uAp +pMC +uAp +uAp +qGe +jaT +aIJ +jaT +tbv +kaW +rzH +eER +wKb +aIh wKb kDF bxL @@ -132588,78 +136512,78 @@ dcE dcE dcE dcE -dcE -dcE -dcE +mXN +heR +heR pGP pGP pGP pGP pGP heR -unl -wrM -jQK -xZd -juO -xZd -dDV -aQS -unl -gjb -gjb -gjb -gjb -cyN -vAx -cfs +pZJ +vmR +nye +dkb +lGV +dkb +aEg +oov +shQ +shQ +xkc +shQ eaV -pVA +dVq +mCG +oKk +eaV +xwk qpa rki rki rki -kAr -xqE +qpa +jXR maB eaV ioU eaV heR heR -dcE -dcE +heR +heR heR dcE dcE +heR dcE dcE heR heR -dcE -dcE +heR heR heR qKO -uZs +hUh fwB kuS -hbK -vvY -gHH +beT +imH +ajw qKO jSn hCP bRT -vLx +lLe qoX vLx -qKO +tas lVc -hbK -cVi -hbK -hbK +cHt +ufK +rwf +wRb lAR hRj hRj @@ -132671,37 +136595,37 @@ hRj hRj hRj hRj -rKA -sAB -qHN -nEA -nEA -els -rKA -gtd -mtw -gtd -gtd -gtd -atj -pee -pee -pee -pee -pee -pee -iCS -mKV -lNs -lcy -qIa -gAt -sdm -tkh -qHN -rKA -rKA -jmh +uAp +kKG +qGe +kmv +kmv +fdV +uAp +lLN +vpX +lLN +lLN +lLN +sNF +enY +ncS +enY +enY +enY +enY +cHx +hdK +nkW +cDd +mKz +fZb +wSD +jaT +qGe +wKb +wKb +dlt wKb wKb kNU @@ -132845,7 +136769,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -132853,50 +136777,50 @@ sbp sbp xEF rbl -xpn -mSE -nrj -ocZ -xZd -xZd -xZd -dDV -aKq -unl -dcE -dcE -tYZ +clX +lcb +cOj +oGb +dkb +dkb +dkb +aEg +gdW +vcX +woN +vwp +nYV gpk -gav +kMF nqt nqt eaV -enK -jEx -oPU -oPU -oPU -xDp -fnY +loJ +nCh +vpy +jXS +dlv +wGP +dey eaV eaV eOr eaV -oaA +dcE heR dcE dcE heR dcE dcE +heR dcE dcE -dcE -heR heR dcE +dcE heR -kmY +bWY qKO qKO pTP @@ -132906,16 +136830,16 @@ pTP qKO qKO dvs -hCm +uHT omu -vLx -hCm -vLx -qKO +lLe +osx +dno +tas miB -hbK -hbK -hbK +caE +buA +jzo vHp lAR hRj @@ -132928,38 +136852,38 @@ hRj hRj hRj hRj -rKA -cHK -vvE -wBK -wBK -jHL -rKA -sce -rKA -rKA -nZa -rKA -xzo -rKA -rKA -fEO -rKA -rKA -fEO -rKA -rKA -rKA -rKA -oQk -oQk -oQk -rKA -rKA -rKA -dMp -jmh -dnO +uAp +laz +win +fNY +fNY +jVv +uAp +aZa +uAp +uAp +acd +uAp +hPq +uAp +uAp +iug +uAp +uAp +iug +uAp +uAp +uAp +uAp +vTh +vTh +vTh +uAp +uAp +wKb +kOi +dlt +imf wKb wKb wKb @@ -133101,30 +137025,30 @@ dcE dcE dcE dcE -dcE -dcE +heR +iWu dcE dcE pGP -lkT +eux hMt kGV pQS heR -kbu -aKq -sKI -xZd -xZd -xZd -dDV -aKq -kbu -dcE -dcE -heR +wNN +aim +ogR +dkb +lEl +dkb +aEg +qeV +wNN +bWY +bWY +bWY mcT -hQZ +uXL nqt nqt eaV @@ -133136,20 +137060,20 @@ ezq sNC xXV eaV -tWn -tWn -dcE -dcE +bWY +bWY +bWY +heR +heR +heR +heR +ktq heR -dcE -dcE -mGV -dcE -dcE -dcE -dcE -dcE -dcE +heR +heR +heR +heR +ktq heR heR bWY @@ -133164,17 +137088,17 @@ wUk qKO lzR iHF -sfh -caO +nUV +nUV lYr lmz -qKO +tas eZF -hbK -hbK -hbK +wvw +sWM +hhw yhu -qKO +tas hRj hRj hRj @@ -133185,27 +137109,27 @@ hRj hRj hRj hRj -rKA -lfG -rEv -nEA -wBK -rsn -rKA -rKA -rKA -tkh -qHN -rKA -snQ -qHN -rKA -fBn -nnB -rKA -qHN -uNo -rKA +uAp +rFM +qOC +kmv +fNY +avw +uAp +uAp +uAp +jaT +qGe +uAp +nEW +qGe +uAp +ujG +sfv +uAp +qGe +xUT +uAp heR heR dcE @@ -133359,7 +137283,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -133367,34 +137291,34 @@ sbp sbp aRc kJI -hce -hsW -iLC -vfF -xZd -xZd -xZd -dDV -aKq -kbu -heR -heR +mJI +pWi +tGm +upM +dkb +dkb +dkb +aEg +aim +wNN +dcE heR +dcE eaV eaV eaV eaV eaV -rHU +sOV sNC nlt nlt nlt sNC -xYi +mRs eaV -tWn dcE +heR dcE dcE heR @@ -133420,19 +137344,18 @@ hRj hRj qKO rql -vTE -nUV hCm +mhP +awV lYr jSz -qKO +tas dft ruE -hbK -hbK +eNH +acc wNw -qKO -wUk +tas hRj hRj hRj @@ -133442,27 +137365,28 @@ hRj hRj hRj hRj -rKA -lfG -rEv -qSD -rFq -nwe -rKA -kmL -rKA -fkh -qHN -rKA -wju -qUq -rKA -eUh -bRl -rKA -cHq -sql -rKA +hRj +uAp +rFM +qOC +dns +imI +rRP +uAp +mJO +uAp +piC +qGe +uAp +kPD +oui +uAp +oym +fva +uAp +hLl +qAq +uAp heR dcE dcE @@ -133550,11 +137474,8 @@ dcE dcE dcE dcE -"} -(186,1,1) = {" -dcE -dcE -dcE +"} +(186,1,1) = {" dcE dcE dcE @@ -133619,26 +137540,29 @@ dcE dcE dcE dcE +mXN +heR +heR pGP pGP pGP pGP pGP heR -unl -aKq -vbM -xZd -lSE -bcI -hUV -ibY -unl +pZJ +arc +fsy +dkb +gZi +dkb +aEg +inm +pZJ dcE -mXN -mXN -xXv -kOx +heR +dcE +mva +heR dcE dcE eaV @@ -133651,7 +137575,7 @@ sNC rRn eaV dcE -dcE +heR dcE dcE heR @@ -133666,7 +137590,7 @@ dcE dcE dcE dcE -dcE +kOx kOx qKO sON @@ -133678,48 +137602,48 @@ sON qKO lYr lYr -lYr -lYr -lYr +sfh +nGP +sfh jzH -qKO -qKO -pTP -pTP -pTP -qKO -qKO +tas +tas +xOh +xOh +xOh +tas +tas sON sON oCT sON sON -sON +oCT sON sON oCT sON -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -fyD -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp +oxC +uAp +uAp +uAp +uAp +uAp +uAp +uAp +uAp dcE dcE dcE @@ -133873,7 +137797,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -133881,24 +137805,24 @@ bxx bxx paE rbl -xpn -mSE -noM -iWe -jBb -omc -nQs -dDV -aKq -kbu -dcE +clX +lcb +qeN +bZu +fQT +bLP +cwy +aEg +aim +wNN dcE +heR dcE dcE -kOx +heR dcE dcE -aHc +gIQ sNC kLD nlt @@ -133908,7 +137832,7 @@ kLD sNC ipc dcE -dcE +heR dcE dcE heR @@ -133922,7 +137846,6 @@ dcE dcE dcE dcE -dcE kOx kOx dcE @@ -133932,6 +137855,7 @@ dcE dcE dcE dcE +dcE heR dcE dcE @@ -134129,33 +138053,33 @@ dcE dcE dcE dcE -dcE -dcE +heR +iWu dcE dcE pGP -gAq +fuV gZO bhn pQS heR -kbu -aKq -vRt -xZd -heO -eQW -dDV -aKq -unl -dcE -dcE -dcE -dcE +wNN +aim +nTf +dkb +pDQ +dkb +qkn +kct +pZJ +heR +mXN +xXv +kOx kOx dcE dcE -ipc +gIQ sNC kLD fsQ @@ -134165,7 +138089,7 @@ kLD nWe ipc dcE -dcE +heR dcE dcE heR @@ -134178,9 +138102,9 @@ dcE dcE dcE dcE +mqw +mqw dcE -kOx -kOx dcE dcE dcE @@ -134387,7 +138311,7 @@ dcE dcE dcE dcE -dcE +mXN dcE dcE pGP @@ -134395,24 +138319,24 @@ bxx bxx tZW kJI -hce -hsW -iLC -lLU -mil -mil -mil -mUN -aKq -kbu -dcE +mJI +pWi +tGm +miY +ygK +ygK +ygK +geJ +aim +wNN dcE +heR dcE dcE -kOx +heR dcE dcE -ipc +ggA tdx qWl nlt @@ -134422,7 +138346,7 @@ kLD nWe ipc dcE -dcE +heR dcE dcE heR @@ -134434,9 +138358,9 @@ dcE dcE dcE dcE +kOx +kOx dcE -mqw -mqw dcE dcE dcE @@ -134644,40 +138568,40 @@ dcE dcE dcE dcE -dcE -dcE -dcE +mXN +heR +heR pGP pGP pGP pGP pGP heR -unl -gCa -fPi -dkN -qxT -fPi -rnR -tbb -kbu -dcE -dcE +pZJ +jEg +dra +sKs +mDs +dra +feM +cUj +wNN dcE -dcE -kOx +heR dcE dcE -ipc -ipc -ipc -ipc -ipc -ipc -ipc -ipc -ipc +heR +heR +heR +eaV +gTP +rOW +rOW +rOW +rOW +rOW +rOW +eaV heR heR heR @@ -134690,9 +138614,9 @@ dcE dcE dcE dcE +mqw +kOx dcE -pkO -pkO dcE dcE dcE @@ -134901,40 +138825,40 @@ dcE dcE dcE dcE +mXN dcE dcE +heR dcE dcE dcE +heR dcE +pZJ +wNN +pZJ +pZJ +wNN +pZJ +pZJ +wNN +pZJ dcE -dcE -dcE -unl -kbu -unl -unl -kbu -unl -unl -kbu -unl -dcE -dcE -dcE -dcE -kOx +heR dcE dcE heR dcE dcE +pJW +dcE dcE dcE dcE dcE dcE dcE +pJW dcE heR dcE @@ -134946,9 +138870,9 @@ heR dcE dcE dcE -dcE +xXv mqw -pkO +dcE dcE dcE dcE @@ -135157,30 +139081,30 @@ dcE dcE dcE dcE +dZJ +iWu +mXN +mXN +mXN +mXN +iWu +kOx +mXN +heR +fkd +heR dcE dcE +heR dcE dcE +heR +fkd +heR +heR dcE dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -kOx +heR dcE dcE heR @@ -135191,7 +139115,7 @@ dcE dcE dcE dcE -dcE +heR dcE heR dcE @@ -135202,9 +139126,9 @@ dcE heR dcE dcE -dcE xXv -mqw +xXv +dcE dcE dcE dcE @@ -135415,28 +139339,28 @@ dcE dcE dcE dcE +heR dcE dcE dcE dcE +heR dcE +mXN dcE +heR dcE dcE dcE +heR dcE dcE dcE +heR dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE +mXN +mXN +mXN kOx kOx kOx @@ -135445,11 +139369,11 @@ kOx kOx kOx kOx -dcE -dcE -dcE -dcE -dcE +kOx +kOx +kOx +kOx +iWu heR dcE dcE @@ -135457,8 +139381,7 @@ heR dcE dcE heR -dcE -dcE +iWu xXv xXv dcE @@ -135472,6 +139395,7 @@ dcE dcE dcE dcE +dcE uCR dcE dcE @@ -135679,13 +139603,19 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -uCR -dcE +heR +heR +mXN +mXN +mXN +cXm +heR +heR +mXN +mXN +mXN +heR +heR dcE dcE dcE @@ -135701,12 +139631,6 @@ dcE dcE dcE dcE -kOx -kOx -kOx -kOx -kOx -iWu heR heR heR @@ -135714,9 +139638,9 @@ heR heR heR heR -iWu -xXv -xXv +dcE +dcE +dcE dcE dcE dcE @@ -135940,11 +139864,11 @@ dcE dcE dcE dcE +heR dcE dcE dcE -dcE -dcE +heR dcE dcE dcE @@ -136197,6 +140121,11 @@ dcE dcE dcE dcE +heR +mXN +mXN +mXN +heR dcE dcE dcE @@ -136217,15 +140146,10 @@ dcE dcE dcE dcE -dcE -dcE -dcE -dcE -dcE -mGV -dcE heR dcE +xae +dcE heR dcE dcE @@ -138536,8 +142460,8 @@ dcE dcE dcE hcx -tLV whw +tLV gVs hcx dcE @@ -168373,8 +172297,8 @@ nlm nlm osV nlm -dcE -dcE +nlm +nlm mae mae jfB @@ -168632,7 +172556,7 @@ gRG gRG gRG gRG -gCn +jqQ sjT sdA lSe @@ -169141,8 +173065,8 @@ nlm gRG gRG uof -xkV -awD +uof +stm uof uof psI @@ -171979,7 +175903,7 @@ nlO iGy ohb rwh -eas +bxg sFc aCE pIt @@ -173010,8 +176934,8 @@ lji cOS jQA sVJ -kUq aVy +oHH sRh cUf oaa @@ -175562,8 +179486,8 @@ aad uCF sjx sjx -sjx -qsM +kuT +fhO bLN onV waz @@ -175797,7 +179721,7 @@ adC adC adC adC -jbh +adC fgT hdN cVm @@ -177084,7 +181008,7 @@ thW mMC lQe gPW -trH +gjH gjH uwj wMn @@ -178104,11 +182028,11 @@ uRd bOk aBl vXh +iGT +jlX +pqd +nMr wiK -inG -woh -eqp -oIk gqj nPN qBh @@ -178361,11 +182285,11 @@ pev bOk qtM nbo -nli +ksr crj -xaP +bgs oxg -oIk +wiK bOk bOk iRH @@ -178397,7 +182321,7 @@ usP khG ugU ugU -dyg +ugU ugU usP gTp @@ -178421,10 +182345,10 @@ kUq xyz xyz rtO -jec -ggJ -jec -jec +dBz +lpW +dBz +dBz kUq kUq iSB @@ -178618,11 +182542,11 @@ uRd bOk pLO rly -wTr +kpF mjc mjc yhK -ibw +nnD bOk bTF jBk @@ -178678,10 +182602,10 @@ kUq kUq kUq kUq -mbK +liP kUq kUq -mbK +liP kUq sXU jkh @@ -178875,11 +182799,11 @@ uRd bOk gyc ssT -sjQ +eEf mjc mjc jkq -rkf +gPz bOk uLb jBk @@ -178937,12 +182861,12 @@ khm khm cOP cOP -vXU -xjL -aHD -pHq -sEt -tji +vOg +vOg +mbK +kuV +vpw +tTL vWj riD qrd @@ -179133,14 +183057,14 @@ bOk thB oZX iym -cxL -cxL -cxL -oIk +gpd +gpd +gpd +wiK bOk uJI jBk -hRX +yjM hBY taF tfK @@ -179167,7 +183091,7 @@ cba lgV xXY gNi -gNi +adq oVK nct sSw @@ -179194,7 +183118,7 @@ ygD ygD riD riD -jeD +cWc riD riD riD @@ -179457,10 +183381,10 @@ uoA dou kUq kUq -lEO +tTL pPO -gXy -tDc +iYe +fMd dnM ePT wKe @@ -179655,7 +183579,7 @@ opB fEW laD hRX -imo +knT cFa sGS hRX @@ -179724,7 +183648,7 @@ kqv kqv kqv lIr -pcQ +wYX lIr lIr ejh @@ -179893,7 +183817,7 @@ hRj ixF sUx sUx -lfx +sUx sUx sUx bOk @@ -179917,7 +183841,7 @@ aqg nHt hRX jFI -cqj +qeX qeX qeX qeX @@ -179955,7 +183879,7 @@ goR egF fbC vcf -xGG +hWt nRE nRE ygD @@ -180464,8 +184388,8 @@ dUb dUb dfn fbC -fkP -smV +vCF +gjj xQR ccY een @@ -180483,7 +184407,7 @@ jKp jKp oam ahf -eKH +pCX hmz hmz hmz @@ -180740,7 +184664,7 @@ xyA jKp rBd ahf -qBj +ujx qRq hmz hmz @@ -180770,7 +184694,7 @@ lIr lIr lIr iIu -iIu +vAe lIr lIr drI @@ -180940,8 +184864,8 @@ spO hvX uii dYi -vua -dEN +nwK +fbq sbd pzb vNc @@ -181241,7 +185165,7 @@ uNY sPc dxA pAn -loB +wTP xUJ mfR nRE @@ -181465,7 +185389,7 @@ dUb fDE vuO hrD -hrD +hzY hrD hrD qQd @@ -181496,12 +185420,12 @@ eTD vMP rto eWU -dxA +djn pAn -yee +fEf xUJ mfR -nqy +nRE syD pzQ slI @@ -181731,7 +185655,7 @@ rih aXN qQd aiI -iaG +aiI aiI aiI kPQ @@ -181753,9 +185677,9 @@ kPI vMP xEU lYy -axn +pjk pAn -mOx +hVx xUJ oam aSg @@ -181978,10 +185902,10 @@ dUb dUb fDE fOb +hqL hrD -hrD -hrD -hrD +hqL +hqL qQd qQd ndQ @@ -182012,7 +185936,7 @@ nde nde wwx ouo -uUK +wrn xUJ oam aSg @@ -182233,25 +186157,25 @@ quB sXd dUb dUb -fDE +uAn vuO -hqL -hrD -hqL -hqL +gNh +iis +lqB +mmP vzB mMb stv aFX -qVO -psk +cvP +eLU mpB -psk -psk +eLU +eLU rHS bot -psk -psk +eLU +eLU eLU rpB rpB @@ -182482,7 +186406,7 @@ vsh vsh umH onj -vRc +hYd tsI umH oIv @@ -182497,26 +186421,26 @@ cbV pML miZ vzB -dGv -inh +kzf +sCx oLH fro tCY xiQ xdU -qVO -qVO -psk -psk -sLY -sLY -sCx -sCx -sCx -sCx -sCx cvP -dfn +cvP +eLU +eLU +nGV +dtL +qbq +mRj +oRH +jDB +wLm +dkm +dUb dUb dfn rde @@ -182725,12 +186649,12 @@ klB iEQ wVJ uRt -tGM +wCC bOk cQP sJR dZH -ggN +imN qeq sJR hyS @@ -182744,37 +186668,37 @@ ulM umH wDu pGn -uGT -sRG +fjl +dUb dUb fDE -fOb +lkj eRC cAW nOF prr vzB -rBE -inh +qWm +sCx oLH uxq izh iGI xCI uOx +trZ qVO -qVO +suQ sLY -sLY -sLY -sCx -sCx +nlk +bAo +ebK uDl -sCx -sCx -cvP -dfn -dfn +mDv +mDv +dkm +dUb +dUb dfn rde nRE @@ -182785,7 +186709,7 @@ nRE nRE nRE lUJ -dDf +sJt aSg sxZ kVZ @@ -182982,7 +186906,7 @@ ljc ljc ljc xqd -cHp +wCC bOk cQP sJR @@ -182995,17 +186919,17 @@ lgi ugn tfR umH -tdt +bsC dgD hcD wZN flY -xuQ +rHX dEo dUb dUb fDE -fOb +hRd qKS fIh xUa @@ -183014,23 +186938,23 @@ hZG tDf tDf dXp -inh -inh -hub +sCx +sCx +tKp sSc mUD rms qVO lvj -sLY -sLY -sCx -sCx -sCx -sCx -sCx -cvP -pkx +mPa +wVu +aVQ +pfO +uFo +mDv +ibo +wkb +sRG dUb dfn rde @@ -183262,17 +187186,17 @@ umH dUb dUb fDE -fOb +hRd kfm dJF nPe mSa vzB -dGv -inh -oLH -inh -inh +kzf +sCx +xSq +sCx +sCx hub rwJ roy @@ -183281,15 +187205,15 @@ qVO tnf gNU txu -gNU -gNU -gNU -gNU -jeh -cvP -dfn +nAM +iRf +npf +gOp +mDv +dkm dUb dUb +dfn pEO pEO rde @@ -183519,14 +187443,14 @@ umH dUb dUb fDE -fOb +hRd lMy jnC hrD -hrD +jyd vzB qXl -inh +sCx alh uva giE @@ -183534,19 +187458,19 @@ hNZ nar tvN exS -qVO +iES nOe -jWP -hAC -hAC -hAC -hAC -jWP +iAw +xtC +umw +ejz +kxx +oVh mDv -cvP -dfn +dkm dUb dUb +jrz fXP afR afR @@ -183771,7 +187695,7 @@ psC psC fhj gPE -psC +kzB dCY dUb dUb @@ -183783,25 +187707,25 @@ vzB vzB vzB dGv -inh +sCx mpl itw gcf cpy -sfn +gcf nwG hAt oLi -iRf -ivr +sNj +clZ rgj -mfO +kjn mfO mPP ivr -vCT +mDv dkm -htH +dUb dUb dfn wga @@ -184003,7 +187927,7 @@ nlm jMr ljc ljc -ucj +ljc ljc ljc ljc @@ -184039,8 +187963,8 @@ vzB vzB jvB wOr -dGv -inh +kzf +sCx wwf jJH xZp @@ -184048,7 +187972,7 @@ yeg jps jdg uwA -byR +dkm leu wzS ocL @@ -184056,11 +187980,11 @@ jSV jKo nnW aia -bVS -cvP -jyM -lqB -htH +mDv +dkm +dUb +iPl +dfn wga afR afR @@ -184296,11 +188220,11 @@ ybO pZX pZX pZX -dGv -inh +kzf +sCx qQf -dRk -rAL +vON +sfn jxk sfn gyw @@ -184308,14 +188232,14 @@ azx bcg jsh iRf -vkQ -mfS +erp +vlK mfS uow -jsh -ivD -cvP -dfn +jEo +mDv +dkm +dUb dUb dfn wga @@ -184525,56 +188449,56 @@ ljc ljc hFG ivh -dCm -dCm -dCm -trR -trR -trR -trR -trR -dCm -dCm -dCm -tdT -dCm -dCm -dCm -dCm -dCm -dCm -dCm +yaI +yaI +yaI +gpS +gpS +gpS +gpS +gpS +yaI +yaI +yaI +yaI +yaI +yaI +yaI +hJx +yaI +yaI +yaI dUb dUb dUb drX bvY -vzx +rbt xvN iJc pZX qWm -inh +sCx nGr afn iJn hiK lSL fLs -umw +azx qVO kDc -jWP -hAC -hAC -hAC +gKE +jNh +umw hAC +qII jWP -clZ -cvP -dfn +mDv +dkm dUb dUb +jrz uBj jrD kIf @@ -184608,10 +188532,10 @@ wcN wcN wcN kVQ -mQh -mQh -mQh -wKb +kiS +kIf +kIf +upX nHg tjn tjn @@ -184782,7 +188706,7 @@ ljc ljc mND wCC -dCm +fMH nlm nlm nlm @@ -184791,30 +188715,30 @@ mDG cSg nlm nlm -dCm -dzI -mjN -dzI -dzI -thk -sPk -dqF -hVi -dCm +pRO +afu +afu +afu +tBs +xBP +tBs +afu +afu +pRO dUb dUb dUb drX pdr gOK -vzx +wwt aZo pZX -dGv -inh +kzf +sCx sYc -inh -inh +sCx +sCx asz gnt wfN @@ -184822,14 +188746,14 @@ cHP qVO pmX mxM -mxM -mxM -mxM -mxM -mxM -qpG -cvP -dfn +erp +eFq +iRf +jyM +gPP +mDv +dkm +dUb dUb gWM iHy @@ -184865,10 +188789,10 @@ bBV bBV kVQ kVQ -ubs -ubs -uKt -wKb +afR +afR +kIf +upX fHG tjn tjn @@ -185039,7 +188963,7 @@ ljc ljc mND wCC -dCm +fMH nlm nlm jph @@ -185048,47 +188972,47 @@ jph jph jph nlm -dCm -dzI -mjN -dzI -dzI -ffr -ozp -ozp -jWJ -dCm +pRO +afu +afu +afu +tBs +jap +tBs +tBs +tBs +pRO dUb dUb dUb drX doO -ebS -tUt +cuL +rfk nuz qGW irn oPM iTa -inh -inh +sCx +sCx asz sSc phd xYk qVO ixS -sLY -sLY -sCx -sCx -sCx -sCx -sCx -cvP -dfn +sLa +erp +erp +erp +erp +mDv +ibo +wkb dUb dUb +dfn jzM dyN dyN @@ -185122,10 +189046,10 @@ ujI ujI xnW kVQ -ubs -oQn -uKt -wKb +afR +afR +kIf +upX nHg nHg tjn @@ -185296,8 +189220,8 @@ dxf dxf asx wCC -dCm -pLQ +fMH +oDx dDL jph gYu @@ -185305,16 +189229,16 @@ cbm mIO jph dDL -dCm -ffr -ffr -ffr -ffr -ffr -ozp -ozp -naR -dCm +pRO +jap +jap +jap +jap +jap +tBs +afu +afu +pRO dUb dUb dUb @@ -185324,28 +189248,28 @@ aUO nYT pPX pZX -rBE -inh -oLH +qXl +sCx +pio pvC nfg czF pGf qyg +lZm qVO -qVO -sLY +sfR jBt -sLY -sCx -sCx -uDl -sCx -sCx -cvP -dfn +iRf +cmp +aBu +erp +mDv +mDv +dkm dUb dUb +dfn jzM dyN dyN @@ -185375,14 +189299,14 @@ fTs ujI ujI ujI -xjc +ujI ujI ujI kVQ -ubs -ubs -uKt -wKb +mQh +mQh +mQh +upX xpw nHg nHg @@ -185543,18 +189467,18 @@ nlm nlm nlm jMr -dCm -dCm -dCm -dCm -dCm -dCm -msm -dCm -dCm -dCm -dCm -dCm +fMH +fMH +fMH +fMH +fMH +fMH +tdH +fMH +fMH +fMH +fMH +fMH nlm jph oJj @@ -185562,16 +189486,16 @@ gQc tYl jph nlm -dCm -mjN -dzI -dzI -dzI -ffr -ozp -ozp -ozp -dCm +pRO +ifU +afu +afu +tBs +jap +tBs +afu +afu +pRO dUb dUb dUb @@ -185581,28 +189505,28 @@ uWi uWi uWi pZX -dGv -inh -oLH +kzf +sCx +pio lhn xjr xdG tPI -qVO -qVO -aVN -aVN -sLY -sLY -sCx -iFS -sCx -sCx -sCx cvP -dfn +cvP +tNW +tNW +yeo +ute +sFL +iFS +erp +vCT +ivD +dkm dUb dUb +dfn jzM dyN dyN @@ -185637,15 +189561,15 @@ ujI ujI kVQ uKt -ubs +oQn uKt -wKb -wKb -wKb -wKb -wKb -wKb -wKb +upX +upX +upX +upX +upX +upX +upX aGf nHg nHg @@ -185800,18 +189724,18 @@ nlm nlm nlm nlm -dCm -fYH -vMH -dzI -dzI -mtg -mjN -dzI -dzI -qmd -tmq -dCm +fMH +cmt +mNt +ulT +ulT +vGB +efc +ulT +ulT +kIL +hWF +fMH dDL jph etm @@ -185819,16 +189743,16 @@ ghb mtC jph dDL -dCm -gJi -dzI -dzI -dzI -ffr -ozp -ozp -giT -dCm +pRO +afu +afu +afu +tBs +jap +tBs +afu +afu +pRO sRG dUb dUb @@ -185838,25 +189762,25 @@ uWi uWi uWi pZX -tem +vre tem slS -aVN -aVN +tNW +tNW oMI -aVN -aVN +tNW +tNW oPY cEH -aVN -aVN tNW -cvP -cvP -cvP -cvP -cvP -cvP +tNW +qVO +qVO +qVO +gkB +wkb +wkb +wkb mJl mJl mJl @@ -185896,13 +189820,13 @@ kVQ uKt uKt uKt -wKb -tII -ktz -cTS -wKb -kiE -qSy +upX +kbY +srA +eUT +upX +vaR +kOo aGf nHg nHg @@ -186057,18 +189981,18 @@ nlm nlm nlm nlm -dCm -vGQ -xVZ -dzI -dzI -lzZ -yav -ffr -vDF -ffr -jyW -dCm +fMH +dwY +kas +ulT +ulT +uJF +nLt +tbg +osD +jVX +his +fMH nlm jph jph @@ -186076,16 +190000,16 @@ jph jph jph nlm -dCm -mjN -dzI -dzI -dzI -ffr -ozp -ozp -ozp -dCm +pRO +tBs +tBs +tBs +tBs +jap +tBs +afu +afu +pRO dUb dUb dUb @@ -186098,7 +190022,7 @@ dHL dHL rla dHL -dHL +qQd oOB oYE bQg @@ -186108,12 +190032,12 @@ ung gQR qom tNW -dsW -dsW +qVO +qol erp -dsW -dsW -rro +gts +qVO +dUb dfn dUb dUb @@ -186153,13 +190077,13 @@ kVQ uKt ubs uKt -wKb -grx -hRD -hRD -qSy -eEv -wKb +upX +brz +fTu +fTu +kOo +epH +upX aGf aGf aGf @@ -186314,18 +190238,18 @@ nlm nlm nlm nlm -dCm -dNw -xVZ -dzI -dzI -dzI -mjN -dzI -dzI -egr -jsD -dCm +fMH +bch +kas +ulT +ulT +ulT +efc +ulT +ulT +gmF +eoN +fMH nlm nlm dDL @@ -186333,16 +190257,16 @@ nlm dDL nlm nlm -dCm -mjN -mjN -mjN -mjN -ffr -ozp -ozp -ozp -dCm +pRO +afu +afu +afu +tBs +jap +tBs +tBs +tBs +pRO tWl dUb dUb @@ -186355,7 +190279,7 @@ dHL dXm qUG wnD -dHL +qQd jUb oYE ley @@ -186365,12 +190289,12 @@ aXZ uLN spC tNW -dsW -dUb -dUb -dUb +qVO +ivo +erp +jix +qVO dUb -rro dfn dUb dfn @@ -186410,31 +190334,31 @@ kVQ uKt ubs ubs -wKb -vYV -hRD -hRD -wKb -wKb -wKb -wKb -dkQ -wKb -wKb -dkQ -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb +upX +xHC +fTu +fTu +upX +upX +upX +upX +nLZ +upX +upX +nLZ +upX +upX +upX +upX +upX +upX +upX +upX +upX +upX +upX +upX +upX nlm nlm nlm @@ -186571,48 +190495,48 @@ nlm nlm nlm nlm -dCm -dBe -qrS -ikZ -dXy -dXy -nzZ -dXy -aqQ -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -mjN -dzI -dzI -dzI -ffr -ozp -ozp -mWu -dCm +fMH +sOy +lBy +kPX +jJU +pva +wIN +jJU +oNH +fMH +fMH +fMH +pRO +pRO +pRO +pRO +pRO +pRO +pRO +pRO +afu +afu +afu +tBs +jap +tBs +afu +afu +pRO dUb dUb dUb drX uWi +jQw uWi uWi -uWi -nNj +dHL sVj uyn jni -nNj +qQd bNH rmB fpC @@ -186622,15 +190546,15 @@ npE jCO uHh tNW -dsW -dUb -dUb -dUb +qVO +qVO +nNj +qVO +qVO dUb -rro -dfn -dfn -dfn +htH +htH +htH iHy kpz dNP @@ -186641,7 +190565,7 @@ sFa jzM cwP cwP -gll +cwP cwP cwP vTI @@ -186667,25 +190591,25 @@ kVQ uKt ubs ubs -wKb -jlh -fCe -sZh -aFg -aFg -lbN -fpz -sZh -wKb -hlh -sZh -xjK -lfT -sZh -aFg -aFg -xjK -wKb +upX +ezz +uyG +ewu +vca +vca +sPr +jTG +ewu +upX +vPk +ewu +tdl +djM +ewu +vca +vca +tdl +upX rBU nnS bYZ @@ -186828,35 +190752,35 @@ nlm nlm hRj hRj -dCm -hEN -dGM -ikZ -ikZ -yem -dXy -ikZ -vsm -dCm -rNe -vqM -odE +fMH +vVt +xJZ +kPX +kPX +pNr +pva +kPX +pva +npo +nTy +mdW +pRO +jap +imi +imi +jap +imi +jap +pRO +pRO +pRO +pRO +qNG +pRO +pRO +pRO +pRO pRO -xlH -hmT -uHg -uok -aBV -dCm -vdN -dCm -dCm -dCm -dCm -tdT -dCm -dCm -dCm mJl mJl mJl @@ -186865,7 +190789,7 @@ drX drX drX drX -fNB +qQd qQd qQd qQd @@ -186879,15 +190803,15 @@ tNW tNW tNW tNW -qII -jQw -jQw -jQw -jQw -ghA -dfn dUb dfn +htH +htH +htH +htH +htH +dUb +htH jzM cjE oca @@ -186895,7 +190819,7 @@ ctb ctb sSs muN -jzM +xkV cwP cwP cwP @@ -186924,25 +190848,25 @@ kVQ rey ubs ubs -wKb -sZh -aFg -aFg -aFg -aFg -lbN -fpz -sZh -wKb -xjK -sZh -sZh -ccy -sZh -sZh -sZh -sZh -wKb +upX +ewu +vca +vca +vca +vca +sPr +jTG +ewu +upX +tdl +ewu +ewu +nfO +ewu +ewu +ewu +ewu +upX cgg hRj lkP @@ -187085,44 +191009,44 @@ nlm nlm hRj hRj -dCm -iyx -upl -nzZ -dXy -ikZ -dXy -tah -uyb -dCm -nDB -xCt -tms -pRO -hJL -mMx -cWG -kdG -hfz -pRO -nUB +fMH +frc +edm +ppe +jJU +kPX +jJU +gNR +wWg +fMH +pDi +rNe +sxh +dhZ +dhZ +dhZ +dhZ +dhZ +dhZ +sxh +eeg afu afu -ech +dVd +wBd afu +dhZ jap sxh -jap -afu dUb dUb dUb fkM dUb -xce +sym +dUb dUb dUb -htH dUb fkM dUb @@ -187136,13 +191060,13 @@ dfn dfn dfn dUb -ukT dUb -dfn -dfn +dUb oKw dfn -dfn +dUb +dUb +dUb dUb dUb jzM @@ -187181,25 +191105,25 @@ kVQ uKt ubs uKt -wKb -gdP -aFg -aFg -aFg -aFg -lbN -fpz -aQa -wKb -aQa -sZh -daw -ilB -sZh -aFg -sZh -aFg -wKb +upX +sSy +vca +vca +vca +vca +sPr +jTG +wmX +upX +wmX +ewu +ipY +wyl +ewu +vca +ewu +vca +upX lgv rfI htn @@ -187342,44 +191266,44 @@ nlm nlm hRj hRj -dCm -aNg -ebA -hcL -nzZ -oTp -xYa -eHz -rcs -dCm -oeR -cRk -wDf -pRO -rPs -jZL -oCs -aLW -kdG -hik -fmN -afu -qDi -afu -afu -jap +fMH +tsA +uaH +izP +wIN +kYz +cka +boF +sau +fMH +vJD +pDi +sxh +tBs +tBs +tBs +xLl +tBs +tBs sxh +eeg +uKO +dhZ +dVd +tBs +tBs +tBs jap -afu +sxh dUb dUb dUb dUb dUb +dsW dUb dUb dUb -htH dUb dUb dUb @@ -187417,7 +191341,7 @@ avZ xOy gaM ozt -fEU +cSD cSu soU soU @@ -187438,25 +191362,25 @@ vvD gsm gsm gsm -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -cWU -pAH -pAH -pAH -pAH -cWU -cWU -aFg -sZh -aFg -wKb +gUI +gUI +gUI +gUI +gUI +gUI +gUI +gUI +gUI +lRX +lRX +lRX +lRX +gUI +gUI +vca +ewu +vca +upX gep jAo lbD @@ -187597,46 +191521,46 @@ nlm nlm nlm nlm -dCm -dCm -dCm -dCm -dCm -dCm -hSv -dCm -dCm -dCm -dCm -dCm -sFZ -jwu -eaT +fMH +fMH +fMH +fMH +fMH +fMH +qZx +fMH +fMH +fMH +fMH +fMH +pDi +rNe pRO -wFj -ojZ -auA -fUJ -uxz pRO -tZV -afu +pRO +pRO +pRO +pRO +pRO +pRO +eeg afu afu +dVd +dhZ afu +dhZ jap sxh -jap -afu dUb dUb dUb dUb dUb +dsW dUb dUb dUb -htH dUb dUb dUb @@ -187704,16 +191628,16 @@ fHc kwQ mHd wfY -pAH +lRX aut gqz -pAH -mqb -cWU -dfO -sZh -sZh -wKb +lRX +dDx +gUI +rPh +ewu +ewu +upX jtE eCy hRj @@ -187866,38 +191790,38 @@ rNe rNe rNe bPW -chI -ylO -mkq +xKJ +rNe pRO +xYC +fQG pRO -iRF +qlj +dch +cVq pRO +vYq +afu +afu +dVd pRO pRO pRO -wiZ -afu -afu -afu -dCm -dCm -dCm -dCm -dCm -sSR -gVi -ivI -gVi -tEY -aTH -dCm -kYe -nUk -kTq -bvZ +pRO +pRO +pRO +pRO +tmT +vuC +tmT +pRO bvZ -tUd +opV +kKB +huv +gSh +nXB +tni tPU xSz xSz @@ -187944,7 +191868,7 @@ iDR kWr hkD kmJ -kou +eiu hMs nTe ljx @@ -187964,13 +191888,13 @@ lJo kMj geC geC -cWU -ncF -cWU -sZh -aFg -sZh -heC +gUI +tTx +gUI +ewu +vca +ewu +mMs jtE eCy hRj @@ -188123,38 +192047,38 @@ kow jCE rNe ixf -mkq -ylO -ylO +pDi +rNe pRO -uHY -jrp -iem -wZb -pIf pRO -kvo -afu +jOJ +pRO +xzr +sEV +aJA +pRO +eeg afu afu -dCm -wIW -dXy -dXy -dCm -fxp -dXy -dXy -dXy -dXy -heq -dCm -pnd -hxJ -fLC -dyQ -eOh -wzM +dVd +pRO +qaH +lJK +pRO +pbE +gyi +pRO +bEV +nFp +mgT +tGg +aSH +pzr +lEd +sjz +jNu +mLP +hwe tPU jPa paf @@ -188221,13 +192145,13 @@ jwB etN atm wgp -cWU -ncF -cWU -dlk -aFg -sZh -heC +gUI +tTx +gUI +jpZ +vca +ewu +mMs jtE eCy hRj @@ -188380,37 +192304,37 @@ rNe gxO rNe ixf -mkq -xHP -jvM +pDi +pDi +axj pRO -qJn -ihF -kdG -kdG -wsR +pOu +czG +iPx +sux +ekw +hua +tDh +cKK +cKK +mHv pRO -soH -afu -afu -afu -dCm -dCm -dCm -dXy -dCm -tAV -dXy -dCm -dCm -dCm -dCm -dCm -dCm -dCm -tPU +pBw +vYN +pRO +fDH +nfd +pRO +hsg +mkt +vxr +vxr +vxr +vxr +vxr +vxr tPU -bSe +dsN tPU tPU jPa @@ -188478,13 +192402,13 @@ ahC cFb iEf bhU -cWU -ncF -cWU -dfO -aFg -sZh -wKb +gUI +tTx +gUI +rPh +vca +ewu +upX jtE eCy hRj @@ -188637,38 +192561,38 @@ rNe gxO rNe ixf -ylO -mbC -jvM +pDi +rNe +eBF pRO -rPs -jZL -oCs -aLW -kdG -ios -fmN -afu -afu -afu -dCm -lKb -nzZ -dXy -dCm -dXy -dXy -rga -roj -tVI -roj -ewY -roj -fso -xPj -rBP -bam -sKO +pfY +viF +uPj +iMO +dPM +pRO +lOf +eNg +eNg +eCF +pRO +tGO +neh +pRO +neh +nOm +pRO +vfe +laC +vxr +krM +nAx +rPg +nnX +udV +hLe +cCb +fUy tPU jPa paf @@ -188735,13 +192659,13 @@ mdO nTB jdB wgp -cWU -ncF -cWU -sZh -aFg -sZh -heC +gUI +tTx +gUI +ewu +vca +ewu +mMs jtE eCy hRj @@ -188894,38 +192818,38 @@ kow wvK rNe bPW -owz -jvM -jvM +pDi +rNe pRO -oJK -ojZ -auA -fUJ -vMG pRO -fmN -afu +pRO +pRO +pRO +pRO +pRO +pRO +aLG afu afu -dCm -nGI -dXy -dXy -rga -dXy -nzZ -dCm -roj -dCm -dCm -dCm -vYI -gFW -tPU -iML +dVd +pRO +pRO +cKa +pRO +ocW +pRO +pRO +xgK +fdN +vxr +wEK +lpX +wEK +nnX +vxr +wdF iOK -vrx +npt tPU itK paf @@ -188992,13 +192916,13 @@ gnK kMj geC geC -cWU -xib -cWU -fGT -aFg -sZh -heC +gUI +aTB +gUI +enA +vca +ewu +mMs jtE dDL nlm @@ -189151,39 +193075,39 @@ rNe gxO rNe ixf -ylO -jvM -mbC -pRO -pRO -iRF -pRO +pDi +rNe pRO +rXj +bvJ pRO +hgb +bkr +afA pRO -mip +aLG afu afu -afu -dCm -rCP -dXy -hmM -dCm -dCm -dCm -dCm -lHi -dCm -tsR -jVB -jVB -jVB -jVB -jVB -jVB -jVB -jVB +dVd +xgK +foi +laC +kaq +laC +vfe +hVd +bmw +mWg +vxr +rai +vxr +vxr +vDu +vxr +vxr +vxr +vxr +vxr jPa paf paf @@ -189244,18 +193168,18 @@ tpe kwe mIK pMY -cWU -xWM -cWU +gUI +qPf +gUI jqw qGZ -cWU -nFE -cWU -dfO -aFg -dlk -wKb +gUI +okt +gUI +rPh +vca +jpZ +upX jtE dDL nlm @@ -189408,39 +193332,39 @@ rNe gxO rNe ixf -ylO -jvM -xHP +pDi +rNe pRO -gCQ -tAr -ekk -bJs -bJs pRO -fmN -afu +jOJ +pRO +uAX +sEV +wYb +pRO +aLG afu afu -idM -idM -idM -idM -idM -dll -wSW -dCm -roj -dCm -lRz -jVB -qJB -teV -mwL -aii -uzu -eZC -jVB +dVd +xgK +vfe +laC +laC +bEA +bEA +xCV +bmw +yfJ +vxr +nnX +sWX +vxr +vxr +vxr +bTl +oSV +wRQ +vxr jPa paf paf @@ -189494,25 +193418,25 @@ arT gsm gsm gsm -cWU -cWU -cWU -cWU -oVg -fKJ -cWU -cWU -wKb -cWU -cWU -cWU -cWU -cWU -cWU -fvG -wKb -wKb -wKb +gUI +gUI +gUI +gUI +asU +rzu +gUI +gUI +upX +gUI +gUI +gUI +gUI +gUI +gUI +dzn +upX +upX +upX jtE dDL nlm @@ -189665,39 +193589,39 @@ kow vpd rNe ixf -mkq -ylO -ylO -pRO -lbW -srx -bJs -sVb -bJs +pDi +pDi +eBF pRO -uId +pOu +czG +iPx +sux +ekw +wIo +aLG afu afu -afu -idM -uNn -tMS -jlo -idM -qNW -orb -dCm -roj -dCm -aMz -jVB -kVj -kVj -tSw -eZC -gZu -eZC -jVB +dVd +pRO +pRO +lPI +pRO +pwj +pRO +vxr +jMC +vxr +vxr +olH +tQq +srh +hJc +srh +tQq +rPg +dyu +vxr jPa paf paf @@ -189751,25 +193675,25 @@ arT gsm ubs uKt -wKb -aFg -aFg -aFg -vyt -oxe -gTX -heo -aFg -aFg -wKb -sZh -sZh -sZh -izp -hRD -hRD -iYZ -wKb +upX +vca +vca +vca +jgD +mLp +dqZ +tCh +vca +vca +upX +ewu +ewu +ewu +qLQ +fTu +fTu +oXp +upX jtE dDL nlm @@ -189922,39 +193846,39 @@ rNe rNe rNe bPW -rWH -ylO -ylO +xKJ +rNe +pAp pRO -eIR -ugM -qSs -paI -bJs -wEn -fmN -afu +ovJ +viF +uPj +iMO +rVA +pRO +aLG afu afu +dVd +pRO +qKY +gMW +pRO +gMW +neN +vxr +egg +olH +vxz +jRq +wNR idM -klx -xvD -tTG idM -iTE -doH -mQS -roj -dCm -dJR -jVB -mwL -kVj -qJB -eZC -ylo -imd -jVB +idM +vxr +uVb +vxr +vxr jPa paf paf @@ -190008,25 +193932,25 @@ arT gsm ubs ubs -wKb -wKb -wKb -wKb -vyt -wKb -wKb -cbq -hLp -hLp -wKb -sZh -aFg -aFg -aFg -aFg -aFg -aFg -wKb +upX +upX +upX +upX +wgq +upX +upX +pwY +pBm +pBm +upX +ewu +vca +vca +vca +vca +vca +vca +upX jtE dDL nlm @@ -190167,51 +194091,51 @@ nlm nlm nlm tSA -gGB -dCm -dCm -dCm -dCm -dCm -hwU -dCm -dCm -dCm -dCm -dCm -mmb -qCj -lMS +cZI +vxr +vxr +vxr +vxr +vxr +eOf +vxr +vxr +vxr +vxr +vxr +nTy +mdW pRO -dHS -tSa -eRm -bJs -jeX pRO -eza -afu -afu -afu +pRO +pRO +pRO +pRO +pRO +pRO +fOc +dhZ +dhZ +dVd +pRO +kml +vYN +pRO +fDH +ipr +vxr +mIE idM -vqq -giB -iJN idM -xuy -qNW -dCm -roj -dCm -dJR -jVB -lgF -lgF -wMi -lgF -pKJ -wMi -jVB +idM +idM +idM +uuD +idM +idM +hEu +fNP +biI jPa paf paf @@ -190269,21 +194193,21 @@ ewD wsv eTG ewD -xFw -baF -wKb -sZh -sZh -sZh -wKb -sZh -aFg -aFg -aFg -aFg -aFg -aFg -wKb +aOo +qIZ +upX +ewu +ewu +ewu +upX +ewu +vca +vca +vca +vca +vca +vca +upX jtE dDL nlm @@ -190402,73 +194326,73 @@ nlm nlm nlm nlm -heR -dbT -pmx -dbT -pmx -dbT -pmx -heR -heR -dcE -heR -heR -heR -heR -heR -heR -dDL +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm nlm tSA -qqY -hRj -dCm -jda -dCm -qzB -dXy -ecP -ecP -cNl -tAV -dCm -dCm -vMs -dCm -dCm -dCm -doL -dCm -dCm -dCm -dCm -afu -afu +tLP +vxr +gfd +wrb +vxr +qoL +rPg +qUo +bAf +dEr +qZy +vxr +vxr +gOv +vxr +ssX +xED +pRO +ekk +aLA +fpf +pRO +aLG afu afu +dVd +pRO +qaH +pZd +pRO +wZk +gyi +vxr +mFv idM +jaI +lgC +sjy idM +qsr +wWM idM -idM -idM -dCm -dCm -dCm -rGw -dCm -tJw -cdi -nSp -nSp -xmQ -mDk -twC -rAq -cdi +hEu +bSg +elH jPa paf eqt @@ -190526,21 +194450,21 @@ ewD iFx ssV iPX -xFw -xzm -wKb -wKb -wKb -wKb -wKb -sZh -aFg -aFg -aFg -aFg -aFg -kbR -wKb +aOo +kuL +upX +upX +upX +upX +upX +ewu +vca +vca +vca +vca +vca +vbZ +upX ekn itl itl @@ -190659,73 +194583,73 @@ nlm nlm nlm nlm -dbT -mZo -mZo -mZo -mZo -mZo -mZo -pmx -heR -dcE -heR -wJJ -wJJ -wJJ -wJJ -wJJ -dDL nlm nlm nlm nlm -xrx -qqY -hRj -dCm -dCm -dCm -dXy -dXy -nYR -dXy -wsc -qPw -ecP -ecP -hqi -ecP -dCm -nit -eKc -dCm -pRx -lAE -dCm -afu -afu -afu -afu -dCm -ecP -lai -fNG -dCm -vvV -sgG -piT -piT -esn -uzY -sMw -lYT -twC -twC -twC -tzO -rPK -cdi +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +tSA +ixj +lWS +lRD +tQq +aqE +mAa +vgX +tpR +rPg +xTJ +nAx +vxr +vDv +rPg +vxr +vxr +pSk +pRO +xQg +dmC +uvx +nKE +mmO +jba +hgJ +vze +vxr +vxr +vxr +vxr +vxr +vxr +vxr +mIE +oFo +jaI +jaI +nIa +eWn +nIa +hMS +idM +hEu +fWL +biI jPa paf jPa @@ -190783,21 +194707,21 @@ ewD fTA eUV ewD -eEv -eEv -eEv -eEv -eEv -eEv -eEv -sZh -aFg -aFg -aFg -aFg -aFg -aFg -wKb +epH +epH +epH +epH +epH +epH +epH +ewu +vca +vca +vca +vca +vca +vca +upX hRj hRj hRj @@ -190862,39 +194786,63 @@ nlm nlm nlm nlm -"} -(154,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(154,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -190913,76 +194861,52 @@ nlm nlm nlm nlm -nlm -nlm -nlm -aDp -mZo -mZo -mZo -mZo -mZo -mZo -mZo -mrg -dcE -heR -wJJ -qeQ -qeQ -qeQ -wJJ -heR -heR -dDL -dDL -dDL -xrx -qqY -lrM -spK -roj -nxi -roj -hAh -ikK -tSE -dDq -cDA -roj -roj -hye -roj -iDw -dDq -dDq -jxj -sgG -sgG -dCm -dCm -dCm -dCm -dCm -dCm -gYY -dCm -dCm -dCm -qqe -yem -ijE -ivE -ijE -gKu -cdi -rnh -miE -wIl -ewf -wiA -jrb -cdi +waY +xIW +gVf +jbr +dTa +paZ +vfj +vyu +vUN +vUN +vUN +kwV +caK +vUN +yme +tBb +vxr +qHz +njf +njf +hop +kyp +vxr +vxr +emb +vxr +vxr +vxr +caB +nXh +caB +caB +nXh +mIE +egg +idM +bbX +jCS +pEm +idM +xym +bYt +idM +hEu +tua +biI jPa jPa jPa @@ -191039,22 +194963,22 @@ ubs ewD xCu vAg -cWU -cWU -cWU -cWU -cWU -sIn -eEv -siG -sZh -aFg -aFg -aFg -aFg -wlF -fMe -wKb +gUI +gUI +gUI +gUI +gUI +nyh +epH +eIq +ewu +vca +vca +vca +vca +xQr +qoB +upX hRj hRj hRj @@ -191173,73 +195097,73 @@ nlm nlm nlm nlm -heR -tWI -tWI -tWI -tWI -tWI -tWI -tWI -jyv -dcE -heR -wJJ -qeQ -qeQ -qeQ -wJJ -shx -uIx -uIx -uIx -uIx -shx -hRj -hRj -dCm -dCm -dCm -dCm -dCm -dCm -dXy -bNY -hMc -ojr -ojr -dDq -ojr -kHj -rCP -nGI -ecP -ecP -sgG -wul -sgG -sgG -sgG -sgG -sgG -sgG -sgG -sgG -xmx -exM -slP -ijE -sws -sws -iiS -cdi -cdi -cdi -cdi -cdi -cdi -cdi -cdi +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +xrx +jGG +jGG +jGG +jGG +jGG +jGG +unL +nOK +oit +rcc +wRQ +kYk +bSg +xSL +kwV +vxr +aDk +eKL +hFW +rxy +oGX +vxr +vUN +uwr +hkO +vep +gcT +caB +rPg +iGu +vxr +pCB +vxr +jGG +idM +omF +jBV +idM +idM +idM +idM +idM +vxr +vxr +vxr paf iFC paf @@ -191289,30 +195213,30 @@ uKt kKw uKt uKt -uKt +mQh gsm ubs ubs -wKb -weJ -cWU -cWU +upX +weM +gUI +gUI eeb mbP qYB -cWU -cWU -xJI -wKb -wKb -wKb -wKb -wKb -wKb -uQH -hBS -wKb -wKb +gUI +gUI +tsp +upX +upX +upX +upX +upX +upX +eot +eFE +upX +upX hRj hRj hRj @@ -191430,70 +195354,70 @@ nlm nlm nlm nlm -heR -tWI -aDp -uUH -aDp -uUH -aDp -uUH -jyv -dcE -heR -wJJ -rad -tOE -rOG -wJJ -shx -tlf -roz -lqv -ejA -shx -hRj -hRj -hRj -hRj -hRj -hRj -hRj -dCm -eEN -wIW -hkm -hkm -hkm -qhP -hkm -hkm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -dCm -paf -paf -paf -paf -paf +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +xrx +kbu +txF +jya +eSI +hnO +jGG +jGG +jGG +jGG +jGG +jGG +jGG +rPg +xSL +kwV +vxr +vxr +vxr +vxr +vxr +vxr +vxr +kwV +mfF +uCO +uCO +flK +vxr +vxr +vxr +vxr +tkX kdR -uGj -jPa -jPa -jPa -jPa +kdR +kdR +tkX +tkX +uUg +tkX +tkX +tkX +tkX tLo paf paf @@ -191546,7 +195470,7 @@ ubs ubs ubs ubs -uKt +mQh gsm gsm gsm @@ -191687,70 +195611,70 @@ nlm nlm nlm nlm -heR -aDp -syR -syR -syR -syR -mrg -bWY -jyv -shx -shx -wJJ -eBf -pPu -eBf -wJJ -shx -pJf -dQb -tMf -evH -shx -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hkm -hkm -hkm -kOk -dUH -fHk -vpi -fHk -kOk -hRj -hRj -dDL -dDL -heR -heR -heR -heR -heR -dCm -qLZ -ffr -ohJ -dzI -dCm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +xrx +kbu +psU +dyM +rVb +iub +unl +eZC +lBD +kjg +rtL +qFS +jGG +rPg +rPg +vUN +vUN +vUN +vUN +vUN +vUN +vUN +vUN +kwV +wkn +uCO +uCO +oXB +vxr +utv +uCO +vxr paf paf paf paf paf -kdR +jPa paf paf paf paf -jPa +tkX paf paf paf @@ -191803,7 +195727,7 @@ ubs ubs ubs ubs -uKt +mQh ubs ubs ubs @@ -191944,76 +195868,76 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +slL +slL +slL dDL -dDL -dDL -dDL -dDL -shx -uIx -shx -uIx -shx -oOn -aMs -wDS -peo -iLg -pDm -shx -ncT -qJA -axF -iUo -shx -kOk -kOk -kOk -hdi -hdi -hdi -hdi -kOk -kOk -qTk -dBG -knN -knN -cTM -knN -kOk -hdi -hdi -hdi -hdi -hdi -hdi -hdi -hdi -hdi -kOk -kOk -kOk -lUM -kOk -kOk -kOk +xtW +xrx +kbu +orR +dyM +edC +mPx +unl +eZC +qJB +kVj +mwL +hYl +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +jGG +hUg +jGG +jGG +jGG +jGG +mch +jGG +jGG +vwg paf paf eaf paf -kdR -paf +jPa paf paf paf -jPa -jPa -jPa -jPa -jPa -jPa -jPa +tkX +tkX +cnw +cnw +cnw +cnw +cnw +cnw jPa paf paf @@ -192060,7 +195984,7 @@ ubs ubs ubs uKt -uKt +mQh uKt ubs ubs @@ -192201,76 +196125,76 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL -dcE -heR -qHf -qHf -shx -fVM -sTS -fVM -nfE -lyd -chG -chG -chG -chG -wdu -xuG -iPL -sGR -sGR -hig -shx -dJn -oOs -oOs -oOs -oOs -oOs -oOs -iTB -mQT -oOs -oOs -oOs -oOs -fXG -oOs -iTB -oOs -oOs -oOs -anJ -oOs -oOs -oOs -oOs +slL +dDL +dDL +dDL +nlm +nlm +unl +unl +unl +xAC +suI +bBq +iub +unl +eZC +kVj +kVj +tSw +hYl +iHr +uFe +rvo +cbA +jVB +wPp oOs -ppA -mQT -mGO -rLz -xfj -dtC -fzS +aoY +qww kOk +jBJ +lnZ +fTa +aQO kOk +mze +ohi +uDx +weC +lDI kOk kOk -fnD +rDG kOk -cWU -wKb -wKb -qzb -wKb -wKb -wKb -wKb -wKb -dkQ +kOk +mAH +kOk +fTV +ksJ +fYG +ksJ +ksJ +ksJ +ksJ +ksJ +ksJ +dgl euG euG pJR @@ -192281,11 +196205,11 @@ cjh cjh cjh mus -dJC -mus +cXX mus -dJC mus +cXX +riN mus cXX mus @@ -192294,53 +196218,53 @@ gpO mHf mHf mHf -rKA -rJJ -rKA -rKA -rKA -rKA -rKA -rKA -rKA -daz -rKA -rKA -rKA -rKA -rKA -rKA -eij -hKh -cLq -cLq -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -evO -evO +wrT +vCG +wrT +wrT +wrT +wrT +wrT +wrT +wrT +hHi +wrT +wrT +wrT +wrT +wrT +wrT +aSk +omU +gKq +gKq +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +hdV +hdV rkB lmT uBq -evO -evO -rKA -rKA -rKA -rKA -rKA -rKA -rKA -qxE -qxE -rKA -rKA +saT +saT +blF +blF +blF +blF +blF +blF +blF +inv +inv +blF +blF hRj hRj hRj @@ -192458,76 +196382,76 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL -dcE -heR -iVT -duQ -jCJ -fVM -fVM -uBv -wtd -aMs -wdu -iWM -aMs -aMq -iOk -aMs -aMs -ccV -hja -uuo -shx -eSh -bAW -bAW -bAW -smk -smk -smk -smk -smk -smk -smk -smk -smk -smk -smk -smk -smk -smk -smk -smk -smk -smk -nhz -qZE -qZE -iTn +nlm +nlm +nlm +dDL +nlm +nlm +kbu +pcM +uMG +jOm +dCs +kox +iub +unl +eZC +mwL +kVj +qJB +jRQ +jjp +xMf +pRB +ifk +lXl +kSk bAW -hWk +hHj +aAn +oOs +oOs +iKA +oOs +oOs +ipL +oOs +mGO cCM cCM -iak -fzS -ljh +eAh +kNc cCM cCM -oWN -kSL cCM cCM -aFg -cWU -tub -wKb -lKZ -ebM -mgM -wKb -rRW +sUW +cCM +cCM +fTV +nwH +oxH +ksJ +jem +duw +vZH +ksJ +hrC euG uAZ xDY @@ -192537,67 +196461,67 @@ euG sby jkW lRd -oTd -nUo -oTd -oTd +vAh +oJd avc -oTd -oTd avc -oTd -iju +avc +avc +avc +vAh +vAh +jkG qaI qiY bHb mHf -wcV -kFa -pIV -rKL -rKL -rKA -wcV -wcV -wcV -rMj -wcV -wcV -jip -wcV -rKA -rKL -pRm -rKL -rKL -rKL -wcV -rKL -rKA -www -dTi -rMj -rMj -ehO -pIV -xgb -evO -evO -mbv -evO -evO -wAW -rMj -pIV -wcV -wcV -wcV -pIV -rMj -wcV -wcV -fgg -rKA +sfc +vmk +avI +sfc +sfc +wrT +sfc +sfc +sfc +bJo +sfc +sfc +uzi +sfc +wrT +lwA +cCo +lwA +lwA +lwA +sfc +lwA +wrT +oyS +djX +bJo +bJo +kzy +avI +szA +hdV +saT +tUn +saT +saT +ugw +sOm +fGg +duC +duC +duC +fGg +sOm +duC +duC +lpA +blF hRj hRj hRj @@ -192715,76 +196639,76 @@ nlm nlm nlm nlm -slL -dcE +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm dDL -qHf -qHf -shx -buP -fVM -fVM -rDm -wKI -iWA -gqb -wdu -wdu -iOk -aMq -aMs -aMq -raa -bWC -shx -rqm -fMu -fMu -fMu -auP -fMu -qRb -fMu -oXO -fMu -fMu -fMu -fMu -fMu -fMu -fMu -fMu -fMu -fMu -fMu -pgh -fMu -auP +nlm +uSI +aDw +aDw +aDw +aDw +kbu +aNP +bLx +rvv +rvv +rvv +rvv +unl +eZC +wyV +eZC +vek +wVh +jVB +fop +fKl +uPz +oql +dBo +exk +exk +dmI +cdo +exk +dmI +xFg fMu -cfT -lmI +hdi fMu agz cCM cCM -iak -fzS -ljh +eAh +kNc +cCM cCM dVv uhO ulj -csN +xGV cCM -aFg -cWU -xJt -wKb -gOd -wYw -wYw -wKb -nhE +fTV +iQD +oBl +ksJ +hLr +lDH +lDH +ksJ +tey euG ceR cZh @@ -192798,63 +196722,63 @@ avc avc avc avc +rrE avc avc avc avc -avc -iju +jkG igc lDj -nWV +qEN mHf -rKL -kFa -rKL -rKL -rKL -rKA -wcV -wcV -wcV -nmH -wcV -wcV -pIV -wcV -rKA -rKL -pRm -rKL -rKL -rKL -pIV -rKL -rKA -www -rMj -pIV -rMj -rMj -pIV -rMj -rKA -lxN -gtd -rKA -tza -sqo -rMj -pIV -gBf -pIV -pIV -pIV -rMj -wcV -wcV -wcV -rKA +lwA +vmk +lwA +lwA +lwA +wrT +sfc +sfc +sfc +kki +sfc +sfc +avI +sfc +wrT +lwA +cCo +lwA +lwA +lwA +avI +lwA +wrT +oyS +bJo +avI +bJo +bJo +avI +bJo +wrT +oeH +mOk +blF +gYU +pZW +sOm +fGg +usk +fGg +fGg +fGg +sOm +duC +duC +duC +blF nGm hRj hRj @@ -192918,27 +196842,39 @@ nlm nlm nlm nlm -"} -(162,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(162,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -192973,75 +196909,63 @@ nlm nlm nlm slL -nlm -dDL dDL -dDL -shx -hVc -fVM -iZe -abi -nTp -vcF -gng -tls -uBh -uqw -jmD -tnX -aMq -vIy -tMw -shx -rqo -pGl -pGl -rqo -eLh -pGl -rqo -pGl -pGl -pGl -rqo -ngH -hYV -hYV -hYV -ngH -ngH -hYV -hYV -ngH -ngH -hYV -wdJ -hYV -ngH -ngH -cbT +nlm +qms +mDG +mDG +mDG +mDG +kbu +rSP +uMG +czx +lrZ +gfi +qVE +unl +unl +unl +unl +unl +unl +gmD +gmD +wPt +gmD +gmD +gmD +dwQ +dwQ +gmD +gmD +dwQ +aod +dwQ +gmD +gmD +gmD cbT +oDs cbT +sKx cbT -sdI cbT -ljh cCM bKj cCM cCM -wjT +eTP cCM -cCM -kOk -wGi -wKb -oFU -wYw -wYw -wKb -cea +fTV +xfQ +oBl +ksJ +oWJ +lDH +lDH +ksJ +iyZ euG fSW kek @@ -193050,68 +196974,68 @@ bzN aPG rTF geK -oip +uEL pSB avc -tDn pSB -avc +kxW +acx +tGv pSB -uAn avc pSB -iju +jkG cDZ -lDj +bqO ueN mHf -rKL -kFa -rKL -rKL -rKL -rKA -wcV -wcV -wcV -rMj -wcV -wcV -pIV -wcV -rKA -pIV -pRm -pIV -pIV -pIV -pIV -pIV -rKA -rMj -rMj -rMj -rMj -pIV -sKH -ceB -rKA -pPG -gtd -rKA -dTb -rMj -iCx -pIV -wcV -wcV -wcV -pIV -rMj -wcV -wcV -wcV -rKA +lwA +vmk +lwA +lwA +lwA +wrT +sfc +sfc +sfc +bJo +sfc +sfc +avI +sfc +wrT +avI +cCo +avI +avI +avI +avI +avI +wrT +bJo +bJo +bJo +bJo +avI +xMn +prO +wrT +isY +mOk +blF +mWC +sOm +bvE +fGg +duC +duC +duC +fGg +sOm +duC +duC +duC +blF hRj hRj hRj @@ -193229,76 +197153,76 @@ nlm nlm nlm nlm -slL -slL -slL nlm nlm -shx -vvb -foH -xpF -fVM -fVM -pPu -wUI -siN -oxu -qij -eOM -nKz -cot -chZ -lcN -shx -rqo -nhU -svt -mmt -nhU -ijs -uwn -ijs -xpr -ijs -ggW -ngH -tjy -jEV -fzl -rWs -bKY -arl -nJJ -eOy -xBt -mEr -tLs -xAI -lcx -hsd -ujX -tOR -vQw -xBa -qnn +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +hMq +iWu +dDL +dDL +qms +iVr +unl +unl +xFN +unl +rci +bLx +bkC +kcC +dWe +hOo +bKw +uwk +phI +kau +oDp +mWB +gmD +cca +vBT +njc +kep +jKL +lZW +uxZ +yfq +eeh +mzm +tla +kWs +gjR +wpK +dwU +riB +bNO +mej +kXW +tLD uAO uhO -uhO jgt cCM cCM -fyH -sIW -sIW -dLO -smi -wKb -kAq -wYw -wYw -iyk -eEv +tVe +dxQ +vlI +bEP +oBl +ksJ +aLB +lDH +lDH +fPo +mLv euG tCb koU @@ -193310,65 +197234,65 @@ pBa oRG pSB avc -pSB -pSB -avc -pSB -pSB +oTd +byE +psi +qKC +oTd avc pSB -iju +jkG gnx uuV -qvu +lfX mHf -pIV -kFa -pIV -wcV -pIV -uKm -pIV -pIV -pIV -rMj -pIV -pIV -pIV -pIV -rKA -rKL -dsY -rKL -rKL -rKL -pIV -rKL -rKA -pIV -pIV -rMj -rMj -rMj -rKA -rKA -rKA -rKA -lrT -rKA -rKA -rKA -rKA -uKm -rKA -wtn -uon -rKA -rMj -rMj -rMj -rMj -rKA +avI +vmk +avI +sfc +avI +ano +avI +avI +avI +bJo +avI +avI +avI +avI +wrT +lwA +dQk +lwA +lwA +lwA +avI +lwA +wrT +avI +avI +bJo +bJo +bJo +wrT +wrT +wrT +blF +fXr +blF +blF +blF +blF +nqf +blF +dSY +qge +blF +sOm +sOm +sOm +sOm +blF odg hRj hRj @@ -193488,74 +197412,74 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL -dDL -dDL -shx -shx -aPr -hNJ -fVM -fVM -shx -sRd -shx -gfs -ngQ -ngQ -cay -cay -nqm -oGW -vqn -wyc -ltG -ijs -xBQ -sRP -bWQ -oNI -fke -fke -fke -fke -wzD -njY -ntA -eVy -xAI -dnC -nJJ -xCx -rjj -xAI -btj -sYH -xAI -xAI -tkV -ujX -uhv -ruB -ybT +nlm +nlm +qms +mDG +mDG +unl +nxq +unl +bIm +jTp +gfi +aWM +veh +veh +xpd +xYc +cNK +cNK +cNK +cNK +fUr +fVR +tnJ +bOK +tla +rRT +egA +obM +ldV +tla +egA +tla +bLm +bLm +nBm +dwU +uBo +xxr +gqc isr -iAW -ljh +eXJ +oDs cCM -bXp +nKe cCM cCM sUW -cCM lUC -kOk -cdP -wKb -iee -wYw -wYw -wKb -gTX +fTV +eMN +oBl +ksJ +mBZ +lDH +lDH +ksJ +mLv tWx mga hoJ @@ -193575,57 +197499,57 @@ tEl tEl tEl sfz -uRs +tpJ uRs djG mHf -rKL -kFa -rKL -rKL -rKL -rKA -rMj -rMj -rMj -rMj -wcV -pIV -wcV -wcV -rKA -rKL -pRm -rKL -rKL -rKL -pIV -rKL -rKA -rKA -vcT -rKA -rKA -rKA -rKA -iPt -cme -rKA -lrT -mtw -gtd -feR -gtd -gtd -gqM -gtd -gtd -mGx -rMj -rMj -wcV -rMj -rKA +lwA +vmk +lwA +lwA +lwA +wrT +bJo +bJo +bJo +bJo +sfc +avI +sfc +sfc +wrT +lwA +cCo +lwA +lwA +lwA +avI +lwA +wrT +wrT +jji +wrT +wrT +wrT +wrT +kbo +xEJ +blF +fXr +sZi +mOk +aZy +mOk +mOk +eZk +mOk +mOk +wel +sOm +sOm +duC +sOm +blF ilu hRj wyj @@ -193745,144 +197669,144 @@ nlm nlm nlm nlm -slL nlm nlm -uIx -fPl -ooF -cBY -xpF -fVM -shx -ogB -mDo -fQR -kBo -fAb -qij -qij -kxA -tES -isn -gvK -ijs -rhD -dwq -nhU -bmc -xqb -ijs -buF -vEI -vEI -ngH -cUA -xAI -iux -xAI -wuX -ajl -ajl -dVg -xAI -src -sYH -wrt -wrt -daQ -mcd -kUp -kjQ -jrQ -qic -xHU -ljh +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +xIe +nlm +nlm +qms +mDG +ezY +unl +wvR +xWN +wkF +qmT +izV +ufI +veh +veh +qHX +nWX +gfi +qFk +mfh +mfh +gmD +wmS +bGe +nUF +nKf +ruf +qpn +qpn +wbM +kWs +jdM +nKf +hBj +bGe +dqI +hjH +ctL +lHI +uIf +oaX +lxb +oDs cCM -bXp +nKe cCM cCM sUW cCM -cCM -kOk -xRJ -wKb -iee -wYw -wYw -wKb -kiT +fTV +rtm +oBl +ksJ +mBZ +lDH +lDH +ksJ +xxs euG euG euG kMr umq euG -cIN +cEj igJ -oip +uEL oTd avc oTd -oTd avc -oTd +avc +nCg oTd nUo dOQ mHf -iju -iju +jkG +jkG mHf mHf -rMj -lLa -rMj -rMj -rMj -rKA -wcV -wcV -rMj -wcV -wcV -pIV -wcV -pIV -uKm -pIV -vrO -nfB -mwh -nfB -nfB -nfB -lrb -iCS -mcR -gtd -gtd -gtd -vvL -gtd -gtd -qZB -lrT -rKA -aFm -sUV -rKA -gtd -rKA -rKA -rKA -rKA -cIp -rMj -rMj -dTi -rKA +bJo +rYU +bJo +bJo +bJo +wrT +sfc +sfc +bJo +sfc +sfc +avI +sfc +avI +eIN +avI +sVc +rVG +wfO +rVG +rVG +rVG +odo +iZk +qnh +rYh +rYh +rYh +jZQ +rYh +rYh +gUV +fXr +blF +fNr +kTm +blF +mOk +blF +blF +blF +blF +wNp +sOm +sOm +wDz +blF dXi hRj hRj @@ -194002,145 +197926,145 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL nlm nlm -uIx -hcf -hbS -hbS -tRL -wpd -shx -ewK -shx -hMF -uRB -shx -qij -qij -kxA -qij -kXa -gvK -ijs -ijs -lEy -nhU -vPa -jMG -ijs -eri -nic -vNX -ngH -kbS -xAI -iux -xAI -gxi -xAI -xAI -xAI -xAI -xAI -xbp -xAI -jnQ -xAI -nyX -hcn -jsQ -dxL +qms +mDG +mDG +unl +rlF +unl +dZn +dhy +unl +pFY +ffs +xIk +eJx +nWX +gfi +ehu +fJY +tIo +gmD +nqo +eyC +rWn +dPC +kWs +kWs +kWs +kWs +kWs +kWs +dPC +dht +eyC +nKf +xEM +ush +hzk +klA vny -cjL -ljh +wpM +oDs cCM -bXp +nKe cCM cCM sUW cCM -cCM -kOk -xqG -wKb -lQE -dHb -jUI -wKb -hmG -fAV -uUX +fTV +apy +bHL +ksJ +mSN +mJT +gVj +ksJ +rpd +kCz +gvM euG euG euG euG rRM igJ -oip -pSB -pSB -pSB -pSB -uTJ -pSB -pSB +uEL pSB +avc +oTd +pZT +hmb +aiP +oTd +avc pSB lGA cAH emh -cjh -gtd -rKL -kFa -rKL -rKL -rKL -rKA -wcV -wcV -rMj -wcV -rMj -rMj -rMj -rMj -rKA -rKL -pIV -rKL -rKL -rKL -pIV -rKL -rKA -mpX -fZP -sgM -rFi -uhx -rKA -rKA -rKA -rKA -lrT -rKA -rKA -rKA -rKA -pIV -pIV -pIV -yfs -rKA -rKA -rKA -rKA -rKA -rKA -rKA +qcQ +svT +lwA +vmk +lwA +lwA +lwA +wrT +sfc +sfc +bJo +sfc +bJo +bJo +bJo +bJo +wrT +lwA +avI +lwA +lwA +lwA +avI +lwA +wrT +gxb +pWk +mOU +aur +jvK +wrT +wrT +wrT +blF +fXr +blF +blF +blF +blF +fGg +fGg +fGg +gJw +blF +blF +blF +blF +blF +blF +blF hRj hRj hRj @@ -194259,145 +198183,145 @@ nlm nlm nlm nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm slL nlm nlm -uIx -crn -llh -kEq -shx -shx -shx -vHa -aZQ -hHE -pha -iGC -goM -qij -kxA -qij -rqo -jdr -ijs -pID -ijs -ijs -ijs -ijs -qrt -uGg -vNX -poD -ngH -kbS -tLQ -gER -vQf -tLQ -eVu -sLx -upA -eVu -vQf -qpY -guy -vQf -xAI -ujX -lSs +qms +mDG +mDG +yau +qsx +fsW +kEf +qlu +cgI +kZw +tWe +jQH +tiN +nWX +fht +xgP +tIo +mOB +gmD +amd +tVz +alb +jyP +tVz +lPi +kPC +pGL +lPi +jyP +lrX +oiw +jyP +nKf +dwU +oVQ uvT hzk -xIo +vXC +ixW cbT -ljh cCM -bXp +nKe cCM cCM sUW cCM -cCM -kOk -vqE -wKb -wKb -wKb -wKb -wKb -gTX -syU -uJR -cea -nns -uEs -wKb +fTV +kzW +ulD +ksJ +ksJ +ksJ +ksJ +ksJ +mLv +nTU +gAS +inL +yiB +ruZ +ksJ wVx igJ -oip -pSB -pSB -pSB -pSB +roY +avc +avc +avc +fNn fPf -pSB -pSB -pSB -pSB +txz +avc +avc +avc mIp iMT sLK -cjh -tpA -kFa -kFa -wcV -pIV -wcV -rKA -wcV -wcV -rMj -pIV -rMj -rMj -rMj -dTi -rKA -rKL -pIV -rKL -rKL -rKL -pIV -rKL -rKA -dto -eNY -iqo -gYS -uhx -rKA -rKL -rKL -gtd -lrT -gtd -rKL -rKL -rKA -lcE -rKA -rKA -qHT -fqj -bCa -pIV -gtd -uEM -gtd -vJV +wrT +oVe +oPH +oPH +sfc +avI +sfc +wrT +sfc +sfc +bJo +avI +bJo +bJo +bJo +djX +wrT +lwA +avI +lwA +lwA +lwA +avI +lwA +wrT +dal +ayI +kYM +rGg +jvK +wrT +lwA +lwA +mOk +fXr +mOk +uMt +uMt +blF +xhv +blF +blF +sEc +lVR +xfi +fGg +mOk +pNV +mOk +neA hRj hRj pma @@ -194460,39 +198384,48 @@ nlm nlm nlm nlm -"} -(168,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(168,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -194509,152 +198442,143 @@ nlm nlm nlm nlm +dDL nlm nlm +dDL nlm nlm nlm nlm +xIe nlm -slL -dcE nlm -shx -dMJ -pFJ -vwx -shx -bbO -shx -kwG -fJc -shx -tHE -shx -way -qNX -mHZ -bpZ -rqo -vjC -ijs -ijs -ijs -ijs -ijs -ijs -bPj -rqo -lag -lag -ngH -wIS -sLx -nCR -nZD -eVu -eVu -sLx -ume -eVu -sLx -sLx -fXp -sLx -pvP -hql -cbT +qms +mDG +mDG +yau +tEi +aSc +unl +kKn +unl +lKl +rVt +aKj +tiN +nWX +xMJ +unl +kbu +kbu +gmD +raE +kPC +oBO +sUw +lPi +lPi +kPC +okG +lPi +kPC +kPC +gcx +kPC +bor +fPN +gmD sRE rET sRE cbT +cbT cCM +xfy +unU +ddu +sti cCM -eAd -iKj -txs -xqm -cCM -itq -kOk -lgZ -sDG -vwR -xIV -kFQ -mgY -cPW -wdD -vDT -cVH -wKb -wKb -wKb +fTV +bEP +xXC +nKk +oWD +ykK +esD +myP +uYg +tLE +vgf +sLO +ksJ +ksJ +ksJ pec igJ -oip -pSB -pSB -pSB -pSB -pSB +uEL pSB +avc pSB +xky +xky +xky pSB +avc pSB lnH peQ hXr -pZT -wqN -rKL -pIV -rKL -rKL -rKL -rKA -wcV -wcV -rMj -wcV -rMj -rMj -rMj -rMj -rKA -wcV -pIV -pIV -pIV -pIV -pIV -pIV -rKA -rKA -ter -hKh -hKh -rKA -rKA -rKA -rKA -rKA -lrT -rKA -rKA -rKA -rKA -rKA -exV -sPp -qHT -rKA -kQV -awK -rKA -rKA -rKA -rKA +wrT +rWg +lwA +tQB +lwA +lwA +lwA +wrT +sfc +sfc +bJo +sfc +bJo +bJo +bJo +bJo +wrT +sfc +avI +avI +avI +avI +avI +avI +wrT +wrT +lLG +omU +omU +wrT +wrT +wrT +wrT +blF +fXr +blF +blF +blF +blF +blF +fTC +dtT +sEc +blF +nEt +bjr +blF +blF +blF +blF hRj hRj hRj @@ -194773,144 +198697,144 @@ nlm nlm nlm nlm +nlm +hMq +iWu slL -heR +slL +iWu +slL +slL +slL +slL +iWu dDL -shx -shx -shx -shx -shx -shx -shx -kHY -kHY -shx -uOo -vVv -vVv -shx -shx -shx -rqo -eEW -bDn -ijs -ckn -ijs -ijs -ijs -lPE -qRp -qRp -qRp -ngH -nsN -xAI -qtC -pXM -oXX -woG -oSU -wgD -fZB -hKS -oXX -okO -xAI -xAI -jBh -cbT +dDL +qms +iVr +unl +unl +xSc +xSc +unl +agB +unl +gPk +oYu +kmT +eRO +nWX +sdP +nGA +nGA +ugm +gmD +kaj +kWs +eKq +nVz +sxP +hPj +htN +yay +rQG +vnC +sxP +hMz +kWs +nKf +qYb +gmD sLQ oef rVd cbT -cCM -cCM -cCM -okP -vLb -cCM -cCM -itq -kOk -jzz -jzz -pDa -jzz -jzz -wKb -njA -wKb -wKb -cth -icj -dXN -bNC +shi +shi +slo +shi +sjr +slo +shi +fTV +ksJ +ksJ +ksJ +mXI +ksJ +ksJ +ksJ +xDw +ksJ +ksJ +irj +tsV +xrU +uaU fqZ xGq vkO pSB +avc pSB -xsU -uib pSB pSB pSB pSB +avc pSB gLT -gYP +peQ rCF -cjh -ohw -rKL -pIV -rKL -rKL -rKL -rKA -wcV -wcV -rMj -wcV -rMj -dTi -rMj -rMj -rKA -rKL -wcV -rKL -rKL -rKL -wcV -rKL -rKA -wcV -xMv -bwd -bwd -bwd -jDq -rKL -wcV -rKA -lrT -rKA -yiW -fwd -rKA -tcz -exV -rKA -qHT -rKA -fnW -afB -dSX -dUG -rKA +wrT +rWg +lwA +tQB +lwA +lwA +lwA +wrT +sfc +sfc +bJo +sfc +bJo +djX +bJo +bJo +wrT +lwA +sfc +lwA +lwA +lwA +sfc +lwA +wrT +sfc +chg +dUK +dUK +dUK +sHi +lwA +sfc +blF +fXr +blF +hYW +rIm +blF +ucR +fTC +blF +sEc +blF +xrw +dDG +yel +aGe +blF hRj hRj hRj @@ -195031,83 +198955,83 @@ nlm nlm nlm nlm -dcE nlm -dcE -dcE -heR -myt -dcE -dcE -dcE -dcE -dcE -dcE -dcE -gaf +slL +nlm +nlm +dDL +nlm +nlm +nlm +nlm +dDL +nlm +nlm +qms mDG +nKW mDG mDG mDG -efZ -xbP -pxN -ijs -ijs -ijs -ijs -ijs -uxD -qRp -qRp -bgE -ngH -lse -xAI -dxv -phf -mLS -mLS -mLS -ado -mLS -mLS -mLS -lEf -okO -xAI -qYY -cbT +kbu +qWr +jYR +gPS +hrN +tpI +lWD +nWX +dPj +emd +nGA +lPR +gmD +kWs +kWs +gql +iQd +vxS +vxS +vxS +vxS +vxS +vxS +vxS +bkv +hMz +kWs +rjM +gmD hSa eDP eej cbT -kOk -kOk -kOk -kOk -wiO -kOk -kOk -kOk -kOk +eCa +mlc +iwq +oXv +iwq +uYT +pQp +uYT +iwq mKk qVD lia gQY -jzz -xwu -oeF -sZh -cWU -cWU -cWU -cWU -cWU +ksJ +fms +qFV +oBl +fTV +fTV +fTV +fTV +fTV kWj dNZ wtJ -wuz +bZK wuz xRI gQI @@ -195119,55 +199043,55 @@ dKL lhy peQ cCN -cjh -rBh -lEi -pIV -rKL -rKL -rKL -rKA -wcV -wcV -rMj -pIV -rMj -rMj -rMj -oXh -rKA -rKL -pIV -rKL -rKL -rKL -pIV -rKL -rKA -wcV -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -sqz -qHT -qHT -vcn -pbZ -rKA -fNZ -rKA -fHi -oSE -qHN -juz -rKA +wrT +bex +iGo +tQB +lwA +lwA +lwA +wrT +sfc +sfc +bJo +avI +bJo +bJo +bJo +pwW +wrT +lwA +avI +lwA +lwA +lwA +avI +lwA +wrT +sfc +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +mPK +iYa +hOV +msQ +xTq +blF +dQz +blF +gFF +oFI +rgL +lsl +blF hRj hRj hRj @@ -195288,143 +199212,143 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE nlm -dDL -rAT nlm +dDL nlm nlm nlm nlm +dDL nlm nlm -gaf +qms mDG +nKW mDG mDG mDG -efZ -xbP -ijs -ijs -ijs -ijs -ijs -ijs -psw -qRp -qRp -txI -ngH -hFA -hFA -kvb -mLS -mLS -aSB -aSB -aSB -aSB -aSB -mLS -mLS -wVX -qcT -mNC -cbT +unl +xVG +rZp +rZp +onW +wDp +xAr +nWX +lst +nGA +nGA +wjG +gmD +cet +cet +eSk +vxS +vxS +rFg +rFg +rFg +rFg +rFg +vxS +vxS +fYR +cet +kbh +gmD phz fbe vuR cbT -omx +kGQ iwq vVR -fVn -gGc -ddM +pmd +fBs vRf -cfI -tfy +vRf +vRf +jHk wZE dJt ksa oOZ -jzz -fCe -aud -aUF -cWU -eku -oyG -cYq -cWU +ksJ +ntz +kEG +hyw +fTV +fFN +uCI +kGg +fTV rcF geK sRH +uHD +iju +inK +dbw +geK ntx geK -inK -aiP -uEL -xCe -hxW -kdQ +geK aPg jAO bEr ucf -cjh -mHx -wcV -pIV -pIV -wcV -pIV -rKA -wcV -rMj -rMj -wcV -dTi -rMj -oXh -xuu -rKA -pIV -pIV -wcV -rAH -pIV -pIV -pIV -rKA -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -gCv -odB -rKA -rKA -tpA -rKA -rKA -rKA -vqZ -lWQ -nWs -pJC -rKA +wrT +wrT +wrT +eSY +kIE +kIE +kIE +wrT +sfc +bJo +bJo +sfc +djX +bJo +pwW +bMx +wrT +avI +avI +sfc +cVW +avI +avI +avI +wrT +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +pul +oxo +blF +blF +vSA +blF +blF +blF +nVY +uop +rvz +pnF +blF hRj wyj hRj @@ -195545,10 +199469,10 @@ nlm nlm nlm nlm -dcE -slL -dcE -nlm +dDL +iWu +dDL +hMq bxd bxd ydS @@ -195561,43 +199485,43 @@ ydS bxd bxd mDG +udN mDG -mDG -rqo -bRd -ijs -ijs -ijs -ijs -ijs -ijs -jcP -gtw -gtw -gCL -ngH -hFA -hFA -dOl -mLS -mLS -aSB -sgX -pvS -sgX -aSB -mLS -mLS -wre -qcT -agh -shi +unl +gbN +gfi +sru +iUz +hPW +frT +nWX +gDk +uEi +jcM +fYy +gmD +cet +cet +mCa +vxS +vxS +rFg +tPe +tPe +tPe +rFg +vxS +vxS +qdP +cet +ubk +gmD shi shi shi shi shi -oLx +gCu fmO gPv iwq @@ -195608,18 +199532,18 @@ sus vfZ hsz bHG -arL -jzz -ulu -dHK -aUF -cWU -wYw -wYw -bgA -cWU +lsu +ksJ +iJY +uLD +hyw +fTV +lDH +lDH +bIq +fTV nKr -pBa +pxX xKc uAP dOH @@ -195628,60 +199552,60 @@ wXM xeN qHQ cud -tIm +cud cgX nwQ dKT ucX -cjh -mHx -rKA -onm -rKA -rKA -daz -rKA -rKA -rKA -daz -rKA -rKA -rKA -rKA -rKA -rKA -pIV -pIV -rKL -rKL -rKL -pIV -rKL -rKA -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -huR -rKA -rKA -aKB -qmI -tpA -tpA -rKA -jxW -iwN -lBS -igm -rKA +wrT +rYh +wrT +txm +wrT +wrT +wim +wrT +wrT +wrT +hHi +wrT +wrT +wrT +wrT +wrT +wrT +avI +avI +lwA +lwA +lwA +avI +lwA +wrT +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +bHJ +blF +blF +oim +sMK +vSA +vSA +blF +dTX +xIh +uGm +sVo +blF hRj hRj hRj @@ -195802,16 +199726,16 @@ nlm nlm nlm nlm -dcE +nlm slL -heR -dDL +nlm +nlm bxd -eFm +mIx bNX bNX bNX -fWz +dKM bNX bNX bNX @@ -195820,40 +199744,40 @@ bxd mDG mDG mDG -efZ -xbP -aEr -ijs -ijs -ijs -ijs -ijs -jcP -vUw -qRp -oEl -ngH -hFA -qcT -dOl -mLS -aSB -aSB -sgX -sgX -sgX -aSB -aSB -mLS -wre -qcT -qcT -kXT -udb -vVb -aIt +kbu +qWr +gfi +lrZ +iUz +gfi +gfi +nWX +gDk +nGA +nGA +mig +gmD +cet +ciT +mCa +vxS +rFg +rul +tPe +tPe +tPe +rul +rFg +vxS +qdP +ciT +vQe +tUG +rrI +ecz +eWZ tMJ -tnY +lyM tTS urx qbw @@ -195863,82 +199787,82 @@ bzL fmO sus sQp -jzz -jzz -jzz -jzz -wKb -wKb -wKb -cWU -oVF -cWU -cWU -cWU +ksJ +ksJ +ksJ +ksJ +ksJ +ksJ +ksJ +fTV +mxp +fTV +fTV +fTV cjh uKP -uKP -cjh -cjh -wwE -csK cjh -kLe -kPd +gYP +kdQ +tFD +kdQ +wqN cjh +uKP +uKP cjh uKP uKP uKP -cjh -cmO -cmO -qHN -vAv -rKA -ayr -kdE -hlm -sry -gtd -gtd -iWb -rmV -qHN -rKA -rKA -daz -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -rKA -rKA -pIV -pIV -rKA -rKA -tpA -rKA -rKA -rKA -rKA -rKA -rKA +wrT +rYh +wrT +icg +lVF +wrT +esr +iWF +qJk +vwL +hXV +hXV +qxw +mAR +wMy +wrT +wrT +qyT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +blF +blF +fGg +fGg +blF +blF +vSA +blF +blF +blF +blF +blF +blF hRj hRj hRj @@ -196002,39 +199926,48 @@ nlm nlm nlm nlm -"} -(174,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(174,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -196051,17 +199984,8 @@ nlm nlm nlm nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -dcE slL -dcE +nlm nlm ydS bNX @@ -196069,7 +199993,7 @@ bNX bNX bNX bNX -kVm +bNX bNX bNX pSI @@ -196077,41 +200001,41 @@ bxd mDG mDG mDG -efZ -xbP -lrl -ijs -ijs -ijs -ijs -ijs -jcP -qRp -qRp -ukq -ngH -riI -qcT -dOl -mLS -aSB +kbu +qWr +gBC +jcw +jkM +gfi +gfi +nWX +gDk +emd +nGA +ged +gmD +dXq +ciT +mCa +vxS +rFg tPe tPe tPe tPe tPe -aSB -mLS -jnq -sRj -siz -shi -npj +rFg +vxS +xBU +cHL +fRy +gmD +jsG cEd vki -dPQ -spb -spb +vki +slo +qYr sus fmO aDN @@ -196120,82 +200044,82 @@ yiY sus oLL sus -wKb -sZh -sZh -sZh -sZh -sZh -sZh -oSo -wYw -cWU -hRj -hRj +ksJ +oBl +oBl +oBl +oBl +oBl +oBl +dJH +lDH +fTV hRj hRj hRj hRj uKP weW +dJC +cjh cly -lnv -cGp -vAh +xsU uKP hRj hRj hRj hRj hRj -rKA -cmO -xFS -rKA -rKA -rKA -rKA -rKA -daz -rKA -rKA -rKA -iGc -gtd -rKA -fus -gtd -vet -wcV -rKL -wcV -qMC -vSU -blq -rKA -pIV -rKL -rKL -rKL -rKL -rKL -pIV -rKA -lrT -qTm -gtd -gtd -gqM -pIV -qjt -rKA -kaN -vAF -kFa -kFa -kFa -xUW -rKA +hRj +wrT +wrT +wrT +hvy +wrT +wrT +wrT +wrT +wrT +qyT +wrT +wrT +wrT +ekH +hXV +wrT +wtN +rYh +tKH +sfc +lwA +sfc +dfy +pdg +cBl +wrT +avI +lwA +lwA +lwA +lwA +lwA +avI +blF +fXr +nIC +mOk +mOk +eZk +fGg +jnU +blF +bup +hkr +xex +xex +xex +pVr +blF hRj hRj hRj @@ -196316,9 +200240,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS mfn @@ -196331,44 +200255,44 @@ cZP bNX hTs bxd -vGE +eTi bxd -vGE -rqo -xbP -ijs -ijs -ijs -pID -ijs -ijs -jcP -wKJ -cAI -smD -ngH -qcT -qcT -dOl -mLS -aSB +eTi +unl +tDq +gfi +gfi +iUz +gfi +nWX +nWX +gDk +xKS +uYs +xXQ +gmD +ciT +ciT +mCa +vxS +rFg tPe tPe tPe tPe tPe -aSB -mLS -vFP -qcT -qcT -shi +rFg +vxS +eKA +ciT +ciT +gmD iUX kDx -cAc -uxI -jkz -spb +xsS +xsS +xsS +xsS sus sus sus @@ -196377,82 +200301,82 @@ sus gzm sus rcl -wKb -sZh -dlk -dlk -iYM -dlk -dlk -wKb -wYw -heC -hRj +ksJ +oBl +oyp +oyp +iNn +oyp +oyp +ksJ +lDH +jUW hRj hRj hRj hRj -hRj -uKP +cjh wwE -utG +csK cjh -utG +kLe kPd -uKP +cjh +hRj hRj hRj hRj hRj hRj -rKA -szn -nhY -iMf -rKL -rKL -rKL -rKL -rTa -rKA -kiA -rKA -rKA -gtd -fhA -gtd -gtd -gtd -wcV -rKL -rKL -gtd -gtd -gtd -fhA -pIV -pIV -pIV -pIV -pIV -pIV -pIV -lXC -lrT -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -gKk -xUW -oQk +hRj +wrT +jNg +raU +tDJ +lwA +lwA +lwA +lwA +edR +wrT +cZn +wrT +wrT +hXV +oIB +hXV +hXV +rYh +sfc +lwA +lwA +rYh +rYh +rYh +gpD +avI +avI +avI +avI +avI +avI +avI +dJp +fXr +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +pux +vSA +fsX hRj hRj hRj @@ -196573,9 +200497,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS mBr @@ -196591,68 +200515,70 @@ yhO hvS saS hvS -liY -pRW -ijs -pID -ijs -ijs -cpN -rqo -gjb -gjb -gjb -gjb -ngH -xoH -qcT -dOl -mLS -aSB +jLE +qWr +gfi +sru +iUz +gfi +cRZ +shQ +shQ +shQ +shQ +gmD +gmD +iKF +ciT +mCa +vxS +rFg tPe tPe tPe tPe tPe -aSB -mLS -vFP -qcT -qcT +rFg +vxS +eKA +ciT +ciT +gmD +xRp xsS -ifs xsS -tse -iXH -vfb -spb -sus +pji +dTQ +xsS +wNJ sus fmO fmO tdF tTg sus -sus -wKb -dlk -dlk -dlk -sZh -dlk -dlk -wKb -dxh -heC -hRj +tPY +ksJ +oyp +oyp +oyp +oBl +oyp +oyp +ksJ +mwK +jUW hRj hRj hRj hRj -hBz -hRj -hRj +uKP +hML +wap +lnv emj +lZV +uKP hRj hRj hRj @@ -196660,56 +200586,54 @@ hRj hRj hRj hRj -hRj -sWg -rKA -rJB -oOm -xEo -rKL -rKL -rKL -rKL -rTa -rKA -lgN -emS -rKA -lgN -rKA -gRT -gtd -iVp -rKL -rKL -wcV -gtd -gtd -vSU -rKA -pIV -rKL -rKL -rKL -rKL -rKL -pIV -rKA -lrT -rKA -wyF -ffI -tJt -ffI -tJt -ffI -tJt -ffI -wyF -rKA -pMH -hIn -oQk +wrT +qxL +oKe +efQ +lwA +lwA +lwA +lwA +edR +wrT +ggD +tbU +wrT +ggD +wrT +cOJ +gIR +mSe +lwA +lwA +sfc +rYh +rYh +hGh +wrT +avI +lwA +lwA +lwA +lwA +lwA +avI +blF +fXr +blF +cPB +rue +sAI +rue +sAI +rue +sAI +rue +cPB +blF +asV +eVY +fsX hRj hRj hRj @@ -196830,9 +200754,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm bxd mZK @@ -196842,131 +200766,131 @@ cMY ewI gct jSO -bNX +kVm hJS oSq vbf +pfQ vbf -ePX -eWq -pRW -ijs -ijs -ckn -iyW -ijs -efZ -mUS -jvb -hyv -ydi -vti -qcT -qcT -dOl -mLS -aSB -aSB -aSB -aSB -aSB -aSB -aSB -mLS -tDB -nog -wCn -xsS +mKQ +iro +iro +iro +qrq +qCr +ttk +shQ +cXk +nWu +bWe +gmD +kWs +ciT +ciT +mCa +vxS +rFg +rFg +rFg +rul +rFg +rFg +rFg +vxS +nev +hJp +tBE +gmD apX -eMo +lIP +bPO +bqU +rpz xsS -oqW -jkz -spb sus gzm sus fmO -cEn +fmO sus sus fsj -wKb -sZh -dlk -dlk -sZh -dlk -dlk -wKb -wYw -heC -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hRj -hRj +ksJ +oBl +oyp +oyp +oBl +oyp +oyp +ksJ +lDH +jUW hRj hRj hRj hRj +uKP +wwE +utG +cjh +utG +kPd +uKP +tIm hRj +wUk hRj +tIm hRj hRj -oQk -nBr -oOm -ddW -rKL -rKL -rKL -rKL -rTa -rKA -oSX -lgN -qHN -gtd -rKA -rKA -rKA -rKA -gtd -gtd -gtd -rKA -daz -rKA -rKA -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -tJt -lMU -lMU -lMU -lMU -lMU -lMU -lMU -tJt -rKA -gCv -tpA -oQk +mJP +rVo +oKe +ilO +lwA +lwA +lwA +lwA +edR +wrT +tio +ggD +oID +rYh +wrT +wrT +wrT +wrT +rYh +rYh +rYh +wrT +qyT +wrT +wrT +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +sAI +nUi +nUi +nUi +nUi +nUi +nUi +nUi +sAI +blF +pul +vSA +fsX hRj hRj hRj @@ -197087,9 +201011,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS yhY @@ -197103,43 +201027,43 @@ bNX fmV bra eOY -prv -byA -gMP -eTt -gkP -ijs -ijs -xIS -alG -efZ -akK -onh -tCd -lan -htc -qcT -qcT -dOl -mLS -mLS -mLS -mLS -mLS -mLS -mLS -mLS -mLS -wre -xVF -mYh -xsS -qpD -nRS +nYA +eOY +wVP +hPR +sUY +peL +jkM +kHF +aJs +cQi +wgZ +lHz +hqj +iRW +tla +ciT +ciT +mCa +vxS +vxS +vxS +vxS +vxS +vxS +vxS +vxS +vxS +qdP +mKH +cWr +gmD +sKn +dKH +dKH +dKH +oYm xsS -shi -shi -shi sus sus sus @@ -197148,82 +201072,82 @@ sus rcl fmO xRg -wKb -sZh -dlk -dlk -sZh -dlk -dlk -wKb -wYw -wKb -hRj -hRj -hRj -hRj +ksJ +oBl +oyp +oyp +oBl +oyp +oyp +ksJ +lDH +ksJ hRj hRj hRj +hBz hRj hRj +cGp hRj +pKC hRj hRj hRj hRj hRj hRj +sWg hRj hRj -oQk -asA -oOm -ePM -rKL -rKL -rKL -rKL -rTa -rKA -bUp -rKA -rKA -rKA -rKA -rMj -dTi -rKA -xIJ -gtd -vet -rKA -rMj -rMj -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -lrT -rKA -tMj -lMU -rKL -rKL -rKL -rKL -rKL -lMU -tMj -rKA -rKA -pgu -rKA +mJP +mvd +oKe +nEn +lwA +lwA +lwA +lwA +edR +wrT +eyQ +wrT +wrT +wrT +wrT +bJo +djX +wrT +rpq +rYh +tKH +wrT +bJo +bJo +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +fXr +blF +gIz +nUi +uMt +uMt +uMt +uMt +uMt +nUi +gIz +blF +blF +vRy +blF xwn hRj hRj @@ -197344,9 +201268,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS riV @@ -197359,64 +201283,65 @@ tVS bNX syi bxd -vGE +eTi bxd -vGE -rqo -nhU -fKm -ijs -ijs -ijs -joP -hYu -sMa -uOF -uuF -gjb -eSO -qcT -qcT -kSS -foZ -mLS -mLS -mLS -mLS -mLS -mLS -mLS -seW -jAd -qcT -qyu -twY -ulh -sNW -hnh +eTi +unl +fGn +suV +vEp +jkM +kRv +bFW +jVN +oyA +boY +jLD +gmD +tGP +ciT +ciT +wit +stC +vxS +vxS +vxS +vxS +vxS +vxS +vxS +jNG +ivP +ciT +ojV +mvU +ePz +tCl +hhG +xsS leN -fbk -shi -sus +xsS sus +fmO lIA sus sus sus fmO bEp -wKb -sZh -dlk -dlk -sZh -dlk -dlk -wKb -wYw -wKb +ksJ +oBl +oyp +oyp +oBl +oyp +oyp +mDE +lDH +ksJ dyE hRj +tIm hRj hRj hRj @@ -197432,55 +201357,54 @@ hRj hRj hRj hRj -hRj -oQk -cAv -oOm -ePM -rKL -rKL -rKL -rKL -rTa -rKA -kkn -rKA -dTi -rMj -rMj -rMj -rMj -rKA -mMX -gtd -gtd -uKm -rMj -rMj -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -gtd -rKA -dNL -lMU -rKL -uhJ -rKL -rKL -rKL -lMU -tJt -rKA -rKA -fnp -rKA +mJP +ijv +oKe +nEn +lwA +lwA +lwA +lwA +edR +wrT +fef +wrT +djX +bJo +bJo +bJo +bJo +wrT +qNo +rYh +rYh +eIN +bJo +bJo +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +mOk +blF +btU +nUi +uMt +aJn +uMt +uMt +uMt +nUi +sAI +blF +blF +bLp +blF hRj hRj hRj @@ -197601,9 +201525,9 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm ydS kWe @@ -197619,59 +201543,59 @@ bxd mDG mDG mDG -efZ -vji -ijs -ijs -ijs -ijs -joP -efZ -mVw -vIX -ggX -ydi -xAI -qcT -qcT -qcT -kSS -nUj -nUj -nUj -nUj -nUj -nUj -nUj -jAd -qcT -qcT -jfp -xsS -jRB -eUl -kyZ -xsS +kbu +gfi +gfi +gfi +klh +vcp +awR +cQi +iuQ +gnm +kAn +dwQ +eyC +ciT +ciT +ciT +wit +bEi +bEi +bEi +bEi +bEi +bEi +bEi +ivP +ciT +ciT +hPQ +gmD +pOP +uEU +cny +hSJ fbk -shi -sus +xsS sus sus sus +fmO gzm sus lIA nTg -wKb -sZh -sZh -sZh -sZh -sZh -sZh -ljW -dtP -ljW +ksJ +oBl +oBl +oBl +oBl +oBl +oBl +bci +lDH +bci eYm hRj hRj @@ -197690,55 +201614,55 @@ hRj hRj hRj hRj -rKA -asA -hMU -ePM -rKL -rKL -rKL -rKL -rTa -rKA -gtd -rKA -rMj -rMj -rMj -rMj -rMj -rKA -rKA -daz -rKA -rKA -rMj -rMj -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKL -rKA -gtd -rKA -tMj -lMU -rKL -rKL -rKL -rKL -rKL -lMU -tMj -rKA -rKA -tpA -rKA -rKA +wrT +mvd +doM +nEn +lwA +lwA +lwA +lwA +edR +wrT +rYh +wrT +bJo +bJo +bJo +bJo +bJo +wrT +wrT +qyT +wrT +wrT +bJo +bJo +lwA +lwA +lwA +lwA +lwA +lwA +lwA +lwA +blF +mOk +blF +gIz +nUi +uMt +uMt +uMt +uMt +uMt +nUi +gIz +blF +blF +vSA +blF +blF hRj hRj hRj @@ -197858,16 +201782,16 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm bxd dzH bNX bNX bNX -wJU +lGE bNX lmH lmH @@ -197876,59 +201800,59 @@ bxd mDG mDG mDG -efZ -sRP -ijs -ijs -ijs -ijs -sRP -rqo -gjb -gjb -gjb -gjb -vBg -qcT -qcT -qcT -eGq -roB -qcT -qcT -qcT -qcT -qcT -qcT -eGq -oEN -boh -ngH -xsS +kbu +gfi +gfi +lrZ +iUz +ucy +hSg +shQ +aIY +tfo +iyS +gmD +aWU +ciT +ciT +ciT +vJf +lYY +ciT +ciT +ciT +ciT +ciT +ciT +vJf +tAv +pbe +gmD +gmD iLL cYB cYB +hSJ +knW xsS -leN -shi gzm sus sus sus -shi -shi +jzz +jzz ekY jzz -wKb -sZh -dlk -dlk -dlk -dlk -dlk -wKb -kQD -wKb +ksJ +oBl +oyp +oyp +oyp +oyp +oyp +ksJ +cSs +ksJ wLU hRj hRj @@ -197947,55 +201871,55 @@ hRj hRj hRj hRj -rKA -pFb -qHN -ePM -rKL -rKL -rKL -rKL -rTa -uKm -lgN -rKA -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rKA -rWf -rKA -wcV -rKL -rKL -rKL -rKL -rKL -rKL -wcV -rKA -lUp -rKA -wyF -lMU -lMU -lMU -lMU -lMU -lMU -lMU -tJt -hPH -gtd -tpA -gtd -pey +wrT +dHD +oID +nEn +lwA +lwA +lwA +lwA +edR +eIN +ggD +wrT +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +wrT +cXf +wrT +sfc +lwA +lwA +lwA +lwA +lwA +lwA +sfc +blF +rUR +blF +cPB +nUi +nUi +nUi +nUi +nUi +nUi +nUi +sAI +usZ +mOk +vSA +mOk +lva hRj hRj hRj @@ -198115,10 +202039,10 @@ nlm nlm nlm nlm -dcE -slL -heR dDL +iWu +dDL +hMq bxd bxd ydS @@ -198131,61 +202055,61 @@ ydS bxd bxd mDG +udN mDG -rYB -rqo -pkl -iZs -ijs -ijs -ijs -sRP -rqo -mDG -rYB -rYB -ngH -ngH -gBV -krk -ubv -ngH -ngH -gQW -hCg -hCg -hCg -pvQ -ngH -ngH -ngH -ngH -ngH -dDL +unl +sqy +gfi +gfi +iUz +ucy +xcZ +shQ +shQ +cQi +shQ +gmD +gmD +mXq +jPV +aDb +gmD +gmD +rmN +lVG +lVG +lVG +tJn +gmD +gmD +gmD +gmD +gmD +xrx lAS -dDL -dDL xrx xrx +xsS +leN +xsS shi +slo +slo shi -shi -shi -shi -shi +jzz iVc sus eqm -wKb -iYM -dlk -dlk -dlk -dlk -dlk -wKb -vmd -wKb +ksJ +iNn +oyp +oyp +oyp +oyp +oyp +ksJ +jug +ksJ hRj hRj hRj @@ -198204,55 +202128,55 @@ hRj hRj hRj hRj -oQk -cFc -oOm -oOm -rKL -rKL -rKL -rKL -uPy -rKA -qHN -rKA -wcV -wcV -rKL -rKL -rKL -rKL -rKL -rKL -rKL -wcV -pIV -rKA -wcV -wcV -rKL -rKL -rKL -rKL -wcV -wcV -rKA -mNj -rKA -wyF -jpj -tJt -jpj -tJt -jpj -tJt -jpj -lMU -rKA -pPG -vNM -rKA -rKA +mJP +nXR +oKe +oKe +lwA +lwA +lwA +lwA +hxM +wrT +oID +wrT +sfc +sfc +lwA +lwA +lwA +lwA +lwA +lwA +lwA +sfc +avI +wrT +sfc +sfc +lwA +lwA +lwA +lwA +sfc +sfc +blF +uPQ +blF +cPB +nOT +sAI +nOT +sAI +nOT +sAI +nOT +nUi +blF +isY +tEN +blF +blF hRj hRj hRj @@ -198315,40 +202239,24 @@ nlm nlm nlm nlm -"} -(183,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(183,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -198372,83 +202280,98 @@ nlm nlm nlm nlm -dcE -slL -dcE nlm -dDL nlm nlm nlm nlm -dDL nlm nlm -gaf -mDG -mDG -mDG -xmq -dDL -efZ -sRP -kEF -ijs -ijs -ijs -vji -efZ -xmq nlm nlm -qCR -hYV -aBv -nzG -kPL -ngH -ngH -ngH -jpw -jpw -jpw -ngH -ngH -heR -hRj -hRj -hRj nlm -lAS +nlm +nlm +nlm +nlm +nlm +nlm +nlm +slL +nlm nlm dDL nlm nlm nlm nlm +dDL nlm nlm +qms +mDG +nKW +mDG +mDG +mDG +unl +lyO +jrY +jFr +jkM +dsZ +wXQ +kbu +pqc +gtC +gtC +gtC +dwQ +pNj +qcc +xsF +gmD +gmD +gmD +tHv +tHv +tHv +gmD +gmD +gtC +gtC +gtC +hwu +xrx +lAS +xrx +xrx +xrx +xrx +xrx +dDL +dDL +dDL dDL jzz jzz qXI jzz -wKb -wKb -heC -heC -heC -heC -wKb -wKb -wKb -wKb +ksJ +ksJ +jUW +jUW +jUW +jUW +ksJ +ksJ +ksJ +ksJ hRj hRj hRj hRj hRj -vot hRj hRj hRj @@ -198460,55 +202383,56 @@ hRj hRj hRj hRj -uHD -oQk -aXn -iMV -ePM -rKL -rKL -rKL -rKL -rKL -rKA -gtd -uKm -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rMj -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -uYL -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -vAa -rKA +hRj +hRj +mJP +aNE +rxS +nEn +lwA +lwA +lwA +lwA +lwA +wrT +rYh +eIN +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +bJo +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +blF +tip +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +blF +qCc +blF hRj hRj hRj @@ -198629,57 +202553,57 @@ nlm nlm nlm nlm -dcE +nlm slL -dcE +nlm nlm dDL nlm nlm -dcE -dcE -heR -dcE -dcE -gaf +nlm +nlm +dDL +nlm +nlm +qms mDG +nKW mDG mDG -xmq +mDG +kbu +gfi +gfi +gfi +iUz +ucy +hSg +kbu +rqs +nlm +nlm +nlm +dwQ +khk +qcc +llO +gmD +gmD +ohd +ohd +bdq +rOy +jmK +gmD dDL -efZ -sRP -ijs -ijs -ijs -ijs -sRP -efZ -xmq -nlm -nlm -qCR -hYV -aBv -nzG -mVE -ngH -ngH -fhd -fhd -hCg -hCg -joI -ngH -heR -nlm nlm +dDL nlm nlm lAS nlm -dDL nlm +dDL nlm nlm nlm @@ -198690,18 +202614,19 @@ xrx xrx xrx oOw -nlm -nlm -nlm -nlm -nlm -nlm +xrx +xrx +xrx +dDL +dDL +xrx oOw cTR hRj hRj hRj hRj +tIm hRj hRj hRj @@ -198716,32 +202641,31 @@ hRj hRj hRj hRj -xky -psi -oQk -iBj -oOm -tkz -rKL -rKL -rKL -rKL -rKL -rKA -lUp -rKA -pIV -rKL -rMj -wcV -wcV -rMj -rKL -wcV -rMj -rKL -wcV -rKA +hRj +mJP +saX +oKe +xXR +lwA +lwA +lwA +lwA +lwA +wrT +jPz +wrT +avI +lwA +bJo +sfc +sfc +bJo +lwA +sfc +bJo +lwA +sfc +wrT nlm dDL dDL @@ -198886,57 +202810,57 @@ nlm nlm nlm nlm -dcE -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -mXN -kOx -kOx -gaf -mDG -mDG -mDG -xmq -heR -rqo -mHu -ijs -ijs -ckn -wSE -sRP -rqo -xmq -nlm +hMq +iWu slL slL -ngH -ngH -ngH -ngH -ngH -ngH -xoh -fhd -hCg -hCg -kKQ -ngH -heR -nlm +iWu +slL +slL +slL +slL +iWu +dDL +dDL +pGP +pGP +pGP +pGP +gjd +fPv +mnf +fHb +wIi +wkX +lWD +ucy +gji +unl +rqs +dDL +dDL +dDL +gmD +gmD +gmD +gmD +gmD +gmD +wkh +ohd +bdq +rOy +bMR +gmD +dDL nlm +dDL nlm nlm lAS nlm -dDL nlm +dDL nlm nlm nlm @@ -198947,7 +202871,7 @@ dDL xrx xrx xrx -nlm +dDL nlm nlm nlm @@ -198960,6 +202884,7 @@ hRj hRj hRj hRj +vot hRj hRj hRj @@ -198968,37 +202893,36 @@ hRj hRj hRj hRj -wUk hRj hRj hRj +hxW hRj hRj -tzv -rKA -hnU -bLG -qHN -rKL -rKL -rKL -rKL -rKL -rKA -mNj -rKA -vAl -wcV -rMj -wcV -rKL -rMj -rKL -wcV -dTi -wcV -wcV -rKA +wrT +gyr +oZK +oID +lwA +lwA +lwA +lwA +lwA +wrT +hUP +wrT +eHF +sfc +bJo +sfc +lwA +bJo +lwA +sfc +djX +sfc +sfc +wrT nlm nlm dDL @@ -199143,67 +203067,67 @@ nlm nlm nlm nlm -dcE -dcE -dcE -dcE -dcE -dcE -nlm nlm +dDL nlm nlm +dDL nlm nlm -gaf -mDG -mDG -mDG -xmq -dDL -efZ -sRP -hNV -ijs -ijs -hsY -sRP -efZ -xmq nlm nlm -slL -slL xIe nlm -dcE -heR -ngH -iQe -iQe -tWd -hCg -joI -ngH -heR nlm +pGP +xst +iqF +lhP +swS +kbu +ugA +voO +gfi +gfi +klh +yfx +hSg +kbu +rqs +nlm +dDL nlm +qfF +dDL nlm nlm -lAS +dDL +gmD +kCa +cyO +aNI +rOy +fCx +gmD +dDL nlm dDL nlm nlm +lAS +nlm +nlm +dDL +nlm nlm nlm nlm vof nlm -dDL +nlm nlm dDL -xrx +xIe dDL dDL dDL @@ -199223,39 +203147,39 @@ oCT sON sON sON -sON +tzv sON sON sON oCT sON sON -sON +tzv gSK -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -uYL -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA -rKA +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +bfH +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT +wrT nlm nlm dDL @@ -199409,55 +203333,54 @@ nlm nlm nlm nlm +dDL nlm nlm -nlm -gaf -mDG -mDG +pGP +asM +tBB +kCh mDG -xmq -dDL -efZ -sRP -bJA -ijs -ijs -ijs -sRP -efZ -xmq -nlm +kbu +mht +gfi +llG +xsK +lWD +gfi +kHD +kbu +rqs nlm +dDL nlm nlm -xIe +dDL nlm -dcE -heR -ngH -iQe -iQe -hCg -hCg -joI -ngH -heR nlm +dDL +gmD +cyO +cyO +bdq +rOy +jmK +gmD +dDL nlm +dDL nlm nlm lAS nlm -dDL nlm +dDL nlm nlm nlm nlm nlm nlm -qCR nlm xIe xIe @@ -199497,6 +203420,7 @@ nlm nlm nlm nlm +nlm dDL dDL vwe @@ -199600,42 +203524,35 @@ nlm nlm nlm nlm -"} -(188,1,2) = {" -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +"} +(188,1,2) = {" +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm +nlm nlm nlm nlm @@ -199669,54 +203586,61 @@ nlm nlm nlm nlm -gaf -mDG -mDG -mDG -xmq -dDL -rqo -sRP -ijs -ijs -ijs -oil -sRP -rqo -xmq nlm nlm nlm nlm xIe nlm -dcE -heR -ngH -vwQ -hCg -ugo -qlx -gRx -ngH -heR nlm +pGP +xst +liE +lhP +qSj +kbu +qHW +kbH +gfi +gfi +iUz +gfi +vPF +unl +rqs nlm +dDL nlm nlm -lAS +dDL +nlm nlm dDL +gmD +tUE +xVP +bdq +fGI +jbZ +gmD +dDL nlm +dDL nlm nlm +lAS nlm nlm +dDL nlm nlm nlm -xIe -xIe +nlm +nlm +nlm +dDL +dDL +nlm nlm nlm nlm @@ -199923,56 +203847,56 @@ nlm nlm nlm nlm -nlm -nlm -nlm -gaf -mDG -mDG -mDG -xmq +xIe dDL -efZ -sRP -ijs -jQQ -vbB -ijs -sRP -efZ -xmq -nlm +dDL +pGP +pGP +pGP +pGP +xKo +mnf +mnf +tbE +wIi +rcA +xGS +gfi +gfi +kbu +rqs nlm +dDL nlm nlm -xIe +dDL nlm -dcE -heR -ngH -btb -pTS -uXR -geE -gRx -ngH -heR nlm +dDL +gmD +lEm +cBv +aFn +ycy +jbZ +gmD +dDL nlm +dDL nlm nlm lAS nlm -dDL -nlm nlm +dDL nlm nlm nlm nlm nlm -qCR dDL +dDL +nlm nlm nlm nlm @@ -200180,55 +204104,55 @@ nlm nlm nlm nlm -nlm -nlm -nlm -rYB -rYB -rYB -rYB -rYB dDL -efZ -sRP -sRP -wDh -fvg -sRP -sRP -efZ -xmq -nlm nlm nlm +msd +gtC +gtC +gtC +gtC +fHO +kbu +bYd +bYd +eaU +oTi +owk +owk +kbu +rqs nlm -xIe -nlm -dcE -heR -ngH -ngH -ngH -ngH -ngH -ngH -ngH -heR +dDL +dDL +dDL +dDL +dDL +dDL +dDL +gmD +gmD +gmD +gmD +gmD +gmD +gmD dDL dDL eRz dDL -lAS dDL +lAS dDL dDL dDL -iWu nlm nlm nlm -qCR -qCR +nlm +dDL +dDL +nlm nlm nlm nlm @@ -200437,54 +204361,54 @@ nlm nlm nlm nlm +xIe nlm nlm nlm -nlm -nlm -nlm -nlm +dDL nlm dDL -rqo -efZ -efZ -rqo -rqo -efZ -efZ -rqo -xmq nlm +msd +unl +kbu +kbu +unl +unl +kbu +kbu +unl +roM nlm +dDL nlm nlm -xIe +dDL nlm -dcE -heR -heR -heR -heR -heR -heR -heR -heR -heR nlm +dDL +agX +dDL +dDL +dDL +dDL +dDL +agX +dDL nlm eRz nlm +nlm lAS nlm -dDL nlm +dDL nlm nlm nlm +xIe +dDL nlm -qCR -qCR nlm nlm nlm @@ -200693,30 +204617,30 @@ nlm nlm nlm nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm +hMq +iWu +xIe +xIe +xIe +xIe +dDL +ldr +lgA dDL +agX dDL dDL dDL dDL dDL dDL +agX dDL dDL dDL nlm nlm -nlm -nlm -xIe +dDL nlm nlm dDL @@ -200729,18 +204653,18 @@ nlm nlm nlm nlm -nlm eRz nlm -lAS nlm -dDL +lAS nlm nlm +dDL nlm nlm xIe -dDL +xIe +nlm nlm nlm nlm @@ -200951,50 +204875,49 @@ nlm nlm nlm nlm +dDL nlm nlm nlm nlm nlm nlm +xIe nlm +dDL nlm nlm nlm -nlm -nlm -nlm -nlm +dDL nlm nlm nlm nlm vof -nlm -nlm -nlm xIe xIe xIe xIe xIe xIe +iWu xIe xIe -nlm -nlm -nlm -nlm -nlm -nlm +xIe +xIe +xIe +xIe +xIe +xIe +iWu dDL nlm -lAS -nlm -dDL nlm +lAS nlm nlm +dDL +iWu xIe xIe nlm @@ -201039,6 +204962,7 @@ nlm nlm nlm nlm +nlm coh dDL vwe @@ -201215,6 +205139,19 @@ nlm nlm nlm nlm +dDL +dDL +xIe +xIe +xIe +dDL +dDL +dDL +xIe +xIe +xIe +dDL +dDL nlm nlm nlm @@ -201230,19 +205167,6 @@ nlm nlm nlm nlm -nlm -nlm -nlm -nlm -nlm -nlm -nlm -xIe -xIe -xIe -xIe -xIe -iWu dDL dDL dDL @@ -201250,9 +205174,9 @@ lAS dDL dDL dDL -iWu -xIe -xIe +nlm +nlm +nlm nlm nlm nlm @@ -201476,11 +205400,11 @@ nlm nlm nlm nlm +dDL nlm nlm nlm -nlm -nlm +dDL nlm nlm nlm @@ -201733,11 +205657,11 @@ nlm nlm nlm nlm -nlm -nlm -nlm -nlm -nlm +dDL +xIe +xIe +xIe +dDL nlm nlm nlm @@ -202273,9 +206197,9 @@ nlm nlm eRz dDL -dDL +upI tid -dDL +upI dDL eRz nlm diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 9cd4eeb96ac2d8..7faa02b18445b0 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -24,14 +24,14 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aaQ" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aaR" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/north, /obj/item/kirbyplants/random, @@ -64,13 +64,11 @@ /area/station/service/abandoned_gambling_den) "aaY" = ( /obj/effect/landmark/start/hangover, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/status_display/evac/directional/west, /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "abi" = ( @@ -106,7 +104,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aby" = ( /turf/open/floor/wood, /area/station/command/heads_quarters/captain) @@ -124,7 +122,7 @@ /area/station/medical/medbay) "abJ" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "abL" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -820,11 +818,9 @@ "akg" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/disposalpipe/trunk, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/command/heads_quarters/cmo) "ako" = ( @@ -849,10 +845,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/maintenance/department/eva/abandoned) -"akM" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/science/xenobiology) "akS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -880,7 +872,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "alG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -904,7 +896,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "alM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -1087,10 +1079,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/service/library/abandoned) -"anB" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) "anC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ @@ -1113,7 +1101,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "anF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1165,10 +1153,8 @@ /turf/open/floor/iron/white, /area/station/medical/medbay) "anZ" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/lattice, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/space/basic, /area/space/nearstation) "aoc" = ( @@ -1179,7 +1165,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/disposalpipe/segment, @@ -1325,7 +1311,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "apV" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -1454,7 +1440,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "arc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1592,7 +1578,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "asc" = ( /obj/effect/landmark/start/hangover, /obj/structure/chair{ @@ -1648,11 +1634,9 @@ /area/station/medical/surgery/theatre) "asO" = ( /obj/machinery/porta_turret/ai, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "asS" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, @@ -1866,7 +1850,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/e_gun, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "auZ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -1910,7 +1894,7 @@ name = "Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/abandoned, @@ -2133,6 +2117,7 @@ dir = 8 }, /obj/machinery/light/directional/west, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron, /area/station/engineering/main) "azm" = ( @@ -2156,7 +2141,7 @@ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -2223,7 +2208,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/meter/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aAj" = ( /turf/closed/wall, /area/station/science/breakroom) @@ -2337,7 +2322,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aBV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -2469,7 +2454,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aEz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2558,10 +2543,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"aFE" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/command/teleporter) "aGm" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line, @@ -2710,7 +2691,7 @@ /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aHv" = ( /obj/structure/rack, /obj/item/holosign_creator/robot_seat/restaurant{ @@ -2734,7 +2715,7 @@ "aHG" = ( /obj/structure/table, /obj/item/folder, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/item/stamp/denied{ pixel_x = 3; pixel_y = 3 @@ -2771,10 +2752,6 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/disposal/bin, -/obj/structure/sign/directions/arrival{ - dir = 1; - pixel_y = -22 - }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/primary/central/fore) @@ -3045,7 +3022,7 @@ /obj/item/flashlight/lamp, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aMc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -3197,7 +3174,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aNM" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -3223,7 +3200,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aNP" = ( /obj/structure/sign/warning/hot_temp/directional/west, /turf/open/floor/plating, @@ -3476,11 +3453,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/item/kirbyplants/random, /obj/machinery/light/directional/east, +/obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "aRr" = ( /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aRz" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -3540,7 +3518,7 @@ /obj/machinery/ore_silo, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aSt" = ( /obj/effect/turf_decal/siding/thinplating/dark, /obj/effect/turf_decal/trimline/dark_blue/filled/line, @@ -3560,12 +3538,10 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/command) "aSJ" = ( @@ -3600,7 +3576,8 @@ id = "Cell 3"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4309,12 +4286,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/science/research) -"bbP" = ( -/obj/structure/plaque/static_plaque/golden/commission/delta, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "bbQ" = ( /obj/machinery/vending/wardrobe/hydro_wardrobe, /obj/effect/turf_decal/bot, @@ -4742,7 +4713,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bhw" = ( /turf/closed/wall, /area/station/maintenance/department/medical/morgue) @@ -4858,7 +4829,7 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/stripes/line{ @@ -5099,7 +5070,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, /turf/open/floor/iron, /area/station/maintenance/department/eva/abandoned) @@ -5133,7 +5104,7 @@ /obj/machinery/status_display/ai/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bmq" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/tile/neutral/half/contrasted, @@ -5365,7 +5336,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bpV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -5499,14 +5470,12 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos) "bsd" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/airalarm/directional/south, /obj/effect/landmark/start/hangover, /obj/effect/spawner/random/structure/closet_private, /obj/item/clothing/suit/jacket/letterman_nanotrasen, /obj/item/clothing/under/pants/track, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/wood, /area/station/commons/dorms) "bsj" = ( @@ -5613,7 +5582,7 @@ /area/station/service/chapel) "btH" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "btT" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -5799,7 +5768,7 @@ /obj/structure/cable, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bwr" = ( /obj/structure/table/wood, /obj/effect/spawner/random/bureaucracy/paper, @@ -6099,8 +6068,11 @@ pixel_y = 10 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bAM" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/rnd_all, @@ -6118,7 +6090,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bAO" = ( /obj/structure/chair/pew/right, /turf/open/floor/iron/chapel{ @@ -6178,10 +6150,6 @@ /area/station/maintenance/starboard/aft) "bBh" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, /obj/structure/disposalpipe/trunk{ dir = 1 }, @@ -6249,23 +6217,24 @@ /obj/item/bedsheet/medical{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 }, /obj/structure/cable, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/white, /area/station/medical/virology) "bBK" = ( -/obj/machinery/flasher/directional/south{ - id = "brigflashdoor"; - pixel_x = 26 +/obj/structure/sign/directions/dorms{ + dir = 4; + pixel_y = 8 }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/station/commons/vacant_room/commissary) "bCc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -6305,7 +6274,7 @@ "bCu" = ( /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bCC" = ( /obj/machinery/door/poddoor{ id = "justiceblast"; @@ -6451,14 +6420,14 @@ name = "Private Channel" }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bEl" = ( /obj/machinery/ai_slipper{ uses = 10 }, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bEm" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/radio/intercom/directional/north{ @@ -6478,7 +6447,7 @@ name = "Private Channel" }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bEH" = ( /obj/structure/rack, /obj/item/book/manual/wiki/engineering_guide, @@ -6604,7 +6573,6 @@ /turf/open/floor/iron/white, /area/station/medical/treatment_center) "bFT" = ( -/obj/effect/landmark/start/ai, /obj/item/radio/intercom/directional/west{ freerange = 1; listening = 0; @@ -6635,8 +6603,9 @@ pixel_x = 24; req_access = list("ai_upload") }, +/obj/effect/landmark/start/ai, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bFV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6651,7 +6620,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bGa" = ( /obj/structure/table/wood/fancy, /obj/structure/sign/painting/large/library{ @@ -6813,7 +6782,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, @@ -6838,7 +6807,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -6911,7 +6880,7 @@ dir = 1 }, /turf/open/floor/iron/large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bID" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -6950,7 +6919,6 @@ /area/station/maintenance/solars/port/aft) "bIW" = ( /obj/machinery/turretid{ - icon_state = "control_stun"; name = "AI Chamber turret control"; pixel_x = 3; pixel_y = -23 @@ -6963,7 +6931,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bJf" = ( /obj/structure/chair/sofa/bench/right{ dir = 8 @@ -7176,7 +7144,7 @@ /area/station/medical/medbay/lobby) "bLs" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bLu" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/stripes/line{ @@ -7186,7 +7154,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bLx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -7325,7 +7293,7 @@ /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bMV" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -7417,10 +7385,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "bOF" = ( @@ -7461,7 +7429,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bOU" = ( /obj/effect/landmark/start/hangover, /obj/structure/chair/sofa/bench{ @@ -7494,10 +7462,10 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bPC" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bPD" = ( /obj/item/clothing/mask/gas, /obj/item/wrench, @@ -7526,7 +7494,7 @@ "bPH" = ( /obj/structure/sign/plaques/kiddie, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bPI" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine, @@ -7619,7 +7587,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bRz" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/structure/cable, @@ -7629,11 +7597,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRD" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bRE" = ( /obj/structure/cable, /obj/machinery/chem_master/condimaster{ @@ -7666,14 +7630,14 @@ }, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bRM" = ( /obj/machinery/computer/teleporter, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bRP" = ( /obj/structure/sign/warning/vacuum, /turf/closed/wall, @@ -7853,7 +7817,7 @@ "bTq" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bTs" = ( /obj/machinery/camera/directional/east{ c_tag = "AI Satellite - Maintenance"; @@ -7864,11 +7828,11 @@ /obj/effect/turf_decal/stripes/line, /obj/structure/cable/layer3, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bTu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bTy" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/vending/clothing, @@ -7877,7 +7841,8 @@ name = "curtain control"; pixel_x = -24; pixel_y = -8; - req_access = list("theatre") + req_access = list("theatre"); + dir = 8 }, /turf/open/floor/iron/dark, /area/station/service/theater) @@ -8069,10 +8034,6 @@ /obj/effect/mapping_helpers/requests_console/announcement, /obj/effect/mapping_helpers/requests_console/information, /obj/effect/mapping_helpers/requests_console/assistance, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -8222,13 +8183,13 @@ /area/station/medical/paramedic) "bYe" = ( /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bYf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bYh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8282,7 +8243,7 @@ /obj/item/gps, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bYK" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ dir = 5 @@ -8378,7 +8339,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cac" = ( /obj/machinery/recharge_station, /obj/machinery/status_display/evac/directional/south, @@ -8386,7 +8347,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cad" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = -3; @@ -8398,12 +8359,8 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cak" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = -26 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 }, @@ -8530,7 +8487,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -8663,10 +8620,10 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cdt" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cdB" = ( /obj/structure/chair/sofa/bench/right{ dir = 1 @@ -8770,9 +8727,10 @@ /turf/closed/wall, /area/station/science/genetics) "ceV" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall, -/area/station/engineering/main) +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) "cfb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -8782,7 +8740,7 @@ /area/station/maintenance/department/science/xenobiology) "cfu" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cfx" = ( /obj/structure/cable, /obj/machinery/computer/station_alert{ @@ -8901,7 +8859,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: PRESSURIZED DOORS"; - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow/opposingcorners, @@ -8920,7 +8879,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "chn" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible, /obj/effect/decal/cleanable/dirt, @@ -8952,23 +8911,15 @@ /turf/open/floor/iron, /area/station/engineering/gravity_generator) "chF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/dorms{ - dir = 4; - pixel_x = 32; +/obj/structure/sign/directions/security{ pixel_y = 8 }, -/obj/structure/sign/directions/medical{ - pixel_x = 32 - }, -/obj/structure/sign/directions/evac{ - pixel_x = 32; +/obj/structure/sign/directions/dorms, +/obj/structure/sign/directions/vault{ pixel_y = -8 }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) +/turf/closed/wall, +/area/station/hallway/primary/central/fore) "chT" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line, @@ -8986,7 +8937,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "chY" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "engsm"; @@ -9007,10 +8958,8 @@ /turf/open/floor/iron, /area/station/engineering/atmos/hfr_room) "ciz" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "ciB" = ( @@ -9331,7 +9280,7 @@ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ @@ -9847,7 +9796,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "crZ" = ( /obj/machinery/door/airlock/external{ name = "External Docking Port" @@ -9878,7 +9827,7 @@ "csk" = ( /obj/structure/cable, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "csw" = ( /turf/closed/wall, /area/station/service/hydroponics) @@ -9990,7 +9939,7 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ctU" = ( /obj/structure/chair/office{ dir = 1 @@ -10255,7 +10204,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cxp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/effect/decal/cleanable/dirt, @@ -10857,7 +10806,7 @@ /obj/machinery/holopad, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cEK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11127,7 +11076,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cHU" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -11214,7 +11163,7 @@ /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cJw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11274,7 +11223,7 @@ /obj/machinery/status_display/evac/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cKI" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/bot, @@ -11544,7 +11493,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/service/theater/abandoned) @@ -11576,7 +11525,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cOR" = ( /obj/effect/spawner/random/maintenance/two, /obj/structure/closet, @@ -11666,7 +11615,7 @@ /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cQj" = ( /obj/machinery/light/small/dim/directional/south, /turf/open/floor/plating, @@ -11703,7 +11652,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cQy" = ( /obj/machinery/camera/directional/south{ c_tag = "Bridge - Command Chair"; @@ -11783,7 +11732,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12089,7 +12038,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cVy" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -12763,7 +12712,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "deY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12991,10 +12940,6 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"djf" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/project) "djn" = ( /obj/structure/table/wood, /obj/item/toy/talking/codex_gigas, @@ -13491,7 +13436,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dql" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -13742,6 +13687,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/port) "dsz" = ( @@ -14081,7 +14027,7 @@ /obj/machinery/door/window/right/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "dwv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -14155,7 +14101,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dwV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -14296,9 +14242,6 @@ /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) "dyi" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -14343,7 +14286,7 @@ name = "Maintenance Hatch" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/duct, @@ -14452,7 +14395,7 @@ "dBO" = ( /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dBR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14801,7 +14744,6 @@ /obj/machinery/status_display/ai/directional/south, /obj/machinery/camera/directional/south{ c_tag = "Service - Cafeteria Aft"; - dir = 5; name = "service camera" }, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -14929,7 +14871,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, @@ -15131,7 +15073,7 @@ /obj/machinery/status_display/evac/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dKR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -15176,8 +15118,9 @@ /obj/machinery/porta_turret/ai, /obj/machinery/status_display/ai/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dLu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/delivery, @@ -15255,7 +15198,6 @@ "dMh" = ( /obj/machinery/camera/directional/south{ c_tag = "Atmospherics - Project Room Fore"; - dir = 5; name = "atmospherics camera" }, /obj/machinery/status_display/evac/directional/south, @@ -15308,6 +15250,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, +/obj/structure/sign/warning/vacuum/external/directional/east, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) "dMM" = ( @@ -15398,7 +15341,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dNm" = ( /obj/item/radio/intercom/directional/north, /obj/structure/disposalpipe/segment{ @@ -15432,7 +15375,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/science/research) "dNr" = ( @@ -15477,7 +15420,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "dNU" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 4 @@ -15711,7 +15654,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dQN" = ( /obj/structure/table/wood, /obj/effect/spawner/random/food_or_drink/donkpockets, @@ -15896,9 +15839,7 @@ /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) "dTS" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/space/basic, /area/space/nearstation) "dUb" = ( @@ -16136,8 +16077,9 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/department/crew_quarters/bar) "dXr" = ( @@ -16148,10 +16090,6 @@ /turf/open/floor/iron, /area/station/maintenance/port) "dXw" = ( -/obj/structure/sign/painting/large/library_private{ - dir = 1; - pixel_x = -29 - }, /obj/structure/destructible/cult/item_dispenser/archives/library, /obj/item/book/codex_gigas, /turf/open/floor/iron/dark, @@ -16265,7 +16203,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dYQ" = ( /obj/structure/table, /obj/machinery/computer/records/medical/laptop{ @@ -16343,7 +16281,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron, @@ -16364,7 +16302,7 @@ dir = 9 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eae" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -16372,14 +16310,14 @@ /obj/item/pen, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eaA" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/transit_tube/curved, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eaC" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" @@ -16388,7 +16326,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -16497,7 +16435,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -16738,6 +16676,24 @@ "efg" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/button/door{ + id = "brigprison"; + name = "Prison Lockdown"; + req_access = list("brig"); + pixel_y = 9 + }, +/obj/machinery/button/door{ + id = "brigfront"; + name = "Brig Access Control"; + req_access = list("security"); + pixel_x = 7 + }, +/obj/machinery/button/door{ + id = "brigwindows"; + name = "Cell Window Control"; + req_access = list("security"); + pixel_x = -7 + }, /turf/open/floor/iron, /area/station/security/warden) "efh" = ( @@ -17160,6 +17116,7 @@ /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "emB" = ( @@ -17202,8 +17159,11 @@ pixel_y = 10 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "enw" = ( /obj/item/storage/toolbox/electrical, /obj/effect/decal/cleanable/dirt, @@ -17495,7 +17455,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -17658,7 +17618,7 @@ }, /obj/machinery/light/directional/east, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "esQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18198,7 +18158,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eAi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -18273,7 +18233,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/dim/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eBb" = ( /obj/structure/filingcabinet/security, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ @@ -18390,7 +18350,7 @@ /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "eCn" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -18874,9 +18834,6 @@ /obj/machinery/computer/robotics{ dir = 8 }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/machinery/keycard_auth/wall_mounted/directional/south, /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/neutral/opposingcorners{ @@ -19102,6 +19059,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/security/checkpoint/escape) "eKV" = ( @@ -19121,7 +19079,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/camera/directional/south{ c_tag = "Library - Aft Starboard"; - dir = 5; name = "library camera" }, /turf/open/floor/iron/grimy, @@ -19144,7 +19101,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eLY" = ( /obj/machinery/door/window/right/directional/west{ name = "Bar Delivery"; @@ -19307,14 +19264,15 @@ /area/station/hallway/primary/central/fore) "eNP" = ( /obj/structure/sign/painting/library{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /turf/open/floor/wood/large, /area/station/service/library/lounge) "eOb" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eOe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19458,7 +19416,7 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/maintenance/department/science) "ePK" = ( @@ -19503,7 +19461,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eQd" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8; @@ -19527,7 +19485,7 @@ /area/station/security/checkpoint/customs/aft) "eQr" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eQs" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -19593,7 +19551,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eQK" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 @@ -19838,16 +19796,12 @@ /turf/open/floor/carpet, /area/station/command/bridge) "eUq" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/ai_slipper{ uses = 10 }, -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eUu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20430,25 +20384,16 @@ /turf/open/floor/iron, /area/station/service/kitchen/abandoned) "fcP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/lavaland{ - dir = 1; - pixel_x = 1; - pixel_y = 38 - }, /obj/structure/sign/directions/arrival{ - dir = 8; - pixel_x = 1; - pixel_y = 28 + dir = 1; + pixel_y = -4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/sign/directions/lavaland{ + dir = 4; + pixel_y = 10 }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) +/turf/closed/wall, +/area/station/service/janitor) "fcR" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -20582,7 +20527,8 @@ name = "curtain control"; pixel_x = 24; pixel_y = -8; - req_access = list("theatre") + req_access = list("theatre"); + dir = 4 }, /obj/machinery/light/small/directional/east, /turf/open/floor/wood, @@ -21054,7 +21000,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fkS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21109,10 +21055,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, /area/station/maintenance/department/crew_quarters/bar) "flB" = ( @@ -21235,7 +21181,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fmB" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, @@ -21319,7 +21265,7 @@ /obj/machinery/door/window/left/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fnx" = ( /obj/effect/landmark/secequipment, /obj/effect/turf_decal/bot, @@ -21385,7 +21331,7 @@ /area/station/security/holding_cell) "fot" = ( /turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "foI" = ( /obj/docking_port/stationary{ dwidth = 2; @@ -21752,10 +21698,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "ftw" = ( @@ -21781,9 +21727,6 @@ /turf/open/floor/iron, /area/station/maintenance/department/crew_quarters/bar) "ftG" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/structure/table, /obj/machinery/cell_charger, /obj/item/gps, @@ -21791,6 +21734,7 @@ dir = 4 }, /obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/white, /area/station/science/lobby) "ftO" = ( @@ -21812,11 +21756,6 @@ }, /obj/machinery/status_display/evac/directional/south, /obj/effect/turf_decal/bot, -/obj/structure/sign/directions/arrival{ - dir = 1; - pixel_x = 32; - pixel_y = -4 - }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -21908,7 +21847,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -21924,7 +21863,7 @@ "fvZ" = ( /obj/structure/sign/warning/no_smoking, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fwa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22015,7 +21954,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fxc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -22112,7 +22051,7 @@ /turf/open/floor/iron/white/smooth_large, /area/station/medical/virology) "fyt" = ( -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/aft) "fyv" = ( @@ -22163,12 +22102,10 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "fyU" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "fza" = ( @@ -22316,7 +22253,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "fAE" = ( /obj/effect/turf_decal/siding/green{ dir = 1 @@ -22448,6 +22385,7 @@ /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "fCd" = ( @@ -22459,7 +22397,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fCf" = ( /obj/machinery/door/poddoor/preopen{ id = "atmoslock"; @@ -22572,7 +22510,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fDS" = ( /obj/machinery/shieldgen, /obj/effect/turf_decal/bot, @@ -22733,7 +22671,6 @@ "fFp" = ( /obj/machinery/camera/directional/east{ c_tag = "Departures Lounge - Fore Starboard"; - dir = 6; name = "departures camera" }, /obj/effect/turf_decal/tile/neutral, @@ -23113,7 +23050,7 @@ /obj/item/ai_module/supplied/freeform, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fKP" = ( /obj/effect/turf_decal/trimline/white/warning, /obj/effect/mapping_helpers/burnt_floor, @@ -23248,7 +23185,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fMo" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -23660,7 +23597,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fRb" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -23697,7 +23634,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fRK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -23876,7 +23813,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -24109,7 +24046,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, @@ -24160,7 +24097,8 @@ id = "Cell 1"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -24189,7 +24127,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fXQ" = ( /obj/effect/spawner/random/structure/tank_holder, /obj/effect/turf_decal/trimline/green/filled/corner{ @@ -24568,7 +24506,6 @@ /obj/item/radio/intercom/directional/north, /obj/machinery/camera/directional/east{ c_tag = "Service - Hydroponics Front Fore"; - dir = 6; name = "service camera" }, /obj/effect/turf_decal/tile/green/opposingcorners, @@ -24587,7 +24524,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/light/cold/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gcu" = ( /obj/machinery/door/poddoor/preopen{ id = "transitlock"; @@ -24631,7 +24568,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gcP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24810,7 +24747,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -24900,10 +24837,8 @@ /area/station/security/checkpoint/arrivals) "gfp" = ( /obj/structure/table/wood, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/wood, /area/station/commons/dorms) "gfq" = ( @@ -24988,7 +24923,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ggs" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -25169,7 +25104,8 @@ id = "Cell 4"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25227,7 +25163,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "gjB" = ( /obj/structure/cable, /obj/structure/closet/emcloset, @@ -25439,7 +25375,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25612,7 +25548,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gnW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/start/hangover, @@ -25656,7 +25592,8 @@ /area/station/command/bridge) "goj" = ( /obj/structure/sign/painting/library{ - pixel_y = 33 + pixel_y = 33; + dir = 1 }, /turf/open/floor/carpet/green, /area/station/commons/dorms) @@ -25842,10 +25779,10 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/commons/vacant_room/office) "gqF" = ( @@ -25924,6 +25861,7 @@ /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/engineering/main) "grm" = ( @@ -26149,10 +26087,10 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "gtJ" = ( @@ -26191,7 +26129,6 @@ /obj/machinery/light/small/directional/north, /obj/machinery/camera/directional/north{ c_tag = "Service - Janitorial Closet"; - dir = 9; name = "service camera" }, /mob/living/basic/lizard/eats_the_roaches, @@ -26295,7 +26232,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -26434,7 +26371,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -26463,7 +26401,7 @@ req_access = list("command") }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "gwx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -26724,7 +26662,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "gAu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -27108,9 +27046,12 @@ /turf/closed/wall, /area/station/service/library/lounge) "gDW" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) "gDY" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -27230,7 +27171,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gFM" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -27303,7 +27244,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gHh" = ( /obj/effect/turf_decal/bot, /obj/machinery/camera/directional/east{ @@ -27880,10 +27821,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, /area/station/maintenance/fore) "gPh" = ( @@ -27894,7 +27835,7 @@ /obj/effect/spawner/random/contraband/armory, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gPj" = ( /obj/machinery/hydroponics/soil, /obj/effect/decal/cleanable/dirt, @@ -28215,12 +28156,14 @@ "gSB" = ( /obj/structure/cable, /obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_y = 36; pixel_x = -8; - pixel_y = 36 + dir = 1 }, /obj/machinery/button/door/incinerator_vent_atmos_aux{ pixel_x = -8; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/directional/south, @@ -28624,7 +28567,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -28661,7 +28604,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gYz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28893,7 +28836,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hct" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, @@ -29156,7 +29099,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hfB" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/delivery, @@ -29256,7 +29199,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hgX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29492,7 +29435,7 @@ "hkC" = ( /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hkG" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -29665,7 +29608,7 @@ "hmU" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hmY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump/on{ @@ -29704,9 +29647,6 @@ /area/station/hallway/secondary/command) "hnx" = ( /obj/structure/table, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/computer/records/security/laptop{ dir = 8; pixel_y = 6 @@ -29927,6 +29867,10 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = 6 + }, /turf/open/floor/iron/dark, /area/station/engineering/transit_tube) "hrs" = ( @@ -30115,10 +30059,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "htQ" = ( @@ -30215,7 +30159,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hvf" = ( /obj/machinery/duct, /obj/effect/turf_decal/trimline/blue/filled/warning{ @@ -30262,12 +30206,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/large, /area/station/science/auxlab/firing_range) "hvv" = ( @@ -30302,7 +30244,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hwe" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/yellow{ @@ -30357,8 +30299,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -30568,7 +30509,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hzK" = ( /obj/machinery/computer/holodeck{ dir = 4 @@ -30987,7 +30928,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hGG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/green/filled/line, @@ -31112,6 +31053,7 @@ "hIh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, /obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "hIs" = ( @@ -31603,7 +31545,7 @@ dir = 1 }, /turf/open/floor/iron/large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hPh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -31626,7 +31568,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hPu" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -31777,7 +31719,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hRs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate_loot, @@ -31961,7 +31903,7 @@ }, /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hTv" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -32078,7 +32020,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hVx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -32098,7 +32040,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hVE" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32270,7 +32212,7 @@ /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hYa" = ( /obj/structure/chair/office, /obj/machinery/newscaster/directional/north, @@ -32499,7 +32441,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/spawner/random/armory/bulletproof_helmet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iaY" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 4 @@ -32656,7 +32598,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "icD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32793,9 +32735,6 @@ /turf/open/floor/plating, /area/station/maintenance/department/electrical) "idD" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -32805,6 +32744,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "idF" = ( @@ -33066,7 +33006,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -33297,7 +33237,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ikV" = ( /obj/effect/turf_decal/siding/yellow{ dir = 1 @@ -33572,7 +33512,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "inR" = ( /obj/machinery/door/airlock/research{ name = "Research and Development Lab" @@ -33667,7 +33607,7 @@ /turf/open/floor/iron, /area/station/security/prison/garden) "ipr" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 8 }, /obj/machinery/camera/directional/east{ @@ -34119,7 +34059,7 @@ req_access = list("captain") }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iuI" = ( /obj/item/book/manual/hydroponics_pod_people, /obj/item/paper/guides/jobs/hydroponics, @@ -34319,7 +34259,7 @@ /obj/structure/cable/multilayer/connected, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ixG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35087,7 +35027,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iGL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35214,7 +35154,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "iIn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -35478,6 +35418,7 @@ dir = 4; pixel_y = 8 }, +/obj/structure/sign/directions/medical, /turf/closed/wall, /area/station/security/courtroom) "iLD" = ( @@ -35534,12 +35475,10 @@ /area/station/science/ordnance/burnchamber) "iMO" = ( /obj/structure/closet/secure_closet/personal, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/item/storage/wallet, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/commons/locker) "iMS" = ( @@ -35764,7 +35703,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "iQf" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -35835,7 +35774,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iRk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/generic_maintenance_landmark, @@ -36269,14 +36208,19 @@ /turf/open/floor/grass, /area/station/hallway/secondary/exit/departure_lounge) "iWH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/medical{ - pixel_x = 32 +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 8 }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) +/obj/structure/sign/directions/vault{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -8 + }, +/turf/closed/wall, +/area/station/security/courtroom) "iWR" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -36414,7 +36358,7 @@ /obj/machinery/nuclearbomb/selfdestruct, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iYq" = ( /obj/machinery/computer/prisoner/management{ dir = 4 @@ -36446,10 +36390,8 @@ "iYJ" = ( /obj/structure/table/wood, /obj/item/camera, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/item/hand_labeler, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/wood, /area/station/commons/vacant_room/office) "iZc" = ( @@ -36495,6 +36437,7 @@ pixel_y = 8; req_access = list("atmospherics") }, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/engineering/lobby) "iZG" = ( @@ -36576,7 +36519,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jaz" = ( /obj/effect/spawner/random/structure/steam_vent, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -36590,6 +36533,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating, /area/station/maintenance/port) "jaV" = ( @@ -36984,13 +36928,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/command/bridge) -"jeI" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) "jeM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -37046,7 +36983,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jfn" = ( /obj/machinery/vending/wardrobe/bar_wardrobe, /obj/structure/sign/poster/random/directional/east, @@ -37090,11 +37027,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"jfL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) "jfP" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37766,7 +37698,7 @@ /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jnG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37838,19 +37770,14 @@ /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "jom" = ( -/obj/structure/sign/directions/evac{ - pixel_x = -32; - pixel_y = -8 - }, /obj/structure/sign/directions/science{ - dir = 8; - pixel_x = -32 + dir = 8 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/sign/directions/evac{ + pixel_y = -8 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) +/turf/closed/wall/r_wall, +/area/station/command/gateway) "jop" = ( /obj/structure/falsewall, /turf/open/floor/iron/dark, @@ -38027,7 +37954,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, @@ -38141,6 +38068,7 @@ name = "Head of Security's Fax Machine" }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) "jsL" = ( @@ -38232,7 +38160,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jtB" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -38261,7 +38189,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: BLAST DOORS"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -38852,7 +38781,8 @@ name = "Flash Control"; pixel_x = 26; pixel_y = 7; - req_access = list("security") + req_access = list("security"); + dir = 4 }, /obj/machinery/button/door/directional/east{ id = "brigfront"; @@ -39231,13 +39161,11 @@ dir = 4 }, /obj/item/bedsheet/medical, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 5 }, /obj/structure/cable, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/white, /area/station/medical/virology) "jFP" = ( @@ -39386,7 +39314,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -39809,7 +39737,6 @@ /obj/item/radio/intercom/directional/east, /obj/machinery/camera/directional/east{ c_tag = "Departures Lounge - Aft Starboard"; - dir = 6; name = "departures camera" }, /obj/effect/turf_decal/tile/neutral{ @@ -39887,7 +39814,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jOr" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 @@ -39932,7 +39859,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jPd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39949,7 +39876,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jPf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -40470,11 +40397,13 @@ }, /obj/structure/sign/picture_frame/showroom/three{ pixel_x = -20; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/sign/picture_frame/showroom/four{ pixel_x = 2; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/large, /area/station/command/corporate_showroom) @@ -40668,7 +40597,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jYs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -40705,7 +40634,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jYM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40735,7 +40664,7 @@ /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jZf" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -40776,18 +40705,6 @@ /turf/open/floor/iron, /area/station/commons/vacant_room) "jZs" = ( -/obj/structure/sign/directions/science{ - pixel_x = -32 - }, -/obj/structure/sign/directions/medical{ - pixel_x = -32; - pixel_y = -8 - }, -/obj/structure/sign/directions/upload{ - dir = 8; - pixel_x = -32; - pixel_y = 8 - }, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, @@ -40859,7 +40776,7 @@ /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kax" = ( /obj/structure/chair/office/light{ dir = 4 @@ -40878,11 +40795,9 @@ /area/station/service/abandoned_gambling_den) "kaG" = ( /obj/structure/closet/secure_closet/personal, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/commons/locker) "kaL" = ( @@ -40953,15 +40868,13 @@ /area/station/service/hydroponics) "kbg" = ( /obj/machinery/pdapainter/research, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/bot_red, /obj/effect/turf_decal/tile/purple{ dir = 8 }, /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/command/heads_quarters/rd) "kbn" = ( @@ -41024,9 +40937,7 @@ }, /obj/effect/spawner/random/structure/crate, /obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/maintenance/department/engine/atmos) "kca" = ( @@ -41172,13 +41083,14 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kdX" = ( /obj/machinery/piratepad/civilian, /obj/effect/turf_decal/trimline/yellow, /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/cargo/lobby) "kdY" = ( @@ -41229,7 +41141,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "keE" = ( /obj/structure/table/reinforced, /obj/item/plant_analyzer, @@ -41733,7 +41645,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kke" = ( /turf/open/floor/plating, /area/station/cargo/drone_bay) @@ -41747,7 +41659,7 @@ "kkh" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kkm" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -41873,7 +41785,7 @@ }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -41951,7 +41863,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "knd" = ( /obj/effect/turf_decal/siding/blue{ dir = 8 @@ -42106,7 +42018,7 @@ /obj/item/wrench, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kpn" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -42197,11 +42109,9 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) "kqQ" = ( @@ -42270,7 +42180,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ksd" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/decal/cleanable/dirt, @@ -42387,7 +42297,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kun" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -42476,7 +42386,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kvq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -42564,7 +42474,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/science/research) "kvK" = ( @@ -42696,7 +42606,7 @@ /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kxA" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/tile/purple{ @@ -42776,7 +42686,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kzm" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 4; @@ -43102,6 +43012,9 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/scanner_gate/preset_guns, +/obj/machinery/flasher/directional/south{ + id = "brigflashdoor" + }, /turf/open/floor/iron/dark, /area/station/security/brig) "kEw" = ( @@ -43123,7 +43036,7 @@ dir = 6 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kEJ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -43540,22 +43453,18 @@ /area/station/medical/storage) "kKz" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; pixel_y = -32 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kKW" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/department/electrical) "kKY" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -43605,27 +43514,19 @@ /turf/open/floor/iron/white, /area/station/medical/virology) "kLz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 8 }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/sign/directions/vault{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/science{ +/obj/structure/sign/directions/engineering{ dir = 8; - pixel_x = -32 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_x = -32; - pixel_y = 8 + pixel_y = -8 }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) +/turf/closed/wall, +/area/station/commons/storage/primary) "kLA" = ( /obj/structure/chair{ dir = 4 @@ -43899,7 +43800,7 @@ /obj/machinery/door/window/left/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kPc" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 9 @@ -44089,7 +43990,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -44216,10 +44117,6 @@ }, /turf/open/floor/iron/grimy, /area/station/command/heads_quarters/hos) -"kTV" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) "kUn" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/brown{ @@ -44243,6 +44140,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/hallway) "kUC" = ( @@ -44473,7 +44371,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kXH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44485,16 +44383,16 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "kXJ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kXO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/red/opposingcorners{ @@ -44525,9 +44423,6 @@ /turf/open/space/basic, /area/space/nearstation) "kYb" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /obj/machinery/camera/directional/west{ @@ -44536,6 +44431,7 @@ }, /obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) "kYn" = ( @@ -44706,10 +44602,8 @@ /turf/open/floor/plating, /area/station/science/research/abandoned) "laJ" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/station/security/courtroom) "laK" = ( @@ -44942,7 +44836,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ldn" = ( /obj/effect/landmark/start/hangover, /obj/effect/decal/cleanable/dirt, @@ -44991,7 +44885,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "len" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -45037,13 +44931,11 @@ /turf/open/floor/iron, /area/station/hallway/primary/port) "lfs" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "lfz" = ( @@ -45116,7 +45008,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lgG" = ( /obj/machinery/modular_computer/preset/engineering, /obj/structure/cable, @@ -45234,7 +45126,7 @@ /area/station/maintenance/port) "lhY" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lhZ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45662,7 +45554,7 @@ }, /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lmm" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, @@ -45777,6 +45669,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/command/heads_quarters/captain/private) "lnp" = ( @@ -45904,8 +45797,7 @@ /turf/open/floor/iron/white, /area/station/medical/chemistry) "lpy" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -45915,6 +45807,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "lpz" = ( @@ -45966,6 +45859,7 @@ /obj/structure/table/reinforced, /obj/machinery/light_switch/directional/east, /obj/effect/spawner/random/engineering/toolbox, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/eva/abandoned) "lqa" = ( @@ -46143,7 +46037,7 @@ /area/station/hallway/secondary/entry) "lte" = ( /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -46176,8 +46070,8 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "ltt" = ( @@ -46249,13 +46143,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron, /area/station/medical/cryo) "ltV" = ( @@ -46272,7 +46166,7 @@ dir = 4 }, /obj/effect/spawner/random/structure/barricade, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -46588,15 +46482,12 @@ /obj/machinery/flasher{ id = "justiceflash"; pixel_x = 26; - req_access = list("security") + req_access = list("security"); + dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/flasher/directional/east{ - id = "justiceflash"; - req_access = list("security") - }, /obj/effect/turf_decal/tile/red{ dir = 4 }, @@ -46609,7 +46500,7 @@ /obj/machinery/newscaster/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lyh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -46921,9 +46812,14 @@ /turf/open/floor/iron, /area/station/medical/virology) "lBR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) "lBV" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/decal/cleanable/dirt, @@ -46978,7 +46874,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -47064,10 +46960,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/library/printer) -"lDV" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/engineering/main) "lDY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47085,10 +46977,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) "lEe" = ( @@ -47366,7 +47258,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lGW" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47382,7 +47274,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lHd" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47509,15 +47401,13 @@ /turf/open/floor/plating, /area/station/maintenance/department/science) "lIy" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/table/reinforced, /obj/item/storage/lockbox/loyalty, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/directional/east, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lID" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/west, @@ -47782,7 +47672,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lKK" = ( /obj/structure/cable, /obj/effect/landmark/event_spawn, @@ -47869,7 +47759,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lMz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, @@ -47886,7 +47776,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lMF" = ( /obj/machinery/vending/autodrobe, /obj/effect/turf_decal/siding/dark_blue{ @@ -48243,6 +48133,7 @@ "lRx" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/bot, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/maintenance/port) "lSh" = ( @@ -48278,12 +48169,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "lSo" = ( @@ -48339,9 +48230,7 @@ /turf/open/floor/iron/white, /area/station/command/heads_quarters/captain/private) "lTC" = ( -/obj/structure/sign/plaques/kiddie/library, /obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/station/service/library/artgallery) "lTG" = ( @@ -48449,7 +48338,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lUF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -48683,7 +48572,7 @@ /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron, @@ -48874,7 +48763,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mck" = ( /obj/structure/chair/office, /obj/effect/landmark/start/depsec/medical, @@ -48969,7 +48858,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mdg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48982,9 +48871,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/science/auxlab/firing_range) "mdm" = ( @@ -49176,13 +49063,6 @@ /obj/machinery/computer/security/telescreen/entertainment/directional/west, /turf/open/floor/iron, /area/station/cargo/office) -"mfO" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "mfP" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -49457,7 +49337,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "miD" = ( /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/plating, @@ -49590,7 +49470,7 @@ dir = 5 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mly" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -49614,17 +49494,15 @@ /area/station/maintenance/department/electrical) "mlE" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mlW" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/railing{ dir = 1 }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) "mmq" = ( @@ -49780,7 +49658,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/dim/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mph" = ( /obj/effect/landmark/start/hangover, /obj/structure/table/wood, @@ -50144,6 +50022,7 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 1 }, +/obj/structure/sign/warning/secure_area/directional/northwest, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -50279,11 +50158,12 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "muA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron, /area/station/engineering/main) "muK" = ( @@ -50356,7 +50236,8 @@ /obj/machinery/button/flasher{ id = "visitorflash"; pixel_x = -6; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/button/door/directional/north{ id = "visitation"; @@ -50463,12 +50344,12 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/machinery/door/airlock/medical/glass{ name = "Medbay" }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron, /area/station/medical/medbay) "mwS" = ( @@ -51222,6 +51103,7 @@ /obj/effect/turf_decal/box/corners{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "mFH" = ( @@ -51602,11 +51484,12 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mJi" = ( /obj/structure/sign/departments/science{ name = "ROBOTICS"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -51702,9 +51585,7 @@ /area/station/engineering/atmos/pumproom) "mJS" = ( /obj/structure/dresser, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/wood, /area/station/commons/dorms) "mJW" = ( @@ -51826,7 +51707,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mMr" = ( /obj/effect/turf_decal/stripes/end{ dir = 1 @@ -51870,7 +51751,7 @@ /obj/structure/tank_dispenser/oxygen, /obj/effect/turf_decal/bot, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mNC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52303,10 +52184,10 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/airlock/medical/glass{ name = "Medbay Treatment Center" }, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron, /area/station/medical/treatment_center) "mTc" = ( @@ -52398,6 +52279,7 @@ /obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron, /area/station/engineering/atmos/project) "mUZ" = ( @@ -52412,7 +52294,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron, @@ -52606,7 +52488,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mYk" = ( /obj/effect/turf_decal/loading_area{ dir = 8 @@ -52694,7 +52576,7 @@ dir = 4 }, /obj/effect/spawner/random/structure/barricade, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -52951,7 +52833,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ndc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -53107,7 +52989,7 @@ /obj/machinery/recharger, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ngb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/railing/corner{ @@ -53383,10 +53265,6 @@ }, /turf/open/floor/iron, /area/station/security/checkpoint/supply) -"njz" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) "njA" = ( /obj/machinery/airalarm/directional/east, /obj/effect/decal/cleanable/dirt, @@ -53420,7 +53298,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nkd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/effect/turf_decal/stripes/line{ @@ -53636,15 +53514,9 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nmU" = ( /obj/structure/cable, -/obj/machinery/firealarm/directional/south{ - pixel_x = -32 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -24 - }, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, @@ -54142,11 +54014,13 @@ }, /obj/structure/sign/picture_frame/showroom/one{ pixel_x = -2; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/sign/picture_frame/showroom/four{ pixel_x = 19; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/large, /area/station/command/corporate_showroom) @@ -54191,7 +54065,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -54330,9 +54204,6 @@ /turf/open/floor/iron/dark, /area/station/science/xenobiology) "nwW" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/status_display/ai/directional/north, /obj/structure/table/wood/fancy/red, /obj/machinery/door/window/brigdoor/left/directional/east{ @@ -54345,8 +54216,9 @@ /obj/item/ai_module/reset/purge{ pixel_y = 11 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nwY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54387,7 +54259,7 @@ }, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nxs" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/lattice, @@ -54561,10 +54433,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "nyZ" = ( @@ -54612,6 +54484,7 @@ name = "engineering camera"; network = list("ss13","engine") }, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "nzt" = ( @@ -54767,10 +54640,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nBF" = ( /obj/structure/cable, -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 }, @@ -54897,7 +54770,7 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nDx" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -55039,6 +54912,7 @@ dir = 1 }, /obj/machinery/light/directional/north, +/obj/structure/sign/warning/radiation/directional/north, /turf/open/floor/iron, /area/station/engineering/main) "nFv" = ( @@ -55176,7 +55050,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -55335,7 +55209,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "nIW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55451,7 +55325,7 @@ dir = 10 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nJP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -55682,7 +55556,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "nNK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -56034,9 +55908,12 @@ /turf/open/floor/iron/white, /area/station/medical/virology) "nSv" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain/private) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) "nSA" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -56116,7 +55993,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nTQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/cigbutt, @@ -56642,7 +56519,8 @@ id = "Cell 5"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -56748,7 +56626,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -56803,7 +56681,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "odl" = ( /obj/item/radio{ pixel_x = -5; @@ -56829,7 +56707,7 @@ /obj/machinery/newscaster/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "odD" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -56956,14 +56834,12 @@ dir = 4; name = "Mix Outlet Pump" }, -/obj/structure/sign/warning/secure_area/directional/west{ - pixel_y = -32 - }, /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/southwest, /turf/open/floor/iron, /area/station/engineering/atmos/mix) "ofN" = ( @@ -57271,9 +57147,14 @@ }, /area/station/hallway/primary/fore) "okb" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/maintenance/department/crew_quarters/bar) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central/aft) "oke" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -57284,7 +57165,7 @@ "okj" = ( /obj/effect/spawner/random/structure/crate_loot, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/plating, /area/station/medical/abandoned) "okk" = ( @@ -57430,7 +57311,7 @@ /obj/structure/extinguisher_cabinet/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "olI" = ( /obj/machinery/computer/shuttle/mining{ dir = 8 @@ -57488,7 +57369,7 @@ /obj/machinery/door/window/right/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "omj" = ( /obj/structure/chair{ dir = 4 @@ -58034,7 +57915,7 @@ /obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ouc" = ( /obj/structure/sign/warning/electric_shock{ pixel_y = -30 @@ -58090,12 +57971,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/large, /area/station/science/auxlab/firing_range) "ovb" = ( @@ -58751,7 +58630,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oDz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -59010,15 +58889,13 @@ /turf/closed/wall, /area/station/service/chapel) "oGM" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/closet/secure_closet/armory2, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/rubbershot, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oHe" = ( /obj/effect/turf_decal/bot, /obj/effect/landmark/start/hangover, @@ -59434,6 +59311,7 @@ /area/station/maintenance/department/eva/abandoned) "oMh" = ( /obj/effect/turf_decal/tile/blue, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/hallway) "oMo" = ( @@ -59518,7 +59396,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oNb" = ( /obj/structure/rack, /obj/item/circuitboard/machine/teleporter_hub{ @@ -59550,7 +59428,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "oNF" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/tile/blue/opposingcorners, @@ -59885,10 +59763,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "oSd" = ( @@ -60157,6 +60035,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/department/science) +"oVq" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/structure/plaque/static_plaque/golden/commission/delta, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "oVt" = ( /obj/structure/chair/pew, /turf/open/floor/iron/chapel{ @@ -60191,7 +60075,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -60553,7 +60437,7 @@ }, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pbP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60939,10 +60823,6 @@ }, /turf/open/floor/glass, /area/station/maintenance/space_hut/observatory) -"pgA" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/main) "pgE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61509,6 +61389,21 @@ /obj/machinery/duct, /turf/open/floor/iron/diagonal, /area/station/medical/break_room) +"pnc" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS"; + pixel_y = 32; + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "png" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -61868,7 +61763,7 @@ /obj/structure/sign/warning/electric_shock/directional/south, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ptC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61883,6 +61778,9 @@ /area/station/maintenance/department/crew_quarters/bar) "ptI" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/painting/large/library_private{ + dir = 1 + }, /turf/open/floor/iron/dark, /area/station/service/library/printer) "ptM" = ( @@ -61903,7 +61801,7 @@ /obj/effect/turf_decal/stripes/line, /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "puh" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 8 @@ -61951,7 +61849,7 @@ /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "puK" = ( /obj/structure/table, /obj/item/storage/crayons, @@ -62046,7 +61944,6 @@ /obj/effect/turf_decal/bot, /obj/machinery/camera/directional/west{ c_tag = "Service - Hydroponics Back"; - dir = 10; name = "hallway camera" }, /obj/effect/turf_decal/tile/blue{ @@ -62235,7 +62132,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pxz" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/bot, @@ -62709,7 +62606,7 @@ /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pDx" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -62838,7 +62735,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: BLAST DOORS"; - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /turf/open/floor/iron/dark/textured_large, /area/station/security/execution/transfer) @@ -62917,7 +62815,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pFq" = ( /obj/structure/sign/warning/no_smoking/directional/west, /obj/effect/turf_decal/stripes/line{ @@ -62961,7 +62859,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pFF" = ( /obj/item/kirbyplants/random, /obj/machinery/camera/directional/north{ @@ -63087,7 +62985,7 @@ /obj/item/aicard, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pGR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron/herringbone, @@ -63131,10 +63029,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) -"pHy" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/service/chapel) "pHz" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -63148,7 +63042,7 @@ pixel_x = -7; pixel_y = 9 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -7; pixel_y = 1 }, @@ -63228,7 +63122,7 @@ "pIX" = ( /obj/effect/turf_decal/trimline/dark_red/filled/warning, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pJf" = ( /obj/structure/chair/office, /obj/effect/turf_decal/siding/yellow, @@ -63331,7 +63225,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pKb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -63394,7 +63288,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pKG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63617,7 +63511,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pNq" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -63728,12 +63622,14 @@ /turf/open/floor/iron, /area/station/commons/dorms) "pOQ" = ( -/obj/structure/lattice, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" }, -/turf/open/space/basic, -/area/space/nearstation) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "pOT" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -64006,7 +63902,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pSg" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -64225,7 +64121,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -64344,7 +64241,7 @@ /obj/machinery/status_display/evac/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pUG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64397,7 +64294,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pUU" = ( /obj/effect/landmark/start/hangover, /obj/structure/chair/sofa/bench/left{ @@ -64422,7 +64319,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/spawner/random/armory/bulletproof_helmet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pVb" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/bot, @@ -64454,7 +64351,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/maintenance/port) "pVR" = ( @@ -64688,7 +64585,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -64878,12 +64775,9 @@ /obj/machinery/status_display/ai/directional/south, /obj/machinery/camera/directional/south{ c_tag = "Service - Bar Aft"; - dir = 5; name = "service camera" }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, +/obj/effect/turf_decal/tile/red/opposingcorners, /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron, /area/station/commons/lounge) @@ -64997,7 +64891,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, @@ -65137,7 +65031,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qdP" = ( /obj/item/kirbyplants/random, /obj/structure/extinguisher_cabinet/directional/east, @@ -65151,15 +65045,6 @@ /obj/structure/closet/secure_closet/paramedic, /turf/open/floor/iron/dark, /area/station/medical/paramedic) -"qdV" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = -26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) "qdW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -65189,7 +65074,7 @@ /obj/item/folder/documents, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qeg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -65715,6 +65600,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron/dark/corner, /area/station/engineering/atmos/project) "qlA" = ( @@ -65723,12 +65609,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "qlD" = ( @@ -65929,6 +65815,7 @@ "qoo" = ( /obj/structure/table/wood, /obj/item/pai_card, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/wood, /area/station/command/meeting_room/council) "qoA" = ( @@ -66404,9 +66291,15 @@ /turf/open/floor/iron, /area/station/maintenance/port/aft) "qvn" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "qvo" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" @@ -66417,10 +66310,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "qvq" = ( @@ -66465,6 +66358,7 @@ /obj/item/paper_bin, /obj/item/pen, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/security/courtroom) "qvG" = ( @@ -66579,7 +66473,7 @@ /obj/structure/sign/departments/aiupload/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qxi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -66685,6 +66579,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron, /area/station/engineering/atmos/project) "qyy" = ( @@ -66772,7 +66667,7 @@ normaldoorcontrol = 1; specialfunctions = 4 }, -/obj/item/food/sandwich/cheese/grilled, +/obj/item/food/sandwich/grilled_cheese, /turf/open/floor/iron/cafeteria, /area/station/medical/break_room) "qzT" = ( @@ -66946,7 +66841,7 @@ /obj/item/restraints/handcuffs, /obj/item/assembly/flash/handheld, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qBF" = ( /obj/machinery/status_display/ai/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66996,7 +66891,7 @@ /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -67139,7 +67034,7 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/vault, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qDT" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -67335,7 +67230,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qGw" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -67649,7 +67544,7 @@ "qKc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qKg" = ( /obj/machinery/duct, /obj/effect/landmark/event_spawn, @@ -67666,7 +67561,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qKk" = ( /obj/structure/table/wood, /obj/item/radio/intercom, @@ -67809,6 +67704,7 @@ /obj/structure/chair{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/plating, /area/station/security/execution/transfer) "qLG" = ( @@ -67817,10 +67713,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) -"qLJ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) "qLO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/suit_storage_unit/engine, @@ -67866,7 +67758,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/library, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -67908,10 +67800,10 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "qMS" = ( -/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "qNb" = ( @@ -68026,7 +67918,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -68188,7 +68080,7 @@ name = "Security Transferring Center" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/disposalpipe/segment, @@ -68383,7 +68275,7 @@ /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qTK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -68395,19 +68287,17 @@ /area/station/security/courtroom) "qTR" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/service/chapel) "qUi" = ( -/obj/structure/disposalpipe/sorting/mail{ - name = "Engineering Junction" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/structure/disposalpipe/junction, /turf/open/floor/iron, /area/station/engineering/main) "qUu" = ( @@ -68453,10 +68343,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /turf/open/floor/iron, /area/station/cargo/storage) -"qUM" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/tcommsat/server) "qUP" = ( /obj/machinery/hydroponics/soil, /obj/item/shovel/spade, @@ -68678,10 +68564,6 @@ dir = 1 }, /area/station/medical/morgue) -"qZb" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port) "qZn" = ( /obj/machinery/status_display/ai/directional/south, /obj/effect/turf_decal/trimline/yellow/filled/line, @@ -69000,7 +68882,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69113,7 +68995,7 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rgj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69180,7 +69062,7 @@ }, /obj/machinery/light/small/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rgK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69192,7 +69074,7 @@ "rgL" = ( /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rgN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/start/depsec/engineering, @@ -69217,7 +69099,7 @@ /obj/effect/turf_decal/stripes/line, /obj/structure/cable/multilayer/connected, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rhf" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/bot, @@ -69276,7 +69158,7 @@ /obj/machinery/status_display/ai/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rhK" = ( /obj/structure/flora/bush/stalky/style_random, /obj/structure/flora/bush/lavendergrass/style_random, @@ -69351,16 +69233,13 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rjt" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/theater) "rju" = ( /obj/structure/closet/crate/preopen, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/item/tank/internals/oxygen/red{ pixel_x = 3 }, @@ -69370,6 +69249,7 @@ /obj/item/wrench, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/security/execution/education) "rjz" = ( @@ -69482,7 +69362,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/camera/directional/south{ c_tag = "Library - Aft Port"; - dir = 5; name = "library camera" }, /turf/open/floor/iron/grimy, @@ -69547,7 +69426,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/iron, @@ -69701,9 +69580,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/science/auxlab/firing_range) "rmo" = ( @@ -69767,6 +69644,10 @@ "rnf" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/east, +/obj/machinery/flasher/directional/east{ + id = "justiceflash"; + req_access = list("security") + }, /turf/open/floor/iron/dark, /area/station/security/execution/education) "rni" = ( @@ -70250,8 +70131,9 @@ /obj/machinery/porta_turret/ai, /obj/machinery/status_display/ai/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ruU" = ( /obj/item/instrument/violin, /obj/structure/table/wood, @@ -70589,7 +70471,7 @@ }, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ryE" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/iron/fifty, @@ -70734,7 +70616,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rAG" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/iron{ @@ -71151,6 +71033,7 @@ dir = 4 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/engineering/hallway) "rGU" = ( @@ -71274,7 +71157,7 @@ dir = 4 }, /obj/effect/spawner/random/structure/barricade, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -71282,9 +71165,7 @@ /area/station/service/kitchen/abandoned) "rIl" = ( /obj/machinery/mass_driver/chapelgun, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, +/obj/structure/sign/warning/vacuum/external/directional/north, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -71376,7 +71257,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/spawner/random/structure/barricade, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -71480,7 +71361,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rKE" = ( /obj/effect/turf_decal/trimline/yellow/line, /obj/machinery/light/directional/south, @@ -71491,7 +71372,7 @@ dir = 10 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rKG" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -71788,11 +71669,11 @@ /turf/open/floor/iron, /area/station/science/robotics/lab) "rOa" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = -14 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port) "rOc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/large, @@ -71840,7 +71721,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -71878,7 +71759,7 @@ dir = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rOV" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -71919,7 +71800,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rPf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -71980,6 +71861,10 @@ /obj/structure/sign/directions/science{ pixel_y = 2 }, +/obj/structure/sign/directions/arrival{ + dir = 1; + pixel_y = 10 + }, /turf/closed/wall, /area/station/commons/vacant_room/office) "rPJ" = ( @@ -72067,7 +71952,7 @@ dir = 4 }, /obj/effect/spawner/random/trash/grille_or_waste, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -72387,10 +72272,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "rTW" = ( @@ -72456,11 +72341,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "rUX" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/item/kirbyplants/random, /obj/machinery/digital_clock/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/wood, /area/station/commons/dorms) "rVc" = ( @@ -72474,7 +72357,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/iron, /area/station/service/library/abandoned) @@ -72828,7 +72711,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rZF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ @@ -73088,12 +72971,10 @@ dir = 4 }, /obj/effect/turf_decal/bot/left, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/modular_computer/preset/cargochat/science{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/science/research) "scs" = ( @@ -73133,8 +73014,11 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sde" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, @@ -73195,7 +73079,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "sdO" = ( /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ dir = 1 @@ -73280,15 +73164,13 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 6 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "sfc" = ( @@ -73304,6 +73186,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, +/obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron, /area/station/security/checkpoint/engineering) "sfs" = ( @@ -73325,7 +73208,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: EXTERNAL AIRLOCK"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/smooth_large, @@ -73583,7 +73467,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "siV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow/opposingcorners{ @@ -73713,13 +73597,6 @@ /obj/machinery/light_switch/directional/north{ pixel_x = -8 }, -/obj/machinery/button/door{ - id = "rdordnance"; - name = "Ordnance Containment Control"; - pixel_x = 8; - pixel_y = 26; - req_access = list("science") - }, /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -73729,6 +73606,13 @@ name = "science camera"; network = list("ss13","rd") }, +/obj/machinery/button/door/directional/north{ + pixel_x = 7; + pixel_y = 26; + id = "rdordnance"; + name = "Ordnance Containment Contro"; + req_access = list("science") + }, /turf/open/floor/iron/white, /area/station/science/ordnance/office) "skC" = ( @@ -73739,7 +73623,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "skI" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -73950,7 +73834,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/disablers, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "sob" = ( /obj/structure/disposalpipe/segment, /obj/item/kirbyplants/random, @@ -74010,6 +73894,7 @@ pixel_y = 4 }, /obj/item/radio/intercom/directional/south, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/engineering/main) "soU" = ( @@ -74271,27 +74156,6 @@ /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) "ssr" = ( -/obj/machinery/button/door{ - id = "brigwindows"; - name = "Cell Window Control"; - pixel_x = -32; - pixel_y = -26; - req_access = list("security") - }, -/obj/machinery/button/door{ - id = "brigfront"; - name = "Brig Access Control"; - pixel_x = -26; - pixel_y = -36; - req_access = list("security") - }, -/obj/machinery/button/door{ - id = "brigprison"; - name = "Prison Lockdown"; - pixel_x = -38; - pixel_y = -36; - req_access = list("brig") - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74481,7 +74345,7 @@ req_access = list("captain") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "suZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74642,6 +74506,7 @@ fax_name = "Captain's Office"; name = "Captain's Fax Machine" }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/wood, /area/station/command/heads_quarters/captain) "swn" = ( @@ -74707,7 +74572,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -74941,7 +74806,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "szs" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -75298,7 +75163,8 @@ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: PRESSURIZED DOORS"; - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/port/fore) @@ -75327,7 +75193,7 @@ /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -75357,7 +75223,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, @@ -75466,7 +75332,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "sGi" = ( /obj/structure/cable, /obj/effect/landmark/start/hangover, @@ -75488,17 +75354,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "sGx" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"sGz" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/command/heads_quarters/hop) "sGB" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/disposal/bin, @@ -75523,7 +75385,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sGQ" = ( /obj/structure/chair/office{ dir = 4 @@ -75706,26 +75568,15 @@ /turf/open/floor/plating, /area/station/maintenance/department/security) "sIZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/directions/engineering{ +/obj/structure/sign/directions/arrival{ dir = 8; - pixel_x = -32; - pixel_y = -8 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_x = -32; pixel_y = 8 }, -/obj/structure/sign/directions/vault{ - dir = 1; - pixel_x = -32 +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/evac{ + pixel_y = -8 }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/central/fore) "sJb" = ( /obj/effect/spawner/random/trash/mess, @@ -75771,7 +75622,7 @@ "sJr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "sJF" = ( /obj/machinery/button/ignition/incinerator/atmos, /turf/closed/wall/r_wall, @@ -75855,7 +75706,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -75911,7 +75762,7 @@ "sKP" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sKQ" = ( /obj/machinery/computer/pandemic, /obj/effect/turf_decal/bot, @@ -76071,13 +75922,11 @@ /turf/open/floor/iron, /area/station/engineering/supermatter/room) "sMx" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "sMG" = ( @@ -76472,7 +76321,7 @@ "sSb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sSe" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -76559,7 +76408,8 @@ id = "Cell 2"; name = "Prisoner Flash"; pixel_x = 25; - pixel_y = 7 + pixel_y = 7; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -76605,24 +76455,15 @@ /turf/open/floor/iron/white, /area/station/science/lobby) "sTR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/directions/dorms{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sign/directions/science{ + dir = 8 }, -/obj/structure/sign/directions/supply{ +/obj/structure/sign/directions/command{ dir = 1; - pixel_x = 32; pixel_y = 8 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) +/turf/closed/wall, +/area/station/medical/psychology) "sTV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/virology/glass{ @@ -76766,7 +76607,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sVW" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, @@ -76900,14 +76741,6 @@ /obj/machinery/igniter/incinerator_ordmix, /turf/open/floor/engine/vacuum, /area/station/science/ordnance/burnchamber) -"sXE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/lattice/catwalk, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) "sXI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -77169,12 +77002,15 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/table, /obj/machinery/light/directional/west, -/obj/item/stack/conveyor/thirty, -/obj/item/boulder_beacon{ - pixel_x = -5 +/obj/item/food/ready_donk/donkrange_chicken, +/obj/item/food/ready_donk/donkhiladas{ + pixel_y = 5 }, -/obj/item/conveyor_switch_construct{ - pixel_x = 10 +/obj/item/food/ready_donk/country_chicken{ + pixel_y = 10 + }, +/obj/structure/closet/mini_fridge{ + name = "mini-fridge" }, /turf/open/floor/iron, /area/station/cargo/miningoffice) @@ -77188,7 +77024,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /turf/open/floor/iron, /area/station/maintenance/department/medical/morgue) @@ -77353,7 +77189,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tcH" = ( /obj/structure/table/glass, /obj/item/folder/yellow, @@ -77458,7 +77294,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "teA" = ( /obj/structure/displaycase/captain, /turf/open/floor/iron/grimy, @@ -77489,7 +77325,7 @@ /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tfi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock{ @@ -77511,7 +77347,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tfq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77601,6 +77437,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) "tgT" = ( @@ -77712,6 +77549,7 @@ dir = 5 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/departments/vault/directional/south, /turf/open/floor/iron/dark, /area/station/engineering/atmos) "tiP" = ( @@ -77806,7 +77644,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tkB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77975,7 +77813,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tnJ" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, @@ -78138,10 +77976,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/service/abandoned_gambling_den/gaming) -"tpJ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/security/courtroom) "tpP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -78312,7 +78146,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "trW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/directional/north{ @@ -78440,7 +78274,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tti" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -78489,7 +78323,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -78604,7 +78438,7 @@ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -79002,15 +78836,13 @@ /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) "tAL" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/railing{ dir = 1 }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) "tAM" = ( @@ -79279,7 +79111,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tDD" = ( /obj/machinery/computer/shuttle/mining{ dir = 1 @@ -79343,13 +79175,10 @@ /turf/open/floor/iron, /area/station/service/kitchen/abandoned) "tEd" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/departments/vault/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/command/vault) "tEh" = ( /obj/structure/sign/directions/evac{ pixel_y = -8 @@ -79685,27 +79514,13 @@ /obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tHV" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/medical/morgue) "tHW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/directions/vault{ - dir = 1; - pixel_x = 32 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = -8 - }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/light/directional/east, /turf/open/floor/iron, @@ -79715,7 +79530,7 @@ /obj/machinery/light_switch/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tIe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance_hatch{ @@ -79728,7 +79543,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -79810,26 +79625,17 @@ /turf/open/floor/carpet, /area/station/commons/vacant_room/office) "tJT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/directions/vault{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/directions/dorms{ - pixel_x = 32 +/obj/structure/sign/directions/arrival{ + dir = 8; + pixel_x = 1 }, -/obj/structure/sign/directions/security{ - pixel_x = 32; - pixel_y = 8 +/obj/structure/sign/directions/lavaland{ + dir = 1; + pixel_x = 1; + pixel_y = 10 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) +/turf/closed/wall, +/area/station/hallway/secondary/entry) "tJU" = ( /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ dir = 1 @@ -79876,7 +79682,7 @@ "tKq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tKw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79932,10 +79738,6 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/half, /area/station/security/range) -"tLC" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) "tLW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/red/fourcorners, @@ -80135,11 +79937,11 @@ }, /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/airlock/medical/glass{ id_tag = "MedbayFoyer"; name = "Medbay Foyer" }, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron, /area/station/medical/medbay/lobby) "tOm" = ( @@ -80480,7 +80282,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tSq" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/structure/table/reinforced, @@ -80695,7 +80497,7 @@ /obj/effect/spawner/random/armory/riot_helmet, /obj/effect/spawner/random/armory/riot_shield, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tVC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/start/hangover, @@ -80767,7 +80569,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tWx" = ( /obj/effect/turf_decal/tile/red/diagonal_centre, /obj/effect/turf_decal/tile/blue/diagonal_edge, @@ -80981,6 +80783,13 @@ /obj/structure/sign/directions/command{ dir = 1 }, +/obj/structure/sign/directions/dorms{ + pixel_y = -8 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 8 + }, /turf/closed/wall, /area/station/commons/storage/tools) "tYz" = ( @@ -81196,7 +81005,7 @@ }, /area/station/science/research) "uaY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ dir = 4 @@ -81215,10 +81024,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) "ubz" = ( @@ -81455,13 +81264,13 @@ }, /obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/medical/abandoned) "udG" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, /obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ dir = 4 }, @@ -81570,7 +81379,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ueC" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced/spawner/directional/east, @@ -81678,10 +81487,6 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) -"ugP" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/maintenance/port) "uhb" = ( /turf/closed/wall/r_wall, /area/station/science/xenobiology) @@ -81711,7 +81516,7 @@ /obj/machinery/status_display/ai/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "uhH" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -81730,7 +81535,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uhS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -81887,7 +81692,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ujL" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -81970,7 +81775,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ukR" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, @@ -82107,7 +81912,7 @@ dir = 5 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "umA" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/siding/blue{ @@ -82135,7 +81940,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, @@ -82160,7 +81965,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "umT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -82247,7 +82052,7 @@ /turf/open/floor/iron, /area/station/engineering/supermatter/room) "unO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, /obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ dir = 4 }, @@ -82285,9 +82090,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/light/small/directional/south, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark, @@ -82306,7 +82108,7 @@ /obj/structure/table/wood/fancy/green, /obj/effect/spawner/random/aimodule/harmless, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "uoS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -82361,10 +82163,11 @@ "upp" = ( /obj/item/kirbyplants/random, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; pixel_x = -32; - req_access = list("minisat") + req_access = list("minisat"); + dir = 8 }, /obj/machinery/camera/directional/west{ c_tag = "AI Satellite - Teleporter"; @@ -82374,13 +82177,13 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "upB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "upM" = ( /obj/structure/table, /obj/item/storage/photo_album/prison, @@ -82404,7 +82207,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uqk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral, @@ -82480,7 +82283,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "urq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -82506,7 +82309,7 @@ /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "urC" = ( /obj/structure/cable, /obj/structure/table/reinforced, @@ -82561,7 +82364,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -82795,7 +82598,7 @@ cycle_id = "sci-toxins-passthrough" }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/maintenance/department/science) "uuP" = ( @@ -82867,7 +82670,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uvR" = ( /obj/machinery/camera/directional/south{ c_tag = "Security Hallway - Center"; @@ -83119,7 +82922,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uyB" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -83269,12 +83072,9 @@ /turf/open/floor/wood/large, /area/station/service/library) "uzZ" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) "uAc" = ( /obj/structure/closet/crate, /obj/item/target/alien, @@ -83318,9 +83118,6 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) "uAL" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/structure/table/reinforced, /obj/machinery/recharger{ pixel_x = -6; @@ -83332,6 +83129,7 @@ }, /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/light/small/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/security/lockers) "uAV" = ( @@ -83529,18 +83327,14 @@ /turf/open/floor/iron, /area/station/engineering/lobby) "uDj" = ( -/obj/structure/cable, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, -/area/station/command/corporate_showroom) +/area/station/command/bridge) "uDk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -83558,7 +83352,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uDp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83588,10 +83382,6 @@ /obj/structure/chair/stool/bar/directional/north, /turf/open/floor/carpet/green, /area/station/commons/lounge) -"uDI" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/service/chapel/funeral) "uDJ" = ( /obj/structure/sign/poster/contraband/random/directional/west, /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ @@ -83670,9 +83460,6 @@ /turf/open/floor/iron/white/side, /area/station/science/research) "uFa" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/camera/directional/south{ c_tag = "Security - Brig Desk" }, @@ -83682,6 +83469,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/security/holding_cell) "uFs" = ( @@ -84046,7 +83834,7 @@ "uJH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uJN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84395,7 +84183,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uNt" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/turf_decal/bot_white, @@ -84453,8 +84241,9 @@ /turf/open/floor/iron, /area/station/maintenance/port) "uNU" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, +/obj/item/kirbyplants/random, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/wood, /area/station/command/heads_quarters/hop) "uNY" = ( /turf/closed/wall, @@ -84505,9 +84294,7 @@ /area/station/service/abandoned_gambling_den) "uOC" = ( /obj/structure/lattice, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/space/basic, /area/space/nearstation) "uOE" = ( @@ -84669,9 +84456,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/space/basic, /area/space/nearstation) "uPS" = ( @@ -84731,24 +84516,6 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) -"uQD" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS"; - pixel_y = 32 - }, -/obj/item/kirbyplants/organic/plant22, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "uQF" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/west, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -84784,7 +84551,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uRe" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ dir = 10 @@ -84903,6 +84670,17 @@ }, /turf/open/floor/iron, /area/station/security/prison/safe) +"uSo" = ( +/obj/structure/sign/directions/upload{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/science, +/obj/structure/sign/directions/medical{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/station/service/barber) "uSL" = ( /obj/effect/turf_decal/box/white{ color = "#9FED58" @@ -84968,7 +84746,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uTM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -85042,7 +84820,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/fore) @@ -85086,7 +84864,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uVZ" = ( /obj/structure/cable, /obj/machinery/duct, @@ -85208,7 +84986,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uYp" = ( /obj/machinery/computer/records/medical{ dir = 8 @@ -85601,7 +85379,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vdH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85808,7 +85586,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vgm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, @@ -85882,9 +85660,7 @@ /area/station/service/bar/backroom) "vhW" = ( /obj/item/kirbyplants/random, -/obj/structure/sign/warning/pods/directional/south{ - dir = 8 - }, +/obj/structure/sign/warning/pods/directional/south, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, @@ -86119,11 +85895,9 @@ "vkX" = ( /obj/effect/turf_decal/bot, /obj/machinery/vending/cigarette, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/west, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/hallway/primary/central/fore) "vlA" = ( @@ -86340,6 +86114,7 @@ /obj/effect/turf_decal/trimline/yellow/mid_joiner{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/plating, /area/station/engineering/supermatter/room) "voi" = ( @@ -86461,10 +86236,8 @@ /turf/open/floor/iron, /area/station/engineering/storage_shared) "vqg" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/landmark/start/hangover, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/wood, /area/station/commons/dorms) "vqt" = ( @@ -86621,7 +86394,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron, @@ -86892,6 +86665,7 @@ dir = 1 }, /obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron/half, /area/station/engineering/main) "vvy" = ( @@ -86950,7 +86724,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vvO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -87096,7 +86870,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vxQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -87148,7 +86922,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/laser_gun, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vyl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -87223,7 +86997,7 @@ /obj/item/storage/belt/utility, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vze" = ( /obj/structure/bookcase/random, /obj/item/radio/intercom/directional/south{ @@ -87324,13 +87098,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"vAl" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) "vAs" = ( /obj/structure/cable, /obj/machinery/holopad/secure, @@ -87493,10 +87260,6 @@ icon_state = "foam_plating" }, /area/station/maintenance/department/science/xenobiology) -"vBX" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/engineering/storage/tech) "vBY" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -87515,7 +87278,8 @@ /area/station/hallway/primary/fore) "vCk" = ( /obj/structure/sign/departments/medbay/alt{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -87736,7 +87500,6 @@ /obj/structure/cable, /obj/machinery/camera/directional/east{ c_tag = "Dormitories - Hall"; - dir = 6; name = "dormitories camera" }, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -87778,7 +87541,7 @@ pixel_y = -16 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vFC" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 5 @@ -87847,7 +87610,7 @@ /obj/structure/secure_safe/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vGP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/railing{ @@ -88031,6 +87794,7 @@ }, /obj/structure/closet/radiation, /obj/machinery/firealarm/directional/north, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/station/engineering/main) "vJh" = ( @@ -88107,7 +87871,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vKl" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/brown/half/contrasted{ @@ -88151,6 +87915,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/station/security/checkpoint/engineering) "vLg" = ( @@ -88310,17 +88075,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"vOe" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/obj/item/kirbyplants/organic/plant22, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "vOh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -88395,7 +88149,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vPe" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -88605,10 +88359,6 @@ "vRU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/lavaland{ - dir = 4; - pixel_y = -26 - }, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, @@ -88629,7 +88379,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vSk" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -88971,7 +88721,7 @@ /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vWV" = ( /obj/effect/turf_decal/bot, /obj/machinery/requests_console/directional/north{ @@ -89192,7 +88942,7 @@ "vZE" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vZX" = ( /obj/machinery/status_display/ai/directional/north, /obj/effect/turf_decal/tile/yellow/opposingcorners, @@ -89222,7 +88972,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -89279,11 +89029,11 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/iron, /area/station/maintenance/port/aft) "wbe" = ( @@ -89585,7 +89335,7 @@ dir = 4 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -89716,7 +89466,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wgL" = ( /turf/open/floor/wood, /area/station/service/library/abandoned) @@ -90112,15 +89862,18 @@ /obj/structure/cable, /obj/machinery/button/door/incinerator_vent_atmos_aux{ pixel_x = -8; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/button/door/incinerator_vent_atmos_main{ pixel_x = -8; - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /obj/machinery/button/ignition/incinerator/atmos{ pixel_x = 8; - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /obj/structure/closet/radiation, /obj/item/analyzer, @@ -90498,25 +90251,14 @@ /turf/open/floor/stone, /area/station/command/corporate_showroom) "wpu" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - pixel_x = -32; - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - pixel_x = -32 - }, -/obj/structure/sign/directions/arrival{ - dir = 8; - pixel_x = -32; - pixel_y = 8 +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast Door" }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/holding_cell) "wpx" = ( /obj/machinery/airalarm/directional/north, /obj/structure/table, @@ -90687,7 +90429,8 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, /obj/structure/sign/warning/no_smoking{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -90833,7 +90576,7 @@ /obj/effect/turf_decal/trimline/dark_red/filled/line, /obj/structure/chair/office, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wtS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -90846,6 +90589,10 @@ /area/station/science/research) "wtU" = ( /obj/structure/cable, +/obj/structure/sign/plaques/kiddie/library{ + dir = 1; + pixel_y = 32 + }, /turf/open/floor/wood/tile, /area/station/service/library/artgallery) "wtV" = ( @@ -91170,9 +90917,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "wxX" = ( @@ -91493,7 +91238,8 @@ "wCr" = ( /obj/machinery/button/crematorium{ id = "crematoriumChapel"; - pixel_x = 25 + pixel_x = 25; + dir = 4 }, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -91925,7 +91671,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wHW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, @@ -92028,7 +91774,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "wJs" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -92081,7 +91827,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wJY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, @@ -92100,14 +91846,12 @@ /turf/open/floor/iron/chapel, /area/station/service/chapel) "wKm" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) "wKo" = ( @@ -92248,7 +91992,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wLZ" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/yellow{ @@ -92474,7 +92218,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wQo" = ( /obj/structure/table/wood, /obj/machinery/recharger{ @@ -92558,7 +92302,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wRz" = ( /obj/structure/table/wood, /obj/item/storage/briefcase/secure{ @@ -92745,7 +92489,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wTF" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -92842,7 +92586,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wVQ" = ( /obj/structure/table, /obj/effect/spawner/random/food_or_drink/snack, @@ -93157,8 +92901,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/commons/vacant_room/office) "xbp" = ( @@ -93453,7 +93197,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -93664,7 +93408,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, @@ -93720,7 +93464,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -93762,6 +93506,7 @@ "xil" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, /obj/machinery/light/directional/south, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "xin" = ( @@ -93847,7 +93592,7 @@ /obj/structure/cable, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xjo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -94156,7 +93901,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xnw" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, @@ -94243,7 +93988,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xpy" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -94266,6 +94011,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -94375,7 +94121,7 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "xrg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -94642,7 +94388,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Drone Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -94744,7 +94490,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/iron, @@ -94968,7 +94714,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xxN" = ( /obj/structure/table/wood, /obj/machinery/computer/security/telescreen/entertainment/directional/north, @@ -95047,9 +94793,11 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "xyu" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/medical/morgue) +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark, +/area/station/ai/satellite/interior) "xyC" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/reflector/single, @@ -95397,13 +95145,11 @@ /turf/open/floor/circuit/telecomms/mainframe, /area/station/tcommsat/server) "xCf" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "xCC" = ( @@ -95534,10 +95280,6 @@ /turf/open/floor/iron, /area/station/science/xenobiology) "xEg" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, /obj/machinery/light/small/directional/south, /obj/item/kirbyplants/organic/plant22, /obj/effect/turf_decal/tile/blue/half/contrasted, @@ -96208,7 +95950,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xMI" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/computer/atmos_control/nitrogen_tank{ @@ -96259,7 +96001,7 @@ /obj/structure/cable/layer3, /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xMX" = ( /obj/structure/chair/office{ dir = 4 @@ -96269,7 +96011,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xNe" = ( /obj/structure/lattice, /obj/structure/grille/broken, @@ -96334,12 +96076,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 }, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Engineering Junction" + }, /turf/open/floor/iron, /area/station/engineering/lobby) "xNU" = ( @@ -96398,7 +96142,6 @@ /obj/structure/extinguisher_cabinet/directional/west, /obj/machinery/camera/directional/west{ c_tag = "Service - Kitchen Coldroom"; - dir = 10; name = "service camera" }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, @@ -96531,7 +96274,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xRv" = ( /obj/effect/landmark/start/hangover, /obj/effect/turf_decal/stripes/line, @@ -96548,7 +96291,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xRF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -96758,6 +96501,7 @@ network = list("ss13","engine") }, /obj/item/kirbyplants/random, +/obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/iron, /area/station/engineering/supermatter/room) "xUq" = ( @@ -96912,7 +96656,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xWw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance_hatch{ @@ -96966,7 +96710,7 @@ /obj/item/multitool, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xWQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -97133,7 +96877,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, @@ -97190,7 +96934,7 @@ /obj/machinery/computer/bank_machine, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "yaj" = ( /obj/effect/turf_decal/siding/white/corner, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -97255,7 +96999,7 @@ /area/station/commons/dorms) "yaW" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "yba" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -97607,7 +97351,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ygc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -97644,7 +97388,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ @@ -97693,13 +97437,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ygY" = ( /obj/structure/sign/directions/engineering{ desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: BLAST DOORS"; - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/effect/turf_decal/tile/red{ dir = 4 @@ -97773,7 +97518,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "yhJ" = ( /turf/open/floor/plating/airless, /area/space/nearstation) @@ -97989,15 +97734,12 @@ /turf/open/floor/plating, /area/station/engineering/supermatter/room) "ykl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/departments/vault/directional/east{ - pixel_y = -32 +/obj/structure/sign/plaques/kiddie/library{ + dir = 1; + pixel_y = 32 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/turf/open/floor/wood/tile, +/area/station/service/library/artgallery) "ykm" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -98036,7 +97778,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4 }, /turf/open/floor/iron, @@ -105450,7 +105192,7 @@ jPe kXJ cQh bPC -bRD +bPC bPC tnG bPC @@ -105712,7 +105454,7 @@ ikT uQY ikT qTF -bRD +bPC ruN aRr csk @@ -105975,7 +105717,7 @@ hmU sdK xpt sdK -qdV +sdK qGs cdt idU @@ -107003,7 +106745,7 @@ hmU sdK tDB hmU -tEd +hmU cJh cdt idU @@ -107506,7 +107248,7 @@ xMX kXJ cQh bPC -bRD +bPC bPC dNg bPC @@ -107763,7 +107505,7 @@ lyf lMA btH bPC -uNh +xyu upp hzJ rKC @@ -116235,7 +115977,7 @@ efQ qYo wes gnH -sXE +gnH gnH wFJ wFJ @@ -117026,7 +116768,7 @@ qYo aaa vVc gAw -uzZ +qYo qYo ksq vVc @@ -117810,7 +117552,7 @@ ike cbs wry hIh -akM +nCi jyt hKV dXH @@ -118294,7 +118036,7 @@ xUy xqR qzc kUx -kTV +nUp chv dQl oIE @@ -119081,8 +118823,8 @@ ntd hWY heZ bpr -bpr -anB +qvn +gAw ilG cwI sHT @@ -119322,7 +119064,7 @@ xUy xqR vTc oMh -kTV +nUp oow qzT nAF @@ -119352,9 +119094,9 @@ jcL vUV ugr xil -tLC +gAw epC -qZb +pTC jaI kwX pTC @@ -119596,7 +119338,7 @@ ntd bzY cMA vog -anB +gAw aVW lbl sHT @@ -119866,10 +119608,10 @@ sHT qqQ sLe nzs -tLC +gAw eYG -qZb -uKY +pTC +rOa gcr pTC kWi @@ -120082,7 +119824,7 @@ unO jxJ avX tiC -jfL +hhM mtm guU nNz @@ -120637,7 +120379,7 @@ qJI nCl gAw dtX -ugP +pTC pTC pTC uKY @@ -120894,7 +120636,7 @@ xEt nlS cCY jxQ -nlS +ceV lDk pTC wle @@ -121904,18 +121646,18 @@ rex ttE gAw mwW -anB +gAw cCY cCY cCY gAw gAw gAw -tLC +gAw cCY rAd cCY -tLC +gAw gAw gAw gAw @@ -122939,11 +122681,11 @@ jkK fbn gTr rRD -pgA +rRD aYU pzA aYU -pgA +rRD rRD dOr mKv @@ -124201,7 +123943,7 @@ gvj rNf xLZ xLZ -rOa +xLZ xLZ iVV cZY @@ -124211,11 +123953,11 @@ eSk wif pEY vvp -lDV +tqo tUg gmP qeP -ceV +tqo nFr bfX gRE @@ -124481,11 +124223,11 @@ vvH hcQ dsj rRD -pgA +rRD hOa aGo auD -pgA +rRD fii pUf bID @@ -125708,9 +125450,9 @@ hwM hwM hwM hwM -djf +hwM bGC -djf +hwM hwM oXU vjF @@ -125751,7 +125493,7 @@ bjl lNk nSJ bDX -qLJ +wGA wGA wGA rAH @@ -126222,9 +125964,9 @@ oYs oYs azA nmw -qvn +nmw pKG -qvn +nmw nmw nmw nmw @@ -127038,7 +126780,7 @@ dGS dGS dGS dGS -vBX +dGS dsy nps nps @@ -127309,7 +127051,7 @@ lhZ rQi pTC pTC -qZb +pTC guQ pTC pTC @@ -128926,7 +128668,7 @@ msu deV kpa ydW -pOQ +anZ efQ qYo efQ @@ -129946,7 +129688,7 @@ qQM qQM uBt lVQ -gDW +kzc lpY tsJ wbP @@ -131921,11 +131663,11 @@ ilJ iyq iyq fHI -fHI +kLz mvA rtO rtO -qAQ +uSo sAh sAh qAQ @@ -132178,7 +131920,7 @@ sYU sYU sYU giC -sIZ +cpr hAc ctw lSl @@ -132374,7 +132116,7 @@ aaa aaa qld lYd -bbP +oVq kJd xcm lSh @@ -132706,14 +132448,14 @@ eMc wXU uiR piG -clH +nSv unK erS nXY plO nXY nXY -nXY +okb sxD nXY kHu @@ -132963,14 +132705,14 @@ pRS pRS pRS pRS -uNU +pRS jaV tPc mlE mlE mlE mlE -lBR +mlE mlE mlE mlE @@ -133158,7 +132900,7 @@ sjt dyi iWA vRU -tCs +fcP tCs tCs bJf @@ -133197,7 +132939,7 @@ xms xms xms diL -uQD +pnc drj bog xEg @@ -133454,10 +133196,10 @@ aaa qYo aaa diL -nBJ +uDj eVb jYX -nBJ +pOQ awc fIn rgW @@ -133733,7 +133475,7 @@ tns lZx lZx dQf -sGz +lZx pRS mcv qLS @@ -133808,7 +133550,7 @@ xPc sTV xPc tgT -pOQ +anZ aaa aaa qYo @@ -133990,7 +133732,7 @@ mqr uNy cIb asq -qnQ +uNU pRS tMj kxs @@ -135259,7 +135001,7 @@ yil obc sQA qoo -vAl +mGw mGw qHx awc @@ -136034,8 +135776,8 @@ kZu cjl yfN yiC -qUM -jDi +xkw +uzZ eDK dfb hup @@ -137556,7 +137298,7 @@ qAV ttF qAV qAV -okb +qAV rKN pXg jkf @@ -138110,7 +137852,7 @@ duA fqN mzL sFu -uDj +sFu duA tAL nEk @@ -138283,8 +138025,8 @@ sjt qld qld sjt -sjt -fcP +tJT +qso sde nSF koM @@ -138424,7 +138166,7 @@ tHV tHV tHV tHV -xyu +tHV eKU imN exJ @@ -138857,7 +138599,7 @@ bog jlZ gOU swj -jeI +aby aby igb gOU @@ -140148,7 +139890,7 @@ aby wRz aGZ teA -nSv +ivA lnm tLa nDn @@ -140650,7 +140392,7 @@ aaa qYo aaa diL -nBJ +uDj eVb jYX nBJ @@ -140907,10 +140649,10 @@ xms xms xms diL -uQD +pnc drj bog -vOe +xEg gOU prt wUw @@ -141159,7 +140901,7 @@ vRO eUH dvy lSl -kOj +sIZ kGK kNw anV @@ -141187,7 +140929,7 @@ vIQ twE vIQ vIQ -aFE +vIQ jaV tPc ksK @@ -141198,7 +140940,7 @@ ksK ksK ksK ksK -ksK +jom kxg hJs vlY @@ -141231,7 +140973,7 @@ dki jzN ram pvF -dki +sTR pAK aZO hXm @@ -141416,7 +141158,7 @@ xhW upX aGG lSl -wpu +cpr lSl lSl lSl @@ -141425,7 +141167,7 @@ pNq kHp skX pNq -lSl +gDW jol lSl lSl @@ -141444,7 +141186,7 @@ ltY lSl lSl dbU -qSd +lBR rRB nOP sqd @@ -141455,7 +141197,7 @@ uKZ sqd sqd rbb -jom +sqd aLv qAW gnz @@ -141488,7 +141230,7 @@ cUY fdX dju dju -kLz +qRA ocC xgH vZl @@ -141930,7 +141672,7 @@ hXg seX mEv vPp -tJT +oAW qzY qzY edB @@ -141944,11 +141686,11 @@ vPp qzY qzY jfK -sTR +oAW eFr ohP lZt -iWH +lZt wXU lZt lZt @@ -141964,7 +141706,7 @@ tHW juZ dHb clH -chF +clH clH clH clH @@ -142187,7 +141929,7 @@ hXg lDY tpZ kOj -kOj +chF nHQ nHQ xPt @@ -142217,11 +141959,11 @@ iVq iVq iVq iVq -iVq +iWH kuO orL orL -hgJ +bBK gFi ssp ssp @@ -142447,7 +142189,7 @@ aaa qYo aaa teY -ykl +tcG teY aaa qYo @@ -142791,7 +142533,7 @@ oWo oWo oGK oGK -pHy +oGK aaa qYo qYo @@ -142962,7 +142704,7 @@ lhY vZE ldU tcG -vZE +tEd vZE lhY qYo @@ -143757,7 +143499,7 @@ aSi aSi aSi aSi -tpJ +iVq wmM iVq oKL @@ -144040,7 +143782,7 @@ nHY gnh aBz lTC -pPl +ykl pPl pPl vPf @@ -145875,7 +145617,7 @@ vNn vNn oGK oGK -pHy +oGK aaa qYo aaa @@ -147411,7 +147153,7 @@ kgf cVh uuP brb -uDI +brb aaa aaa aaa @@ -147859,8 +147601,8 @@ lim uLf grp mJq -bBK -vMj +mJq +wpu jCb kHZ myc @@ -150986,7 +150728,7 @@ qOK nXH nXH nXH -njz +nXH mOH nXH nXH @@ -151687,7 +151429,7 @@ sgh lTJ gJk qIH -pOQ +anZ qYo hQq fNW @@ -153251,10 +152993,10 @@ efQ aaa aaa aaa -mfO +qYo pYW aaa -mfO +qYo aaa aaa aaa @@ -156056,7 +155798,7 @@ cBD hms qLF gJk -pOQ +qYo qYo efQ efQ @@ -157143,7 +156885,7 @@ fIQ uKw mfC uKw -pOQ +anZ efQ aaa aaa diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm index c8a073fd4d044b..70abb1613d3989 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm @@ -23,6 +23,9 @@ /obj/item/taperecorder, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"aax" = ( +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "aaI" = ( /obj/structure/closet/wardrobe/white, /obj/item/clothing/shoes/jackboots, @@ -67,6 +70,12 @@ /obj/item/clothing/head/helmet/skull, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"abC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/server) "abJ" = ( /obj/machinery/camera{ c_tag = "Service - Botany"; @@ -99,14 +108,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"abQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal) "abT" = ( /obj/structure/table, /obj/item/folder/white, @@ -123,7 +124,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -170,7 +171,7 @@ /area/station/tcommsat/computer) "adq" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -251,7 +252,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aey" = ( /obj/machinery/camera/directional/east{ c_tag = "Xenobiology Pens - Starboard Fore"; @@ -359,7 +360,7 @@ }, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "agI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -478,7 +479,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ajr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -683,7 +684,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "alM" = ( /turf/closed/wall, /area/station/maintenance/aft/lesser) @@ -741,6 +742,15 @@ /obj/structure/flora/bush/style_random, /turf/open/floor/grass, /area/station/service/hydroponics) +"amD" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + location = "Bridge" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/central/greater) "amE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -767,6 +777,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"amS" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/white, +/area/station/medical/medbay/aft) "amW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -779,7 +793,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -983,20 +997,6 @@ }, /turf/open/floor/iron, /area/station/service/bar) -"aoP" = ( -/obj/machinery/door/airlock/external{ - dir = 8; - name = "Lower Medical External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-morgue-airlock" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/turf/open/floor/plating, -/area/station/medical/morgue) "aoW" = ( /obj/machinery/door/poddoor/preopen{ dir = 4; @@ -1048,7 +1048,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "apo" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -1090,14 +1090,6 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron, /area/station/maintenance/department/electrical) -"apI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/gateway) "apS" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -1105,7 +1097,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "apT" = ( /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ @@ -1496,24 +1488,6 @@ }, /turf/open/floor/iron, /area/station/cargo/miningdock) -"aui" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/large, -/area/station/hallway/secondary/entry) -"aus" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "auw" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; @@ -1600,6 +1574,10 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) +"avw" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/janitor) "avC" = ( /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/white/corner{ @@ -1630,7 +1608,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "awe" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -1975,7 +1953,7 @@ dir = 4 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aAl" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 1 @@ -2017,6 +1995,19 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/cmo) +"aBE" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/service/janitor) "aBK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -2063,13 +2054,6 @@ }, /turf/open/floor/iron, /area/station/cargo/miningdock) -"aCj" = ( -/obj/structure/sign/poster/official/twelve_gauge/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) "aCo" = ( /obj/structure/chair/wood{ dir = 8 @@ -2091,13 +2075,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"aCA" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) "aCC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -2266,7 +2243,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "aFn" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -2288,12 +2265,13 @@ /obj/machinery/dna_scannernew, /turf/open/floor/iron/dark, /area/station/science/genetics) -"aFz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) +"aFy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/smooth_half, +/area/station/security/brig/upper) "aFG" = ( /obj/structure/railing/corner{ dir = 1 @@ -2321,6 +2299,12 @@ /obj/item/flashlight/lantern/on, /turf/open/misc/hay/icemoon, /area/icemoon/underground/explored) +"aGl" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/science/research) "aGr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/directional/east{ @@ -2489,14 +2473,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) -"aID" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) "aIE" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plating, @@ -2521,6 +2497,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"aIW" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Station Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/maintenance/department/cargo) "aJa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2660,6 +2647,17 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"aLf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) "aLz" = ( /obj/machinery/conveyor{ id = "garbage" @@ -2694,8 +2692,9 @@ "aLX" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "aMa" = ( @@ -2707,7 +2706,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -2733,7 +2732,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/structure/sign/poster/contraband/random/directional/north, +/obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "aMr" = ( @@ -2821,9 +2820,7 @@ /turf/open/floor/plating, /area/mine/eva/lower) "aNE" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/central) "aOb" = ( @@ -2854,7 +2851,8 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/vending/clothing, /obj/structure/noticeboard/staff{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/commons/locker) @@ -2876,11 +2874,6 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) -"aOS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "aOU" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/trunk/multiz/down, @@ -2976,7 +2969,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "aPZ" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, @@ -3025,6 +3018,13 @@ /obj/structure/cable, /turf/open/floor/circuit/telecomms/mainframe, /area/station/tcommsat/server) +"aQS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/office) "aQW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3111,7 +3111,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aRR" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -3158,18 +3158,11 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, /area/station/science/ordnance/office) -"aSC" = ( -/obj/structure/window/spawner/directional/south, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/structure/railing/corner, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal) "aSH" = ( /obj/machinery/flasher/portable, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "aSI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -3238,6 +3231,14 @@ }, /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) +"aTA" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/cold_temp/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) "aTE" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -3495,7 +3496,7 @@ req_access = list("armory") }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "aWo" = ( /obj/machinery/hydroponics/constructable, /obj/effect/decal/cleanable/dirt, @@ -3687,12 +3688,10 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "aZw" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/station/science/ordnance/bomb/planet) +/obj/structure/flora/rock/pile/icy/style_random, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "aZx" = ( /obj/machinery/camera/directional/east{ c_tag = "Telecomms Monitoring"; @@ -3886,13 +3885,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"bbB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "bbM" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -3908,16 +3900,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/medical/paramedic) -"bbQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) "bbU" = ( /obj/structure/closet/toolcloset, /obj/machinery/status_display/evac/directional/south, @@ -4053,7 +4035,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bdQ" = ( /obj/structure/table, /obj/item/assembly/signaler{ @@ -4093,7 +4075,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bep" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron, @@ -4190,12 +4172,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/aft/lesser) -"bgt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/eva) "bgx" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard/aft) @@ -4218,15 +4194,7 @@ name = "Private Channel" }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"bgF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/command/gateway) +/area/station/ai/satellite/chamber) "bgK" = ( /obj/structure/table, /obj/item/toner, @@ -4310,16 +4278,6 @@ }, /turf/open/floor/plating, /area/mine/production) -"bij" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/medical/treatment_center) "bin" = ( /obj/effect/turf_decal/stripes/asteroid/line{ dir = 4 @@ -4439,7 +4397,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -4497,7 +4455,7 @@ "bkr" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "bkC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4508,6 +4466,14 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, /area/station/security/brig/upper) +"bkI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/science/research) "bkQ" = ( /obj/structure/tank_holder/extinguisher, /obj/structure/sign/warning/biohazard/directional/north, @@ -4753,7 +4719,7 @@ /obj/machinery/nuclearbomb/selfdestruct, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bnL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance_hatch, @@ -4864,7 +4830,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bpq" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 1 @@ -4889,8 +4855,8 @@ /area/station/engineering/atmos/mix) "bpK" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "bpQ" = ( @@ -4968,7 +4934,7 @@ "bqt" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "bqx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5037,7 +5003,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "brp" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue{ @@ -5297,12 +5263,6 @@ "btU" = ( /turf/closed/wall, /area/station/medical/morgue) -"btW" = ( -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) "bub" = ( /obj/machinery/vending/cola/red, /obj/machinery/light/warm/directional/north, @@ -5566,6 +5526,19 @@ "bxe" = ( /turf/closed/wall/r_wall, /area/station/maintenance/solars/starboard/fore) +"bxp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/office) "bxJ" = ( /obj/structure/closet/crate, /turf/open/floor/plating, @@ -5684,6 +5657,10 @@ /obj/structure/girder, /turf/open/floor/plating, /area/station/maintenance/fore) +"byT" = ( +/mob/living/basic/lizard/wags_his_tail, +/turf/open/floor/iron, +/area/station/service/janitor) "bza" = ( /obj/structure/fence/end{ dir = 8 @@ -5728,7 +5705,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bzD" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "mining-aux-mechbay-external" @@ -5777,19 +5754,6 @@ /obj/structure/chair/stool/directional/north, /turf/open/floor/carpet, /area/station/command/heads_quarters/qm) -"bAj" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) "bAk" = ( /obj/machinery/firealarm/directional/west, /turf/open/floor/carpet, @@ -6000,7 +5964,8 @@ /area/station/engineering/lobby) "bDB" = ( /obj/structure/plaque/static_plaque/golden/commission/icebox{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -6109,7 +6074,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bEC" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -6135,7 +6100,7 @@ "bEN" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/department/chapel) "bEX" = ( @@ -6211,6 +6176,11 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/station/command/bridge) +"bGl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit, +/area/station/science/robotics/mechbay) "bGm" = ( /obj/machinery/firealarm/directional/south, /obj/structure/filingcabinet/white, @@ -6350,7 +6320,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bIl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -6452,7 +6422,7 @@ "bJj" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "bJp" = ( /obj/machinery/camera/directional/east{ c_tag = "Security - Permabrig Workout"; @@ -6495,10 +6465,17 @@ name = "Firefighting Equipment" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"bKz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/explab) "bKA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6580,17 +6557,13 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/maintenance/fore) -"bLs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) "bLz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "bLA" = ( /obj/structure/closet, /turf/open/floor/plating, @@ -6682,9 +6655,16 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"bMV" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "bMY" = ( /turf/open/floor/glass/reinforced, /area/station/hallway/primary/starboard) @@ -6732,12 +6712,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/open/floor/iron/dark, /area/station/engineering/atmos/storage/gas) -"bNH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/cryo) "bOg" = ( /obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6755,8 +6729,8 @@ "bOj" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "bOk" = ( @@ -6828,7 +6802,7 @@ "bPc" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "bPl" = ( /obj/structure/table/wood, /obj/item/folder/blue, @@ -7169,7 +7143,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bTM" = ( /obj/structure/closet/crate, /obj/machinery/light/small/directional/south, @@ -7285,25 +7259,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/textured, /area/station/maintenance/fore) -"bVI" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"bVJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningdock) "bVL" = ( /obj/machinery/space_heater, /obj/structure/sign/poster/official/random/directional/east, @@ -7355,7 +7310,7 @@ /area/station/maintenance/port/fore) "bWn" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bWp" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/iron/dark, @@ -7419,6 +7374,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/service/chapel) +"bXa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/gateway) "bXf" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -7438,18 +7399,9 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"bXx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) "bXy" = ( /turf/open/openspace, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "bXD" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -7477,22 +7429,13 @@ }, /obj/effect/spawner/random/armory/laser_gun, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bYi" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/yellow/half/contrasted, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"bYm" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) "bYu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -7582,7 +7525,7 @@ }, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) @@ -7693,7 +7636,8 @@ }, /obj/effect/turf_decal/bot_white, /obj/structure/sign/picture_frame/portrait/bar{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/large, /area/station/service/bar/atrium) @@ -7745,6 +7689,15 @@ dir = 1 }, /area/mine/living_quarters) +"cbf" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "cbk" = ( /turf/open/floor/iron, /area/mine/mechbay) @@ -7768,7 +7721,7 @@ "cbz" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cbC" = ( /obj/machinery/meter, /obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ @@ -7820,7 +7773,8 @@ /area/station/hallway/primary/central) "cct" = ( /obj/structure/noticeboard/captain{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/wood, /area/station/command/meeting_room) @@ -7839,7 +7793,7 @@ "ccw" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "ccx" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -8018,7 +7972,8 @@ "ceO" = ( /obj/machinery/button/crematorium{ id = "crematoriumChapel"; - pixel_x = 25 + pixel_x = 25; + dir = 4 }, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -8062,7 +8017,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cfh" = ( /obj/structure/railing{ dir = 1 @@ -8244,13 +8199,11 @@ /turf/open/floor/wood/large, /area/mine/eva/lower) "chP" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/structure/marker_beacon/burgundy, /obj/effect/turf_decal/weather/snow/corner{ dir = 5 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) "chQ" = ( @@ -8262,6 +8215,11 @@ }, /turf/open/floor/iron/white/side, /area/mine/living_quarters) +"chZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "cie" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/purple, @@ -8541,13 +8499,6 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/iron/dark, /area/station/maintenance/disposal) -"cmV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "cmX" = ( /obj/effect/spawner/random/structure/crate, /obj/effect/mapping_helpers/broken_floor, @@ -8618,7 +8569,7 @@ "cnz" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -8635,6 +8586,12 @@ }, /turf/open/floor/iron, /area/station/cargo/office) +"cnQ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "cod" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 @@ -8662,6 +8619,16 @@ /obj/effect/decal/cleanable/rubble, /turf/open/floor/iron, /area/mine/production) +"coZ" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Locker Room West" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/locker) "cpe" = ( /obj/machinery/atmospherics/components/tank/air{ dir = 8 @@ -8773,7 +8740,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -8835,7 +8802,15 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) +"cqY" = ( +/obj/item/stack/ore/silver, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningdock) "crf" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/red{ @@ -8950,7 +8925,7 @@ "ctl" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "ctm" = ( /obj/structure/railing{ dir = 5 @@ -9043,6 +9018,12 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/station/commons/vacant_room/office) +"cuu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit, +/area/station/science/robotics/mechbay) "cuJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -9053,10 +9034,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, /area/station/medical/virology) -"cuP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "cvg" = ( /obj/effect/mapping_helpers/trapdoor_placer, /obj/effect/turf_decal/delivery, @@ -9083,7 +9060,7 @@ pixel_y = -8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cvj" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -9242,7 +9219,7 @@ "cxl" = ( /obj/machinery/status_display/evac/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cxp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/personal{ @@ -9276,7 +9253,7 @@ /area/station/medical/medbay/central) "cxO" = ( /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cxP" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 4 @@ -9327,7 +9304,7 @@ /area/station/medical/surgery/fore) "cyA" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -9349,10 +9326,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"cyL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/explab) "cyU" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, @@ -9373,13 +9346,7 @@ /obj/item/radio/intercom/directional/south, /obj/machinery/light/small/directional/south, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"czj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/morgue) +/area/station/ai/satellite/interior) "czl" = ( /obj/effect/turf_decal/tile/brown/fourcorners, /obj/machinery/modular_computer/preset/cargochat/engineering, @@ -9517,7 +9484,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cAM" = ( /obj/structure/table, /obj/item/folder/white{ @@ -9602,11 +9569,8 @@ dir = 4 }, /obj/machinery/light/directional/east, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cBY" = ( /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/unexplored/rivers/deep/shoreline) @@ -9696,7 +9660,7 @@ name = "Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "cDz" = ( @@ -9824,6 +9788,11 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/smooth_edge, /area/station/security/lockers) +"cFp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "cFr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -9837,7 +9806,7 @@ /obj/machinery/light/small/directional/north, /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cFZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9873,7 +9842,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cGu" = ( /obj/structure/closet/crate, /turf/open/floor/plating, @@ -9895,12 +9864,6 @@ }, /turf/open/floor/iron, /area/station/security/prison/garden) -"cGS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/disposal) "cGZ" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/stairs/medium{ @@ -9955,7 +9918,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cHQ" = ( /obj/machinery/vending/wardrobe/robo_wardrobe, /obj/machinery/button/door/directional/east{ @@ -10052,9 +10015,9 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "cJi" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/station/security/warden) +/obj/structure/sign/warning/directional/south, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "cJk" = ( /obj/machinery/chem_mass_spec, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ @@ -10070,6 +10033,12 @@ "cJt" = ( /turf/open/floor/plating, /area/station/hallway/secondary/entry) +"cJu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "cJw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -10431,13 +10400,6 @@ }, /turf/open/floor/iron, /area/station/science/xenobiology) -"cOa" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/closed/wall, -/area/station/tcommsat/computer) "cOi" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ dir = 8 @@ -10597,6 +10559,17 @@ /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, /turf/open/floor/plating, /area/station/maintenance/fore) +"cQy" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Chemistry Lab Exit" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "chem-airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/chemistry) "cQA" = ( /obj/effect/turf_decal/trimline/neutral/warning{ dir = 8 @@ -10611,14 +10584,14 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cQL" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "cQV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/siding/dark_blue, @@ -10759,7 +10732,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/barricade/wooden, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -10788,7 +10761,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Locker Room Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /turf/open/floor/plating, @@ -11055,7 +11028,7 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11131,10 +11104,19 @@ "cZv" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "cZD" = ( /turf/open/floor/iron/checker, /area/station/maintenance/port/fore) +"cZG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/hallway/secondary/entry) "cZJ" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11371,6 +11353,18 @@ }, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"dcz" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Research Division Break Room"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) "dcC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11465,10 +11459,6 @@ }, /turf/open/floor/iron/smooth, /area/station/maintenance/starboard/fore) -"ddk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) "ddm" = ( /mob/living/basic/pet/penguin/emperor{ name = "Club" @@ -11554,7 +11544,7 @@ "deg" = ( /obj/structure/cable/layer3, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dei" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/vending/cigarette, @@ -11763,7 +11753,7 @@ dir = 9 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dhR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bookcase/random, @@ -11854,14 +11844,14 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "dix" = ( /obj/machinery/light/small/dim/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/fore) "diC" = ( /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "diI" = ( /obj/machinery/mech_bay_recharge_port, /obj/item/radio/intercom/directional/south, @@ -12014,6 +12004,10 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/science/robotics/lab) +"dkt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) "dku" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12024,17 +12018,9 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "dky" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"dkK" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/openspace/icemoon/keep_below, +/area/icemoon/underground/explored) "dkT" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 1 @@ -12062,6 +12048,15 @@ /obj/effect/landmark/start/cook, /turf/open/floor/iron/kitchen/diagonal, /area/station/service/kitchen) +"dlq" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Labor Camp Security Office"; + network = list("labor") + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/mine/laborcamp/security) "dlt" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -12138,12 +12133,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/department/electrical) -"dmU" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) "dmV" = ( /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ @@ -12292,7 +12281,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "doM" = ( /obj/structure/table, /obj/item/paper{ @@ -12325,6 +12314,7 @@ /obj/machinery/light/directional/south, /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "dpq" = ( @@ -12408,7 +12398,7 @@ /turf/open/floor/plating, /area/station/security/checkpoint/medical) "dqR" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/structure/cable, /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 8 @@ -12793,13 +12783,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"dwb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "dwj" = ( /obj/machinery/atmospherics/components/binary/pump/off, /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ @@ -12933,6 +12916,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/maintenance/port/lesser) +"dxF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) "dxI" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/tile/yellow{ @@ -12994,7 +12986,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dzl" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, @@ -13094,16 +13086,6 @@ dir = 5 }, /area/station/command/heads_quarters/rd) -"dAP" = ( -/obj/structure/cable, -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) "dAQ" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -13184,7 +13166,7 @@ network = list("aicore") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dBX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, @@ -13387,18 +13369,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/fore) -"dER" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal) "dEV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -13777,19 +13747,17 @@ }, /area/station/security/processing) "dKW" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 36 - }, /obj/structure/sign/directions/evac{ dir = 4; - pixel_x = 32; - pixel_y = 28 + pixel_y = -10 }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 10 + }, +/obj/structure/sign/directions/engineering, +/turf/closed/wall, +/area/station/commons/storage/mining) "dLe" = ( /obj/structure/chair/stool/directional/west, /turf/open/floor/wood/large, @@ -13825,7 +13793,7 @@ "dLL" = ( /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "dLN" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -13883,9 +13851,7 @@ /turf/open/floor/iron/dark, /area/station/medical/morgue) "dMn" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/unexplored/rivers/deep/shoreline) "dMo" = ( @@ -13982,14 +13948,6 @@ /obj/item/wallframe/camera, /turf/open/floor/plating, /area/station/construction) -"dOa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/girder, -/obj/effect/spawner/structure/electrified_grille, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) "dOp" = ( /obj/structure/table/wood, /obj/item/instrument/saxophone, @@ -14078,22 +14036,12 @@ /area/mine/mechbay) "dPT" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"dQd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/maintenance/department/cargo) "dQl" = ( /obj/structure/closet/emcloset, /obj/structure/sign/warning/cold_temp/directional/north, @@ -14163,6 +14111,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/mine/laborcamp) +"dRx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/mine/eva) "dRz" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14257,6 +14210,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/bar) +"dTh" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "dTm" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/mob_spawn/corpse/human/skeleton, @@ -14448,21 +14409,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/engineering/lobby) -"dVS" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) "dWl" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -14524,7 +14470,7 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "dXh" = ( -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -3; pixel_y = 3 }, @@ -14732,7 +14678,7 @@ "dZX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eaa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14791,6 +14737,15 @@ /obj/structure/sign/departments/vault/directional/north, /turf/open/openspace/icemoon/keep_below, /area/icemoon/surface/outdoors/nospawn) +"eaO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "eaQ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small/directional/north, @@ -14804,7 +14759,8 @@ name = "Biohazard Containment Door" }, /obj/structure/noticeboard/rd{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /obj/effect/turf_decal/tile/purple/fourcorners, /obj/effect/turf_decal/delivery, @@ -14843,7 +14799,7 @@ /obj/machinery/newscaster/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ebO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -14912,8 +14868,9 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-med-passthrough" }, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "ede" = ( @@ -14938,7 +14895,7 @@ /obj/machinery/ore_silo, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "edq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -14974,6 +14931,13 @@ /obj/structure/sign/warning/docking/directional/north, /turf/open/floor/engine, /area/station/science/xenobiology) +"eee" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "eei" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -14988,7 +14952,7 @@ "eeD" = ( /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "eeF" = ( /obj/item/cigbutt/cigarbutt, /obj/effect/decal/cleanable/blood/old, @@ -15088,6 +15052,13 @@ initial_gas_mix = "ICEMOON_ATMOS" }, /area/icemoon/underground/explored) +"efQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) "efR" = ( /obj/structure/ladder, /obj/structure/railing{ @@ -15116,7 +15087,7 @@ /obj/effect/spawner/random/armory/riot_helmet, /obj/effect/spawner/random/armory/riot_shield, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "egm" = ( /obj/structure/table, /obj/item/restraints/handcuffs, @@ -15140,13 +15111,7 @@ /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"egL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/vault) "egS" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15187,13 +15152,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"ehd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "ehh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -15202,6 +15160,13 @@ /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) +"ehn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/fitness) "ehp" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -15211,6 +15176,15 @@ /obj/structure/noticeboard/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central) +"ehB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) "ehJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -15270,6 +15244,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/security/prison/rec) +"eia" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/statue/goliath{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/mine/living_quarters) "eic" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15335,6 +15317,14 @@ /obj/item/clothing/suit/hooded/wintercoat/engineering, /turf/open/floor/iron/dark, /area/station/engineering/storage_shared) +"eiR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "ejb" = ( /obj/structure/cable, /obj/machinery/door/airlock/security/glass{ @@ -15419,6 +15409,11 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"eki" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/range) "ekj" = ( /obj/structure/closet, /obj/effect/spawner/random/clothing/costume, @@ -15461,6 +15456,18 @@ }, /turf/open/floor/iron/white, /area/station/medical/surgery/fore) +"ekM" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/fitness) "ekW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15580,6 +15587,12 @@ /obj/effect/turf_decal/stripes/box, /turf/open/floor/plating, /area/station/engineering/lobby) +"eny" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "enH" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -15594,7 +15607,7 @@ name = "Tool Storage Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -15641,7 +15654,7 @@ /obj/machinery/firealarm/directional/east, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eoL" = ( /obj/structure/table, /obj/item/taperecorder, @@ -15828,7 +15841,7 @@ "erk" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -15906,13 +15919,6 @@ }, /turf/open/floor/iron/textured, /area/station/security/brig) -"erN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/storage) "erO" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 1 @@ -15926,12 +15932,6 @@ }, /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) -"erV" = ( -/obj/structure/railing/corner/end/flip{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "erY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16095,7 +16095,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eud" = ( /obj/item/food/chococoin, /obj/structure/closet/secure_closet/freezer/fridge, @@ -16141,6 +16141,13 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron, /area/station/science/xenobiology) +"euO" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "euZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16223,6 +16230,10 @@ /obj/machinery/light/floor, /turf/open/floor/iron, /area/station/security/brig/upper) +"ewP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) "ewT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16289,14 +16300,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/iron/smooth, /area/station/maintenance/port/fore) -"exN" = ( -/obj/effect/spawner/random/trash, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/work) "exQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16335,15 +16338,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/hallway/secondary/entry) -"eyj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) "eyk" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/status_display/evac/directional/south, @@ -16389,7 +16383,7 @@ /area/mine/eva/lower) "ezq" = ( /obj/structure/table, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/item/poster/random_official, /turf/open/floor/plating, /area/station/maintenance/port/fore) @@ -16477,7 +16471,7 @@ "eAx" = ( /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eAQ" = ( /obj/structure/rack, /obj/item/storage/box/lights/mixed{ @@ -16538,6 +16532,10 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"eBL" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/commons/fitness) "eBV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /turf/closed/wall/r_wall, @@ -16600,7 +16598,7 @@ /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "eCR" = ( -/obj/structure/no_effect_signpost{ +/obj/structure/signpost{ desc = "Now, where to go from here? That's a timeless question." }, /turf/open/misc/asteroid/snow/icemoon, @@ -16640,7 +16638,7 @@ name = "MiniSat Teleport Access" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eDj" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -16706,6 +16704,16 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, /area/station/engineering/storage/tech) +"eEs" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Station Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/maintenance/department/cargo) "eEO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16739,13 +16747,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/hallway/secondary/exit/departure_lounge) -"eFn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "eFt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -16974,14 +16975,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/hallway/secondary/entry) -"eHZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) "eId" = ( /obj/structure/railing/corner{ dir = 8 @@ -16992,7 +16985,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 }, -/obj/structure/sign/poster/official/here_for_your_safety/directional/north, +/obj/structure/sign/poster/official/here_for_your_safety/directional/west, /turf/open/floor/iron, /area/station/security/prison/visit) "eIk" = ( @@ -17003,9 +16996,7 @@ /turf/open/floor/wood, /area/station/service/library) "eIv" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) "eIC" = ( @@ -17084,6 +17075,15 @@ /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) +"eJO" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/mine/production) "eJU" = ( /obj/machinery/door/airlock/security{ name = "Permanent Cell 2" @@ -17268,11 +17268,11 @@ /obj/effect/turf_decal/stripes/line, /obj/item/radio/intercom/directional/west, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "eMT" = ( /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -17466,6 +17466,13 @@ /obj/structure/sign/warning/pods/directional/north, /turf/open/floor/iron/dark/textured, /area/station/hallway/secondary/entry) +"eQt" = ( +/obj/structure/chair/pew{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) "eQz" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -17510,7 +17517,7 @@ "eRh" = ( /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eRk" = ( /obj/effect/landmark/start/hangover, /obj/machinery/duct, @@ -17538,8 +17545,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance/glass, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "eRE" = ( @@ -17553,21 +17560,13 @@ dir = 4 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eRO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/station/security/warden) -"eRZ" = ( -/obj/structure/table, -/obj/item/papercutter{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) "eSn" = ( /obj/structure/chair/office, /obj/effect/landmark/start/assistant, @@ -17588,12 +17587,6 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/mine/laborcamp/security) -"eSA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark, -/area/mine/eva) "eSC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -18080,7 +18073,7 @@ /obj/machinery/power/smes/super/full, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eYK" = ( /obj/structure/rack, /obj/item/clothing/suit/hooded/wintercoat{ @@ -18174,6 +18167,13 @@ }, /turf/open/floor/engine/xenobio, /area/station/science/xenobiology) +"eZF" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/eva) "eZK" = ( /obj/machinery/recycler{ dir = 8 @@ -18366,7 +18366,7 @@ /obj/structure/chair, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fcA" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -18485,6 +18485,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"fdK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) "fdN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -18522,7 +18529,7 @@ /turf/open/floor/plating, /area/station/maintenance/aft/greater) "fep" = ( -/obj/structure/no_effect_signpost, +/obj/structure/signpost, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) "fez" = ( @@ -18545,7 +18552,7 @@ /area/station/maintenance/department/medical/morgue) "feJ" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "feQ" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, @@ -18565,6 +18572,13 @@ }, /turf/open/floor/iron/white, /area/station/medical/pharmacy) +"ffd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/locker) "ffe" = ( /turf/closed/wall/r_wall, /area/station/maintenance/aft/lesser) @@ -18640,13 +18654,13 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fgU" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fgV" = ( /obj/structure/railing/wooden_fence{ dir = 8 @@ -18685,6 +18699,14 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/fore) +"fhF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/iron, +/area/station/security/prison/mess) "fhL" = ( /obj/structure/sign/warning/directional/north, /turf/open/openspace/icemoon/keep_below, @@ -18984,6 +19006,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/central) +"fly" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/large, +/area/station/commons/storage/mining) "flD" = ( /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/plating, @@ -19002,7 +19029,7 @@ "flW" = ( /obj/machinery/atmospherics/components/tank/air, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "flZ" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -19047,7 +19074,7 @@ /obj/item/stack/rods/fifty, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fmq" = ( /obj/docking_port/stationary{ dir = 4; @@ -19114,12 +19141,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/engineering/atmos) -"fnC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) "fnF" = ( /obj/structure/chair/sofa/middle/brown, /turf/open/floor/carpet/blue, @@ -19203,6 +19224,15 @@ /obj/machinery/suit_storage_unit/atmos, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos) +"fqd" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/office) "fqv" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19228,11 +19258,6 @@ /obj/structure/sign/departments/security/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) -"fqH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/red/half, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) "fqJ" = ( /obj/effect/turf_decal/trimline/white/filled/warning, /turf/open/genturf, @@ -19258,9 +19283,6 @@ /obj/machinery/camera/directional/north{ c_tag = "Starboard Primary Hallway West" }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "fqW" = ( @@ -19317,7 +19339,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "frt" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -19429,7 +19451,7 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -19483,10 +19505,8 @@ /turf/open/floor/iron, /area/station/maintenance/starboard/aft) "ftY" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/flora/grass/both/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "fuc" = ( @@ -19563,13 +19583,6 @@ "fvk" = ( /turf/open/floor/glass/reinforced, /area/station/science/xenobiology) -"fvx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/cargo/miningdock) "fvA" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/north, /obj/effect/turf_decal/siding/yellow/corner{ @@ -19583,6 +19596,15 @@ /obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron/dark, /area/station/engineering/lobby) +"fvJ" = ( +/obj/structure/chair/pew{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) "fvK" = ( /obj/structure/rack, /obj/item/storage/box/petridish, @@ -19748,7 +19770,7 @@ "fyc" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fyr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ @@ -19763,7 +19785,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fyw" = ( /obj/machinery/telecomms/server/presets/service, /turf/open/floor/iron/dark/telecomms, @@ -19866,7 +19888,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19990,12 +20012,6 @@ dir = 8 }, /area/station/service/chapel) -"fBQ" = ( -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/hallway/secondary/entry) "fBR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20051,7 +20067,7 @@ /turf/open/floor/wood/parquet, /area/station/service/bar/atrium) "fDl" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) "fDn" = ( @@ -20101,6 +20117,14 @@ }, /turf/open/floor/iron/dark/textured, /area/station/commons/dorms) +"fEi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/fitness) "fEA" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance{ @@ -20272,7 +20296,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fHq" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -20284,10 +20308,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/maintenance/port/aft) -"fHK" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/station/command/meeting_room) "fHO" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle, /obj/machinery/door/poddoor/shutters/preopen{ @@ -20564,14 +20584,6 @@ /obj/structure/closet/toolcloset, /turf/open/floor/plating, /area/station/maintenance/aft/lesser) -"fLl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) "fLq" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -20582,7 +20594,7 @@ "fLs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "fLu" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -20760,11 +20772,6 @@ /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/white/smooth_large, /area/station/service/kitchen) -"fOl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/explab) "fOq" = ( /obj/structure/sign/warning/cold_temp/directional/north, /turf/open/floor/plating, @@ -20891,7 +20898,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "fQc" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 1 @@ -20919,7 +20926,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fQz" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/carpet, @@ -20938,7 +20945,7 @@ "fRb" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20980,9 +20987,7 @@ dir = 1 }, /obj/effect/mapping_helpers/burnt_floor, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "fSm" = ( @@ -21026,7 +21031,7 @@ /obj/item/clothing/head/utility/welding, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fTb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21069,13 +21074,6 @@ /obj/item/radio/intercom/prison/directional/north, /turf/open/floor/iron/cafeteria, /area/station/security/prison/mess) -"fTq" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "fTx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -21143,7 +21141,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Firefighting Equipment" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -21210,7 +21208,7 @@ name = "Chemical Storage" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -21236,7 +21234,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -21312,6 +21310,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"fWF" = ( +/obj/effect/spawner/random/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "fWL" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -21696,7 +21698,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "gbK" = ( /obj/structure/rack, /obj/item/clothing/suit/utility/beekeeper_suit, @@ -21832,12 +21834,6 @@ /obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron, /area/station/hallway/primary/port) -"gea" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) "gec" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -21906,12 +21902,6 @@ /obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/station/engineering/lobby) -"geW" = ( -/obj/structure/cable, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) "gfb" = ( /turf/closed/wall/r_wall, /area/station/maintenance/central/greater) @@ -21938,6 +21928,11 @@ /obj/effect/turf_decal/siding/yellow, /turf/open/floor/iron, /area/station/engineering/storage) +"gfu" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) "gfw" = ( /obj/machinery/light/small/directional/west, /obj/structure/table, @@ -21973,7 +21968,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -22018,7 +22013,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ggV" = ( /obj/machinery/conveyor{ id = "gulag" @@ -22032,6 +22027,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "ghl" = ( @@ -22071,7 +22067,7 @@ /area/station/maintenance/port/fore) "ghY" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "gib" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22106,11 +22102,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/maintenance/aft/greater) -"giN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/iron/dark/side, -/area/station/security/prison/workout) "giO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/trash/grille_or_waste, @@ -22175,6 +22166,11 @@ "gjq" = ( /turf/open/openspace/icemoon/keep_below, /area/icemoon/underground/explored) +"gjt" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/morgue) "gjI" = ( /obj/effect/spawner/random/structure/tank_holder, /obj/effect/turf_decal/tile/yellow, @@ -22236,6 +22232,13 @@ "gka" = ( /turf/closed/wall/r_wall, /area/station/engineering/supermatter/room) +"gkk" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "gko" = ( /obj/machinery/conveyor{ dir = 8; @@ -22387,7 +22390,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "glS" = ( /obj/machinery/camera/directional/south{ c_tag = "MiniSat Pod Access"; @@ -22399,7 +22402,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "glX" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -22521,9 +22524,7 @@ /obj/effect/decal/cleanable/blood/tracks{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) "goa" = ( @@ -22565,21 +22566,6 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/iron, /area/station/service/janitor) -"goy" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) "goB" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 4 @@ -22664,7 +22650,7 @@ "gpB" = ( /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gpM" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -22792,6 +22778,18 @@ }, /turf/open/floor/plating, /area/station/commons/dorms/laundry) +"gro" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/office) "grp" = ( /turf/open/misc/asteroid/snow/coldroom, /area/icemoon/underground/explored) @@ -22995,6 +22993,14 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/white/smooth_large, /area/station/service/kitchen) +"guM" = ( +/obj/machinery/door/airlock/mining/glass{ + id_tag = "innercargo"; + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron, +/area/station/cargo/storage) "guO" = ( /obj/item/stack/sheet/mineral/wood, /obj/effect/decal/cleanable/generic, @@ -23300,7 +23306,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gzH" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/research{ @@ -23313,17 +23319,6 @@ dir = 8 }, /area/station/science/ordnance/office) -"gzI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) "gzJ" = ( /obj/structure/cable/multilayer/multiz, /obj/effect/turf_decal/stripes/box, @@ -23495,23 +23490,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/commons/storage/mining) -"gCh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"gCl" = ( -/obj/structure/railing/corner/end/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "gCn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23685,11 +23663,6 @@ }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) -"gEn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/server) "gEq" = ( /obj/structure/chair/office{ dir = 4 @@ -23763,21 +23736,6 @@ "gFX" = ( /turf/closed/wall, /area/icemoon/underground/explored) -"gGj" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 9 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) "gGs" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/machinery/newscaster/directional/west, @@ -23826,12 +23784,22 @@ }, /turf/open/floor/iron/dark, /area/station/medical/storage) +"gGN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/mine/eva) "gGZ" = ( /obj/machinery/computer/bank_machine, /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gHe" = ( /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/tile/blue, @@ -23942,10 +23910,6 @@ /obj/structure/cable, /turf/open/floor/iron/smooth, /area/station/security/holding_cell) -"gIJ" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/medical/morgue) "gIL" = ( /obj/machinery/door/airlock/security/glass{ name = "Secure Walkway" @@ -23958,18 +23922,13 @@ }, /turf/open/floor/iron, /area/station/security/brig/upper) -"gIN" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness) "gIY" = ( /turf/closed/wall, /area/station/medical/medbay/central) +"gJa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "gJs" = ( /obj/machinery/portable_atmospherics/canister, /obj/structure/disposalpipe/segment, @@ -23997,7 +23956,7 @@ /mob/living/simple_animal/bot/secbot/beepsky/armsky, /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gJK" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 4 @@ -24225,13 +24184,6 @@ dir = 4 }, /area/station/command/gateway) -"gNH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/workout) "gNL" = ( /obj/machinery/status_display/evac/directional/south, /obj/machinery/light/directional/south, @@ -24275,7 +24227,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "gOi" = ( /obj/structure/rack, /obj/item/clothing/glasses/sunglasses/big{ @@ -24350,7 +24302,7 @@ /obj/structure/cable, /obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "gPC" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -24506,17 +24458,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"gRZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/visit) "gSd" = ( /obj/structure/fence/door{ dir = 4 @@ -24545,7 +24486,6 @@ "gSq" = ( /obj/machinery/rnd/production/circuit_imprinter/department/science, /obj/machinery/button/door/directional/north{ - dir = 2; id = "rnd"; name = "Shutters Control Button"; req_access = list("research") @@ -24954,6 +24894,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/mine/laborcamp) +"gXD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/mine/eva) "gXJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25451,7 +25396,7 @@ pixel_y = -24 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hfA" = ( /obj/structure/window/reinforced/spawner/directional/north{ pixel_y = 2 @@ -25485,7 +25430,7 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -25500,12 +25445,10 @@ /area/station/security/brig/entrance) "hho" = ( /obj/machinery/vending/cigarette, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain) "hhr" = ( @@ -25869,6 +25812,18 @@ dir = 8 }, /area/station/commons/storage/mining) +"hmA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/newscaster/directional/south, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison/visit) "hmE" = ( /obj/structure/chair, /obj/effect/turf_decal/tile/blue/half/contrasted{ @@ -25965,6 +25920,12 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"hot" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/research) "hoz" = ( /obj/structure/fence/corner{ dir = 6 @@ -26027,7 +25988,6 @@ "hpl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/directional/north, /turf/open/floor/iron, /area/mine/laborcamp) "hpm" = ( @@ -26154,17 +26114,6 @@ dir = 1 }, /area/station/commons/storage/art) -"hqv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/iron, -/area/mine/eva) "hqx" = ( /obj/effect/landmark/start/assistant, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -26244,7 +26193,7 @@ "hsh" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "hsn" = ( /obj/effect/landmark/start/medical_doctor, /obj/machinery/holopad, @@ -26281,6 +26230,17 @@ "hsB" = ( /turf/open/floor/iron/freezer, /area/station/commons/toilet) +"hsG" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "hsN" = ( /obj/structure/table, /obj/item/storage/box/firingpins, @@ -26289,7 +26249,7 @@ /obj/machinery/light/directional/east, /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "hsQ" = ( /obj/structure/tank_holder/oxygen, /turf/open/floor/plating, @@ -26563,7 +26523,7 @@ name = "Utilities Room" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "hxs" = ( @@ -26730,7 +26690,7 @@ }, /obj/machinery/firealarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hzJ" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -26931,13 +26891,6 @@ /obj/item/paper/fluff/jobs/engineering/frequencies, /turf/open/floor/carpet, /area/station/command/meeting_room) -"hCa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) "hCn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -27215,7 +27168,7 @@ /area/station/security/lockers) "hHb" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hHg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -27334,7 +27287,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -27416,6 +27369,16 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"hJA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/mine/eva) "hJD" = ( /obj/structure/ladder, /turf/open/floor/wood, @@ -27518,12 +27481,6 @@ }, /turf/open/floor/iron/white/corner, /area/station/engineering/atmos) -"hLW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/commons/fitness) "hLX" = ( /obj/structure/girder, /obj/structure/grille, @@ -27531,12 +27488,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/aft/greater) -"hLY" = ( -/obj/structure/cable, -/obj/structure/chair, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/iron, -/area/station/cargo/storage) "hLZ" = ( /obj/machinery/telecomms/bus/preset_three, /turf/open/floor/circuit/telecomms/mainframe, @@ -27544,7 +27495,7 @@ "hMc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hMg" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -27774,16 +27725,11 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) -"hOY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) "hPe" = ( /obj/structure/cable/multilayer/connected, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hPf" = ( /obj/structure/safe/vault, /obj/item/clothing/head/costume/bearpelt, @@ -27795,7 +27741,7 @@ /obj/effect/turf_decal/bot_white/left, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "hPk" = ( /obj/machinery/door/airlock/security{ name = "Permabrig Chapel" @@ -27815,6 +27761,15 @@ }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) +"hPx" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/medical/treatment_center) "hPz" = ( /obj/structure/chair{ dir = 8 @@ -27851,13 +27806,6 @@ /obj/effect/turf_decal/trimline/yellow/filled/line, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) -"hPQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/large, -/area/station/commons/storage/mining) "hPT" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -28022,22 +27970,6 @@ /obj/structure/railing/corner, /turf/open/floor/iron, /area/mine/eva) -"hSl" = ( -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/smooth_corner, -/area/station/ai_monitored/command/storage/eva) "hSm" = ( /obj/structure/table, /obj/item/paper/crumpled{ @@ -28271,19 +28203,6 @@ /obj/structure/table, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"hVq" = ( -/obj/effect/turf_decal/stripes/asteroid/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/machinery/light/floor, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/mine/living_quarters) "hVu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28335,7 +28254,7 @@ "hWi" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hWl" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -28425,7 +28344,7 @@ name = "Disposal Access" }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28465,6 +28384,22 @@ }, /turf/open/floor/plating, /area/station/cargo/sorting) +"hYH" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ + dir = 9 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) "hYL" = ( /obj/structure/closet/lasertag/blue, /obj/effect/landmark/start/hangover, @@ -28524,6 +28459,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"hZk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/paramedic) "hZo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -28535,9 +28478,7 @@ /turf/open/floor/plating, /area/station/maintenance/port/greater) "hZu" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/structure/flora/grass/both/style_random, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/less_spawns) @@ -28619,6 +28560,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) +"iaC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "iaF" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron, @@ -28699,7 +28646,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ibm" = ( /obj/structure/cable, /obj/machinery/newscaster/directional/north, @@ -28757,7 +28704,7 @@ /obj/effect/turf_decal/tile/dark_green, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ich" = ( /obj/structure/sign/warning/electric_shock/directional/north, /turf/open/openspace/icemoon/keep_below, @@ -28772,21 +28719,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"icu" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/dark/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/mine/living_quarters) "icA" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/left/directional/east{ @@ -28861,7 +28793,7 @@ name = "Garden Maintenance" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -28980,7 +28912,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "ifX" = ( /obj/machinery/vending/wardrobe/cargo_wardrobe, /turf/open/floor/iron, @@ -29026,7 +28958,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/sign/plaques/kiddie/library{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -29110,10 +29043,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/cold/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/textured, /area/station/engineering/storage/tech) "ihu" = ( @@ -29127,7 +29058,7 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "ihB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29266,7 +29197,7 @@ "ijT" = ( /obj/structure/transit_tube/horizontal, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ijU" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29280,6 +29211,15 @@ /obj/structure/cable, /turf/open/floor/plating, /area/mine/eva/lower) +"ijW" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) "ijY" = ( /obj/structure/flora/rock/icy/style_random, /turf/open/misc/asteroid/snow/icemoon, @@ -29429,7 +29369,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "ilN" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 1 @@ -29453,6 +29393,12 @@ /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) +"imo" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) "imH" = ( /obj/structure/rack, /obj/effect/spawner/random/clothing/gloves, @@ -29552,7 +29498,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ior" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29698,7 +29644,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iqC" = ( /obj/structure/table, /obj/item/flashlight/lamp, @@ -29880,7 +29826,7 @@ "itl" = ( /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "itt" = ( /obj/machinery/door/window/brigdoor/right/directional/south{ name = "Research Director Observation"; @@ -29981,7 +29927,7 @@ "iuS" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "ivi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow, @@ -30059,6 +30005,18 @@ }, /turf/open/floor/wood, /area/station/service/library) +"ivN" = ( +/obj/effect/turf_decal/stripes/asteroid/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/mine/living_quarters) "iwa" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -30130,7 +30088,8 @@ /area/station/commons/vacant_room/office) "ixl" = ( /obj/structure/sign/plaques/kiddie/devils_tooth{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) @@ -30166,6 +30125,14 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) +"ixK" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/iron/white, +/area/station/science/ordnance/office) "ixZ" = ( /obj/machinery/door/airlock/command/glass{ name = "Chief Engineer" @@ -30274,11 +30241,11 @@ "izI" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "izJ" = ( @@ -30312,7 +30279,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iAu" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -30365,14 +30332,6 @@ }, /turf/open/floor/plating/snowed/coldroom, /area/station/service/kitchen/coldroom) -"iBl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/smooth_large, -/area/station/science/breakroom) "iBo" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -30482,7 +30441,7 @@ "iDp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iDq" = ( /turf/closed/wall/r_wall, /area/station/security/warden) @@ -30514,6 +30473,13 @@ /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) +"iEt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) "iEA" = ( /obj/structure/table/glass, /obj/item/storage/box/gloves{ @@ -30667,7 +30633,7 @@ /area/station/science/ordnance/office) "iHp" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iHP" = ( /obj/machinery/holopad, /obj/effect/spawner/random/engineering/tracking_beacon, @@ -30762,14 +30728,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/commons/vacant_room/office) -"iJr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/light/warm/directional/east, -/turf/open/floor/iron, -/area/station/security/prison/mess) "iJC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -30786,7 +30744,7 @@ }, /obj/effect/spawner/random/armory/rubbershot, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iJK" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -30816,7 +30774,7 @@ /area/station/hallway/primary/central) "iJO" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iJV" = ( /obj/structure/railing/corner/end{ dir = 8 @@ -30889,7 +30847,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -31006,7 +30964,7 @@ "iMp" = ( /obj/machinery/status_display/ai/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iMu" = ( /obj/machinery/camera/directional/east{ c_tag = "Arrivals Escape Pod 1" @@ -31030,7 +30988,7 @@ /obj/effect/turf_decal/bot_red, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "iMA" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -31113,6 +31071,12 @@ }, /turf/open/floor/iron/grimy, /area/station/commons/vacant_room/office) +"iNL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "iNQ" = ( /turf/open/floor/carpet, /area/station/maintenance/space_hut/cabin) @@ -31136,12 +31100,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"iOs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) "iOv" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -31193,6 +31151,21 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"iPr" = ( +/obj/machinery/door/airlock/external{ + dir = 8; + name = "Lower Medical External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "chem-morgue-airlock" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/morgue) "iPz" = ( /obj/effect/landmark/start/medical_doctor, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -31268,18 +31241,6 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron, /area/station/cargo/miningdock) -"iQx" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/mine/living_quarters) "iQF" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/airalarm/directional/south, @@ -31306,6 +31267,11 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, /area/station/science/xenobiology) +"iQN" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) "iQQ" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -31396,14 +31362,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark/textured, /area/station/security/interrogation) -"iRN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/station/science/research) "iRV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31462,19 +31420,24 @@ name = "Unisex Showers" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) "iST" = ( /obj/structure/chair/office, /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iSX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/maintenance/port/fore) +"iTb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "iTr" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -31498,11 +31461,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"iTC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/docking/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) "iTP" = ( /obj/item/reagent_containers/cup/bucket, /obj/effect/turf_decal/trimline/green/filled/line, @@ -31510,6 +31468,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) +"iTR" = ( +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hop) "iTY" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/plasma, @@ -31590,7 +31551,7 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "iUT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31615,18 +31576,6 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) -"iVv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/hallway/secondary/entry) "iVA" = ( /obj/effect/landmark/start/shaft_miner, /turf/open/floor/iron, @@ -31745,13 +31694,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/engineering/atmos) -"iXu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "iXC" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -31836,6 +31778,14 @@ /obj/structure/sink/directional/west, /turf/open/floor/iron/white, /area/station/medical/medbay/aft) +"iYt" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/plating, +/area/station/ai/satellite/maintenance) "iYy" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -31883,11 +31833,6 @@ /obj/effect/turf_decal/trimline/yellow/line, /turf/open/floor/iron/dark/side, /area/station/security/prison/workout) -"iZq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) "iZr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/electrolyzer, @@ -31932,6 +31877,7 @@ /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 1 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/iron/white, /area/station/medical/break_room) "iZW" = ( @@ -31958,7 +31904,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jai" = ( /obj/structure/fence/post{ dir = 8 @@ -32196,7 +32142,8 @@ dir = 1 }, /obj/structure/noticeboard/hos{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/security/brig/upper) @@ -32237,12 +32184,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/prison/mess) -"jdm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) "jdA" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -32414,15 +32355,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/glass, /area/station/security/lockers) -"jgx" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal) "jgC" = ( /obj/structure/minecart_rail{ dir = 10 @@ -32522,6 +32454,13 @@ /obj/structure/table, /turf/open/floor/iron/grimy, /area/station/security/prison/work) +"jhL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "jhQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -32560,7 +32499,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jjt" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32673,6 +32612,19 @@ }, /turf/open/floor/iron/smooth, /area/mine/mechbay) +"jld" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/machinery/camera/directional/south{ + c_tag = "Mining B-1 Hallway North"; + network = list("ss13", "mine") + }, +/turf/open/floor/iron/dark/side, +/area/mine/eva) "jle" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -32759,14 +32711,6 @@ }, /turf/open/floor/iron/cafeteria, /area/mine/laborcamp) -"jmh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) "jms" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/west, @@ -32829,7 +32773,8 @@ }, /obj/machinery/light/directional/north, /obj/structure/noticeboard/qm{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/cargo/storage) @@ -32903,7 +32848,7 @@ /obj/item/clothing/mask/gas, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jol" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -33114,11 +33059,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"jsp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron, -/area/station/security/prison/work) "jsq" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -33130,7 +33070,7 @@ req_one_access = list("teleporter","minisat") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jss" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33171,10 +33111,10 @@ installation = /obj/item/gun/energy/e_gun }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "jtn" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) @@ -33293,10 +33233,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/disposal) -"jum" = ( -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron/dark/corner, -/area/mine/eva) "juq" = ( /obj/structure/closet/secure_closet/personal{ anchored = 1 @@ -33371,6 +33307,19 @@ /obj/machinery/light/floor, /turf/open/floor/iron, /area/mine/production) +"jvJ" = ( +/obj/structure/sign/directions/engineering{ + pixel_y = -10 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 10 + }, +/obj/structure/sign/directions/security{ + dir = 4 + }, +/turf/closed/wall, +/area/station/commons/storage/tools) "jvL" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/hollow/reinforced/middle{ @@ -33449,11 +33398,16 @@ /area/station/security/brig/upper) "jwz" = ( /obj/structure/flora/rock/icy/style_random, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"jwC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/science/research) "jwF" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/iron, @@ -33499,7 +33453,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jxw" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/icemoon, @@ -33621,7 +33575,7 @@ /obj/machinery/firealarm/directional/east, /obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jzH" = ( /obj/machinery/modular_computer/preset/research{ dir = 4 @@ -33631,6 +33585,19 @@ }, /turf/open/floor/iron/smooth_corner, /area/station/command/heads_quarters/rd) +"jzI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage) "jzL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ @@ -33752,14 +33719,6 @@ }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) -"jBr" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/security/telescreen/prison/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) "jBB" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction, /obj/effect/spawner/structure/window, @@ -33836,12 +33795,30 @@ dir = 4 }, /area/mine/production) +"jCW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "jDc" = ( /obj/effect/spawner/random/vending/snackvend, /obj/structure/sign/departments/restroom/directional/south, /obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron/white, /area/station/medical/break_room) +"jDf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "jDl" = ( /obj/structure/sign/warning/cold_temp/directional/north, /turf/open/floor/plating, @@ -33914,7 +33891,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jDX" = ( /obj/structure/training_machine, /obj/item/target, @@ -33985,6 +33962,14 @@ }, /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) +"jEW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/cargo/miningdock) "jFf" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -34061,12 +34046,6 @@ /obj/effect/turf_decal/tile/red/full, /turf/open/floor/iron/dark/smooth_large, /area/station/security/checkpoint/medical) -"jHb" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/less_spawns) "jHe" = ( /obj/structure/table/wood, /turf/open/floor/wood/parquet, @@ -34210,16 +34189,17 @@ }, /obj/structure/cable/multilayer/connected, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"jJd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/area/station/ai/satellite/chamber) +"jJa" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Mining Storage" + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/commons/storage/mining) "jJe" = ( /obj/machinery/conveyor{ dir = 4; @@ -34354,7 +34334,7 @@ /turf/open/floor/iron/freezer, /area/station/science/xenobiology) "jKJ" = ( -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -34369,9 +34349,8 @@ /obj/effect/landmark/event_spawn, /obj/structure/cable, /obj/effect/turf_decal/tile/green, -/obj/structure/sign/plaques/kiddie, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jKN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34389,7 +34368,8 @@ /area/station/maintenance/port/greater) "jKQ" = ( /obj/structure/sign/warning/fire{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/less_spawns) @@ -34531,7 +34511,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "jMn" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ @@ -34782,12 +34762,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/fore) -"jPx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/science/breakroom) "jPL" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -34816,10 +34790,24 @@ /obj/structure/sign/warning/directional/north, /turf/open/floor/engine, /area/station/engineering/supermatter) +"jQf" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/large, +/area/station/medical/treatment_center) "jQi" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/station/maintenance/aft/lesser) +"jQv" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/fitness) "jQy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -34893,11 +34881,8 @@ /obj/item/ai_module/supplied/freeform, /obj/effect/turf_decal/tile/dark_green, /obj/machinery/light/directional/west, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jRi" = ( /obj/structure/fence{ dir = 8 @@ -34926,10 +34911,6 @@ "jRA" = ( /turf/open/openspace, /area/station/service/bar/atrium) -"jRC" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) "jRI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -35022,15 +35003,6 @@ }, /turf/open/floor/plastic, /area/station/commons/dorms/laundry) -"jST" = ( -/obj/machinery/door/window/right/directional/north{ - name = "Bridge Delivery"; - req_access = list("command") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/central/greater) "jTf" = ( /obj/structure/fence{ dir = 1 @@ -35051,12 +35023,6 @@ }, /turf/open/floor/iron/white, /area/station/science/lab) -"jTr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/explab) "jTw" = ( /obj/machinery/power/port_gen/pacman/pre_loaded, /turf/open/floor/plating, @@ -35150,7 +35116,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "jUY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/personal{ @@ -35225,6 +35191,11 @@ }, /turf/open/floor/wood/parquet, /area/station/service/bar/atrium) +"jWn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/security/prison/work) "jWq" = ( /obj/structure/fence{ dir = 4 @@ -35381,7 +35352,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jZe" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -35738,6 +35709,15 @@ }, /turf/open/floor/engine/vacuum, /area/station/engineering/atmos) +"kea" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "kei" = ( /obj/docking_port/stationary/escape_pod, /turf/open/floor/plating/snowed/icemoon, @@ -35759,13 +35739,6 @@ dir = 4 }, /area/station/security/brig/entrance) -"kex" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/explab) "keA" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -35867,7 +35840,7 @@ pixel_x = -10 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kfS" = ( /obj/machinery/atmospherics/components/tank/air/layer4{ initialize_directions = 2 @@ -35983,11 +35956,11 @@ /obj/item/crowbar/red, /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "khR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "khW" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/spawner/random/structure/crate, @@ -36090,7 +36063,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/spawner/random/armory/bulletproof_helmet, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kjd" = ( /obj/structure/plasticflaps{ dir = 4 @@ -36116,7 +36089,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -36201,13 +36174,13 @@ /obj/effect/turf_decal/bot_red, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kke" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -36233,11 +36206,6 @@ /obj/machinery/power/port_gen/pacman/pre_loaded, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kkA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/disposal) "kkB" = ( /obj/machinery/light/small/directional/south, /obj/structure/closet/secure_closet/brig{ @@ -36377,15 +36345,6 @@ }, /turf/open/floor/iron/white, /area/mine/laborcamp) -"kmC" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Public Mining Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/textured, -/area/station/commons/storage/mining) "kmG" = ( /obj/machinery/defibrillator_mount/directional/north, /obj/effect/turf_decal/tile/blue/full, @@ -36413,7 +36372,7 @@ /obj/machinery/door/airlock/engineering{ name = "Utilities Room" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -36670,21 +36629,17 @@ /turf/open/floor/plating, /area/mine/eva/lower) "krv" = ( -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -40 +/obj/structure/sign/directions/command{ + pixel_y = 10 }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = -32; - pixel_y = -24 +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_y = -10 }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -32; - pixel_y = -32 +/obj/structure/sign/directions/supply{ + dir = 8 }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/central) "kry" = ( /obj/structure/cable, @@ -36795,6 +36750,20 @@ "ksC" = ( /turf/open/floor/iron, /area/station/security/brig/upper) +"ksP" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/entry) "kta" = ( /turf/closed/wall, /area/station/commons/storage/mining) @@ -36823,6 +36792,15 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/aft/greater) +"kth" = ( +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "ktl" = ( /obj/machinery/holopad, /obj/structure/cable, @@ -36947,6 +36925,12 @@ }, /turf/open/floor/plating, /area/station/service/hydroponics) +"kvc" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "kvf" = ( /obj/effect/turf_decal/caution{ dir = 4 @@ -37131,11 +37115,6 @@ dir = 5 }, /area/station/hallway/secondary/entry) -"kyi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/gateway) "kyp" = ( /obj/effect/turf_decal/box/corners, /obj/effect/turf_decal/box/corners{ @@ -37205,6 +37184,21 @@ /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/storage) +"kzh" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/storage) "kzv" = ( /obj/structure/bed, /obj/effect/spawner/random/bedsheet/any, @@ -37364,16 +37358,20 @@ /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"kBl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) +"kBy" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "kBL" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -37413,7 +37411,8 @@ /obj/machinery/firealarm/directional/west, /obj/machinery/light/small/directional/west, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/service/library) @@ -37493,7 +37492,7 @@ /area/station/construction) "kCV" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "kDa" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/structure/table, @@ -37563,6 +37562,14 @@ }, /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) +"kEa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/locker) "kEj" = ( /obj/machinery/computer/libraryconsole/bookmanagement, /obj/structure/table, @@ -37662,9 +37669,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/command/heads_quarters/hop) "kGc" = ( @@ -37779,13 +37784,6 @@ /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/stone, /area/mine/eva/lower) -"kHl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) "kHn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/firealarm/directional/south, @@ -37845,7 +37843,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "kIh" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -37929,6 +37927,13 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/starboard/upper) +"kJd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/heads_quarters/hop) "kJe" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance" @@ -38133,6 +38138,12 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/station/maintenance/department/chapel) +"kMX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "kMY" = ( /obj/effect/turf_decal/siding/yellow{ dir = 6 @@ -38326,7 +38337,7 @@ }, /obj/effect/turf_decal/tile/dark_green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kPg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38437,7 +38448,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kQE" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -38482,6 +38493,11 @@ /obj/structure/bookcase, /turf/open/floor/iron, /area/mine/laborcamp) +"kRp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) "kRw" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/atmos_control/nocontrol/incinerator{ @@ -38504,16 +38520,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/robotics/mechbay) -"kRH" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Chemistry Lab Exit" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/plating, -/area/station/medical/chemistry) "kRJ" = ( /obj/machinery/camera/directional/north{ c_tag = "Atmospherics Distribution Loop" @@ -38557,9 +38563,9 @@ /turf/open/floor/iron, /area/mine/laborcamp/security) "kSw" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/icemoon/underground/explored) +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "kSA" = ( /obj/machinery/mining_weather_monitor/directional/east, /turf/open/floor/iron/grimy, @@ -38590,6 +38596,17 @@ }, /turf/open/floor/plating, /area/station/engineering/supermatter) +"kSR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) "kSU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -38601,6 +38618,13 @@ dir = 1 }, /area/station/service/chapel/office) +"kTy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "kTz" = ( /turf/open/floor/iron/smooth_half, /area/station/security/brig/upper) @@ -38638,7 +38662,7 @@ "kUn" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -38691,7 +38715,7 @@ /area/station/cargo/storage) "kUJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/structure/mirror/directional/west, /obj/structure/sign/poster/contraband/random/directional/south, /obj/effect/turf_decal/tile/yellow/opposingcorners, @@ -38741,14 +38765,13 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"kVA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/mining_weather_monitor/directional/north, -/turf/open/floor/iron/large, -/area/station/hallway/secondary/entry) +"kVD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/storage) "kVF" = ( /obj/structure/closet/secure_closet/courtroom, /obj/item/gavelhammer, @@ -38791,6 +38814,11 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/aft) +"kVY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/cargo/miningdock) "kWh" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark/smooth_large, @@ -39021,7 +39049,6 @@ /turf/open/floor/iron, /area/mine/laborcamp) "kYF" = ( -/obj/structure/light_construct/directional/west, /mob/living/basic/goose/vomit, /turf/open/floor/wood, /area/station/maintenance/port/aft) @@ -39047,15 +39074,6 @@ }, /turf/open/floor/iron/dark, /area/station/commons/storage/mining) -"kYS" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Public Mining Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/navigate_destination, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/textured, -/area/station/commons/storage/mining) "kZa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39108,12 +39126,6 @@ "kZu" = ( /turf/closed/wall, /area/mine/production) -"kZC" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) "kZI" = ( /obj/structure/rack, /obj/effect/spawner/random/contraband/permabrig_weapon, @@ -39134,18 +39146,7 @@ req_access = list("armory") }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"laf" = ( -/obj/structure/cable, -/obj/structure/chair{ - dir = 1 - }, -/obj/item/storage/fancy/cigarettes, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) +/area/station/security/armory) "lah" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39251,6 +39252,12 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/station/command/heads_quarters/qm) +"lbj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) "lbk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -39339,9 +39346,9 @@ /area/station/maintenance/disposal/incinerator) "ldw" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "ldz" = ( @@ -39373,13 +39380,6 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/white, /area/station/medical/chemistry) -"ldV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "lec" = ( /obj/structure/railing{ dir = 4 @@ -39442,6 +39442,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) +"lfd" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "lfo" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -39831,12 +39838,6 @@ dir = 1 }, /area/station/security/office) -"lke" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) "lkj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39868,8 +39869,6 @@ }, /obj/item/storage/box/rxglasses, /obj/item/hand_labeler, -/obj/item/gun/syringe, -/obj/item/gun/syringe, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, @@ -39888,6 +39887,9 @@ "lli" = ( /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"llm" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/eva) "lln" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -39897,11 +39899,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"llw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "llD" = ( /obj/structure/table/wood, /obj/item/paper_bin/carbon, @@ -40089,12 +40086,19 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "lom" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/stone, /area/station/commons/lounge) +"lon" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/eva) "loy" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted, /obj/machinery/button/door/directional/east{ @@ -40118,6 +40122,20 @@ /obj/structure/statue/snow/snowman, /turf/open/misc/asteroid/snow/standard_air, /area/station/science/cytology) +"loP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/prison/workout) +"loQ" = ( +/obj/structure/table, +/obj/item/papercutter{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/heads_quarters/hop) "loT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40238,18 +40256,10 @@ /obj/item/rcl/pre_loaded, /turf/open/floor/iron, /area/station/command/heads_quarters/ce) -"lqj" = ( -/obj/structure/chair/pew/right{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "lqz" = ( /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lqA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -40355,6 +40365,13 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/iron/showroomfloor, /area/station/security/prison/work) +"lrO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/science/explab) "lrY" = ( /obj/machinery/space_heater, /obj/machinery/light/small/directional/east, @@ -40390,6 +40407,13 @@ "lso" = ( /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"lst" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/morgue) "lsA" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -40421,7 +40445,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "ltk" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -40455,15 +40479,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/commons/fitness) -"ltW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) "ltY" = ( /obj/machinery/camera/directional/north{ c_tag = "Central Hallway North-East" @@ -40537,10 +40552,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"lva" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/xenobiology) "lvb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -40723,16 +40734,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/textured, /area/mine/mechbay) -"lxb" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) "lxc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -40751,7 +40752,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lxu" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ dir = 4 @@ -40763,16 +40764,6 @@ /obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/station/maintenance/starboard/upper) -"lxT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva) "lxU" = ( /obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ dir = 8 @@ -40793,7 +40784,7 @@ /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lyg" = ( /turf/closed/wall/r_wall, /area/station/security/brig) @@ -40818,14 +40809,12 @@ /obj/machinery/computer/gateway_control, /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/command/gateway) "lyG" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "lyH" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, @@ -41141,18 +41130,16 @@ /area/station/engineering/lobby) "lCI" = ( /obj/effect/spawner/random/vending/snackvend, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/command/meeting_room) "lCV" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -41180,22 +41167,19 @@ /turf/open/floor/plating, /area/station/maintenance/port/aft) "lDo" = ( -/obj/structure/sign/directions/medical{ +/obj/structure/sign/directions/evac{ dir = 4; - pixel_x = 32; - pixel_y = -24 + pixel_y = -10 }, -/obj/structure/sign/directions/science{ +/obj/structure/sign/directions/medical{ dir = 4; - pixel_x = 32; - pixel_y = -32 + pixel_y = 10 }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 +/obj/structure/sign/directions/security{ + dir = 1 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/maintenance/fore) "lDq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -41261,7 +41245,7 @@ req_access = list("ai_upload") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lEj" = ( /turf/open/floor/iron/dark/textured, /area/station/security/processing) @@ -41281,7 +41265,7 @@ /obj/machinery/door/airlock/research{ name = "Ordnance Launch Room" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/science/ordnance/testlab) @@ -41370,16 +41354,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"lFA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal) "lFG" = ( /obj/machinery/door/airlock/engineering{ name = "Starboard Bow Solar Access" @@ -41492,23 +41466,11 @@ /obj/machinery/button/door{ id = "Interrogation"; name = "Interrogation Shutters"; - pixel_x = -22 + pixel_x = -22; + dir = 8 }, /turf/open/floor/iron/dark/textured, /area/station/security/interrogation) -"lGL" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals Hallway South" - }, -/obj/machinery/newscaster/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) "lGN" = ( /obj/effect/landmark/start/botanist, /obj/structure/chair/office/light, @@ -41627,7 +41589,7 @@ /area/mine/eva/lower) "lIW" = ( /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lJc" = ( /obj/machinery/hydroponics/soil/rich, /turf/open/floor/grass, @@ -41676,7 +41638,7 @@ "lKs" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -41725,13 +41687,20 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lLm" = ( /turf/open/floor/iron/cafeteria, /area/station/maintenance/port/aft) +"lLr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/command/meeting_room) "lLA" = ( /obj/structure/sign/warning/fire{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/openspace/icemoon, /area/icemoon/underground/explored) @@ -41754,6 +41723,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/recharge_floor, /area/mine/mechbay) +"lLZ" = ( +/obj/machinery/light_switch/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "lMa" = ( /obj/item/trash/pistachios, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -41806,7 +41783,7 @@ }, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lNi" = ( /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, @@ -41841,7 +41818,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lNG" = ( /obj/machinery/door/airlock/security/glass{ name = "Security Office" @@ -41897,6 +41874,10 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/mix) +"lOp" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "lOr" = ( /obj/structure/railing, /obj/structure/stairs/east, @@ -41982,7 +41963,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "lPh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -42045,7 +42026,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lPK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42176,12 +42157,6 @@ /obj/machinery/teleport/station, /turf/open/floor/plating, /area/station/command/teleporter) -"lRg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) "lRj" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -42204,7 +42179,7 @@ "lRx" = ( /obj/effect/turf_decal/tile/dark_green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lRy" = ( /obj/structure/showcase/cyborg/old{ dir = 8; @@ -42217,7 +42192,7 @@ }, /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lRD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -42282,7 +42257,7 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "lRZ" = ( @@ -42343,13 +42318,13 @@ id_tag = "MedbayFoyer"; name = "Medbay" }, -/obj/effect/mapping_helpers/airlock/unres, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/full, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/large, /area/station/medical/medbay/lobby) "lUf" = ( @@ -42396,7 +42371,7 @@ dir = 1 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lVk" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end{ dir = 1 @@ -42423,6 +42398,12 @@ "lVt" = ( /obj/machinery/firealarm/directional/west, /obj/machinery/light/floor, +/obj/machinery/button/door/directional/west{ + pixel_x = -22; + id = "xenobia10"; + name = "Xenobio Pen 10 Blast DOors"; + req_access = list("xenobiology") + }, /turf/open/floor/iron/white, /area/station/science/xenobiology) "lVu" = ( @@ -42781,7 +42762,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -42824,7 +42805,7 @@ name = "Fitness Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -42912,12 +42893,6 @@ /obj/structure/closet/crate/mod, /turf/open/floor/iron/white, /area/station/science/robotics/lab) -"mdo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/work) "mdy" = ( /obj/machinery/camera/directional/south{ c_tag = "Morgue Hallway" @@ -42955,7 +42930,7 @@ /obj/item/clothing/gloves/color/grey/protects_cold, /obj/item/clothing/mask/gas, /turf/open/floor/iron/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mdX" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -42991,7 +42966,7 @@ /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "meH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43046,7 +43021,7 @@ /area/mine/eva/lower) "mfD" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "mfH" = ( /turf/closed/wall/r_wall, /area/station/security/brig/upper) @@ -43159,13 +43134,13 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "mhb" = ( /obj/effect/turf_decal/trimline/dark/warning{ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mhx" = ( /obj/effect/turf_decal/bot, /obj/effect/landmark/secequipment, @@ -43236,6 +43211,14 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/engine/n2o, /area/station/engineering/atmos) +"mjA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "mjH" = ( /obj/structure/table/optable, /obj/machinery/newscaster/directional/east, @@ -43283,12 +43266,6 @@ /obj/item/clothing/head/costume/fancy, /turf/open/floor/iron/dark/textured, /area/station/security/prison) -"mkn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "mku" = ( /obj/effect/spawner/random/structure/grille, /obj/effect/decal/cleanable/glass, @@ -43337,7 +43314,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mly" = ( /obj/structure/sign/warning/electric_shock/directional/north, /turf/open/floor/iron/recharge_floor, @@ -43599,6 +43576,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/prison/mess) +"mpx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/science/research) "mpH" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -43612,9 +43597,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/maintenance/port/greater) "mqd" = ( @@ -43723,6 +43705,12 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) +"mrW" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/cargo/office) "msb" = ( /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, @@ -43787,13 +43775,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /turf/closed/wall/r_wall, /area/station/maintenance/disposal/incinerator) -"msP" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "msT" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/machinery/atmospherics/components/binary/valve/digital/on{ @@ -43906,19 +43887,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/disposal) -"mue" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) "muv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/directional/west, @@ -43969,7 +43937,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mvG" = ( /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ dir = 8 @@ -44003,7 +43971,7 @@ dir = 5 }, /turf/open/floor/plating/snowed/icemoon, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mwp" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 4 @@ -44025,6 +43993,12 @@ }, /turf/open/floor/plating, /area/station/medical/pharmacy) +"mwP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/command/gateway) "mwQ" = ( /obj/structure/tank_holder/extinguisher, /turf/open/floor/plating, @@ -44045,11 +44019,6 @@ /obj/machinery/digital_clock/directional/north, /turf/open/floor/iron, /area/station/commons/locker) -"mxD" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) "mxF" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/white/line{ @@ -44069,17 +44038,6 @@ /obj/machinery/camera/directional/north{ c_tag = "Central Hallway North" }, -/obj/structure/sign/directions/supply{ - dir = 8; - pixel_y = 32 - }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/sign/directions/command{ - pixel_y = 40 - }, /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 1 }, @@ -44121,7 +44079,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/open/floor/plating, @@ -44155,7 +44113,7 @@ "myP" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -44168,11 +44126,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/security/prison/safe) -"myR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) "myW" = ( /obj/structure/ore_box, /turf/open/floor/plating/snowed/smoothed/icemoon, @@ -44282,19 +44235,10 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "mzZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/hallway"; - name = "Chamber Hallway Turret Control"; - pixel_x = 32; - pixel_y = -24; - req_access = list("minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/light_construct/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) "mAc" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Maintenance" @@ -44308,6 +44252,16 @@ "mAe" = ( /turf/open/floor/glass/reinforced, /area/station/security/lockers) +"mAh" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/side, +/area/mine/living_quarters) "mAn" = ( /obj/effect/spawner/random/trash, /obj/structure/grille/broken, @@ -44469,7 +44423,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mCx" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/south, @@ -44528,6 +44482,17 @@ /obj/item/stamp/head/ce, /turf/open/floor/iron, /area/station/command/heads_quarters/ce) +"mDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness) "mDX" = ( /turf/open/floor/engine/n2, /area/station/engineering/atmos) @@ -44546,7 +44511,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "mEv" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -44574,7 +44539,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mEz" = ( /obj/structure/sign/poster/contraband/random/directional/east, /obj/effect/decal/cleanable/dirt, @@ -44585,12 +44550,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/security/warden) -"mEI" = ( -/obj/structure/railing/corner/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "mEJ" = ( /turf/closed/wall/r_wall, /area/station/science/genetics) @@ -44726,14 +44685,8 @@ /area/icemoon/surface/outdoors/nospawn) "mGg" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/obj/machinery/firealarm/directional/south{ - pixel_x = -30 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/turf/closed/wall, +/area/station/science/xenobiology) "mGs" = ( /obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, /obj/structure/cable, @@ -44762,11 +44715,6 @@ /obj/structure/stairs/north, /turf/open/floor/iron/stairs/medium, /area/station/cargo/storage) -"mGJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/mine/eva) "mGO" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 @@ -44800,6 +44748,13 @@ /obj/machinery/brm, /turf/open/floor/iron, /area/mine/production) +"mHn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/command/gateway) "mHq" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -44887,18 +44842,12 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"mIH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "mII" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Delivery Access" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -45169,7 +45118,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mNP" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, @@ -45209,6 +45158,17 @@ }, /turf/open/floor/iron, /area/station/cargo/office) +"mOF" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "mOL" = ( /obj/machinery/airalarm/directional/south, /obj/structure/disposalpipe/segment{ @@ -45375,7 +45335,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "mRU" = ( /obj/effect/decal/cleanable/insectguts, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -45415,16 +45375,12 @@ /turf/open/floor/plating, /area/station/cargo/storage) "mSQ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/ice, -/area/icemoon/surface/outdoors/nospawn) -"mSX" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/cold_temp/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) +/obj/structure/fence{ + dir = 2 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "mSY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/sign/warning/secure_area/directional/north, @@ -45461,18 +45417,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"mUe" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) "mUh" = ( /obj/effect/spawner/random/structure/closet_private, /turf/open/floor/plating, @@ -45494,6 +45438,11 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"mUR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/cargo/miningdock) "mVi" = ( /obj/structure/railing{ dir = 4 @@ -45508,7 +45457,7 @@ "mVp" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mVw" = ( /obj/machinery/requests_console/directional/west{ department = "Captain's Desk"; @@ -45530,7 +45479,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -45554,12 +45503,12 @@ }, /obj/structure/cable, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "mWf" = ( @@ -45600,8 +45549,14 @@ /obj/structure/sign/warning/secure_area/directional/east, /obj/effect/turf_decal/tile/blue, /obj/machinery/light/small/directional/east, +/obj/machinery/turretid{ + control_area = "/area/station/ai/satellite/hallway"; + name = "Chamber Hallway Turret Control"; + pixel_y = -24; + req_access = list("minisat") + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mWz" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/plating, @@ -45653,6 +45608,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"mWW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/cryo) "mWY" = ( /obj/structure/chair/office, /obj/effect/turf_decal/tile/red/half/contrasted, @@ -45685,7 +45644,7 @@ /obj/structure/cable/layer3, /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mXl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/directional/east{ @@ -45721,7 +45680,7 @@ /area/station/hallway/secondary/entry) "mYh" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mYi" = ( /obj/machinery/door/airlock/medical/glass{ name = "Infirmary" @@ -45780,15 +45739,14 @@ "mYA" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/item/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "mYG" = ( /obj/effect/turf_decal/bot, /obj/structure/noticeboard/hop{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -45830,7 +45788,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron/white, /area/station/maintenance/port/fore) "mZG" = ( @@ -45864,12 +45822,6 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron, /area/mine/laborcamp) -"mZK" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness) "mZT" = ( /obj/structure/table/wood, /obj/item/cigarette/cigar{ @@ -45886,17 +45838,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"naq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) "nav" = ( /obj/machinery/firealarm/directional/north, /obj/structure/cable, @@ -45995,9 +45936,7 @@ "nbz" = ( /obj/structure/chair/wood, /obj/effect/mapping_helpers/no_atoms_ontop, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) "nbB" = ( @@ -46101,11 +46040,10 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/structure/sign/poster/official/safety_internals/directional/north, /turf/open/floor/iron/dark/smooth_edge{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nci" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46194,13 +46132,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/command/heads_quarters/qm) -"ndl" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal) "ndv" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/machinery/light/warm/directional/north, @@ -46498,6 +46429,14 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron/grimy, /area/station/maintenance/aft/greater) +"nhS" = ( +/obj/machinery/door/window/right/directional/north{ + name = "Bridge Delivery"; + req_access = list("command") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/maintenance/central/greater) "nhT" = ( /obj/machinery/door/airlock/external{ glass = 1; @@ -46678,6 +46617,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/vault, /area/station/security/prison/rec) +"nli" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/mine/eva) "nlp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46787,6 +46738,13 @@ /obj/effect/spawner/random/contraband/cannabis, /turf/open/floor/grass, /area/station/security/prison/garden) +"nmw" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "nmx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46841,6 +46799,13 @@ /obj/effect/landmark/navigate_destination/library, /turf/open/floor/wood, /area/station/service/library) +"nmX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/breakroom) "nnj" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -46947,11 +46912,6 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"noR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) "noT" = ( /obj/effect/spawner/random/trash/bin, /obj/effect/decal/cleanable/dirt, @@ -46960,13 +46920,6 @@ }, /turf/open/floor/plating, /area/station/commons/storage/mining) -"noW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) "noX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, @@ -47035,7 +46988,7 @@ }, /obj/item/clothing/mask/breath, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "npx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -47043,14 +46996,6 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/white, /area/station/maintenance/port/fore) -"npy" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/blue, -/area/station/hallway/secondary/entry) "npB" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -47126,14 +47071,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/storage/mining) -"nqD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/hallway/secondary/entry) "nqP" = ( /obj/machinery/camera/directional/north{ c_tag = "Research Division West"; @@ -47368,11 +47305,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"nup" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) "nuD" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -47389,9 +47321,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/firealarm/directional/west{ - pixel_y = 30 - }, /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, @@ -47414,12 +47343,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) -"nvs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) "nvx" = ( /obj/machinery/airalarm/directional/east, /obj/effect/landmark/event_spawn, @@ -47468,14 +47391,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/security/prison/work) -"nvI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) "nvU" = ( /obj/effect/mapping_helpers/airlock/access/all/command/eva, /obj/machinery/door/airlock/external{ @@ -47527,9 +47442,7 @@ /turf/open/floor/iron/dark, /area/station/service/hydroponics) "nwD" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/less_spawns) "nwF" = ( @@ -47564,6 +47477,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating, /area/station/commons/storage/mining) "nxm" = ( @@ -47751,11 +47665,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"nzs" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) "nzy" = ( /obj/machinery/computer/atmos_control/mix_tank{ dir = 8 @@ -47777,7 +47686,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nzG" = ( /obj/structure/railing{ dir = 10 @@ -47847,7 +47756,8 @@ }, /obj/machinery/light/directional/north, /obj/structure/noticeboard/ce{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/engineering/main) @@ -47934,7 +47844,7 @@ name = "Common Channel" }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nBt" = ( /obj/effect/turf_decal/siding/white{ dir = 8 @@ -48246,7 +48156,7 @@ /obj/structure/cable/layer3, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nFn" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -48382,7 +48292,7 @@ }, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "nGU" = ( /obj/structure/closet/secure_closet/security/sec, /obj/machinery/airalarm/directional/north, @@ -48666,9 +48576,7 @@ /turf/open/openspace, /area/station/science/research) "nLB" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) "nLD" = ( @@ -48755,11 +48663,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"nMA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) "nME" = ( /obj/item/clothing/head/utility/hardhat, /obj/effect/turf_decal/weather/snow/corner{ @@ -48798,7 +48701,8 @@ "nMT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/service/library) @@ -48866,6 +48770,18 @@ /obj/structure/railing/corner, /turf/open/floor/iron, /area/station/cargo/storage) +"nNA" = ( +/obj/structure/cable, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "nNB" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 @@ -48876,7 +48792,7 @@ "nNM" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -48910,22 +48826,11 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"nOh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) "nOj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/noticeboard/staff{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -49291,7 +49196,7 @@ /obj/machinery/status_display/evac/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nSH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49380,9 +49285,7 @@ /area/station/security/checkpoint/medical) "nTX" = ( /obj/structure/flora/grass/both/style_random, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/less_spawns) "nUg" = ( @@ -49408,7 +49311,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_half, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nUJ" = ( /obj/machinery/flasher/directional/east{ id = "brigentry" @@ -49466,7 +49369,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nVC" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/white, @@ -49484,6 +49387,18 @@ /obj/structure/plasticflaps/kitchen, /turf/open/floor/plating, /area/station/service/kitchen/coldroom) +"nVM" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/entertainment/deck{ + pixel_x = -2; + pixel_y = 15 + }, +/obj/effect/spawner/random/food_or_drink/snack{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/carpet/blue, +/area/station/hallway/secondary/entry) "nVR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/cafeteria{ @@ -49498,6 +49413,13 @@ /obj/item/plate, /turf/open/floor/iron/checker, /area/station/maintenance/port/fore) +"nWj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/breakroom) "nWn" = ( /obj/structure/tank_holder/extinguisher, /obj/effect/mapping_helpers/burnt_floor, @@ -49532,14 +49454,6 @@ /obj/machinery/holopad, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"nWM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/mining_weather_monitor/directional/north, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) "nXb" = ( /turf/closed/wall, /area/icemoon/surface/outdoors/nospawn) @@ -49658,6 +49572,12 @@ /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"nZw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "nZC" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -49681,14 +49601,14 @@ }, /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "nZU" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting Equipment" }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49984,10 +49904,6 @@ /obj/structure/railing, /turf/open/openspace, /area/station/service/kitchen/coldroom) -"odN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) "odR" = ( /turf/open/floor/iron/white/corner{ dir = 4 @@ -50156,12 +50072,12 @@ /obj/effect/mapping_helpers/airlock/access/all/command/eva, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ogF" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ogL" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -50249,9 +50165,10 @@ /turf/open/floor/iron, /area/mine/laborcamp) "oif" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/icemoon/underground/explored) +/obj/effect/gibspawner/human/bodypartless, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "oih" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -50279,7 +50196,7 @@ /area/station/medical/treatment_center) "oiy" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "oiz" = ( /obj/structure/urinal/directional/north, /turf/open/floor/iron/freezer, @@ -50429,7 +50346,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "okb" = ( /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, @@ -50499,6 +50416,11 @@ }, /turf/open/lava/plasma/ice_moon, /area/icemoon/underground/explored) +"okM" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "okU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -50536,12 +50458,10 @@ /turf/open/floor/wood, /area/station/maintenance/aft/greater) "olQ" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/dim/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "olR" = ( /obj/structure/rack, /obj/item/wrench, @@ -50593,11 +50513,6 @@ "omk" = ( /turf/open/floor/glass/reinforced, /area/station/security/office) -"omo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/cryo) "omG" = ( /obj/structure/table, /obj/item/flashlight/lamp, @@ -50621,6 +50536,12 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/vault, /area/station/security/prison/rec) +"omL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) "omP" = ( /obj/machinery/door/airlock{ name = "Cleaning Closet" @@ -50901,7 +50822,7 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oqc" = ( /obj/effect/turf_decal/trimline/dark_green/arrow_ccw{ dir = 4 @@ -50922,7 +50843,7 @@ }, /obj/effect/turf_decal/tile/dark_green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oqC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51004,15 +50925,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/hallway/secondary/entry) -"orv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "orE" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/beaker/large{ @@ -51026,9 +50938,6 @@ }, /area/station/medical/chem_storage) "orG" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/table, /obj/item/assembly/igniter{ pixel_y = 4; @@ -51042,11 +50951,12 @@ /obj/effect/turf_decal/siding/dark_blue/corner{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) "orK" = ( /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "orS" = ( /obj/effect/turf_decal/stripes/asteroid/line{ dir = 10 @@ -51085,7 +50995,7 @@ "osm" = ( /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "osn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -51107,7 +51017,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "osI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, @@ -51130,7 +51040,7 @@ }, /obj/structure/sign/warning/cold_temp/directional/south, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "otf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51250,7 +51160,7 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/effect/mapping_helpers/airlock/abandoned, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -51371,12 +51281,6 @@ /obj/machinery/light/cold/directional/west, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"owv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/basic/lizard/wags_his_tail, -/turf/open/floor/iron, -/area/station/service/janitor) "owC" = ( /turf/closed/wall/r_wall, /area/station/science/server) @@ -51413,7 +51317,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -51546,7 +51450,7 @@ /area/icemoon/underground/explored) "oyW" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "oyX" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, /obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ @@ -51569,7 +51473,7 @@ /obj/item/folder/white, /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ozk" = ( /obj/machinery/door/airlock{ name = "Unisex Showers" @@ -51760,7 +51664,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oBg" = ( /obj/structure/table/wood, /obj/item/book/bible, @@ -52035,11 +51939,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/commons/dorms/laundry) -"oEh" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) "oEj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -52059,7 +51958,7 @@ /obj/structure/cable/layer3, /obj/machinery/requests_console/auto_name/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oEt" = ( /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, @@ -52156,7 +52055,7 @@ /obj/machinery/airalarm/directional/south, /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oFG" = ( /obj/machinery/door/airlock/mining/glass{ name = "Drone Bay" @@ -52524,7 +52423,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oJT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/window/reinforced/spawner/directional/south, @@ -52665,7 +52564,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oLK" = ( /obj/machinery/air_sensor/mix_tank, /turf/open/floor/engine/vacuum, @@ -52688,14 +52587,6 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"oMq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) "oMs" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/iron/grimy, @@ -52720,7 +52611,7 @@ /obj/effect/turf_decal/delivery/red, /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "oMT" = ( /turf/open/floor/iron, /area/station/command/heads_quarters/rd) @@ -52831,14 +52722,27 @@ dir = 8 }, /area/station/hallway/secondary/entry) -"oOQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"oOR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/science/research) +"oPb" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron/dark/side, -/area/mine/eva) +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/side, +/area/mine/living_quarters) "oPl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52860,6 +52764,12 @@ /obj/item/soap/nanotrasen, /turf/open/floor/iron/dark, /area/station/security/execution/education) +"oPr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side, +/area/mine/eva) "oPt" = ( /obj/structure/stairs/east, /turf/open/floor/iron/stairs/medium{ @@ -52882,7 +52792,7 @@ /area/station/maintenance/starboard/lesser) "oPI" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oPO" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -52940,6 +52850,14 @@ "oQY" = ( /turf/open/floor/iron/white, /area/station/medical/virology) +"oRf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) "oRk" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -53005,7 +52923,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oSa" = ( /obj/machinery/door/airlock/public/glass{ id_tag = "gulag3"; @@ -53080,16 +52998,6 @@ /obj/structure/flora/grass/green/style_random, /turf/open/misc/asteroid/snow/standard_air, /area/station/hallway/secondary/exit/departure_lounge) -"oTc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) "oTd" = ( /obj/machinery/camera/directional/south{ c_tag = "Research Division Testing Lab - Chamber"; @@ -53206,6 +53114,10 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/freezer, /area/station/commons/toilet) +"oUY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) "oVt" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -53237,7 +53149,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oVG" = ( /obj/machinery/door/airlock/public/glass{ name = "Art Storage" @@ -53345,7 +53257,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oXm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/burnt_floor, @@ -53452,14 +53364,9 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oYD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/button/door/directional/east{ - id = "xenobio11"; - name = "Xenobio Pen 11 Blast DOors"; - req_access = list("xenobiology") - }, /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/xenobiology) @@ -53608,7 +53515,7 @@ /area/station/engineering/atmos/hfr_room) "pbs" = ( /turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "pby" = ( /obj/effect/gibspawner/human, /turf/open/misc/asteroid/snow/icemoon, @@ -53720,14 +53627,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/commons/dorms) -"pcB" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) "pcI" = ( /obj/machinery/firealarm/directional/west, /obj/machinery/light/directional/south, @@ -53820,7 +53719,7 @@ "pdK" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "pdO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /turf/open/floor/engine, @@ -53995,17 +53894,6 @@ dir = 8 }, /area/station/hallway/secondary/entry) -"pgw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/requests_console/directional/south{ - department = "Bridge"; - name = "Bridge Requests Console" - }, -/obj/effect/mapping_helpers/requests_console/announcement, -/obj/effect/mapping_helpers/requests_console/information, -/obj/effect/mapping_helpers/requests_console/assistance, -/turf/open/floor/wood, -/area/station/command/meeting_room) "pgE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -54025,7 +53913,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pgN" = ( /obj/item/organ/tail/monkey, /obj/effect/decal/cleanable/blood/splatter, @@ -54061,6 +53949,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/maintenance/port/aft) +"phn" = ( +/obj/structure/window/spawner/directional/south, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/structure/railing/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "phr" = ( /obj/machinery/door/airlock/hydroponics/glass{ name = "Hydroponics" @@ -54120,6 +54016,13 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"phM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) "phS" = ( /obj/structure/table/reinforced, /obj/item/hfr_box/body/fuel_input, @@ -54138,14 +54041,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"pig" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) +/area/station/command/vault) "pii" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -54204,11 +54100,6 @@ dir = 1 }, /area/station/security/brig) -"piP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) "piT" = ( /obj/machinery/status_display/ai/directional/east, /obj/structure/chair/sofa/left/brown, @@ -54550,7 +54441,7 @@ /area/station/science/explab) "pnR" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pnU" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plating, @@ -54581,7 +54472,7 @@ }, /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pou" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, @@ -54648,19 +54539,6 @@ dir = 4 }, /area/station/security/brig/entrance) -"ppo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ppp" = ( -/obj/structure/railing, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "ppq" = ( /obj/structure/closet/wardrobe/grey{ anchored = 1 @@ -54675,7 +54553,7 @@ /turf/open/floor/iron, /area/station/cargo/drone_bay) "ppz" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 1 }, /turf/open/floor/iron/white/corner{ @@ -54768,15 +54646,6 @@ "prg" = ( /turf/open/floor/wood, /area/station/service/library) -"prh" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "prs" = ( /obj/docking_port/stationary{ dir = 8; @@ -54932,13 +54801,14 @@ /area/station/maintenance/aft/greater) "ptS" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/service/library) "ptY" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "pua" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron, @@ -55021,6 +54891,13 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"puQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/science/breakroom) "puX" = ( /obj/structure/table, /obj/item/stock_parts/scanning_module{ @@ -55120,11 +54997,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"pvB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "pvE" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -55304,7 +55176,7 @@ pixel_y = -13 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pyn" = ( /obj/item/storage/photo_album/chapel, /obj/structure/noticeboard/directional/west, @@ -55355,7 +55227,7 @@ }, /obj/effect/spawner/random/armory/e_gun, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "pyI" = ( /obj/machinery/door/airlock/engineering{ name = "Port Quarter Solar Access" @@ -55395,7 +55267,7 @@ "pza" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "pzb" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, @@ -55510,14 +55382,6 @@ /obj/machinery/light/small/dim/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/department/medical/central) -"pAT" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/production) "pAX" = ( /obj/structure/chair/plastic{ dir = 8 @@ -55603,7 +55467,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/button/flasher{ id = "visitorflash"; - pixel_y = -26 + pixel_y = -26; + pixel_x = -7 + }, +/obj/machinery/button/door/directional/south{ + pixel_x = 7; + pixel_y = -26; + name = "Visitation Shutters Control"; + id = "visitation"; + req_access = list("brig") }, /turf/open/floor/iron, /area/station/security/prison/visit) @@ -55953,13 +55825,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/mine/living_quarters) -"pHR" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) "pHW" = ( /obj/machinery/atmospherics/components/tank, /obj/effect/turf_decal/stripes/line{ @@ -56058,6 +55923,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"pJE" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "pJQ" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/preopen{ @@ -56190,13 +56062,6 @@ dir = 8 }, /area/station/hallway/secondary/entry) -"pLr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark/smooth_large, -/area/station/science/breakroom) "pLt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56357,6 +56222,14 @@ }, /turf/open/floor/iron/large, /area/station/commons/storage/tools) +"pNN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "pNO" = ( /obj/machinery/duct, /obj/structure/disposalpipe/segment, @@ -56373,7 +56246,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, @@ -56429,32 +56302,12 @@ dir = 4 }, /area/station/service/hydroponics) -"pPh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"pPl" = ( -/obj/item/stack/ore/silver, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) "pPy" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 4 }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"pPA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) "pPB" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -56473,7 +56326,7 @@ "pPK" = ( /obj/structure/stairs/east, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pPN" = ( /obj/machinery/porta_turret/ai{ dir = 8 @@ -56482,7 +56335,7 @@ dir = 10 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pPO" = ( /obj/effect/turf_decal/trimline/blue/filled/warning, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -56499,6 +56352,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/iron, /area/station/tcommsat/computer) "pPT" = ( @@ -56649,7 +56503,7 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pSy" = ( /obj/machinery/modular_computer/preset/curator{ dir = 8 @@ -56673,6 +56527,10 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, /area/station/security/prison/garden) +"pSE" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/security/prison/visit) "pSF" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -56843,7 +56701,7 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -56856,6 +56714,12 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron, /area/station/command/bridge) +"pVr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) "pVv" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -57041,10 +56905,6 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"pXZ" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/visit) "pYa" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -57075,16 +56935,6 @@ dir = 4 }, /area/station/service/chapel) -"pYB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) "pYK" = ( /obj/machinery/door/airlock/external{ glass = 1; @@ -57155,14 +57005,12 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, /area/station/engineering/storage) -"pZN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +"pZM" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 1 }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) +/turf/open/floor/iron/smooth_half, +/area/station/security/brig/upper) "pZS" = ( /obj/structure/railing{ dir = 4 @@ -57396,6 +57244,12 @@ "qck" = ( /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) +"qct" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron, +/area/station/cargo/miningdock) "qcu" = ( /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, @@ -57468,7 +57322,7 @@ c_tag = "EVA Secure Storage" }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qdF" = ( /obj/machinery/vending/wardrobe/sec_wardrobe, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -57552,6 +57406,15 @@ dir = 4 }, /area/station/hallway/secondary/entry) +"qeK" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "qeL" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -57574,16 +57437,6 @@ }, /turf/open/openspace, /area/station/science/xenobiology) -"qeR" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) "qeW" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -57736,17 +57589,18 @@ }, /mob/living/basic/bot/cleanbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "qhi" = ( /obj/machinery/light/small/directional/east, /obj/effect/spawner/random/trash/mopbucket, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) -"qhL" = ( +"qhy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/white, -/area/station/science/xenobiology) +/area/station/science/research) "qhN" = ( /turf/open/floor/iron/white, /area/station/medical/medbay/aft) @@ -57959,12 +57813,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/virology) -"qkH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/science/explab) "qkI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner/end{ @@ -58106,13 +57954,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"qmN" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/structure/flora/grass/both/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/less_spawns) "qmU" = ( /obj/machinery/duct, /obj/structure/cable, @@ -58180,7 +58021,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qnV" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency{ @@ -58351,12 +58192,10 @@ /turf/open/floor/wood, /area/station/command/meeting_room) "qpU" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/station/commons/storage/mining) "qpZ" = ( @@ -58509,13 +58348,6 @@ /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/large, /area/station/medical/treatment_center) -"qtd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/railing, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "qtj" = ( /turf/closed/wall, /area/station/engineering/storage) @@ -58539,6 +58371,10 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/security/prison/garden) +"qtx" = ( +/mob/living/basic/sloth/paperwork, +/turf/open/floor/iron, +/area/station/cargo/storage) "qtD" = ( /obj/structure/sign/warning/directional/south, /turf/open/misc/asteroid/snow/icemoon, @@ -58670,6 +58506,11 @@ /obj/structure/closet/secure_closet/atmospherics, /turf/open/floor/iron/dark, /area/station/engineering/atmos) +"qvS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark, +/area/mine/eva) "qvW" = ( /obj/structure/table, /obj/item/storage/belt/utility, @@ -58725,7 +58566,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qwo" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty, @@ -59016,6 +58857,19 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"qCb" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/mine/living_quarters) "qCl" = ( /obj/effect/spawner/random/trash/mess, /obj/structure/disposalpipe/segment{ @@ -59067,11 +58921,11 @@ dir = 5 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qCU" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "qDm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -59141,7 +58995,7 @@ "qEa" = ( /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qEj" = ( /obj/structure/table/glass, /obj/item/assembly/igniter, @@ -59257,7 +59111,7 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/science/research) "qFn" = ( @@ -59325,23 +59179,12 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"qFX" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/navigate_destination, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron, -/area/station/service/janitor) "qGg" = ( /obj/structure/rack, /obj/item/pickaxe, @@ -59351,12 +59194,6 @@ /obj/item/gps/mining, /turf/open/floor/iron/smooth, /area/mine/eva) -"qGt" = ( -/obj/structure/sign/warning{ - pixel_y = 32 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) "qGC" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater/on, /obj/machinery/airalarm/directional/east, @@ -59423,19 +59260,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"qHn" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Research Division Break Room"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) "qHt" = ( /obj/structure/chair{ dir = 1 @@ -59531,7 +59355,7 @@ dir = 1 }, /turf/open/floor/iron/textured_half, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qIC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ @@ -59609,21 +59433,6 @@ /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) "qJV" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = 32; - pixel_y = 24 - }, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -59640,6 +59449,15 @@ /obj/effect/mapping_helpers/airlock/access/all/security/brig, /turf/open/floor/plating, /area/station/security/prison/safe) +"qKa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "qKn" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -59669,9 +59487,7 @@ /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "qKs" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/openspace/icemoon/keep_below, /area/icemoon/underground/explored) "qKt" = ( @@ -59821,7 +59637,7 @@ "qMH" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "qML" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/brown, @@ -59983,7 +59799,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "qOD" = ( /obj/effect/turf_decal/caution/stand_clear, /obj/effect/turf_decal/siding/dark_blue, @@ -59995,7 +59811,7 @@ name = "EVA Shutters" }, /turf/open/floor/iron/textured_half, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qOG" = ( /obj/structure/table/wood, /obj/item/plate, @@ -60007,6 +59823,12 @@ /obj/structure/lattice/catwalk, /turf/open/openspace/icemoon, /area/station/science/server) +"qOM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/server) "qOP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60114,11 +59936,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/cmo) -"qPJ" = ( -/obj/structure/cable, -/mob/living/basic/sloth/paperwork, -/turf/open/floor/iron, -/area/station/cargo/storage) "qPL" = ( /turf/closed/wall/r_wall, /area/station/hallway/secondary/exit/departure_lounge) @@ -60222,16 +60039,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"qRs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/meeting_room) "qRv" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 10 }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/less_spawns) +/obj/structure/sign/directions/security{ + dir = 1 + }, +/turf/closed/wall, +/area/station/hallway/primary/starboard) "qRE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -60528,7 +60345,7 @@ }, /obj/item/hand_labeler, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "qVD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -60591,6 +60408,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/science/breakroom) +"qWv" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) "qWy" = ( /obj/machinery/shower/directional/west, /obj/effect/turf_decal/stripes/red/end{ @@ -60673,12 +60504,6 @@ /obj/structure/flora/bush/jungle/c/style_random, /turf/open/floor/grass, /area/station/medical/virology) -"qXU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/service/janitor) "qYb" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ @@ -60717,7 +60542,8 @@ pixel_y = -14 }, /obj/structure/noticeboard/cmo{ - pixel_y = 36 + pixel_y = 36; + dir = 1 }, /turf/open/floor/iron/white/textured, /area/station/medical/medbay/central) @@ -61107,12 +60933,9 @@ /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain) "rdg" = ( -/obj/structure/fence/corner{ - dir = 5 - }, -/obj/structure/sign/warning/secure_area, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/less_spawns) "rdn" = ( /obj/item/radio/intercom/directional/north, /turf/open/floor/iron, @@ -61263,7 +61086,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "rfo" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61367,6 +61190,12 @@ }, /turf/open/floor/plating, /area/station/command/heads_quarters/hos) +"rhg" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) "rhv" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -61515,6 +61344,11 @@ /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"rjV" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) "rkc" = ( /obj/effect/turf_decal/siding/yellow, /obj/effect/turf_decal/siding/yellow{ @@ -61545,9 +61379,7 @@ /obj/machinery/camera/directional/north{ c_tag = "Arrivals Emergency EVA" }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/textured, /area/station/hallway/secondary/entry) "rkl" = ( @@ -61640,13 +61472,6 @@ /obj/structure/railing, /turf/open/openspace/icemoon, /area/icemoon/underground/explored) -"rlt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/railing, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "rlu" = ( /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron/dark, @@ -61677,7 +61502,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rlV" = ( /obj/structure/table/wood, /turf/open/floor/wood, @@ -61730,7 +61555,7 @@ name = "Observatory Access" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -61905,13 +61730,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark/textured, /area/station/engineering/engine_smes) -"rpK" = ( -/obj/structure/chair/pew/left{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "rpM" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, @@ -62153,15 +61971,13 @@ pixel_x = -11; pixel_y = -2 }, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) "rsL" = ( /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "rsM" = ( /obj/structure/bed/maint, /obj/item/toy/plush/rouny{ @@ -62313,6 +62129,15 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"ruK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/structure/railing/corner/end/flip, +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/locker) "ruO" = ( /obj/machinery/firealarm/directional/west, /obj/structure/disposalpipe/segment{ @@ -62327,11 +62152,16 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"ruP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/wall_healer/directional/east, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "ruZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rvj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/eighties/red, @@ -62480,7 +62310,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ryh" = ( /obj/item/clothing/glasses/meson, /obj/item/storage/bag/ore, @@ -62596,14 +62426,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"rzL" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) "rzO" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 10 @@ -62677,7 +62499,7 @@ "rAZ" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rBo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ @@ -62731,6 +62553,17 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"rBU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/janitor) "rBV" = ( /turf/closed/wall, /area/station/tcommsat/computer) @@ -62744,12 +62577,6 @@ "rCf" = ( /turf/open/floor/iron, /area/station/maintenance/starboard/fore) -"rCj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) "rCs" = ( /obj/structure/table, /obj/item/food/deadmouse{ @@ -63069,7 +62896,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rGl" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/brown{ @@ -63177,11 +63004,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/department/chapel) -"rIc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/cryo) "rIz" = ( /obj/effect/spawner/random/structure/crate, /obj/effect/mapping_helpers/burnt_floor, @@ -63288,16 +63110,14 @@ /obj/effect/turf_decal/tile/blue, /mob/living/basic/bot/repairbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "rLc" = ( /obj/effect/spawner/random/trash/cigbutt, /obj/effect/spawner/random/trash/cigbutt, /turf/open/floor/plating, /area/station/maintenance/port/aft) "rLl" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central) "rLo" = ( @@ -63315,6 +63135,13 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/cargo/office) +"rLC" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "rLL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63435,9 +63262,7 @@ /area/mine/living_quarters) "rNn" = ( /obj/structure/flora/grass/brown/style_random, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "rNz" = ( @@ -63555,7 +63380,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rOF" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical, @@ -63661,7 +63486,7 @@ }, /obj/effect/mapping_helpers/requests_console/ore_update, /obj/effect/mapping_helpers/requests_console/supplies, -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4 }, /turf/open/floor/iron/checker, @@ -63701,7 +63526,7 @@ /obj/structure/rack, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rRk" = ( /obj/structure/table, /obj/item/storage/belt/utility, @@ -63815,7 +63640,7 @@ dir = 5 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rSP" = ( /obj/structure/closet/secure_closet/engineering_chief, /obj/machinery/power/apc/auto_name/directional/east, @@ -63827,14 +63652,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"rTt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) "rTz" = ( /turf/open/floor/plating/icemoon, /area/station/science/ordnance/bomb/planet) @@ -63853,6 +63670,7 @@ /area/station/commons/vacant_room/commissary) "rTV" = ( /obj/structure/gulag_beacon, +/obj/structure/sign/warning/directional/north, /turf/open/floor/iron, /area/mine/laborcamp) "rTX" = ( @@ -63898,7 +63716,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "rUo" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/green{ @@ -63976,19 +63794,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/chemistry) -"rVe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "miner-passthrough" - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) "rVi" = ( /obj/effect/spawner/random/structure/steam_vent, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64003,16 +63808,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"rVA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) "rVB" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 4 @@ -64220,7 +64015,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -64241,19 +64036,12 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/security/processing) -"rXY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/mining) "rYq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rYt" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -64319,6 +64107,14 @@ /obj/structure/table, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"rZg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/fitness) "rZm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64403,7 +64199,8 @@ /obj/machinery/button/flasher{ id = "executionflash"; pixel_x = -24; - pixel_y = 5 + pixel_y = 5; + dir = 8 }, /turf/open/floor/plating/icemoon, /area/station/security/execution/education) @@ -64441,17 +64238,9 @@ /turf/open/floor/iron, /area/station/command/heads_quarters/hop) "sby" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/less_spawns) "sbD" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -64466,13 +64255,6 @@ }, /turf/open/floor/iron/large, /area/station/engineering/storage_shared) -"sbN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) "sbP" = ( /obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, /turf/open/floor/engine/xenobio, @@ -64507,6 +64289,13 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/showroomfloor, /area/station/security/prison/toilet) +"scj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/command/gateway) "scl" = ( /obj/structure/bookcase/random, /turf/open/floor/carpet/red, @@ -64534,6 +64323,13 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/station/service/hydroponics/garden) +"sct" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/service/janitor) "scu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -64658,7 +64454,7 @@ /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sen" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -64693,11 +64489,9 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/smooth_edge, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "seR" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -64989,7 +64783,8 @@ /obj/effect/spawner/random/trash/cigbutt, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/plaques/kiddie/perfect_drone{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /turf/open/floor/iron/checker, /area/station/maintenance/port/fore) @@ -65065,7 +64860,7 @@ "skW" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -65081,7 +64876,7 @@ /obj/effect/turf_decal/stripes/line, /obj/item/radio/intercom/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "skZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -65146,6 +64941,12 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/dark, /area/station/engineering/atmos/project) +"slR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "sma" = ( /obj/effect/spawner/random/trash/mopbucket, /obj/effect/decal/cleanable/dirt/dust, @@ -65234,27 +65035,38 @@ }, /turf/open/floor/iron/dark, /area/station/commons/storage/primary) -"sni" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "snj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/upper) -"snt" = ( +"snk" = ( +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/command/eva) "snw" = ( /obj/structure/table, /obj/machinery/microwave, @@ -65278,12 +65090,12 @@ /turf/open/floor/iron, /area/station/hallway/primary/starboard) "snJ" = ( -/obj/structure/fence/corner{ +/obj/structure/fence{ dir = 2 }, -/obj/structure/sign/warning/secure_area, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/unexplored/rivers/deep/shoreline) +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "snL" = ( /obj/item/pickaxe{ desc = "Someone left their pickaxe out here, must not have known about the boulder processing machines inside."; @@ -65433,7 +65245,7 @@ /obj/structure/sign/warning/secure_area/directional/north, /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "soR" = ( /obj/machinery/icecream_vat, /obj/structure/sign/clock/directional/north, @@ -65680,7 +65492,7 @@ /turf/open/floor/iron/dark/smooth_half{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ssH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -65857,6 +65669,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"suV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/girder, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "sve" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/bot, @@ -65981,15 +65800,7 @@ /area/station/maintenance/disposal/incinerator) "swF" = ( /turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"swK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/hallway/secondary/entry) +/area/station/ai/satellite/interior) "swO" = ( /obj/effect/spawner/random/maintenance/four, /obj/structure/closet/crate, @@ -66044,6 +65855,14 @@ /obj/structure/sign/warning/electric_shock/directional/west, /turf/open/floor/plating, /area/station/maintenance/solars/port/fore) +"sxL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron/dark/side, +/area/mine/eva) "sxO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/closet/secure_closet/personal{ @@ -66155,15 +65974,6 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/service/kitchen) -"syL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/hallway/secondary/entry) "syN" = ( /obj/item/storage/medkit/regular{ pixel_x = 3; @@ -66307,7 +66117,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_edge, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sBw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66485,7 +66295,7 @@ /area/station/maintenance/department/medical/central) "sDV" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; pixel_y = -25 }, @@ -66670,7 +66480,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sFY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/mining_center, @@ -66791,7 +66601,7 @@ name = "Utilities Room" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) @@ -67067,7 +66877,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sMy" = ( /obj/structure/flora/tree/pine/style_random, /obj/structure/flora/grass/both/style_random, @@ -67077,7 +66887,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "sMY" = ( /obj/structure/table, /obj/item/radio/off, @@ -67140,10 +66950,8 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "sNA" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/structure/marker_beacon/burgundy, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/less_spawns) "sNF" = ( @@ -67195,7 +67003,7 @@ /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "sOE" = ( /turf/open/floor/iron, /area/station/command/heads_quarters/ce) @@ -67205,16 +67013,6 @@ /obj/structure/sign/poster/random/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"sOJ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) "sOO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -67323,21 +67121,9 @@ dir = 1 }, /area/station/engineering/atmos/hfr_room) -"sQa" = ( -/obj/machinery/door/airlock/mining/glass{ - id_tag = "innercargo"; - name = "Cargo Bay" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/storage) "sQc" = ( /obj/structure/table, -/obj/item/food/sandwich/cheese/grilled{ +/obj/item/food/sandwich/grilled_cheese{ name = "idiot sandwich"; pixel_y = 8 }, @@ -67565,7 +67351,7 @@ "sTx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "sTA" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -67757,11 +67543,9 @@ /turf/open/floor/iron/textured_half, /area/mine/production) "sWD" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/marker_beacon/jade, /obj/effect/mapping_helpers/no_atoms_ontop, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) "sWN" = ( @@ -67790,7 +67574,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ @@ -67865,19 +67649,15 @@ }, /turf/open/floor/engine/cult, /area/station/service/library) -"sYz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/machinery/camera/directional/south{ - c_tag = "Mining B-1 Hallway North"; - network = list("ss13", "mine") +"sYm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/dark/side, -/area/mine/eva) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "sYA" = ( /obj/structure/fluff/tram_rail{ pixel_y = 17 @@ -68077,7 +67857,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -68099,12 +67879,10 @@ pixel_y = 1; pixel_x = 3 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/siding/dark_blue/corner{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) "tcD" = ( @@ -68250,7 +68028,7 @@ }, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "teE" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters{ @@ -68267,6 +68045,12 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"teH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/science/explab) "teM" = ( /obj/structure/ore_box, /obj/effect/decal/cleanable/dirt, @@ -68379,7 +68163,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tgq" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -68516,7 +68300,7 @@ /obj/structure/window/reinforced/fulltile, /obj/structure/transit_tube/horizontal, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tix" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -68585,6 +68369,11 @@ }, /turf/open/floor/iron, /area/station/engineering/storage_shared) +"tjn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/security/prison/work) "tjo" = ( /turf/open/genturf, /area/icemoon/underground/unexplored/rivers) @@ -68749,12 +68538,6 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/engine/o2, /area/station/engineering/atmos) -"tlo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) "tlt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -68966,12 +68749,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/maintenance/fore) -"tnY" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) "toi" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/east, /obj/machinery/status_display/evac/directional/south, @@ -69012,6 +68789,10 @@ }, /turf/open/floor/stone, /area/station/service/bar/atrium) +"toU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/security/prison/visit) "toW" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -69059,9 +68840,6 @@ /turf/closed/wall, /area/station/security/execution/education) "tpN" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -69072,6 +68850,7 @@ /obj/item/camera{ pixel_x = -4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain) "tpO" = ( @@ -69223,7 +69002,7 @@ /turf/open/floor/iron/dark/smooth_corner{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tsH" = ( /obj/machinery/door/airlock/security/glass{ name = "Interrogation" @@ -69273,19 +69052,9 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/station/commons/dorms) -"ttT" = ( -/obj/machinery/door/airlock/mining/glass{ - id_tag = "innercargo"; - name = "Cargo Bay" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/storage) "tuc" = ( /turf/closed/wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tue" = ( /turf/closed/wall, /area/station/security/checkpoint/supply) @@ -69332,23 +69101,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/explab) -"tuz" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/trapdoor_remote/preloaded{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/machinery/recharger{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/storage/wallet/random{ - pixel_x = 6; - pixel_y = -24 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) "tuD" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/stripes/white/line{ @@ -69393,6 +69145,20 @@ }, /turf/open/floor/iron/dark/corner, /area/station/engineering/atmos) +"tvf" = ( +/obj/machinery/door/airlock/mining/glass{ + id_tag = "innercargo"; + name = "Cargo Bay" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/storage) "tvk" = ( /obj/structure/sign/warning/docking/directional/north, /turf/open/lava/plasma/ice_moon, @@ -69506,7 +69272,7 @@ dir = 9 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "twU" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/freezer, @@ -69789,8 +69555,10 @@ /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) "tCj" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, +/obj/structure/marker_beacon/burgundy, +/obj/effect/mapping_helpers/no_atoms_ontop, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) "tCk" = ( /obj/structure/disposalpipe/segment{ @@ -69819,6 +69587,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/xenobiology) +"tCz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal) "tCB" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine/air, @@ -69910,7 +69689,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "tDN" = ( /obj/structure/chair{ name = "Defense" @@ -69933,13 +69712,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/prison/visit) -"tEc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "tEe" = ( /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, @@ -70000,7 +69772,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tFe" = ( /obj/effect/turf_decal/tile/neutral/diagonal_edge, /obj/effect/landmark/start/cook, @@ -70040,7 +69812,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/duct, @@ -70092,13 +69864,6 @@ "tGr" = ( /turf/closed/mineral/random/snow, /area/icemoon/surface/outdoors/nospawn) -"tGs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/prison/work) "tGx" = ( /obj/machinery/camera/directional/east{ c_tag = "Departure Lounge East" @@ -70183,17 +69948,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/mine/laborcamp) -"tHa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/wall_healer/directional/east, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "tHb" = ( /obj/effect/spawner/random/structure/musician/piano/random_piano, /obj/machinery/button/curtain{ id = "cantena_curtains"; - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/wood, /area/station/commons/lounge) @@ -70452,7 +70212,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/commons/storage/mining) @@ -70630,11 +70390,18 @@ /turf/open/floor/engine, /area/station/engineering/supermatter) "tMa" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 +/obj/structure/sign/directions/engineering{ + pixel_y = 10 }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -10 + }, +/obj/structure/sign/directions/medical{ + dir = 4 + }, +/turf/closed/wall, +/area/station/medical/pharmacy) "tMc" = ( /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating/snowed/smoothed/icemoon, @@ -70712,14 +70479,6 @@ /obj/effect/turf_decal/tile/dark/half/contrasted, /turf/open/floor/iron/white, /area/station/medical/virology) -"tNw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) "tNx" = ( /obj/structure/cable, /obj/machinery/light/floor, @@ -70804,12 +70563,6 @@ /obj/item/trash/energybar, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"tPz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/station/science/research) "tPC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -70883,11 +70636,26 @@ /obj/effect/turf_decal/box/white, /turf/open/floor/iron/dark/smooth_large, /area/station/engineering/storage/tech) +"tQx" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/command/eva) "tQM" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "tQS" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/landmark/start/assistant, @@ -70953,6 +70721,21 @@ /obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, /turf/open/floor/plating, /area/station/service/hydroponics) +"tRW" = ( +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/command/eva) "tRX" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -70987,10 +70770,6 @@ }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) -"tSx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/workout) "tSF" = ( /obj/machinery/door/window/left/directional/west{ name = "Deliveries"; @@ -71092,7 +70871,8 @@ /obj/machinery/photobooth/security, /obj/machinery/button/flasher{ id = "transferflash"; - pixel_y = 34 + pixel_y = 34; + dir = 1 }, /turf/open/floor/iron/smooth, /area/station/security/execution/transfer) @@ -71140,13 +70920,13 @@ "tVf" = ( /turf/closed/wall, /area/station/security/prison) -"tVn" = ( -/obj/structure/cable, +"tVk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/server) +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) "tVu" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "innerbrig"; @@ -71222,7 +71002,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tWy" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -71234,7 +71014,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tWz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -71262,6 +71042,11 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/station/security/prison/work) +"tWT" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/medical/morgue) "tXb" = ( /obj/structure/table, /obj/effect/spawner/random/maintenance, @@ -71379,7 +71164,7 @@ /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -71443,6 +71228,11 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/science/ordnance/office) +"tZG" = ( +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) "tZM" = ( /obj/effect/spawner/random/trash/bin, /turf/open/floor/plating, @@ -71465,7 +71255,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "uag" = ( /obj/structure/cable, /obj/machinery/door/firedoor, @@ -71478,15 +71268,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark/textured, /area/station/hallway/primary/central) -"uah" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal) "uan" = ( /obj/structure/disposalpipe/trunk/multiz, /obj/effect/turf_decal/stripes/line, @@ -71516,6 +71297,7 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "uau" = ( +/obj/item/radio/intercom/directional/south, /turf/open/openspace, /area/station/medical/medbay/lobby) "uaz" = ( @@ -71561,16 +71343,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white, /area/station/medical/storage) -"ubx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/hallway/secondary/entry) "ubE" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ dir = 1 @@ -71590,18 +71362,6 @@ }, /turf/open/floor/iron/stairs/medium, /area/mine/eva/lower) -"ubH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) -"ubY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/stool/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) "ucl" = ( /obj/machinery/door/window/right/directional/west{ name = "Containment Pen 4"; @@ -71644,14 +71404,6 @@ /obj/structure/sign/warning/electric_shock, /turf/closed/wall/r_wall, /area/station/engineering/supermatter) -"udj" = ( -/obj/effect/turf_decal/stripes/asteroid/line, -/obj/structure/cable, -/obj/effect/turf_decal/tile/dark/half/contrasted, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) "udo" = ( /obj/structure/closet{ name = "evidence closet 4" @@ -71701,13 +71453,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance/glass, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) -"uee" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "uei" = ( /obj/machinery/power/solar{ id = "auxsolareast"; @@ -71779,7 +71527,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ueV" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -71970,7 +71718,7 @@ name = "Chemistry Lab Utilities" }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -72049,7 +71797,7 @@ "ujs" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ujB" = ( /obj/structure/chair{ dir = 8 @@ -72080,14 +71828,6 @@ /obj/effect/decal/cleanable/plastic, /turf/open/floor/plating, /area/station/maintenance/port/lesser) -"uko" = ( -/obj/structure/chair/pew/left{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "ukz" = ( /obj/machinery/duct, /obj/structure/disposalpipe/segment{ @@ -72131,11 +71871,8 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /turf/open/floor/iron/dark/smooth_edge, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ukN" = ( /obj/structure/table, /obj/machinery/door/poddoor/shutters{ @@ -72334,6 +72071,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/blue, /area/station/security/prison/work) +"unh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) "uno" = ( /obj/structure/closet/secure_closet/freezer/gulag_fridge, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -72486,6 +72230,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/atmos) +"uoJ" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) "uoV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72677,20 +72436,10 @@ }, /turf/open/floor/glass/reinforced, /area/station/hallway/primary/starboard) -"urx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "urG" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) -"urJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "urK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72712,6 +72461,11 @@ /obj/item/hand_labeler, /turf/open/floor/iron, /area/station/service/hydroponics) +"urS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/circuit, +/area/station/ai/satellite/hallway) "usm" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/plating, @@ -72863,14 +72617,6 @@ "uvt" = ( /turf/closed/wall, /area/station/science/robotics/mechbay) -"uvu" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/sign/warning/secure_area/directional/north, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) "uvv" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -72910,7 +72656,7 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "uwd" = ( /obj/item/chair/wood, /turf/open/floor/wood, @@ -72954,15 +72700,6 @@ }, /turf/open/floor/iron/dark, /area/mine/mechbay) -"uwO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) "uwR" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -73026,16 +72763,17 @@ /area/station/science/research) "uxG" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/service"; + control_area = "/area/station/ai/satellite/service"; name = "Service Bay Turret Control"; pixel_x = 27; - req_access = list("minisat") + req_access = list("minisat"); + dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uxK" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/vacuum, @@ -73106,17 +72844,18 @@ start_active = 1 }, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/atmos"; + control_area = "/area/station/ai/satellite/atmos"; name = "Atmospherics Turret Control"; pixel_x = -27; - req_access = list("minisat") + req_access = list("minisat"); + dir = 8 }, /obj/effect/turf_decal/tile/blue{ dir = 1 }, /obj/machinery/light/small/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uzd" = ( /obj/structure/rack, /obj/item/mecha_parts/mecha_equipment/hydraulic_clamp{ @@ -73264,7 +73003,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uBy" = ( /obj/structure/flora/grass/brown/style_random, /obj/structure/railing{ @@ -73278,6 +73017,11 @@ "uBA" = ( /turf/closed/wall, /area/station/engineering/atmos/project) +"uBJ" = ( +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) "uBP" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, @@ -73320,7 +73064,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uCk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -73353,7 +73097,14 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) +"uCC" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/departure_lounge) "uCJ" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -73865,6 +73616,11 @@ initial_gas_mix = "ICEMOON_ATMOS" }, /area/icemoon/underground/explored/graveyard) +"uKf" = ( +/obj/structure/chair, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/iron, +/area/station/cargo/storage) "uKj" = ( /obj/machinery/portable_atmospherics/canister/anesthetic_mix, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -74002,16 +73758,6 @@ dir = 4 }, /area/station/command/heads_quarters/rd) -"uMM" = ( -/obj/structure/cable, -/obj/machinery/camera/directional/south{ - c_tag = "Labor Camp Security Office"; - network = list("labor") - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/mine/laborcamp/security) "uMN" = ( /turf/open/openspace, /area/station/commons/storage/mining) @@ -74032,7 +73778,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "uNN" = ( /obj/effect/spawner/random/trash/bin, /obj/effect/spawner/random/maintenance, @@ -74199,7 +73945,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uPS" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -74410,7 +74156,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -74432,7 +74178,7 @@ /area/station/hallway/secondary/entry) "uTK" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -74497,15 +74243,18 @@ }, /obj/effect/mapping_helpers/airalarm/tlv_no_checks, /obj/machinery/airlock_controller/incinerator_ordmix{ - pixel_y = 27 + pixel_y = 27; + dir = 1 }, /obj/machinery/button/ignition/incinerator/ordmix{ pixel_x = -6; - pixel_y = 39 + pixel_y = 39; + dir = 1 }, /obj/machinery/button/door/incinerator_vent_ordmix{ pixel_x = 5; - pixel_y = 39 + pixel_y = 39; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/science/ordnance) @@ -74523,7 +74272,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "uVr" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74719,7 +74468,7 @@ /obj/machinery/recharge_station, /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "uZT" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -74735,15 +74484,10 @@ dir = 1 }, /area/station/hallway/secondary/entry) -"vaa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, +"uZW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "vad" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74762,14 +74506,20 @@ /obj/structure/barricade/wooden, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"vaj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/docking/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) "vap" = ( /obj/structure/fence{ dir = 8 @@ -74816,11 +74566,6 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/service/kitchen) -"vaM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron/dark/side, -/area/mine/eva) "vaW" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/portable_atmospherics/canister, @@ -75003,12 +74748,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/security/brig/upper) -"vdi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room) "vdr" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -75032,7 +74771,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "vdW" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/effect/decal/cleanable/dirt, @@ -75041,6 +74780,15 @@ }, /turf/open/floor/iron/grimy, /area/station/security/prison/work) +"veh" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) "vei" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/stripes/line{ @@ -75287,9 +75035,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/command/bridge) "viH" = ( @@ -75405,13 +75151,6 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/iron/smooth, /area/station/maintenance/fore/lesser) -"vkD" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) "vkF" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -75453,13 +75192,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"vlE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness) "vlF" = ( /obj/structure/railing{ dir = 4 @@ -75477,10 +75209,6 @@ /obj/machinery/computer/cargo/request, /turf/open/floor/iron, /area/station/cargo/lobby) -"vlN" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) "vlS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external{ @@ -75550,7 +75278,7 @@ "vmx" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -75565,16 +75293,12 @@ /obj/structure/fluff/tram_rail, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) -"vmC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +"vmJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals Hallway North" - }, -/obj/structure/cable, -/turf/open/floor/iron/large, -/area/station/hallway/secondary/entry) +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "vmK" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4 @@ -75678,15 +75402,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/white/textured_half, /area/station/service/kitchen) -"vnN" = ( +"vnE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" +/turf/open/floor/iron/white/side{ + dir = 8 }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/paramedic) +/area/station/science/explab) "vnW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ @@ -75736,6 +75458,16 @@ "voK" = ( /turf/closed/wall/r_wall, /area/station/tcommsat/computer) +"voL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/mine/laborcamp/security) +"voO" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "voW" = ( /obj/structure/disposalpipe/junction{ dir = 2 @@ -75752,7 +75484,7 @@ dir = 8 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vpc" = ( /obj/structure/closet, /obj/machinery/light/small/directional/south, @@ -75888,7 +75620,7 @@ }, /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "vrc" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron, @@ -76081,6 +75813,13 @@ /obj/structure/detectiveboard/directional/west, /turf/open/floor/carpet, /area/station/security/detectives_office) +"vtT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/cryo) "vuf" = ( /obj/machinery/shower/directional/west, /obj/effect/turf_decal/stripes/red/line{ @@ -76165,7 +75904,7 @@ /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vvE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -76322,7 +76061,7 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -76449,7 +76188,7 @@ /area/station/medical/virology) "vyt" = ( /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "vyw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -76563,7 +76302,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vzU" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron, @@ -76584,7 +76323,7 @@ /obj/structure/table, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vAq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, @@ -76619,7 +76358,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vAH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -76657,7 +76396,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "vAY" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -76787,26 +76526,12 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"vDu" = ( -/obj/structure/table/glass, -/obj/item/biopsy_tool{ - pixel_x = -10; - pixel_y = 3 - }, -/obj/structure/microscope{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/window/reinforced/spawner/directional/north, -/turf/open/floor/iron, -/area/station/science/xenobiology) "vDx" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/red/half/contrasted, /obj/effect/spawner/random/armory/disablers, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vDy" = ( /obj/structure/sign/poster/official/safety_report/directional/west, /obj/effect/decal/cleanable/dirt, @@ -76916,7 +76641,7 @@ /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -76940,7 +76665,7 @@ /obj/structure/transit_tube/station/reverse, /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vGy" = ( /obj/machinery/camera/directional/east{ c_tag = "Xenobiology Pens Observation - Starboard Aft"; @@ -76960,7 +76685,7 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/vault, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vGJ" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -76981,6 +76706,21 @@ /obj/effect/landmark/start/depsec/medical, /turf/open/floor/iron/dark/smooth_large, /area/station/security/checkpoint/medical) +"vHi" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/command/eva) "vHm" = ( /obj/structure/rack, /turf/open/floor/plating, @@ -77091,6 +76831,11 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance/office) +"vIl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "vIm" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -77237,6 +76982,12 @@ }, /turf/open/floor/iron/cafeteria, /area/station/hallway/secondary/entry) +"vKO" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/office) "vKR" = ( /obj/structure/railing{ dir = 4 @@ -77265,6 +77016,16 @@ }, /turf/open/floor/iron/dark/textured, /area/station/hallway/primary/central) +"vLd" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/prison/directional/north, +/turf/open/floor/iron/showroomfloor, +/area/station/security/warden) +"vLe" = ( +/turf/open/floor/circuit, +/area/station/science/robotics/mechbay) "vLj" = ( /obj/machinery/suit_storage_unit/rd, /obj/effect/turf_decal/stripes/line{ @@ -77273,6 +77034,14 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/smooth_half, /area/station/command/heads_quarters/rd) +"vLl" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Mining Storage" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/textured, +/area/station/commons/storage/mining) "vLY" = ( /obj/structure/railing{ dir = 8 @@ -77286,6 +77055,10 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/plating, /area/station/maintenance/department/cargo) +"vMk" = ( +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/cryo) "vMl" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -77303,7 +77076,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vMY" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -77314,17 +77087,6 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/port/lesser) -"vNe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/hallway/secondary/entry) "vNs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77345,6 +77107,16 @@ /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/closed/wall/r_wall, /area/station/engineering/atmos/mix) +"vNP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/mining_weather_monitor/directional/north, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) "vNU" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -77368,7 +77140,7 @@ }, /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vOG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77378,6 +77150,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"vOL" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "vPc" = ( /obj/machinery/camera/directional/east{ c_tag = "Security Post - Engineering" @@ -77438,11 +77214,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/captain) -"vPM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/command/gateway) "vQj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77464,7 +77235,7 @@ /area/mine/production) "vQz" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; pixel_y = -24; req_access = list("minisat") @@ -77475,7 +77246,7 @@ network = list("minisat") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vQO" = ( /obj/machinery/camera/directional/east{ c_tag = "Locker Room Toilets" @@ -77494,6 +77265,19 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/cargo/lobby) +"vQW" = ( +/turf/open/floor/iron, +/area/mine/eva) +"vQY" = ( +/obj/machinery/requests_console/directional/south{ + department = "Bridge"; + name = "Bridge Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/wood, +/area/station/command/meeting_room) "vRn" = ( /turf/open/floor/iron/stairs/medium, /area/station/cargo/storage) @@ -77731,6 +77515,13 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/sepia, /area/station/security/prison/rec) +"vUy" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "vUI" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -77738,6 +77529,19 @@ }, /turf/open/floor/iron/grimy, /area/station/hallway/secondary/entry) +"vUS" = ( +/obj/structure/cable, +/obj/structure/chair{ + dir = 1 + }, +/obj/item/storage/fancy/cigarettes, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "vUW" = ( /obj/item/stack/cable_coil{ amount = 7; @@ -77752,6 +77556,12 @@ }, /turf/open/floor/iron, /area/station/science/ordnance) +"vVf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "vVj" = ( /obj/effect/turf_decal/bot_white/left, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -77805,10 +77615,10 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "vWm" = ( @@ -77877,7 +77687,7 @@ name = "Firefighting Equipment" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) @@ -77919,12 +77729,6 @@ "vXy" = ( /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"vXC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/mine/living_quarters) "vXH" = ( /obj/structure/cable, /turf/open/floor/iron/white, @@ -77950,6 +77754,11 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark/textured, /area/station/commons/storage/primary) +"vYd" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/command/meeting_room) "vYg" = ( /obj/machinery/camera/directional/west{ c_tag = "Chapel West" @@ -77995,6 +77804,7 @@ "vYw" = ( /obj/machinery/light/small/directional/south, /obj/structure/sign/warning/cold_temp/directional/north, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "vYz" = ( @@ -78084,12 +77894,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/genetics) -"wab" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "wam" = ( /turf/open/openspace, /area/station/cargo/storage) @@ -78276,22 +78080,6 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/station/commons/dorms/laundry) -"wdI" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 1 - }, -/area/station/ai_monitored/command/storage/eva) "wdL" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, @@ -78376,7 +78164,7 @@ "wfc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wfm" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ dir = 10 @@ -78414,15 +78202,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"wfF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/hallway/secondary/entry) "wfK" = ( /obj/item/folder/blue, /obj/structure/table/wood, @@ -78601,7 +78380,7 @@ /obj/item/stack/sheet/iron/fifty, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "whU" = ( /obj/machinery/door/window/left/directional/north{ name = "Pharmacy Desk"; @@ -78717,7 +78496,7 @@ }, /obj/effect/spawner/random/armory/shotgun, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wkl" = ( /obj/machinery/camera/directional/west{ c_tag = "Telecomms Server Room"; @@ -78733,11 +78512,17 @@ /turf/open/floor/plating, /area/station/engineering/engine_smes) "wkB" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"wkJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/storage) "wkO" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -78821,13 +78606,6 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating/icemoon, /area/icemoon/underground/explored) -"wml" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/structure/railing/corner/end/flip, -/obj/effect/turf_decal/siding/thinplating/corner, -/turf/open/floor/iron, -/area/station/commons/locker) "wmG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -79039,7 +78817,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -79292,6 +79070,13 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/white, /area/station/medical/surgery/fore) +"wux" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/command/eva) "wuA" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -79312,10 +79097,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/security/prison) -"wve" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "wvk" = ( /obj/structure/chair/stool/directional/south, /obj/effect/decal/cleanable/blood/oil/slippery, @@ -79334,7 +79115,7 @@ /obj/machinery/door/airlock/research{ name = "Ordnance Launch Room" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, @@ -79346,6 +79127,15 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"wvx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) "wvz" = ( /obj/structure/table, /obj/item/assembly/timer{ @@ -79537,15 +79327,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, /area/station/medical/medbay/aft) -"wyo" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "wyr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79732,7 +79513,7 @@ "wAZ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -79752,7 +79533,7 @@ /obj/item/clothing/gloves/color/grey/protects_cold, /obj/item/clothing/mask/gas, /turf/open/floor/iron/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wBb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79811,6 +79592,26 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"wBD" = ( +/obj/structure/table/glass, +/obj/item/biopsy_tool{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/structure/microscope{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/iron, +/area/station/science/xenobiology) +"wBE" = ( +/obj/effect/spawner/random/trash, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison/work) "wCo" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 1 @@ -79838,13 +79639,6 @@ /obj/structure/sign/poster/official/wtf_is_co2/directional/north, /turf/open/floor/iron, /area/station/engineering/atmos/storage) -"wCV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/science/explab) "wDb" = ( /obj/machinery/requests_console/auto_name/directional/east, /obj/machinery/duct, @@ -79862,7 +79656,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -79928,6 +79722,15 @@ /obj/structure/sign/warning/directional/south, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"wEC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) "wEG" = ( /obj/structure/extinguisher_cabinet/directional/south{ pixel_x = 4 @@ -79986,7 +79789,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -80061,7 +79864,7 @@ /turf/open/floor/plating, /area/station/science/robotics/lab) "wGG" = ( -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -80121,7 +79924,7 @@ "wHe" = ( /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "wHg" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/yellow/warning{ @@ -80141,13 +79944,15 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) -"wHH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 +"wHT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Hallway North" + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) "wHX" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -80216,11 +80021,6 @@ /obj/effect/mapping_helpers/no_atoms_ontop, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) -"wJG" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) "wJM" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance/two, @@ -80408,15 +80208,6 @@ "wMj" = ( /turf/open/floor/plating, /area/station/maintenance/department/chapel) -"wMm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) "wMt" = ( /turf/closed/wall, /area/station/hallway/primary/central/fore) @@ -80561,13 +80352,6 @@ /obj/structure/rack, /turf/open/floor/plating, /area/station/maintenance/aft/lesser) -"wOO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "wOR" = ( /obj/item/stack/rods/ten, /turf/open/misc/asteroid/snow/icemoon, @@ -80674,6 +80458,15 @@ /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/white, /area/station/medical/storage) +"wQd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) "wQh" = ( /obj/structure/railing{ dir = 4 @@ -80768,13 +80561,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"wRx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) "wRG" = ( /obj/machinery/computer/operating, /obj/effect/turf_decal/tile/blue/full, @@ -80785,11 +80571,11 @@ "wRI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wRJ" = ( /obj/machinery/recharge_station, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "wRK" = ( /obj/machinery/conveyor{ dir = 8; @@ -80866,7 +80652,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "wSz" = ( /obj/structure/chair/stool/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80927,22 +80713,6 @@ "wTg" = ( /turf/closed/wall, /area/station/engineering/main) -"wTw" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 4 - }, -/area/station/ai_monitored/command/storage/eva) "wTA" = ( /obj/machinery/telecomms/bus/preset_one, /turf/open/floor/iron/dark/telecomms, @@ -80998,8 +80768,8 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/item/kirbyplants/random, /obj/structure/sign/poster/official/random/directional/north, +/obj/item/kirbyplants/random, /turf/open/floor/iron/cafeteria{ dir = 8 }, @@ -81114,16 +80884,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"wUX" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - location = "Bridge" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/central/greater) "wVd" = ( /obj/item/radio/intercom/directional/south, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -81197,6 +80957,19 @@ /obj/machinery/light/directional/west, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"wWf" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/office) "wWo" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -81222,13 +80995,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/storage_shared) -"wWS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "wWU" = ( /obj/structure/cable, /turf/open/floor/iron/showroomfloor, @@ -81267,6 +81033,16 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/science/xenobiology) +"wYb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/mining_weather_monitor/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) "wYq" = ( /obj/machinery/door/airlock{ name = "Perma Overlook Closet" @@ -81279,6 +81055,11 @@ }, /turf/open/floor/vault, /area/station/security/prison/rec) +"wYt" = ( +/obj/structure/cable, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/iron, +/area/station/security/prison/work) "wYw" = ( /obj/effect/turf_decal/stripes/asteroid/line{ dir = 8 @@ -81367,6 +81148,18 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/security/warden) +"wZT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "miner-passthrough" + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/turf/open/floor/iron, +/area/station/cargo/miningdock) "wZV" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -81404,14 +81197,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/range) -"xaf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "xal" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -81493,7 +81278,7 @@ /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xaI" = ( /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) @@ -81665,7 +81450,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xdb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -81721,6 +81506,13 @@ }, /turf/open/floor/iron/dark/textured, /area/station/security/prison/rec) +"xee" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "xeg" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/misc/asteroid/snow/icemoon, @@ -81824,7 +81616,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/science/research) "xfg" = ( @@ -81840,7 +81632,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xfn" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -81870,10 +81662,6 @@ dir = 4 }, /area/station/science/explab) -"xft" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) "xfv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/yellow/filled/corner, @@ -81915,7 +81703,7 @@ "xgc" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory/upper) +/area/station/security/armory/upper) "xgg" = ( /obj/structure/rack, /obj/item/clothing/suit/hooded/wintercoat/eva{ @@ -81930,7 +81718,7 @@ /obj/item/clothing/mask/gas, /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xgi" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -81938,22 +81726,9 @@ /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) "xgm" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -31; - pixel_y = -32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -31; - pixel_y = -40 - }, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_x = -31; - pixel_y = -24 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "xgy" = ( /turf/open/openspace, /area/station/service/hydroponics) @@ -82003,13 +81778,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"xgI" = ( -/obj/item/radio/intercom/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) "xgK" = ( /obj/structure/table, /obj/item/transfer_valve{ @@ -82050,19 +81818,6 @@ }, /turf/open/floor/iron/smooth_large, /area/station/cargo/drone_bay) -"xgX" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/deck{ - pixel_x = -2; - pixel_y = 15 - }, -/obj/effect/spawner/random/food_or_drink/snack{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/blue, -/area/station/hallway/secondary/entry) "xhk" = ( /turf/open/floor/iron/dark, /area/station/commons/storage/primary) @@ -82108,15 +81863,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/less_spawns) -"xhD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/statue/goliath{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/mine/living_quarters) "xhK" = ( /turf/closed/wall/r_wall, /area/station/security/prison/safe) @@ -82164,6 +81910,16 @@ /obj/effect/spawner/random/food_or_drink/snack, /turf/open/floor/iron/dark, /area/station/science/breakroom) +"xiF" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/entry) "xiI" = ( /obj/docking_port/stationary/random/icemoon{ name = "lavaland"; @@ -82189,7 +81945,7 @@ "xiU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xiW" = ( /turf/open/floor/iron, /area/station/maintenance/port/fore) @@ -82198,16 +81954,14 @@ id_tag = "MedbayFoyer"; name = "Medbay" }, -/obj/effect/mapping_helpers/airlock/unres, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/full, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/large, /area/station/medical/medbay/lobby) "xjB" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) "xjC" = ( @@ -82268,6 +82022,14 @@ }, /turf/open/floor/iron/smooth, /area/station/commons/storage/mining) +"xkw" = ( +/obj/structure/sign/poster/official/twelve_gauge/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/mine/laborcamp/security) "xkA" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -82303,7 +82065,7 @@ /obj/machinery/teleport/station, /obj/machinery/light/small/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xlh" = ( /obj/machinery/door/window/left/directional/north{ name = "Medbay Delivery"; @@ -82517,12 +82279,6 @@ /obj/structure/sign/warning/gas_mask/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"xnM" = ( -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) "xnS" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, @@ -82549,7 +82305,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xpc" = ( /obj/effect/turf_decal/siding/yellow/corner, /obj/machinery/status_display/evac/directional/south, @@ -82563,6 +82319,13 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"xpm" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/blue, +/area/station/hallway/secondary/entry) "xpw" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -82613,7 +82376,7 @@ "xpP" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xpT" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, @@ -82713,10 +82476,6 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"xqY" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) "xrb" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -82886,7 +82645,7 @@ "xuA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xuB" = ( /obj/effect/turf_decal/stripes/asteroid/line, /obj/effect/turf_decal/tile/dark/half/contrasted, @@ -83072,13 +82831,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"xwp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) +/area/station/ai/upload/chamber) "xwr" = ( /obj/structure/rack, /obj/item/clothing/suit/hooded/wintercoat/eva{ @@ -83093,7 +82846,7 @@ /obj/item/clothing/mask/gas, /obj/machinery/light/directional/west, /turf/open/floor/iron/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xws" = ( /obj/structure/table, /obj/machinery/light/small/directional/north, @@ -83107,7 +82860,7 @@ /obj/item/pen, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xwx" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -83175,11 +82928,6 @@ }, /turf/open/floor/iron/white, /area/station/maintenance/starboard/aft) -"xxz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "xxB" = ( /obj/machinery/power/solar{ id = "portsolar"; @@ -83236,6 +82984,11 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/structure/cable, +/obj/machinery/button/door/directional/east{ + id = "xenobio11"; + name = "Xenobio Pen 11 Blast DOors"; + req_access = list("xenobiology") + }, /turf/open/floor/iron, /area/station/science/xenobiology) "xyr" = ( @@ -83390,14 +83143,7 @@ dir = 6 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"xAk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/large, -/area/station/hallway/secondary/entry) +/area/station/ai/upload/chamber) "xAn" = ( /turf/open/floor/iron/dark, /area/station/engineering/lobby) @@ -83411,6 +83157,12 @@ }, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) +"xAO" = ( +/obj/machinery/shower/directional/east, +/obj/structure/fluff/shower_drain, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet) "xAQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83522,7 +83274,7 @@ }, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xCl" = ( /turf/open/floor/iron, /area/station/science/robotics/lab) @@ -83590,6 +83342,18 @@ /obj/item/storage/pill_bottle/mannitol, /turf/open/floor/iron/white, /area/station/medical/cryo) +"xCW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "xDa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/structure/sign/warning/secure_area/directional/north, @@ -83606,14 +83370,6 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"xDh" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Locker Room West" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) "xDj" = ( /obj/effect/turf_decal/trimline/yellow/end{ dir = 1 @@ -83940,6 +83696,22 @@ /obj/machinery/recharge_station, /turf/open/floor/plating, /area/mine/eva/lower) +"xHF" = ( +/obj/structure/table, +/obj/item/trapdoor_remote/preloaded{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/machinery/recharger{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/storage/wallet/random{ + pixel_x = 6; + pixel_y = -24 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hop) "xHO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/plastic{ @@ -83960,7 +83732,7 @@ /obj/item/clothing/gloves/color/grey/protects_cold, /obj/item/clothing/mask/gas, /turf/open/floor/iron/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xIk" = ( /obj/structure/chair/comfy{ dir = 4 @@ -83976,29 +83748,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/showroomfloor, /area/station/security/processing) -"xIz" = ( -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 8 - }, -/area/station/ai_monitored/command/storage/eva) "xIF" = ( /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, @@ -84126,7 +83875,8 @@ /area/station/cargo/storage) "xKk" = ( /obj/structure/sign/plaques/kiddie/gameoflife{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/command/heads_quarters/rd) @@ -84194,6 +83944,14 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark/textured_half, /area/station/security/office) +"xLa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/miningdock) "xLq" = ( /turf/open/floor/glass/reinforced, /area/station/science/ordnance/office) @@ -84259,6 +84017,8 @@ /obj/item/mod/module/thermal_regulator, /obj/effect/turf_decal/tile/blue/full, /obj/item/mod/module/signlang_radio, +/obj/item/gun/syringe, +/obj/item/gun/syringe, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/storage) "xMh" = ( @@ -84307,7 +84067,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/smooth_half, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xNh" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/line{ @@ -84361,6 +84121,11 @@ /obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/station/science/cytology) +"xNY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison/workout) "xOb" = ( /obj/effect/turf_decal/siding/white{ dir = 4 @@ -84403,13 +84168,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/aft) -"xPF" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) "xPI" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -84540,30 +84298,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) -"xRo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"xRv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"xQX" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Hallway South" }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/turf/open/floor/iron/white/corner{ + dir = 1 }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) +/area/station/hallway/secondary/entry) "xRw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84572,12 +84318,6 @@ }, /turf/open/floor/iron, /area/station/command/bridge) -"xRI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) "xRP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84652,6 +84392,11 @@ /obj/machinery/hydroponics/soil/rich, /turf/open/floor/grass, /area/station/service/hydroponics/garden) +"xTi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/mine/living_quarters) "xTp" = ( /obj/machinery/camera/directional/south{ c_tag = "Solar Maintenance - North East" @@ -84673,6 +84418,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/upper) +"xTL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) "xTN" = ( /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 4 @@ -84694,6 +84449,15 @@ /obj/structure/sign/poster/contraband/lizard/directional/south, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"xTO" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) "xTQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84819,6 +84583,11 @@ }, /turf/open/floor/wood, /area/station/maintenance/aft/greater) +"xUX" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/exit/departure_lounge) "xVc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -84827,10 +84596,6 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron, /area/station/command/bridge) -"xVf" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) "xVo" = ( /obj/structure/table, /obj/item/reagent_containers/cup/bowl{ @@ -84957,7 +84722,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "xWO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -85014,6 +84779,13 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"xXH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/mining) "xXK" = ( /obj/machinery/atmospherics/components/binary/pressure_valve/on{ name = "Waste Release" @@ -85045,6 +84817,12 @@ /obj/structure/flora/bush/leavy/style_random, /turf/open/floor/grass, /area/station/maintenance/starboard/aft) +"xYy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/stool/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) "xYA" = ( /obj/machinery/holopad, /obj/effect/decal/cleanable/dirt, @@ -85070,9 +84848,6 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/obj/item/radio/intercom/directional/south{ - pixel_x = -28 - }, /obj/effect/turf_decal/tile/dark/half/contrasted{ dir = 8 }, @@ -85139,7 +84914,7 @@ name = "Dormitories Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -85199,7 +84974,7 @@ "yaE" = ( /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "yaF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -85221,6 +84996,12 @@ "yaL" = ( /turf/closed/wall/r_wall, /area/station/engineering/engine_smes) +"yaN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "yaT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ dir = 1 @@ -85269,7 +85050,7 @@ /area/station/maintenance/port/aft) "ybv" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "yby" = ( /obj/structure/bed/dogbed, /obj/effect/decal/cleanable/insectguts, @@ -85297,6 +85078,16 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"ybF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/cigarette{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/iron, +/area/mine/eva) "ybI" = ( /obj/structure/bed/dogbed/ian, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -85325,24 +85116,13 @@ /area/station/maintenance/department/medical/central) "ybQ" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ybY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/cigbutt, /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"yca" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/maintenance/department/cargo) "ych" = ( /obj/item/chair/wood/wings, /obj/effect/turf_decal/bot_red, @@ -85370,7 +85150,7 @@ "ycO" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -85423,15 +85203,9 @@ "ydk" = ( /obj/machinery/computer/security/mining, /obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/command/bridge) -"ydt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/mess) "ydu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/decal/cleanable/dirt, @@ -85516,11 +85290,6 @@ "yfa" = ( /obj/structure/sink/directional/west, /obj/structure/cable, -/obj/machinery/button/door/directional/east{ - id = "xenobio10"; - name = "Xenobio Pen 10 Blast DOors"; - req_access = list("xenobiology") - }, /turf/open/floor/iron/white, /area/station/science/xenobiology) "yfg" = ( @@ -85570,7 +85339,8 @@ name = "Forbidden Knowledge" }, /obj/structure/sign/painting/library_private{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/engine/cult, /area/station/service/library) @@ -85657,7 +85427,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "yhU" = ( /obj/structure/chair/stool/directional/north, /turf/open/floor/iron, @@ -85704,7 +85474,7 @@ /area/station/medical/chem_storage) "yiL" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "yiR" = ( /obj/structure/sign/warning/cold_temp/directional/west, /turf/open/floor/plating, @@ -85794,7 +85564,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_edge, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ylA" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark/textured, @@ -113684,7 +113454,7 @@ nXj xRP nId myQ -sby +fQG fHg aEY oad @@ -114468,7 +114238,7 @@ xUG mpn bfg bfg -ydt +vrG sOT vkJ ots @@ -114725,7 +114495,7 @@ mXK ueP bZK gOS -iJr +fhF vSK kse dbH @@ -115229,7 +114999,7 @@ cfh wBp knq cBG -tSx +loP nAD cYv cmD @@ -115485,7 +115255,7 @@ nks cfh nLW hhr -giN +iZo ajG gSy rLX @@ -115742,7 +115512,7 @@ cPQ cfh wBp gvj -gNH +xNY xtG xtG vyw @@ -117031,7 +116801,7 @@ thA thA uPk gHF -uAE +eki jlX xad scw @@ -120090,10 +119860,10 @@ usx qUw qUw vjh -aCj +xkw cqz tmB -uMM +dlq nTO lRE tmB @@ -120350,7 +120120,7 @@ vjh fEX cqz ccx -wHH +voL fcY pdc lMC @@ -163370,7 +163140,7 @@ iDt bOz gpU oaG -hVq +ivN xuB igm scw @@ -163626,9 +163396,9 @@ scw scw bOz rja -iQx -vXH -udj +oPb +veK +xuB sJH riL riL @@ -163883,11 +163653,11 @@ gjq gjq bOz xar -chQ -veK +mAh +vXH vHS rNc -icu +qCb rOB dKk ksi @@ -164144,7 +163914,7 @@ gps veK tUC fjQ -vXC +xTi xuB jkn jkn @@ -164401,7 +164171,7 @@ gwJ tHQ bwT veK -xhD +eia xuB jKA jkn @@ -165696,8 +165466,8 @@ eJf eJf eJf eJf -oif -ebd +gFX +aZw iDt iDt thA @@ -166174,7 +165944,7 @@ thA thA thA thA -lGf +thA thA thA gjq @@ -169239,9 +169009,9 @@ thA ivF ivF xUF -uah +lLZ icU -jgx +dTh iLh bPs bPs @@ -169494,12 +169264,12 @@ iDt iDt iDt snd -kkA +yaN erw -abQ -cGS +qKa +jhL uhb -aSC +phn cQi boS ivF @@ -169751,11 +169521,11 @@ iDt iDt scw snd -ndl -lFA +hJp +eaO ivF ivF -dER +tCz fFD bYz trc @@ -170302,8 +170072,8 @@ jzy pve xjZ bGP -hqv -sYz +ybF +jld vSi kZu uOf @@ -170535,7 +170305,7 @@ wYz jIr lZe xXd -ltW +wQd nlO wEM nlO @@ -170559,8 +170329,8 @@ ilz pve hEm ksn -bgt -vaM +gXD +oPr tQW uQx uQl @@ -171078,7 +170848,7 @@ nyR pve vSi kZu -pAT +eJO lYd jCV kZu @@ -171335,7 +171105,7 @@ kUD kUD kUD nWH -dQd +aIW nWH nWH nWH @@ -171592,7 +171362,7 @@ kUD kUD kUD nWH -myR +omL cZO vMa nWH @@ -171850,8 +171620,8 @@ itf nWH nWH oha -xVf -snt +xjC +rUz rUz uTr bAX @@ -172108,7 +171878,7 @@ nWH ruD cZO nWH -yca +eEs nWH nWH nWH @@ -172365,7 +172135,7 @@ nWH nWH nWH nWH -eSA +qvS jRd sbU nWH @@ -172536,7 +172306,7 @@ iDt oqL wmP vTq -jsp +jWn wSz nFU jNf @@ -172622,7 +172392,7 @@ wpx gLF gee kVN -naq +gGN mzu gLF gLF @@ -172794,8 +172564,8 @@ oqL iFe iFe cQf -mdo -exN +wYt +wBE jNf qIo tau @@ -173051,7 +172821,7 @@ ktt tmy lvU fAV -tGs +tjn obv jNf tYE @@ -173128,9 +172898,9 @@ cUs ljz tlA kNW -ksn -mGJ -jum +hJA +vQW +dRx kDI mDq lzq @@ -173385,9 +173155,9 @@ rRn clz mml kNW -lxT -bgt -oOQ +nli +iOw +sxL vSi vSi pCM @@ -175095,8 +174865,8 @@ thA thA iDt iDt -kSw -iDt +fIt +nbB iDt iDt oqL @@ -175374,8 +175144,8 @@ eIg rIH ukN nCs -bZk -gRZ +lWb +hmA dAZ vOw eGW @@ -175630,7 +175400,7 @@ vVH ivw nKL hpF -pXZ +uHv bZk gAu sUb @@ -175888,7 +175658,7 @@ vlH lWb eDq tDY -wJG +pSE izY eND qpB @@ -175906,7 +175676,7 @@ qzV gKQ gVS bqF -bbQ +veh otw pvz oKJ @@ -176123,8 +175893,8 @@ thA thA iDt iDt -kSw -iDt +fIt +nbB iDt iDt oqL @@ -176144,8 +175914,8 @@ nXV icQ brJ ukN -pXZ -bZk +uHv +lWb kEn dAZ dKy @@ -176164,7 +175934,7 @@ gKQ awM cBT dyf -iOs +phM gKQ xAY qQN @@ -176402,7 +176172,7 @@ dSJ nKL hpF uHv -nup +toU pCp dAZ eRp @@ -179539,7 +179309,7 @@ gjq jqT scw jqT -gjq +dky gjq gjq gjq @@ -179797,7 +179567,7 @@ jqT kBb jqT jqT -qKs +gjq gjq gjq gjq @@ -180583,7 +180353,7 @@ iDt ppY aQm iDt -tnY +iDt iDt iDt iDt @@ -183376,7 +183146,7 @@ thA thA iDt kLd -qGt +mrk scw bqq uvA @@ -186995,11 +186765,11 @@ iDt ioK jDz bja -czj -jvw -gIJ -kRH -xqY +lst +gjt +tWT +cQy +iQN nzK sLD klo @@ -187252,7 +187022,7 @@ scw btU btU btU -aoP +iPr ako hjM hjM @@ -187509,7 +187279,7 @@ btU btU vfZ btU -mSX +aTA dYr nxM dTm @@ -187766,7 +187536,7 @@ btU gCV gcU svx -tNw +wEC mdy nxM nxM @@ -193655,11 +193425,11 @@ iDt scw iDt iDt -rdg -pJm -nvB -pJm +tfX snJ +nvB +mSQ +yba thA thA thA @@ -194989,19 +194759,19 @@ xti qLY hEW jAF -fma +mGg vdr roA -fma +mGg vdr iDG -fma +mGg maO xhv -fma +mGg maO rJe -fma +mGg ffe nPI ipw @@ -195504,16 +195274,16 @@ bKI cyh wXX bKI -cyh +mGg dQZ bKI -cyh +mGg izA bKI -cyh +mGg lBZ bKI -cyh +mGg odd iER ffe @@ -196032,7 +195802,7 @@ abe lfs pjr nPI -nPI +tRd alM thA thA @@ -196288,8 +196058,8 @@ eea abe abe pjr -iTC -iWM +vaj +oxO alM thA thA @@ -196545,8 +196315,8 @@ abe abe wnB pjr -tRd -iWM +kRp +oxO alM thA thA @@ -196802,8 +196572,8 @@ ffe ffe ffe ffe -tRd -iWM +kRp +oxO alM thA thA @@ -196999,8 +196769,8 @@ qEJ qEJ kyf wBA -oTA -rpK +bWZ +epB oTA epB uFt @@ -197059,8 +196829,8 @@ oxO oxO dcd oxO -tRd -dmU +kRp +rjV alM thA thA @@ -197257,7 +197027,7 @@ mPJ puF exn hDf -qeR +fvJ bAF nJy rkz @@ -197317,7 +197087,7 @@ nPI nPI nPI nPI -geW +gfu alM thA thA @@ -197516,8 +197286,8 @@ oTA sab qYh sab -pcB -qtd +eQt +eee uJt uJt efy @@ -197773,8 +197543,8 @@ oTA oTA syh oTA -lqj -erV +vUy +rLC uJt uJt iJV @@ -198030,8 +197800,8 @@ iLt uJt uJt uJt -sHh uJt +sHh uJt uJt uJt @@ -198544,8 +198314,8 @@ iLt uJt uJt uJt -wvl uJt +wvl uJt uJt uJt @@ -198801,8 +198571,8 @@ oTA oTA epB oTA -uko -mEI +nmw +bMV uJt uJt tWJ @@ -199058,8 +198828,8 @@ oTA bAF irQ bAF -bYm -rlt +nJy +kTy uJt uJt bap @@ -225801,7 +225571,7 @@ uhx uhx uhx uhx -tMa +xgm lSu bln bln @@ -226541,8 +226311,8 @@ utC vJV fUR eYK -xAk -xaf +dxF +lfd fUR uRx jdY @@ -226798,8 +226568,8 @@ utC vJV mVE ryM -uee -dJY +cJu +kMX qlP nDJ sfr @@ -227055,8 +226825,8 @@ utC vJV fUR fUR -kVA -wWS +vNP +vVf mVE nDJ fYW @@ -227569,8 +227339,8 @@ utC vJV ydI ydI -nWM -kHl +wYb +nZw mVE nDJ wOy @@ -227826,8 +227596,8 @@ iOh kDs mVE azN -xft -lRg +iaC +slR iaU nDJ hAG @@ -228083,8 +227853,8 @@ hEI biY biY rkk -bLs -xRI +lbj +voO ydI ior wOy @@ -228114,7 +227884,7 @@ uhx uhx uhx uhx -tMa +xgm lSu lSu lSu @@ -229370,13 +229140,13 @@ lJO fjF qhO lJO -iVv +cZG qpt -fBQ -syL -vmC -syL -dwb +uBJ +oRf +wHT +oRf +jXm fsv cuc hgr @@ -229384,17 +229154,17 @@ fbF hgr xFs fsv -cmV -bXx -aui -bXx -btW -jJd -eyj -lGL -bXx -oMq -tEc +jdY +iGd +pVr +iGd +tZG +mjA +iGd +xQX +iGd +tVk +jdY iGd mKJ vKD @@ -229628,11 +229398,11 @@ hjI xmo vmx eTe -nvI -nvI -oTc -nvI -nvI +wvx +wvx +aLf +wvx +wvx fwM fsv cuc @@ -229642,15 +229412,15 @@ hgr xFs fsv dpU -swK -swK -ubx -swK -swK -swK -wfF -swK -nqD +thX +thX +kSR +thX +thX +thX +xTL +thX +ehB thX peM ddd @@ -229903,7 +229673,7 @@ fUR fUR fUR ort -ort +ksP fUR fUR fUR @@ -230160,7 +229930,7 @@ buF fUR xxI juu -juu +oUY lnp gel fUR @@ -230174,7 +229944,7 @@ tKI bCQ tKI tKI -qRv +sby tkU utC utC @@ -230674,7 +230444,7 @@ qHO fUR nyT kBU -xgX +nVM juu gNL fUR @@ -230927,11 +230697,11 @@ nAH mVE xFs jLM -fnC -vNe -piP -npy -npy +okM +xiF +dkt +xpm +xpm rFb hrh fUR @@ -230981,11 +230751,11 @@ tkU fri utC bvb -tMa +xgm bln bln bvb -qRv +sby fri tkU tkU @@ -231459,7 +231229,7 @@ tKI bCQ tKI tKI -qRv +sby vfr wNO utC @@ -231909,7 +231679,7 @@ utC fri utC bvb -tMa +xgm uei tmR uei @@ -233191,7 +232961,7 @@ txl utC tkU yfW -tMa +xgm cnx tmR tmR @@ -233288,7 +233058,7 @@ vOy utC utC bvb -tMa +xgm tmR tmR tmR @@ -233304,7 +233074,7 @@ tmR tmR bln bvb -qRv +sby utC txl txl @@ -234269,8 +234039,8 @@ qnj hul ykG gwp -hCa -pig +wpC +ffd wpc xBn jjO @@ -234479,7 +234249,7 @@ tkU tkU utC yfW -tMa +xgm uei tmR uei @@ -234526,8 +234296,8 @@ qnj aOx ykG ykG -rCj -xDh +ykG +coZ tOw tOw tOw @@ -234783,8 +234553,8 @@ qnj mxu awx koH -ubH -wml +awx +ruK bvg bJa btG @@ -235041,7 +234811,7 @@ vKq vKq vKq eTC -neq +kEa muy muy gRp @@ -237126,7 +236896,7 @@ maT qjQ eGw ewI -pPl +cqY xCL qjQ utC @@ -237365,9 +237135,9 @@ tKI tKI tKI leW -vlN -qPJ -vlN +ajw +qtx +ajw ajw wiz ajw @@ -237383,7 +237153,7 @@ bln qjQ qyT qcE -aFz +kVY hoD qjQ utC @@ -237624,7 +237394,7 @@ ikO bji ajw ajw -vlN +ajw ajw wiz ajw @@ -237879,8 +237649,8 @@ xal wLO lfG oSS -erN -xwp +wkJ +kVD baf wiz tnK @@ -237897,7 +237667,7 @@ uYc pBE pBE ojk -bVJ +jEW dSO qjQ utC @@ -238137,8 +237907,8 @@ lbg ikO ikd jhy -ppo -lxb +ajw +kzh eWV kXr xaF @@ -238154,13 +237924,13 @@ szU eVn pBE ePB -hxE +mUR xtr qjQ utC utC pRj -csE +mzZ kSD csE uwd @@ -238394,8 +238164,8 @@ ndk rbC kXr qDn -ttT -sQa +guM +tvf qDn kXr kXr @@ -238411,7 +238181,7 @@ jFJ lLE pBE qjQ -rVe +wZT qjQ qjQ utC @@ -238651,8 +238421,8 @@ tKI tKI kaw vkF -rTt -sOJ +vKO +gro cnB bvr mAN @@ -238668,7 +238438,7 @@ byn wBy pBE qdC -jBf +xLa dhY qjQ xXk @@ -238908,8 +238678,8 @@ pdf tKI iUM ssc -cXl -wRx +mrW +fqd sdW kXA kXA @@ -238917,7 +238687,7 @@ oDt kRU lMd kXr -hLY +uKf ceo pBE fNc @@ -238925,7 +238695,7 @@ gSf cYK pBE cZa -hxE +mUR xUS unP utC @@ -239182,7 +238952,7 @@ uYc pBE pBE iVA -hxE +mUR aCh unP utC @@ -239437,9 +239207,9 @@ yeh hxE hxE vQj -fvx -hxE -hxE +qct +mUR +mUR xFb unP utC @@ -239913,7 +239683,7 @@ mQh xKb djF xMW -apI +scj tOi kkO fNK @@ -240170,8 +239940,8 @@ vVj dRD jFf uOj -bgF -vPM +mHn +mwP esI cVz ons @@ -240389,8 +240159,8 @@ bln bln bln bln -nMR -mSQ +oif +umh tGr tGr lSu @@ -240428,7 +240198,7 @@ vwQ wMc ygv toW -kyi +bXa aNq jsF ons @@ -240904,8 +240674,8 @@ bln ntK bln bln -xPF -bln +jSf +xgm bln bln lSu @@ -241204,7 +240974,7 @@ biY ede iKj bPp -bXm +jvJ lnc lnc lnc @@ -241418,15 +241188,15 @@ tGr tGr tGr tGr -mSQ -bln +umh +kSw bln bln rwt lBD ntK -bln -tCj +cJi +xAs xAs xAs xAs @@ -241460,7 +241230,7 @@ vBi lJO dnq iuv -xgm +dnq dnq dnq dnq @@ -241991,7 +241761,7 @@ srw jOy ljp gHe -sni +bmv bep qrJ uLC @@ -242062,7 +241832,7 @@ utC tkU utC liV -jHb +xEn vOy utC utC @@ -242197,7 +241967,7 @@ ooL tDg tDg oFI -oEB +tCj sgW akQ lSu @@ -242248,7 +242018,7 @@ dxK gfb gfb gfb -pYB +qeK gfb gfb vtg @@ -242454,7 +242224,7 @@ feJ feJ kyy kyy -cJi +iDq abb oFI oEB @@ -242501,11 +242271,11 @@ xax oyp phf sEl -qRs -jST -wUX -odN -iZq +wzk +nhS +amD +aax +hll dpH gfb mYG @@ -242735,13 +242505,13 @@ skZ bWn nch xMX -xIz +snk bIc bIc bIc -wdI -yaE -yaE +vHi +llm +llm mvw aTH eJe @@ -242758,7 +242528,7 @@ wzk wzk wzk wzk -pgw +vQY iYb iYb msb @@ -242777,7 +242547,7 @@ cRF dnq pRj pRj -dOa +suV pRj pRj pRj @@ -242991,14 +242761,14 @@ krQ gYp bWn iUO -egL +lon ssF pSu fgQ pSu pSu -tlo -kZC +wux +eZF tgn igQ euZ @@ -243015,7 +242785,7 @@ xVq lnk pNs pNs -oyb +ktU mqD iYb dkb @@ -243090,7 +242860,7 @@ utC fri tkU liV -qRv +sby tkU utC utC @@ -243249,11 +243019,11 @@ thI bWn tsz xMX -hSl +tRW ueS ueS ueS -wTw +tQx yaE rAZ qOD @@ -243272,7 +243042,7 @@ fbw hue hBZ eYT -vdi +lLr oMP iYb txI @@ -243281,7 +243051,7 @@ iYb sbi jWP ool -jRC +iTR cgC jaq vvT @@ -243502,7 +243272,7 @@ bZx bZx gYm krQ -dky +gYp bWn ylz xMX @@ -243529,7 +243299,7 @@ cct hue xit wfK -fHK +vYd qpS iYb iYb @@ -243538,8 +243308,8 @@ iYb kFW ybI nnR -tuz -eRZ +xHF +loQ qpZ rAA cpm @@ -243786,7 +243556,7 @@ dhj kiL tOF tOF -ktU +oyb wzk wzk sKz @@ -243795,8 +243565,8 @@ jfc vYm qBt xMQ -jRC -nvs +iTR +kJd hPz shc cpm @@ -243825,7 +243595,7 @@ rHQ wFX rBV kJV -cOa +rBV omG tvW scx @@ -244119,7 +243889,7 @@ gka gka aao liV -qRv +sby utC utC txl @@ -244254,7 +244024,7 @@ feJ uGr uGr iDq -jBr +vLd lAL ejc iDq @@ -244577,9 +244347,9 @@ dnq nlv uMN uMN -msP -hPQ -cEr +cnQ +fly +cFp aQO fFv kta @@ -244834,9 +244604,9 @@ nBl kta aHR cPi -gCl +kth jpH -mkn +xXH qnw sEn kta @@ -245091,9 +244861,9 @@ dnq kta ihh ryh -rXY +cnQ wzY -mIH +xee bqi aQO kta @@ -245147,7 +244917,7 @@ rQf gka tkU liV -jHb +xEn utC utC txl @@ -245310,7 +245080,7 @@ wEb sIZ pfe pfe -jII +krv mxM qLt uom @@ -245345,12 +245115,12 @@ hcL isx iuv dnq +dKW kta kta -kta -kYS +vLl nlv -kmC +jJa kta kta kta @@ -245601,13 +245371,13 @@ fwf hcL isx nlT -krv +dnq hyc fdy fdy -pPh cLN -xxz +cLN +eny fdy pvg nQW @@ -245800,8 +245570,8 @@ fwh ijU bqG lbk -fqH -sbN +aFy +pZM lbk oAh oAh @@ -246338,7 +246108,7 @@ skl skl skl skl -skl +lDo pDt tsk wLX @@ -247079,7 +246849,7 @@ xmO ubE bUx iQj -aOS +uZW rud cAC mWM @@ -247336,7 +247106,7 @@ xmO deY bUx kdT -tHa +ruP syN cAC mWM @@ -247657,9 +247427,9 @@ fZg mhQ pzb iuv -prh -qFX -lke +mOF +aBE +sct laM lIQ cvS @@ -247717,7 +247487,7 @@ gka gka aao liV -qRv +sby utC utC txl @@ -247916,10 +247686,10 @@ dnq iuv iFm xVK -xRo -owv -qXU -uwO +rBU +byT +avw +efQ rSx kRP kRP @@ -248154,7 +247924,7 @@ lpM ejT iEV iEV -cPV +ewP hCV jeC jeC @@ -248411,7 +248181,7 @@ lpM djh sgZ sgZ -pZN +fdK kwu uKS uPB @@ -248744,7 +248514,7 @@ gMp gMp yhY liV -qmN +nTX utC utC utC @@ -249764,7 +249534,7 @@ tkU utC enX liV -jHb +xEn utC utC tkU @@ -250188,7 +249958,7 @@ lvY mmA whk uja -aJi +xAO aJi eCT uja @@ -250208,9 +249978,9 @@ oTu oTu srw kfr -dKW +bep ylU -lDo +dnq dnq iuu dnq @@ -250286,7 +250056,7 @@ fri utC utC liV -qRv +sby utC utC utC @@ -250464,11 +250234,11 @@ exw hmb hmb exw -tLF +qRv lFb qRE lFb -azw +tMa azw mao azw @@ -250956,8 +250726,8 @@ xqh bdp nmH tiI -hLW -bVI +rZg +ekM uja uja uja @@ -250989,7 +250759,7 @@ blU azw bbO hhT -vnN +hZk rMd wpZ cvS @@ -251212,10 +250982,10 @@ eFG ffZ vfW vfW -mZK -lvk -gzI -gIN +eBL +vfW +mDS +jQv kKL mBr kKL @@ -251471,8 +251241,8 @@ qFE cGB cGB gsI -tLL -vlE +fEi +ehn kKL kKL kKL @@ -251571,7 +251341,7 @@ utC utC utC liV -jHb +xEn tkU utC utC @@ -252077,7 +251847,7 @@ nFO utC enX liV -jHb +xEn utC utC utC @@ -252582,7 +252352,7 @@ tkU utC utC reh -jHb +xEn tkU utC fri @@ -253113,7 +252883,7 @@ uAL uAL hHG liV -qRv +sby sMy tkU utC @@ -253309,7 +253079,7 @@ kmG cyo juw nji -aCA +tHv jDn nbC qZv @@ -253566,7 +253336,7 @@ efK juw nji tkf -pPA +rpM cWn tHr pBA @@ -253610,7 +253380,7 @@ utC tkU utC reh -jHb +xEn utC tkU utC @@ -253818,12 +253588,12 @@ hgh kBL xPT cxA -bij -vkD -oEh -gCh -eHZ -mUe +hPx +rhg +cey +lux +unh +ijW fUL rbB evp @@ -254080,7 +253850,7 @@ nMu wDe hxs uEr -nzs +jQf iuD qAf gHq @@ -254152,7 +253922,7 @@ ghY ccw cQL pbs -uvu +iYt bPc ptY ptY @@ -255134,8 +254904,8 @@ npD npD npD npD -gGj -mue +hYH +jzI sGH bPt fij @@ -255188,7 +254958,7 @@ pza sML sML sML -pza +urS iHp lNc euc @@ -255392,7 +255162,7 @@ vng lme tiZ uuI -noR +wDg wDg rqD wDg @@ -255435,7 +255205,7 @@ frq rlS cfe mXi -mzZ +rlS mRI bLz bLz @@ -255445,7 +255215,7 @@ mEg bLz jUW bLz -mGg +bLz mCw ryf ryf @@ -256395,8 +256165,8 @@ sZD lnC klc lDM -dVS -bAj +qWv +uoJ lDM klc rWR @@ -256652,8 +256422,8 @@ sZD vgx lDM dxO -omo -jdm +mWW +vtT xWT klc uiF @@ -256837,7 +256607,7 @@ txl txl txl sAd -tMa +xgm uei tmR uei @@ -256906,11 +256676,11 @@ aKa wor qxG vFW -noW -nOh -bNH -bNH -rIc +amS +xTO +oXq +mWW +vMk gpR klc ooy @@ -258999,8 +258769,8 @@ jgL sKf sKf jgL -wRr -wEV +sYm +sKf sZF tkU utC @@ -259256,8 +259026,8 @@ npD npD sZF sZF -pHR -wEV +oLn +sKf vjZ utC utC @@ -259407,7 +259177,7 @@ txl txl utC sAd -tMa +xgm uei tmR uei @@ -259465,9 +259235,9 @@ cYE hZT idi cZU -kBl -kBl -hOY +bGl +bGl +cuu dbx uvt awK @@ -259513,8 +259283,8 @@ ily lqU bln vjZ -pHR -wEV +cbf +sKf vjZ utC tkU @@ -259721,10 +259491,10 @@ hUx rNQ hZT idi -aID +iEt gky vvP -mxD +imo cgZ uvt jeB @@ -259770,8 +259540,8 @@ ily lqU tmR vjZ -pHR -wEV +oLn +sKf vjZ utC utC @@ -259978,9 +259748,9 @@ ebb cYE hZT idi -aID -ddk -ddk +iEt +vLe +vLe dry edq uvt @@ -260027,8 +259797,8 @@ tgx qLY xSE sZF -rzL -gea +jCW +fWF sZF tkU utC @@ -260248,7 +260018,7 @@ mtI uRL xmf owC -tVn +qOM tYe xIF wHc @@ -260284,8 +260054,8 @@ jCE adY tmR sZF -pHR -wEV +oLn +sKf sZF tkU fri @@ -260505,7 +260275,7 @@ mtI nqP vzo rzz -gEn +abC pBV dsl wHc @@ -260541,8 +260311,8 @@ vTJ apT sEB vjZ -laf -wEV +vUS +sKf vjZ tkU utC @@ -260775,31 +260545,31 @@ jbU jbU bkQ drr -qhL -qhL -qhL -qhL +drr +vHq +hvm +hvm tCx -wPd -wPd -wPd -wPd -wPd -fTq -wab -wOO -wPd -wPd -wPd -wPd +chZ +chZ +chZ +chZ +chZ +pNN +pJE +kBy +chZ +chZ +chZ +chZ wPd ega bcE qLY sEB vjZ -dAP -wEV +nNA +sKf vjZ utC utC @@ -261031,32 +260801,32 @@ mde gSN jbU wnX -drr -hvm -pvB -ehd -ehd -ehd -ehd -bbB -bbB -bbB -vDu -lva -lva -iXu -drr -pvB -ehd -orv +pMF +pMF +kvc +aCb +aCb +aCb +aCb +aCb +aCb +aCb +wBD +xJj +xJj +vmJ +pMF +vOL +aCb +kea aCb aCb vfq apT sEB vjZ -pHR -wEV +cbf +sKf vjZ utC fri @@ -261289,8 +261059,8 @@ vpW jbU lec fmU -qhL -wve +pMF +iNL hfc hfc hfc @@ -261312,8 +261082,8 @@ hfc adY eAw sZF -pHR -wEV +oLn +sKf sZF utC tkU @@ -261546,8 +261316,8 @@ qlO jbU hzb hdH -qhL -dkK +pMF +euO vVP vVP vVP @@ -261569,8 +261339,8 @@ vVP qLY xSE sZF -pHR -wEV +cbf +sKf sZF tkU tkU @@ -261803,8 +261573,8 @@ xGK jbU lhu hdH -urJ -ppp +lOp +gkk ily ily ily @@ -261827,7 +261597,7 @@ jBh tmR vjZ wRr -wEV +sKf vjZ utC fri @@ -262060,8 +261830,8 @@ wlW jbU kHN kra -qhL -ppp +pMF +gkk ily ily ily @@ -262317,8 +262087,8 @@ ppz jbU uQR iZQ -llw -aus +niy +xCW lKq lKq lKq @@ -262834,8 +262604,8 @@ eLr hAm via via -tPz -iRN +via +oOR odR leo qFt @@ -263081,24 +262851,24 @@ urK urK urK iRx +hot +hot +qhy +qhy +qhy +qhy pJV pJV -nMA -nMA -nMA -nMA -pJV pJV pJV pJV pJV -aYJ cTR leo wOX efk -jTr -kex +bKz +bKz aIr elk mdE @@ -263337,25 +263107,25 @@ dFj dFj dFj dFj -xnM -xnM -xnM -fLl -wMm -xnM +dFj +dFj +dFj +jwC +bkI +dFj qDQ dFj dFj dFj dFj -xgI -jmh +aGl +mpx avC leo qFt bYu -qkH -wCV +vnE +teH rqa bgx bgx @@ -263611,8 +263381,8 @@ nsZ nsZ hjE xSg -fOl -cyL +lrO +yeC jAI bgx hWI @@ -265648,8 +265418,8 @@ mEJ kCz vJS bUa -ubY -qHn +xYy +dcz nsZ awa awa @@ -265905,7 +265675,7 @@ sca xiC ciS bUa -jPx +puQ jxb dqI oEE @@ -265914,11 +265684,11 @@ mXe bEJ qbb miK -xRv -xRv -xRv -xRv -goy +bxp +hWD +hWD +hWD +wWf hWD oiI nsZ @@ -266161,8 +265931,8 @@ bsN sca gpj oQn -iBl -pLr +nWj +nmX mKO sPq xLq @@ -266175,7 +265945,7 @@ cRq qVZ ybf ybf -vaa +aQS xLq xLq nsZ @@ -266432,7 +266202,7 @@ iHc qVZ nQj auK -vaa +aQS xLq xLq nsZ @@ -266689,7 +266459,7 @@ xTV rGY nzA auK -vaa +aQS xLq xLq nsZ @@ -266946,7 +266716,7 @@ bgx bgx bgx bgx -rVA +ixK bgx bgx bgx @@ -266990,7 +266760,7 @@ tmR cnx bln sFJ -qRv +sby utC txl txl @@ -267162,11 +266932,11 @@ tpd mbn qLF vCD -wyo -myJ -myJ -gEV -gjW +hsG +qRr +qRr +uCC +xUX bAY mhT jdK @@ -267421,11 +267191,11 @@ tPY ljo tpd vXy -vXy -urx -cuP -eFn -ldV +gJa +vIl +iTb +eiR +jDf uFH hpr vXy @@ -268529,7 +268299,7 @@ tmR sUN bln sFJ -qRv +sby utC utC utC @@ -268707,7 +268477,7 @@ tsP jZM vYw dFt -qRv +utC utC utC dFt @@ -268715,7 +268485,7 @@ tsP jZM vYw dFt -qRv +utC utC utC utC @@ -275161,13 +274931,13 @@ utC utC utC utC -utC -aZw +rdg +rkW jxw erR jxw -aZw -utC +rkW +xEn utC txl txl @@ -276703,13 +276473,13 @@ txl txl txl utC -utC -aZw +rdg +rkW jxw lZt jxw -aZw -utC +rkW +xEn utC txl txl diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 5dcc9cc1d21b3e..567b6badb80694 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -5,6 +5,15 @@ "aag" = ( /turf/closed/wall, /area/station/commons/fitness) +"aah" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/camera/directional/east{ + c_tag = "Science Maintenance Corridor"; + network = list("ss13","rd") + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/white, +/area/station/science/research) "aal" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -82,7 +91,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "abX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -210,7 +219,7 @@ /area/station/engineering/atmos/pumproom) "aeq" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aer" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -293,7 +302,7 @@ /obj/effect/turf_decal/bot, /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "agi" = ( /obj/effect/spawner/random/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -450,20 +459,6 @@ /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"aiy" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/computer/records/security{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) "aja" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -583,7 +578,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "akF" = ( /obj/machinery/flasher/directional/north{ id = "AI" @@ -596,7 +591,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "akZ" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 @@ -671,7 +666,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "alX" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -757,7 +752,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "anv" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/east, /obj/machinery/skill_station, @@ -850,12 +845,12 @@ "apJ" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "apM" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "apO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue{ @@ -913,6 +908,23 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/commons/locker) +"aqv" = ( +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "aqS" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 4 @@ -974,7 +986,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "asB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1273,7 +1285,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "azz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1520,12 +1532,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/security/prison) -"aCW" = ( +"aCZ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, /obj/effect/turf_decal/stripes/line{ - dir = 8 + dir = 1 }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) "aDa" = ( /turf/open/floor/plating, /area/station/construction/mining/aux_base) @@ -1691,7 +1707,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -1772,7 +1788,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aHH" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /obj/effect/turf_decal/siding/purple{ @@ -1809,14 +1825,6 @@ /obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, /area/station/science/research) -"aIl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) "aIm" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner"; @@ -1942,7 +1950,7 @@ /area/station/science/xenobiology) "aJS" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aJX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -2001,7 +2009,7 @@ name = "Service Hall" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/duct, @@ -2192,11 +2200,11 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aOc" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aOf" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -2224,6 +2232,11 @@ /obj/effect/turf_decal/trimline/brown/warning, /turf/open/floor/iron/white, /area/station/science/lobby) +"aOs" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port) "aOu" = ( /obj/structure/table, /obj/item/paper/fluff/holodeck/disclaimer, @@ -2291,14 +2304,14 @@ "aPv" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aPw" = ( /obj/machinery/ai_slipper{ uses = 8 }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aPx" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/structure/closet_empty/crate, @@ -2338,7 +2351,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aQR" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -2492,7 +2505,7 @@ /area/station/construction/storage_wing) "aTV" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aUm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, @@ -2510,14 +2523,14 @@ /area/station/medical/medbay/central) "aUx" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "aUK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aUP" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction, /obj/effect/spawner/structure/window/reinforced/plasma, @@ -2541,7 +2554,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aVn" = ( /obj/structure/showcase/cyborg/old{ pixel_y = 20 @@ -2551,13 +2564,13 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aVr" = ( /obj/machinery/porta_turret/ai{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aVv" = ( /obj/machinery/suit_storage_unit/atmos, /obj/effect/turf_decal/stripes/line{ @@ -2648,13 +2661,13 @@ /area/space/nearstation) "aWN" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aWO" = ( /obj/machinery/ai_slipper{ uses = 10 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aWS" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/engineering_hacking{ @@ -2786,12 +2799,9 @@ name = "AI Core Shutters" }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aYJ" = ( /obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/south{ - pixel_x = 26 - }, /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -2939,7 +2949,8 @@ dir = 4 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -2985,10 +2996,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"bcb" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/science/research) "bcf" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -3071,7 +3078,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/broken_floor, @@ -3088,10 +3095,6 @@ /obj/machinery/air_sensor/oxygen_tank, /turf/open/floor/engine/o2, /area/station/engineering/atmos) -"beq" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/space/nearstation) "beO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/green{ @@ -3124,7 +3127,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "beZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3267,13 +3270,13 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bhf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "bhl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/maintenance/three, @@ -3329,7 +3332,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "biq" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -3345,11 +3348,6 @@ /obj/machinery/component_printer, /turf/open/floor/iron/white, /area/station/science/explab) -"biA" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "biF" = ( /obj/structure/window/spawner/directional/north, /turf/open/floor/iron/dark, @@ -3456,10 +3454,10 @@ /area/station/science/research) "bjP" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bjQ" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bkl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -3540,8 +3538,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, +/obj/machinery/flasher/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "blG" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -3608,13 +3607,14 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bny" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; pixel_x = 30; - req_access = list("minisat") + req_access = list("minisat"); + dir = 4 }, /obj/machinery/ai_slipper{ uses = 10 @@ -3623,7 +3623,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bnA" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -3639,14 +3639,14 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bnD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bnE" = ( /obj/structure/closet/crate/hydroponics, /obj/item/shovel/spade, @@ -3672,7 +3672,7 @@ name = "Private Channel" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bnM" = ( /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, @@ -3769,7 +3769,7 @@ /obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bpA" = ( /obj/machinery/rnd/production/circuit_imprinter/department/science, /turf/open/floor/iron/dark, @@ -3891,17 +3891,17 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bsb" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bsd" = ( /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bse" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -3957,6 +3957,25 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/aft/greater) +"bto" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/power_store/cell/high, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/directional/north{ + c_tag = "Science Mechbay"; + network = list("ss13","rd") + }, +/obj/machinery/button/door/directional/north{ + id = "mechbay"; + name = "Mech Bay Shutters Control"; + req_access = list("robotics") + }, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) "btx" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -4194,7 +4213,7 @@ "bwN" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bxf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4358,22 +4377,6 @@ }, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) -"bzV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig" - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) "bAp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4532,7 +4535,7 @@ "bCZ" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "bDm" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/siding{ @@ -4797,6 +4800,18 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"bHU" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "Security Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/station/security/brig) "bIi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4937,6 +4952,12 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) +"bKl" = ( +/obj/structure/table/glass, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) "bKv" = ( /obj/item/pen, /obj/structure/table/reinforced, @@ -5017,6 +5038,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/green, /area/station/maintenance/port/aft) +"bLq" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/small/directional/north, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/iron/white, +/area/station/science/explab) "bLQ" = ( /turf/closed/wall, /area/station/medical/coldroom) @@ -5282,6 +5311,14 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/engine, /area/station/science/explab) +"bRn" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/main) "bRp" = ( /obj/effect/spawner/random/decoration/microwave{ dir = 1; @@ -5420,7 +5457,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bTv" = ( /obj/structure/closet/lasertag/blue, /obj/effect/landmark/start/hangover, @@ -5587,7 +5624,7 @@ }, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "bWV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5713,10 +5750,47 @@ /obj/machinery/airalarm/directional/east, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "bYz" = ( /turf/open/floor/circuit, /area/station/maintenance/port/aft) +"bYQ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/bodypart/arm/right/robot{ + pixel_x = 3 + }, +/obj/item/bodypart/arm/left/robot{ + pixel_x = -3 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/machinery/ecto_sniffer{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/iron, +/area/station/science/robotics/lab) "bZb" = ( /obj/structure/table, /obj/machinery/button/door{ @@ -6139,11 +6213,11 @@ "cjb" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/airlock/medical/glass{ name = "Medbay Staff Entrance" }, /obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) "cji" = ( @@ -6238,7 +6312,7 @@ }, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ckW" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 @@ -6382,13 +6456,6 @@ "cnK" = ( /turf/closed/wall, /area/station/engineering/main) -"coc" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) "coe" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -6405,7 +6472,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "com" = ( /obj/structure/cable, /obj/machinery/netpod, @@ -6428,7 +6495,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "cpj" = ( /obj/machinery/button/door/directional/east{ id = "bridge blast"; @@ -6498,28 +6565,6 @@ }, /turf/open/floor/iron/white, /area/station/science/research) -"cqd" = ( -/obj/structure/rack, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/security/holding_cell) "cqk" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -6738,23 +6783,6 @@ /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/station/maintenance/port/fore) -"cui" = ( -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "cuk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -6805,7 +6833,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/structure/cable, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/security/lockers) @@ -7091,11 +7118,6 @@ "cxz" = ( /turf/closed/wall, /area/station/science/ordnance/bomb) -"cxC" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/station/service/library) "cxU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -7135,11 +7157,6 @@ dir = 4 }, /area/station/science/lobby) -"cyM" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "cyS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7185,7 +7202,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "czG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7249,6 +7266,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /turf/closed/wall/r_wall, /area/station/engineering/supermatter) +"cAr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/no_nightlight/directional/north, +/obj/structure/sign/warning/radiation/directional/north, +/turf/open/floor/iron, +/area/station/engineering/atmos) "cAG" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -7287,18 +7314,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/locker) -"cBH" = ( -/obj/structure/table/reinforced, -/obj/item/defibrillator/loaded{ - pixel_y = 6 - }, -/obj/item/defibrillator/loaded{ - pixel_y = 3 - }, -/obj/item/defibrillator/loaded, -/obj/structure/window/spawner/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/storage) "cBV" = ( /obj/machinery/mech_bay_recharge_port{ dir = 8 @@ -7346,7 +7361,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cCR" = ( /obj/item/radio/intercom/directional/east, /obj/structure/kitchenspike, @@ -7490,11 +7505,7 @@ }, /obj/effect/spawner/round_default_module, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"cFu" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) +/area/station/ai/upload/chamber) "cGj" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -7516,6 +7527,7 @@ "cGv" = ( /obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/iron, /area/station/cargo/miningoffice) "cGG" = ( @@ -7553,7 +7565,7 @@ "cHf" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -7978,14 +7990,6 @@ /obj/item/pai_card, /turf/open/floor/iron, /area/station/commons/locker) -"cOP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "cOQ" = ( /turf/open/floor/iron/white, /area/station/science/research) @@ -8065,7 +8069,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cRq" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -8073,15 +8077,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"cRw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "cRU" = ( /obj/structure/bed, /obj/item/bedsheet/captain, @@ -8189,7 +8184,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/structure/rack, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cTC" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, @@ -8210,6 +8205,15 @@ }, /turf/open/floor/wood, /area/station/security/office) +"cUq" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/commons/dorms) "cUt" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt/dust, @@ -8239,8 +8243,9 @@ network = list("minisat") }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cUP" = ( /obj/effect/spawner/random/structure/closet_private, /obj/item/clothing/under/misc/assistantformal, @@ -8519,7 +8524,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cZm" = ( /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 @@ -8693,7 +8698,7 @@ "ddc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ddl" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -8860,7 +8865,7 @@ /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dfp" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, @@ -9032,7 +9037,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dhC" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/brown/filled/line, @@ -9128,6 +9133,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"diI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area/directional/northeast, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "diJ" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted, /obj/machinery/light/floor, @@ -9142,6 +9155,20 @@ /obj/structure/sign/warning/electric_shock/directional/south, /turf/open/space/basic, /area/space/nearstation) +"djk" = ( +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/turf_decal/delivery, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/station/engineering/main) "djn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9225,6 +9252,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/break_room) +"dlf" = ( +/obj/structure/cable, +/obj/structure/bed/dogbed/mcgriff, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/mob/living/basic/pet/dog/pug/mcgriff, +/turf/open/floor/iron, +/area/station/security/warden) "dlr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/broken_floor, @@ -9352,15 +9389,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"doM" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/small/directional/north, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/iron/white, -/area/station/science/explab) +/area/station/ai/satellite/exterior) "dpg" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -9456,7 +9485,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dqo" = ( /obj/machinery/conveyor{ dir = 1; @@ -9493,7 +9522,7 @@ /obj/machinery/computer/security/telescreen/minisat/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dqE" = ( /obj/structure/closet/toolcloset, /obj/effect/turf_decal/bot, @@ -9675,6 +9704,14 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"dtE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "dtY" = ( /obj/machinery/meter/monitored/waste_loop, /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ @@ -10385,7 +10422,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) @@ -10468,9 +10506,11 @@ /turf/open/floor/iron/dark, /area/station/command/bridge) "dKl" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/engine) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/pods/directional/east, +/turf/open/floor/iron, +/area/station/security/brig) "dKm" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, @@ -10491,7 +10531,7 @@ }, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dKY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -10569,7 +10609,7 @@ dir = 10 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dLJ" = ( /obj/machinery/requests_console/directional/south{ department = "Mining"; @@ -10698,13 +10738,9 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/departments/vault/directional/north{ - pixel_x = 32 - }, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dOs" = ( /obj/structure/sign/warning/no_smoking, /turf/closed/wall/r_wall, @@ -10806,7 +10842,7 @@ "dPV" = ( /obj/machinery/porta_turret/ai, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dPY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -10984,7 +11020,7 @@ /obj/effect/turf_decal/tile/blue/anticorner/contrasted, /obj/effect/spawner/random/armory/riot_shield, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dRY" = ( /obj/structure/chair/office, /obj/effect/landmark/start/hangover, @@ -11072,12 +11108,12 @@ /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dTr" = ( /obj/structure/cable, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dTv" = ( /obj/structure/closet/secure_closet/personal, /obj/item/clothing/under/misc/assistantformal, @@ -11085,7 +11121,8 @@ /obj/item/clothing/shoes/winterboots, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/commons/locker) @@ -11241,7 +11278,7 @@ /obj/structure/table/wood/fancy/green, /obj/effect/spawner/random/aimodule/harmless, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dWg" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -11292,7 +11329,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -11329,7 +11366,7 @@ name = "armory safe A" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dXH" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, @@ -11365,7 +11402,7 @@ /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dYg" = ( /obj/machinery/status_display/evac/directional/west, /obj/machinery/camera/directional/west{ @@ -11476,11 +11513,11 @@ /obj/item/radio/intercom/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eax" = ( -/obj/structure/sign/poster/official/random/directional/south, /obj/machinery/light/small/directional/west, /obj/machinery/duct, +/obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/plating, /area/station/commons/toilet/auxiliary) "eaA" = ( @@ -11523,11 +11560,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/brig) -"eaQ" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/construction/storage_wing) "ebd" = ( /obj/effect/turf_decal/trimline/brown/warning{ dir = 8 @@ -11670,15 +11702,6 @@ /obj/docking_port/stationary/escape_pod, /turf/open/space/basic, /area/space) -"edq" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) "edr" = ( /obj/item/flashlight/flare/candle{ pixel_x = 1; @@ -11753,29 +11776,6 @@ /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) -"eey" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/briefcase/secure{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"eeT" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "efa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, @@ -12241,13 +12241,13 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "elm" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/sign/warning/electric_shock, /obj/machinery/door/poddoor/preopen{ id = "xenobio8"; name = "Xenobio Pen 8 Blast Door" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/xenobiology) "eln" = ( @@ -12631,7 +12631,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "erS" = ( /obj/structure/table/wood, /obj/item/camera_film{ @@ -12645,7 +12645,6 @@ /turf/open/floor/wood, /area/station/service/library) "erU" = ( -/obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 }, @@ -12653,6 +12652,7 @@ dir = 1 }, /obj/effect/landmark/start/assistant, +/obj/machinery/light/directional/west, /turf/open/floor/iron, /area/station/cargo/lobby) "esd" = ( @@ -12801,7 +12801,7 @@ /obj/machinery/light_switch/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "euo" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -12831,25 +12831,6 @@ "eut" = ( /turf/closed/wall, /area/station/science/robotics/lab) -"euw" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/power_store/cell/high, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/directional/north{ - c_tag = "Science Mechbay"; - network = list("ss13","rd") - }, -/obj/machinery/button/door/directional/north{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - req_access = list("robotics") - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) "euQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12861,16 +12842,19 @@ /turf/open/floor/iron/white, /area/station/science/research) "euT" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) +/obj/structure/secure_safe/hos, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hos) "euX" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/white, /area/station/security/medical) +"eve" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/freezer, +/area/station/commons/toilet/restrooms) "evf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -12911,12 +12895,6 @@ }, /turf/open/floor/iron/white, /area/station/science/ordnance/testlab) -"evI" = ( -/obj/machinery/computer/teleporter, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) "evY" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -12980,7 +12958,7 @@ "ewC" = ( /obj/machinery/camera{ c_tag = "Warden's Office"; - dir = 10 + dir = 8 }, /obj/structure/table, /obj/machinery/button/door{ @@ -13121,7 +13099,7 @@ name = "Research Division Access" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, @@ -13183,18 +13161,15 @@ /obj/item/flashlight/lamp, /turf/open/floor/iron/grimy, /area/station/tcommsat/computer) -"eBU" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"eBW" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/obj/effect/turf_decal/stripes/line, /obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) +/turf/open/floor/iron/dark, +/area/station/ai/satellite/chamber) "eBY" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/neutral{ @@ -13354,7 +13329,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, @@ -13408,7 +13383,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eGd" = ( /obj/machinery/door/window/left/directional/north{ name = "MiniSat Walkway Access" @@ -13418,7 +13393,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eGg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -13616,7 +13591,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -13718,7 +13693,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eLv" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -13869,7 +13844,7 @@ "eNh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eNk" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance" @@ -13885,7 +13860,7 @@ /area/station/medical/morgue) "eNR" = ( /turf/closed/wall, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eNV" = ( /obj/effect/turf_decal/delivery, /obj/effect/spawner/random/structure/crate, @@ -14002,9 +13977,6 @@ id_tag = "MedbayFoyer"; name = "Medbay" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -14012,6 +13984,9 @@ }, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "eQe" = ( @@ -14026,7 +14001,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "eQr" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -14285,14 +14260,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"eVX" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) "eWn" = ( /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, @@ -14368,6 +14335,18 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"eXh" = ( +/obj/structure/rack, +/obj/machinery/firealarm/directional/west, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/multitool, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/tools) "eXj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14691,23 +14670,6 @@ "fcq" = ( /turf/closed/wall, /area/station/maintenance/port/greater) -"fcA" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/secure_area/directional/west{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "fcJ" = ( /obj/structure/lattice, /obj/item/shard, @@ -14741,7 +14703,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, /turf/open/floor/plating, @@ -14759,7 +14721,7 @@ name = "Security Requests Console" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fdX" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -14903,10 +14865,6 @@ /obj/effect/turf_decal/delivery, /obj/structure/cable, /obj/effect/landmark/start/hangover, -/obj/machinery/flasher/directional/east{ - id = "hopflash"; - pixel_y = -26 - }, /turf/open/floor/iron, /area/station/hallway/secondary/command) "fgY" = ( @@ -15034,6 +14992,14 @@ }, /turf/open/floor/iron/white, /area/station/medical/storage) +"fiu" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sign/warning/directional/northwest, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) "fix" = ( /obj/structure/chair{ dir = 1 @@ -15449,7 +15415,7 @@ }, /obj/effect/spawner/random/armory/e_gun, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fnT" = ( /obj/structure/table, /obj/item/crowbar/red, @@ -15508,7 +15474,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fpi" = ( /obj/machinery/door/window/right/directional/south{ name = "First Aid Supplies"; @@ -15649,7 +15615,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "frw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -15745,10 +15711,6 @@ /obj/machinery/vending/autodrobe, /turf/open/floor/plating, /area/station/maintenance/port) -"ftM" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/commons/locker) "fuc" = ( /obj/structure/frame/machine{ anchored = 1 @@ -15947,7 +15909,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fzl" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, @@ -16046,7 +16008,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/window/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fBz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16085,6 +16047,13 @@ /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central) +"fDb" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "fDc" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -16108,9 +16077,6 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east{ - pixel_y = -26 - }, /turf/open/floor/iron, /area/station/security/brig) "fDC" = ( @@ -16142,7 +16108,7 @@ }, /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, @@ -16176,7 +16142,7 @@ "fEO" = ( /obj/structure/cable, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fEW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16236,7 +16202,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) @@ -16452,7 +16418,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fJy" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/engine) @@ -16634,17 +16600,6 @@ /obj/effect/landmark/start/depsec/supply, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) -"fMN" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) "fMT" = ( /obj/structure/table, /obj/item/radio/intercom/directional/south, @@ -16655,7 +16610,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "fNa" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -16668,17 +16623,6 @@ /obj/item/clothing/mask/whistle, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"fNh" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/iron, -/area/station/security/brig) "fNz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, @@ -16754,7 +16698,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ @@ -17264,7 +17208,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -17306,6 +17250,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"gaO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "gaU" = ( /obj/machinery/button/door/directional/west{ id = "hop"; @@ -17399,7 +17351,7 @@ cycle_id = "sci-maint-passthrough" }, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/science/research) "gcA" = ( @@ -17442,11 +17394,11 @@ /turf/open/floor/grass, /area/station/science/research) "gda" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/effect/landmark/firealarm_sanity, +/turf/open/floor/plating, +/area/station/command/vault) "gdb" = ( /turf/closed/wall/r_wall, /area/station/security/range) @@ -17491,7 +17443,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "geA" = ( /obj/item/folder/white{ pixel_x = 4; @@ -17548,7 +17500,7 @@ /area/station/command/heads_quarters/hos) "gfU" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gfZ" = ( /obj/effect/turf_decal/trimline/purple/corner{ dir = 8 @@ -17570,14 +17522,6 @@ "ggj" = ( /turf/closed/wall, /area/station/security/evidence) -"ggq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "ggH" = ( /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/iron/checker, @@ -17820,7 +17764,7 @@ "glV" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, /turf/open/floor/plating, @@ -17845,7 +17789,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -17862,10 +17806,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"gmH" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/bridge) "gmI" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/structure/disposalpipe/segment{ @@ -18027,7 +17967,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "goF" = ( /obj/machinery/atmospherics/pipe/layer_manifold/cyan/hidden{ dir = 8 @@ -18122,7 +18062,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "gqI" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -18176,25 +18116,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/central) -"grm" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) -"grw" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) "grZ" = ( /obj/structure/chair, /obj/machinery/camera/directional/north{ @@ -18402,7 +18323,8 @@ /obj/machinery/button/flasher{ id = "visitorflash"; pixel_x = -6; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/button/door/directional/north{ @@ -18465,7 +18387,7 @@ /area/station/security/medical) "gvG" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) @@ -18491,6 +18413,11 @@ "gwf" = ( /turf/open/floor/glass/reinforced, /area/station/science/research) +"gwG" = ( +/obj/machinery/teleport/station, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plating, +/area/station/command/teleporter) "gwK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18646,6 +18573,14 @@ "gyQ" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance) +"gyW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "gzi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -18663,12 +18598,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"gzO" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "gzW" = ( /obj/structure/chair/office{ dir = 8 @@ -18798,7 +18727,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gCA" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/iron/dark, @@ -18841,6 +18770,14 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/station/commons/vacant_room/office) +"gDe" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/warning/directional/northeast, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) "gDh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18939,7 +18876,7 @@ /obj/structure/cable/multilayer/connected, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "gEx" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -18948,7 +18885,7 @@ "gEG" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19136,7 +19073,20 @@ /obj/effect/spawner/random/armory/shotgun, /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) +"gHD" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/briefcase/secure{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/iron/grimy, +/area/station/security/detectives_office) "gHE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19251,6 +19201,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/greater) +"gJh" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "gJi" = ( /obj/machinery/door/poddoor/shutters/preopen{ dir = 4; @@ -19342,17 +19300,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"gKD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Lab - Central East"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "gKH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19560,7 +19507,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gNR" = ( /obj/structure/girder, /obj/effect/spawner/random/structure/grille, @@ -19610,7 +19557,7 @@ /obj/machinery/holopad, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gOy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, @@ -19761,7 +19708,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, @@ -19775,12 +19722,6 @@ /obj/machinery/rnd/server/master, /turf/open/floor/circuit/telecomms/server, /area/station/science/server) -"gSW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "gTh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -20076,7 +20017,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -20324,6 +20265,16 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/engineering/main) +"hcg" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "hcl" = ( /obj/item/target, /obj/effect/turf_decal/stripes/line{ @@ -20434,13 +20385,13 @@ /turf/closed/wall, /area/station/engineering/atmos/pumproom) "hdy" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "Xenolab"; name = "Test Chamber Blast Door" }, /obj/structure/cable, /obj/structure/sign/warning/electric_shock, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/xenobiology) "hdI" = ( @@ -20475,7 +20426,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "heE" = ( /obj/structure/table/wood, /obj/effect/spawner/random/decoration/ornament, @@ -20629,6 +20580,16 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/storage/tech) +"hhE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "hhN" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -20862,7 +20823,8 @@ /area/station/hallway/secondary/exit/departure_lounge) "hlu" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/service/library) @@ -20891,7 +20853,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hlD" = ( /turf/open/floor/carpet, /area/station/command/heads_quarters/captain/private) @@ -20931,7 +20893,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hmo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -21030,7 +20992,8 @@ dir = 1 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -21335,10 +21298,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) -"hux" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/teleporter) "huy" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -21528,7 +21487,8 @@ /obj/item/clothing/shoes/winterboots, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/commons/locker) @@ -21559,15 +21519,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/structure/sign/warning/pods/directional/east, /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) -"hxV" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) "hxW" = ( /obj/machinery/door/window/right/directional/north{ name = "Gas Ports" @@ -21632,10 +21586,6 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/port) -"hyN" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) "hyT" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/bot, @@ -21655,10 +21605,6 @@ /turf/open/floor/iron, /area/station/service/bar) "hyZ" = ( -/obj/machinery/flasher/directional/east{ - id = "AI"; - pixel_y = 26 - }, /obj/machinery/holopad/secure, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/door/window/brigdoor/right/directional/east{ @@ -21667,7 +21613,7 @@ pixel_x = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hza" = ( /obj/vehicle/sealed/mecha/ripley/paddy/preset, /turf/open/floor/iron/recharge_floor, @@ -21687,7 +21633,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hzw" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -21733,7 +21679,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hAL" = ( /obj/machinery/door/poddoor/shutters{ dir = 4; @@ -21755,7 +21701,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hBo" = ( /mob/living/simple_animal/bot/mulebot, /obj/structure/cable, @@ -21787,7 +21733,7 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/greater) "hBB" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 8 }, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -21983,21 +21929,11 @@ dir = 4 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"hEV" = ( -/obj/effect/decal/cleanable/garbage, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"hEX" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) "hFz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -22246,7 +22182,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hLB" = ( /obj/structure/rack, /obj/item/crowbar/red, @@ -22267,6 +22203,7 @@ /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 }, +/obj/machinery/newscaster/directional/south, /turf/open/floor/iron/white, /area/station/science/cytology) "hLZ" = ( @@ -22297,7 +22234,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, @@ -22360,7 +22297,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/eva, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hNn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/floor, @@ -22740,12 +22677,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/iron, /area/station/engineering/gravity_generator) -"hUd" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) "hUn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -22827,6 +22758,11 @@ /obj/effect/landmark/navigate_destination, /turf/open/floor/iron/white, /area/station/medical/virology) +"hVQ" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/courtroom) "hVY" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -23036,6 +22972,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"hYH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_x = -38 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/main) "hZg" = ( /obj/structure/closet/crate, /obj/machinery/power/apc/auto_name/directional/west, @@ -23281,9 +23228,9 @@ /turf/open/floor/plating, /area/station/commons/fitness/recreation) "idA" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/sign/warning/electric_shock, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/xenobiology) "idL" = ( @@ -23680,7 +23627,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ikO" = ( /obj/machinery/newscaster/directional/north, /obj/structure/table/glass, @@ -24033,7 +23980,7 @@ /obj/machinery/recharge_station, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "iqc" = ( /obj/structure/reflector/single/anchored{ dir = 9 @@ -24181,7 +24128,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "isr" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /obj/machinery/door/poddoor/shutters/radiation/preopen{ @@ -24468,7 +24415,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ixA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24497,7 +24444,7 @@ /obj/structure/closet/crate/silvercrate, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ixY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24552,7 +24499,7 @@ /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/commons/fitness/recreation) @@ -24813,7 +24760,7 @@ /obj/effect/spawner/random/armory/riot_helmet, /obj/effect/spawner/random/armory/bulletproof_helmet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iCx" = ( /obj/machinery/atmospherics/components/tank/air/layer4{ dir = 1 @@ -24830,7 +24777,7 @@ "iCV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iDe" = ( /obj/structure/table, /obj/item/reagent_containers/cup/glass/drinkingglass, @@ -25048,14 +24995,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) -"iHu" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) "iHv" = ( /obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, @@ -25126,7 +25065,7 @@ "iIQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iIW" = ( /obj/structure/bookcase/random, /turf/open/floor/plating/airless, @@ -25430,6 +25369,11 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/wood/parquet, /area/station/medical/psychology) +"iNy" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/brig) "iNB" = ( /obj/machinery/firealarm/directional/east, /obj/structure/table/glass, @@ -25649,14 +25593,12 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "iQy" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 30 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/pods/directional/east, /turf/open/floor/iron, /area/station/commons/dorms) "iQF" = ( @@ -25749,7 +25691,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iSd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/duct, @@ -25767,7 +25709,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/port) @@ -25858,7 +25801,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "iUm" = ( /turf/closed/wall, /area/station/hallway/secondary/exit/departure_lounge) @@ -26057,7 +26000,7 @@ name = "Commissary" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -26085,15 +26028,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) -"iYD" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) "iYE" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /obj/effect/turf_decal/siding/purple{ @@ -26177,8 +26111,9 @@ pixel_y = 4 }, /obj/item/storage/box/syringes, -/obj/item/gun/syringe, /obj/structure/window/spawner/directional/west, +/obj/item/gun/syringe, +/obj/item/gun/syringe, /turf/open/floor/iron/dark, /area/station/medical/storage) "iZC" = ( @@ -26321,8 +26256,9 @@ }, /obj/machinery/camera{ c_tag = "Xenobiology Lab - Central South"; - dir = 9; - network = list("ss13","rd","xeno") + dir = 1; + network = list("ss13","rd","xeno"); + pixel_x = 20 }, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/white, @@ -26350,7 +26286,7 @@ }, /obj/effect/spawner/random/armory/laser_gun, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jcw" = ( /obj/machinery/atmospherics/components/tank, /turf/open/floor/iron/dark, @@ -26383,11 +26319,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/engineering/break_room) -"jcR" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) "jdg" = ( /obj/structure/flora/bush/ferny/style_random, /obj/structure/flora/bush/fullgrass/style_random, @@ -26525,12 +26456,12 @@ name = "Primary Treatment Centre" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "jfB" = ( @@ -26569,13 +26500,13 @@ /turf/open/floor/iron/white/smooth_large, /area/station/medical/treatment_center) "jfS" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/sign/warning/electric_shock, /obj/machinery/door/poddoor/preopen{ id = "xenobio1"; name = "Xenobio Pen 1 Blast Door" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/xenobiology) "jfU" = ( @@ -26642,15 +26573,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/greater) -"jhc" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/table, -/obj/item/folder, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) "jhd" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -26770,7 +26692,7 @@ "jjy" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jjC" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/item/food/grown/banana, @@ -26839,7 +26761,7 @@ }, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jkT" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -26895,7 +26817,7 @@ "jln" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jlJ" = ( /obj/effect/spawner/random/entertainment/arcade, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -27146,6 +27068,17 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"jpS" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "jpU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, @@ -27384,16 +27317,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos) -"juH" = ( -/obj/machinery/firealarm/directional/west{ - pixel_y = -9 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/vending/cytopro, -/turf/open/floor/iron/white, -/area/station/science/cytology) "juJ" = ( /obj/structure/chair/office{ dir = 8 @@ -27490,7 +27413,7 @@ /obj/structure/cable/layer3, /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jvQ" = ( /obj/machinery/door/window/left/directional/north{ name = "Petting Zoo" @@ -27739,6 +27662,14 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/carpet, /area/station/security/detectives_office) +"jyZ" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/modular_computer/preset/engineering, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/incident_display/delam/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/main) "jzp" = ( /turf/closed/wall, /area/station/commons/vacant_room/office) @@ -27772,7 +27703,7 @@ "jAd" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/broken_floor, @@ -28014,10 +27945,6 @@ /area/station/maintenance/fore) "jEr" = ( /obj/machinery/holopad/secure, -/obj/machinery/flasher/directional/west{ - id = "AI"; - pixel_y = -26 - }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/door/window/brigdoor/left/directional/west{ name = "Secondary AI Core Access"; @@ -28025,7 +27952,7 @@ pixel_x = -4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jED" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28109,15 +28036,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"jGa" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) "jGb" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28189,6 +28107,32 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/port) +"jGH" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/item/pen/blue{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/fountain{ + pixel_x = 10 + }, +/obj/item/pen/red{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/stamp/denied{ + pixel_y = -1 + }, +/obj/item/stamp/granted{ + pixel_x = -9; + pixel_y = -1 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/cargo/storage) "jGN" = ( /obj/machinery/computer/station_alert{ dir = 1 @@ -28198,7 +28142,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "jGO" = ( /obj/machinery/hydroponics/soil, /obj/item/cultivator, @@ -28231,6 +28175,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel, /area/station/service/chapel) +"jHy" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/sign/warning/directional/southwest, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) "jHA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28244,7 +28198,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jHM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28280,7 +28234,7 @@ /obj/item/radio/off, /obj/item/multitool, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jIk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28351,7 +28305,8 @@ /obj/machinery/button/flasher{ id = "IsolationFlash"; pixel_x = -23; - pixel_y = 8 + pixel_y = 8; + dir = 8 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28511,6 +28466,11 @@ }, /turf/open/floor/iron/diagonal, /area/station/cargo/storage) +"jMg" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/construction/storage_wing) "jMo" = ( /obj/structure/chair/stool/directional/north, /turf/open/floor/iron, @@ -28674,10 +28634,6 @@ /obj/machinery/camera/directional/south{ c_tag = "Starboard Primary Hallway - Engineering" }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = -24 - }, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, @@ -28709,7 +28665,8 @@ dir = 1 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/port) @@ -28751,10 +28708,10 @@ "jQr" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "jQz" = ( @@ -28883,6 +28840,29 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/grass, /area/station/security/prison/garden) +"jTk" = ( +/obj/structure/rack, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/security/holding_cell) "jTl" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -29012,21 +28992,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"jUT" = ( -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) "jUW" = ( /obj/item/radio/intercom/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29071,7 +29036,7 @@ /obj/machinery/button/door/directional/north{ id = "rdordnance"; name = "Ordnance Containment Control"; - req_access = list("rd") + req_access = list("science") }, /turf/open/floor/iron/dark, /area/station/science/ordnance/storage) @@ -29144,7 +29109,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -29205,6 +29170,18 @@ /obj/effect/mapping_helpers/airalarm/surgery, /turf/open/floor/iron/white, /area/station/medical/surgery/aft) +"jYa" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) "jYr" = ( /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -29285,6 +29262,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"jZU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "jZW" = ( /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, @@ -29309,17 +29295,13 @@ }, /turf/open/floor/iron/dark/corner, /area/station/engineering/atmos/storage/gas) -"kat" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/cargo/miningoffice) "kaC" = ( /obj/machinery/light_switch/directional/east, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kaF" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -29522,13 +29504,13 @@ /area/station/commons/toilet/restrooms) "ken" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "keK" = ( @@ -29716,6 +29698,18 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/checkpoint/engineering) +"khC" = ( +/obj/structure/cable, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Vault"; + network = list("vault") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/departments/vault/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/vault) "khD" = ( /obj/machinery/door/airlock/maintenance{ name = "Crematorium Maintenance" @@ -30028,6 +30022,12 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) +"klN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "klS" = ( /obj/machinery/griddle, /turf/open/floor/iron/cafeteria, @@ -30048,10 +30048,6 @@ "kmN" = ( /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) -"kmZ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/gateway) "kna" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -30521,7 +30517,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kwQ" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral{ @@ -30690,6 +30686,7 @@ }, /obj/structure/sign/departments/aisat/directional/south, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/structure/sign/warning/pods/directional/east, /turf/open/floor/iron, /area/station/engineering/break_room) "kzg" = ( @@ -30743,7 +30740,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/eva, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kzQ" = ( /obj/effect/turf_decal/siding/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30779,6 +30776,20 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"kAw" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals - Station Entrance" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "kAF" = ( /obj/machinery/duct, /turf/open/floor/iron/freezer, @@ -30881,14 +30892,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/command/teleporter) -"kCq" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/modular_computer/preset/engineering, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/incident_display/delam/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/main) "kCt" = ( /obj/machinery/status_display/door_timer{ id = "Cell 2"; @@ -31082,10 +31085,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/structure/sign/warning/pods/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "kGc" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 }, @@ -31107,7 +31111,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -31127,6 +31131,13 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/white, /area/station/science/lab) +"kGP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "kGR" = ( /obj/machinery/button/ignition{ id = "Xenobio"; @@ -31179,8 +31190,9 @@ "kHt" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #2"; - dir = 9; - network = list("ss13","rd","xeno") + dir = 1; + network = list("ss13","rd","xeno"); + pixel_x = 16 }, /turf/open/floor/engine, /area/station/science/xenobiology) @@ -31225,6 +31237,16 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/ordnance/storage) +"kJf" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "kJi" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, @@ -31261,15 +31283,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"kJO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/no_nightlight/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos) "kKd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31389,7 +31402,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kLh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31883,7 +31896,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kUo" = ( /obj/structure/closet/crate/engineering/electrical, /obj/item/solar_assembly, @@ -31903,14 +31916,24 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"kUA" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "kUG" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/loading_area{ @@ -31958,7 +31981,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kVZ" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -31997,7 +32020,7 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kWE" = ( /obj/machinery/smartfridge/organ, /obj/effect/turf_decal/tile/dark_blue/full, @@ -32072,7 +32095,7 @@ /area/station/commons/toilet/auxiliary) "kXp" = ( /obj/machinery/camera/autoname{ - dir = 5 + pixel_x = 20 }, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -32224,6 +32247,14 @@ /obj/structure/chair/stool/directional/north, /turf/open/floor/wood, /area/station/commons/lounge) +"kZo" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/vending/cytopro, +/turf/open/floor/iron/white, +/area/station/science/cytology) "kZq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -32313,6 +32344,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 1 }, +/obj/structure/sign/departments/cargo/directional/west, /turf/open/floor/iron, /area/station/construction/storage_wing) "laE" = ( @@ -32380,6 +32412,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, /turf/open/floor/plating/airless, /area/station/engineering/atmos) +"lch" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) "lct" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -32431,7 +32474,8 @@ dir = 1 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -32450,7 +32494,7 @@ /area/station/maintenance/starboard/fore) "ldP" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ldQ" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -32606,6 +32650,12 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/security/prison) +"lhI" = ( +/obj/machinery/computer/teleporter, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai/satellite/foyer) "lhT" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -32763,6 +32813,24 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"lkE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 6 + }, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/sign/warning/secure_area/directional/northeast, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "lkW" = ( /obj/machinery/light/small/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -32878,7 +32946,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lmL" = ( /obj/structure/cable, /obj/effect/mapping_helpers/airlock/abandoned, @@ -32929,7 +32997,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "loh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32968,7 +33036,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -32981,7 +33049,7 @@ /obj/machinery/light/small/directional/west, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lpk" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33011,6 +33079,21 @@ /obj/machinery/biogenerator, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"lpL" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/sign/warning/secure_area/directional/southwest, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "lpR" = ( /obj/structure/table, /obj/effect/turf_decal/siding{ @@ -33042,7 +33125,7 @@ /obj/effect/turf_decal/siding{ dir = 1 }, -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/iron/dark, /area/station/science/lab) "lqQ" = ( @@ -33083,8 +33166,9 @@ pixel_y = 2 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lrp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33269,14 +33353,10 @@ /obj/machinery/ai_slipper{ uses = 10 }, -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lus" = ( /obj/structure/closet/athletic_mixed, /obj/effect/landmark/start/hangover, @@ -33323,8 +33403,9 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) "lvu" = ( @@ -33437,8 +33518,8 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) "lyf" = ( @@ -33604,7 +33685,7 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/vault, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lBm" = ( /obj/machinery/conveyor{ dir = 4; @@ -33660,7 +33741,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lDo" = ( /obj/item/radio/off, /obj/effect/turf_decal/stripes/line{ @@ -34086,7 +34167,7 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -34270,7 +34351,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/window/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lPy" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -34417,7 +34498,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lSz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34491,7 +34572,7 @@ /obj/structure/extinguisher_cabinet/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lTR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34703,11 +34784,21 @@ /obj/structure/sign/warning/vacuum/directional/east, /turf/open/floor/plating, /area/station/maintenance/aft/lesser) -"lXm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) +"lWX" = ( +/obj/structure/table/reinforced, +/obj/item/defibrillator/loaded{ + pixel_y = 6 + }, +/obj/item/defibrillator/loaded{ + pixel_y = 3 + }, +/obj/item/defibrillator/loaded, +/obj/item/defibrillator/loaded{ + pixel_y = -4 + }, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/storage) "lXr" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -34976,7 +35067,7 @@ "mbS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mbV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -35074,17 +35165,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) -"mdu" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/obj/machinery/pdapainter/research, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) "mdy" = ( /obj/effect/landmark/blobstart, /obj/structure/cable, @@ -35128,9 +35208,9 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "mez" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/sign/warning/electric_shock, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, /area/station/science/cytology) "meJ" = ( @@ -35184,7 +35264,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mgh" = ( /obj/machinery/camera/directional/east{ c_tag = "Atmospherics Tank - O2" @@ -35194,13 +35274,9 @@ "mgj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/flasher/directional/north{ - id = "AI"; - pixel_x = -22 - }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mgo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35306,7 +35382,7 @@ name = "Research Division Access" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, @@ -35332,6 +35408,12 @@ }, /turf/open/floor/iron/white, /area/station/science/xenobiology) +"mio" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "mix" = ( /obj/structure/frame/machine, /obj/item/circuitboard/machine/chem_master, @@ -35402,7 +35484,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mkr" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -35635,6 +35717,26 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/security/brig) +"mop" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/right/directional/east{ + name = "Outer Window" + }, +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Brig Control Desk"; + req_access = list("armory") + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/poster/random_official, +/obj/structure/cable, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/showroomfloor, +/area/station/security/warden) "moF" = ( /obj/effect/turf_decal/siding/purple{ dir = 5 @@ -35674,7 +35776,7 @@ "mph" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mpk" = ( /obj/structure/table/glass, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -35959,9 +36061,14 @@ /turf/open/floor/iron, /area/station/security/brig) "mtL" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/hallway/secondary/entry) +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Test Chamber Blast Door" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/station/science/xenobiology) "mtO" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, @@ -36000,7 +36107,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -36439,8 +36546,8 @@ "mCj" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #7"; - dir = 5; - network = list("ss13","rd","xeno") + network = list("ss13","rd","xeno"); + pixel_x = 16 }, /turf/open/floor/engine, /area/station/science/xenobiology) @@ -36478,7 +36585,7 @@ "mCL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mCM" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36733,6 +36840,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/command/gateway) +"mGl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/command/eva) "mGy" = ( /obj/structure/sign/warning/vacuum/directional/west, /obj/effect/turf_decal/delivery, @@ -36902,7 +37016,11 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/commons/dorms) -"mJN" = ( +"mJO" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -36963,6 +37081,20 @@ }, /turf/open/floor/iron/white, /area/station/science/cytology) +"mKQ" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron, +/area/station/security/brig) "mKR" = ( /obj/structure/sign/warning/test_chamber, /turf/closed/wall, @@ -37077,9 +37209,7 @@ pixel_x = -4; pixel_y = 4 }, -/obj/structure/cable, /obj/machinery/light_switch/directional/west, -/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/station/security/lockers) "mMl" = ( @@ -37108,6 +37238,22 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"mMH" = ( +/obj/structure/table, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/station/engineering/main) "mMK" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -37116,25 +37262,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"mMM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/east{ - name = "Outer Window" - }, -/obj/machinery/door/window/brigdoor/left/directional/west{ - name = "Brig Control Desk"; - req_access = list("armory") - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/poster/random_official, -/obj/structure/cable, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) "mMX" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance/office) @@ -37146,7 +37273,8 @@ /obj/machinery/button/door{ id = "ordnancebridge"; pixel_x = -24; - req_one_access = list("maint_tunnels","science") + req_one_access = list("maint_tunnels","science"); + dir = 8 }, /obj/effect/turf_decal/caution/stand_clear{ dir = 1 @@ -37468,8 +37596,7 @@ /area/station/maintenance/starboard/fore) "mSI" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; pixel_y = 28 }, @@ -37489,7 +37616,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "mSM" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -37701,7 +37828,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mXj" = ( /obj/machinery/computer/station_alert, /obj/effect/turf_decal/tile/brown/half/contrasted{ @@ -37857,7 +37984,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mZB" = ( /obj/structure/urinal/directional/north, /obj/effect/landmark/start/hangover, @@ -37899,7 +38026,7 @@ /obj/effect/turf_decal/tile/blue, /mob/living/basic/bot/cleanbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nad" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 @@ -37916,16 +38043,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden, /turf/open/floor/iron/white, /area/station/science/cytology) -"naf" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "nao" = ( /obj/structure/easel, /obj/machinery/light/small/dim/directional/west, @@ -38085,7 +38202,8 @@ /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/delivery, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) @@ -38168,7 +38286,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "neL" = ( /obj/machinery/door/airlock/maintenance{ name = "Storage Room" @@ -38176,7 +38294,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -38286,7 +38404,7 @@ /area/station/command/heads_quarters/rd) "nhP" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nhS" = ( /obj/machinery/vending/cigarette, /obj/structure/sign/poster/official/random/directional/east, @@ -38298,7 +38416,7 @@ /obj/machinery/computer/security/telescreen/research/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nie" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -38749,7 +38867,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/dark, @@ -38853,12 +38971,10 @@ /area/station/maintenance/starboard/fore) "nqV" = ( /obj/structure/closet/emcloset, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, /obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/pods/directional/north, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) "nra" = ( @@ -38936,7 +39052,8 @@ /obj/effect/landmark/start/depsec/medical, /obj/machinery/button/door/directional/east{ id = "medsecprivacy"; - name = "Privacy Shutters Control" + name = "Privacy Shutters Control"; + pixel_x = 22 }, /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -39078,12 +39195,12 @@ /obj/machinery/door/airlock/maintenance{ name = "Disposal Access" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -39298,7 +39415,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nwT" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8 @@ -39823,7 +39940,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nFn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -39835,7 +39952,7 @@ }, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nGo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/directional/east, @@ -39846,18 +39963,6 @@ /obj/effect/spawner/random/entertainment/dice, /turf/open/floor/iron, /area/station/commons/locker) -"nGq" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) "nGr" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -40034,11 +40139,13 @@ }, /obj/machinery/button/ignition/incinerator/ordmix{ pixel_x = 24; - pixel_y = -6 + pixel_y = -6; + dir = 4 }, /obj/machinery/button/door/incinerator_vent_ordmix{ pixel_x = 24; - pixel_y = 8 + pixel_y = 8; + dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/science/ordnance, /turf/open/floor/engine, @@ -40302,6 +40409,17 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"nOA" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) "nOC" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -40458,11 +40576,6 @@ "nSe" = ( /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"nSn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) "nSs" = ( /obj/structure/showcase/cyborg/old{ pixel_y = 20 @@ -40477,7 +40590,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nSB" = ( /obj/item/toy/figure/roboticist, /obj/structure/disposalpipe/segment, @@ -40511,6 +40624,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"nTD" = ( +/obj/machinery/airalarm/directional/west{ + pixel_y = -5 + }, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/medical/medbay/lobby) "nTH" = ( /obj/structure/cable, /obj/machinery/computer/crew{ @@ -40678,7 +40807,7 @@ /obj/machinery/ore_silo, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "nYy" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet/secure_closet/freezer/kitchen/maintenance, @@ -41270,7 +41399,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -41286,17 +41415,6 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/iron, /area/station/cargo/warehouse) -"okj" = ( -/obj/structure/cable, -/obj/machinery/camera/motion/directional/south{ - c_tag = "Vault"; - network = list("vault") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) "okP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41400,7 +41518,7 @@ /obj/item/stock_parts/power_store/cell/high, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "omm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41421,7 +41539,7 @@ /obj/machinery/status_display/evac/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "omK" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -41481,7 +41599,8 @@ dir = 4 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, @@ -41613,7 +41732,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "oqk" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41683,7 +41802,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "osc" = ( /obj/structure/cable, /obj/effect/spawner/random/decoration/showcase, @@ -41716,16 +41835,8 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"osw" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/security/brig) +/area/station/ai/upload/foyer) "osH" = ( -/obj/structure/secure_safe/hos{ - pixel_x = 36; - pixel_y = 28 - }, /obj/machinery/status_display/evac/directional/north, /obj/structure/cable, /turf/open/floor/carpet, @@ -41791,6 +41902,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"ott" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/computer/records/security{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) "otu" = ( /turf/closed/wall, /area/station/service/chapel) @@ -41890,9 +42015,10 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/maintenance/starboard/greater) "ouX" = ( @@ -42205,6 +42331,30 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, /area/station/maintenance/aft/greater) +"oBE" = ( +/obj/effect/decal/cleanable/garbage, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/white, +/area/station/science/research) +"oBK" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 5 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/cafeteria, +/area/station/service/kitchen) "oBM" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -42269,15 +42419,18 @@ pixel_y = 2 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/east{ + pixel_y = -5 + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oDl" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/greater) "oDs" = ( @@ -42313,10 +42466,6 @@ }, /turf/open/floor/iron, /area/station/engineering/main) -"oDJ" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/cargo/storage) "oDW" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, /obj/machinery/firealarm/directional/south, @@ -42482,7 +42631,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "north-maint-viewingdeck" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -42527,7 +42676,7 @@ name = "Fuel Closet" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -42942,7 +43091,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oOy" = ( /obj/effect/landmark/start/botanist, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43289,6 +43438,13 @@ /obj/machinery/digital_clock/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"oUJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "oUK" = ( /obj/structure/table, /obj/item/electronics/apc, @@ -43335,10 +43491,6 @@ }, /turf/open/floor/iron, /area/station/security/courtroom) -"oWc" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) "oWk" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard/aft) @@ -43353,7 +43505,7 @@ "oWF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oWH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -43418,7 +43570,7 @@ /obj/effect/turf_decal/bot_white/left, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oXL" = ( /obj/machinery/disposal/bin, /obj/structure/cable, @@ -43514,7 +43666,8 @@ dir = 4 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) @@ -43561,7 +43714,7 @@ "pan" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pav" = ( /obj/structure/chair/stool/directional/west, /obj/machinery/camera/directional/north{ @@ -43592,7 +43745,7 @@ /area/station/cargo/bitrunning/den) "paU" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -43835,7 +43988,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pfs" = ( /obj/structure/closet/secure_closet{ name = "contraband locker"; @@ -43847,7 +44000,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pfP" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light_switch/directional/south, @@ -43865,7 +44018,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -43882,7 +44035,7 @@ name = "Chapel Maintenance" }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -43970,7 +44123,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "phR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44026,7 +44179,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "piz" = ( /obj/structure/cable, /obj/effect/landmark/start/hangover, @@ -44401,7 +44554,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "service-passthrough" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -44513,7 +44666,7 @@ "pqH" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pqI" = ( /obj/structure/lattice/catwalk, /obj/item/reagent_containers/cup/fish_feed, @@ -44606,7 +44759,8 @@ dir = 1 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -44644,7 +44798,7 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "psw" = ( /obj/machinery/computer/security/hos{ dir = 4 @@ -44707,6 +44861,8 @@ "pti" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/lockers) "pts" = ( @@ -44981,7 +45137,7 @@ "pyP" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pyR" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/light_switch/directional/south, @@ -45079,7 +45235,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pAV" = ( /obj/structure/table/reinforced, /obj/machinery/microwave/engineering/cell_included, @@ -45252,6 +45408,12 @@ /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central) +"pEl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/vault) "pEs" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -45435,7 +45597,8 @@ /obj/effect/turf_decal/bot, /obj/machinery/camera{ c_tag = "Engineering - Foyer - Starboard"; - dir = 9 + dir = 1; + pixel_x = 25 }, /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -45522,7 +45685,7 @@ }, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pIF" = ( /obj/effect/turf_decal/stripes/white/line, /obj/machinery/research/anomaly_refinery, @@ -45708,15 +45871,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/engine/n2, /area/station/engineering/atmos) -"pMy" = ( -/obj/machinery/computer/prisoner/management{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) "pMH" = ( /obj/machinery/computer/station_alert{ dir = 4 @@ -45758,7 +45912,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pNb" = ( /obj/effect/spawner/random/maintenance, /obj/structure/cable, @@ -45981,7 +46135,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pQy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -46005,7 +46159,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pQK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46095,6 +46249,13 @@ /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) +"pSR" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/south, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/hallway) "pSS" = ( /obj/structure/lattice/catwalk, /obj/structure/transit_tube/junction/flipped{ @@ -46364,7 +46525,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "pWT" = ( /obj/machinery/atmospherics/components/tank/air{ dir = 8 @@ -46495,13 +46656,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"pZW" = ( -/obj/structure/lattice, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) "qaf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/large, @@ -46605,10 +46759,10 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "qcd" = ( @@ -46673,22 +46827,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) -"qdI" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) "qdT" = ( /obj/effect/turf_decal/siding/red, /obj/effect/landmark/start/depsec/science, @@ -46734,7 +46872,6 @@ /area/station/hallway/primary/central) "qeQ" = ( /obj/machinery/turretid{ - icon_state = "control_stun"; name = "AI Chamber turret control"; pixel_x = 3; pixel_y = -23 @@ -46747,7 +46884,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qfp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -46770,6 +46907,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/courtroom) +"qfK" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/captain/private) "qfL" = ( /obj/machinery/power/port_gen/pacman/pre_loaded, /turf/open/floor/plating, @@ -46777,8 +46922,9 @@ "qfM" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #4"; - dir = 6; - network = list("ss13","rd","xeno") + dir = 4; + network = list("ss13","rd","xeno"); + pixel_y = -16 }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/engine, @@ -47030,7 +47176,7 @@ }, /mob/living/basic/bot/repairbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qiY" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -47049,7 +47195,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qjl" = ( /obj/machinery/vending/tool, /obj/effect/turf_decal/delivery, @@ -47072,7 +47218,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "viro-passthrough" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -47092,7 +47238,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qjH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47193,7 +47339,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qlL" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/turf_decal/stripes/line, @@ -47263,8 +47409,9 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qnj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47361,16 +47508,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"qoR" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "qoY" = ( /obj/effect/spawner/random/maintenance, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -47396,10 +47533,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) -"qpD" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) "qpM" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/wood, @@ -47455,7 +47588,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qri" = ( /turf/open/floor/iron/chapel{ dir = 1 @@ -47592,7 +47725,7 @@ name = "Private Channel" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qsW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48013,13 +48146,6 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron, /area/station/science/xenobiology) -"qCm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "qCv" = ( /obj/machinery/telecomms/processor/preset_two, /turf/open/floor/circuit/telecomms/mainframe, @@ -48091,7 +48217,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -48108,7 +48234,7 @@ "qDi" = ( /obj/machinery/status_display/ai/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qDy" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -48248,6 +48374,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/dorms) +"qGw" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "qGK" = ( /obj/machinery/door/poddoor/preopen{ id = "Engineering"; @@ -48326,7 +48462,7 @@ }, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qIl" = ( /turf/closed/wall, /area/station/hallway/secondary/command) @@ -48386,7 +48522,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qIR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48447,7 +48583,8 @@ dir = 1 }, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -49192,7 +49329,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Cargo Bay Bridge Access" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -49212,7 +49349,7 @@ "qTS" = ( /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qTU" = ( /obj/item/retractor, /obj/item/hemostat{ @@ -49471,7 +49608,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qZa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49493,7 +49630,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -49541,7 +49678,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rac" = ( /turf/closed/wall, /area/station/commons/lounge) @@ -49695,10 +49832,6 @@ }, /turf/open/floor/wood, /area/station/service/library) -"rcR" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/station/cargo/lobby) "rcW" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -49874,6 +50007,17 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) +"rgH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Xenobiology Lab - Central East"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "rgS" = ( /obj/machinery/modular_computer/preset/civilian{ dir = 1 @@ -49964,7 +50108,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "viro-passthrough" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, @@ -49998,6 +50142,7 @@ /obj/machinery/atmospherics/components/unary/airlock_pump{ dir = 4 }, +/obj/structure/sign/warning/vacuum/external/directional/south, /turf/open/floor/plating, /area/station/cargo/storage) "riW" = ( @@ -50016,7 +50161,7 @@ req_access = list("armory") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "riZ" = ( /obj/effect/landmark/start/assistant, /turf/open/floor/wood, @@ -50181,7 +50326,7 @@ /area/station/medical/medbay/central) "rlU" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rmj" = ( /obj/structure/table, /turf/open/floor/iron/cafeteria, @@ -50303,7 +50448,7 @@ /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rod" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/trimline/brown/arrow_cw{ @@ -50566,7 +50711,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rtj" = ( /obj/machinery/igniter/incinerator_ordmix, /turf/open/floor/engine/vacuum, @@ -50719,17 +50864,6 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, /area/station/engineering/break_room) -"rux" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) "ruz" = ( /obj/structure/chair/stool/directional/north, /turf/open/floor/wood, @@ -50743,7 +50877,7 @@ name = "Cleaning Closet" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) "rvb" = ( @@ -50931,7 +51065,7 @@ "rxx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rxA" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -50995,7 +51129,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "ryL" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -51396,7 +51530,7 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rGB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -51438,26 +51572,6 @@ "rHn" = ( /turf/closed/wall/r_wall, /area/station/engineering/supermatter) -"rHq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/structure/sign/warning/secure_area/directional/east{ - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/siding/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/structure/window/reinforced/spawner/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "rHz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51513,7 +51627,7 @@ pixel_y = 2 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rIP" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -51642,11 +51756,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"rKJ" = ( -/obj/machinery/teleport/station, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plating, -/area/station/command/teleporter) "rKN" = ( /obj/effect/turf_decal/siding/white{ dir = 10 @@ -51817,7 +51926,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rNv" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -51837,7 +51946,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/duct, @@ -52136,8 +52245,9 @@ "rTi" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #3"; - dir = 6; - network = list("ss13","rd","xeno") + dir = 4; + network = list("ss13","rd","xeno"); + pixel_y = -16 }, /turf/open/floor/engine, /area/station/science/xenobiology) @@ -52392,6 +52502,7 @@ "rYy" = ( /obj/machinery/power/smes, /obj/structure/cable, +/obj/structure/sign/warning/electric_shock/directional/north, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/aft) "rYA" = ( @@ -52401,7 +52512,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rYH" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, @@ -52456,7 +52567,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rZz" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -52465,7 +52576,8 @@ /area/station/service/hydroponics/garden) "rZA" = ( /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) @@ -52658,7 +52770,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "sbK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -53292,7 +53404,7 @@ "soi" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) @@ -53350,7 +53462,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "sph" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53388,6 +53500,15 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"sqB" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/table, +/obj/item/folder, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/locker) "sqE" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/ce) @@ -53598,9 +53719,6 @@ /area/station/maintenance/disposal/incinerator) "svQ" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/structure/cable, /obj/machinery/door/airlock/medical/glass{ id_tag = "MedbayFoyer"; @@ -53608,6 +53726,9 @@ }, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "svS" = ( @@ -53703,11 +53824,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/wood/large, /area/station/service/theater) -"syc" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/brig) "syh" = ( /obj/machinery/door/poddoor/shutters{ id = "maintwarehouse" @@ -53951,10 +54067,6 @@ /obj/item/storage/crayons, /turf/open/space/basic, /area/space/nearstation) -"sCp" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/atmospherics_engine) "sCs" = ( /obj/structure/flora/bush/flowers_pp/style_3, /turf/open/floor/grass, @@ -54204,7 +54316,8 @@ "sFo" = ( /obj/machinery/button/crematorium{ id = "crematoriumChapel"; - pixel_x = -26 + pixel_x = -26; + dir = 8 }, /turf/open/floor/iron/dark, /area/station/service/chapel/office) @@ -54261,10 +54374,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "sGC" = ( @@ -54435,7 +54548,7 @@ name = "Storage Room" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -54496,7 +54609,7 @@ pixel_x = 8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sLU" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 @@ -54645,13 +54758,13 @@ name = "Primary Treatment Centre" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "sOi" = ( @@ -54710,7 +54823,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sOZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -54741,7 +54854,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -54824,7 +54937,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port) "sQy" = ( @@ -54861,6 +54974,17 @@ }, /turf/open/floor/iron, /area/station/engineering/gravity_generator) +"sQQ" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/machinery/pdapainter/research, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/rd) "sQY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -54958,17 +55082,6 @@ "sSp" = ( /turf/closed/wall, /area/station/medical/treatment_center) -"sSs" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "sSx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -54990,7 +55103,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -55153,7 +55266,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "sVz" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/modular_computer/preset/command, @@ -55270,12 +55383,10 @@ "sXe" = ( /obj/effect/landmark/start/station_engineer, /obj/machinery/light/directional/west, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -31 - }, /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/structure/sign/warning/electric_shock/directional/west, /turf/open/floor/iron, /area/station/engineering/main) "sXm" = ( @@ -55447,7 +55558,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, @@ -55674,7 +55785,7 @@ "tfz" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tfD" = ( /obj/structure/table/wood/poker, /obj/effect/decal/cleanable/dirt, @@ -55686,7 +55797,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -56008,9 +56119,6 @@ "tml" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, -/obj/machinery/newscaster/directional/south{ - pixel_x = -28 - }, /obj/machinery/atmospherics/components/binary/pump{ dir = 4 }, @@ -56058,10 +56166,10 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "tmQ" = ( @@ -56206,7 +56314,7 @@ }, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tpn" = ( /obj/machinery/light/small/directional/west, /obj/machinery/camera/directional/west{ @@ -56215,7 +56323,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tpA" = ( /obj/machinery/cell_charger{ pixel_y = 4 @@ -56334,14 +56442,14 @@ /obj/machinery/teleport/hub, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "trx" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "try" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -56363,17 +56471,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"trG" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/machinery/firealarm/directional/west, -/obj/item/stack/cable_coil{ - pixel_x = -1; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) +/area/station/ai/satellite/exterior) "tsb" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -56435,13 +56533,6 @@ /obj/item/knife/kitchen, /turf/open/floor/iron/white, /area/station/science/cytology) -"tsT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "tsZ" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /obj/structure/lattice/catwalk, @@ -56684,7 +56775,7 @@ /obj/structure/cable/layer3, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "txk" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.5-Recreation"; @@ -56948,6 +57039,18 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos) +"tBO" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/structure/table/wood, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/turf/open/floor/iron/grimy, +/area/station/service/chapel/office) "tBV" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -57102,6 +57205,12 @@ }, /turf/open/floor/plating, /area/station/cargo/sorting) +"tGy" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "tGA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -57178,7 +57287,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tHZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -57191,7 +57300,7 @@ "tIa" = ( /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tIb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank, @@ -57207,14 +57316,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/service) -"tId" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/camera/directional/east{ - c_tag = "Science Maintenance Corridor"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/research) "tIe" = ( /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/white, @@ -57293,7 +57394,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -57338,7 +57439,7 @@ "tJE" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tJF" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -57406,16 +57507,6 @@ /obj/machinery/wall_healer/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/command) -"tKu" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "tKE" = ( /turf/closed/wall, /area/station/security/checkpoint/engineering) @@ -57642,7 +57733,7 @@ /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -57680,7 +57771,7 @@ /area/station/science/xenobiology/hallway) "tOh" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tOm" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -57872,7 +57963,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tSY" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -57887,7 +57978,7 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/plating/airless, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tTF" = ( /obj/effect/spawner/random/engineering/vending_restock, /turf/open/floor/plating, @@ -57908,17 +57999,15 @@ }, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tTT" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/machinery/camera/directional/north{ c_tag = "Locker Room Starboard" }, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, /obj/effect/turf_decal/delivery, +/obj/structure/sign/warning/pods/directional/north, /turf/open/floor/iron, /area/station/commons/locker) "tUc" = ( @@ -58019,8 +58108,11 @@ }, /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tUH" = ( /obj/item/clothing/mask/gas, /turf/open/floor/plating, @@ -58090,7 +58182,7 @@ }, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tVG" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/firealarm/directional/north, @@ -58180,7 +58272,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "tXD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -58237,19 +58329,6 @@ /obj/effect/turf_decal/tile/purple/fourcorners, /turf/open/floor/iron, /area/station/command/heads_quarters/rd) -"tYQ" = ( -/obj/structure/cable, -/obj/structure/bed/dogbed/mcgriff, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/firealarm/directional/west{ - pixel_y = 26 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 9 - }, -/mob/living/basic/pet/dog/pug/mcgriff, -/turf/open/floor/iron, -/area/station/security/warden) "tYS" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Two"; @@ -58336,7 +58415,7 @@ }, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uag" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58398,12 +58477,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"uaN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) "uaR" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/engine, @@ -58442,7 +58515,7 @@ }, /obj/structure/sign/directions/evac, /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ubj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58482,19 +58555,7 @@ /obj/machinery/light/small/directional/east, /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"ubD" = ( -/obj/structure/rack, -/obj/machinery/firealarm/directional/west, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/multitool, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) +/area/station/ai/satellite/chamber) "ubF" = ( /obj/structure/table, /obj/item/reagent_containers/cup/beaker{ @@ -58696,7 +58757,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, @@ -58829,7 +58890,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) @@ -58911,7 +58972,7 @@ "ukk" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ukm" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -59147,7 +59208,7 @@ }, /obj/effect/turf_decal/tile/blue/anticorner/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uoM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/brig{ @@ -59222,7 +59283,7 @@ name = "Research Division Access" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -59398,6 +59459,7 @@ /obj/machinery/atmospherics/components/unary/airlock_pump{ dir = 4 }, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/plating, /area/station/hallway/secondary/entry) "usC" = ( @@ -59541,7 +59603,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uuO" = ( /obj/machinery/mech_bay_recharge_port{ dir = 8 @@ -59653,7 +59715,7 @@ /obj/structure/cable, /obj/machinery/duct, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -59835,32 +59897,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"uzK" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/item/pen/blue{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/fountain{ - pixel_x = 10 - }, -/obj/item/pen/red{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/stamp/denied{ - pixel_y = -1 - }, -/obj/item/stamp{ - pixel_x = -9; - pixel_y = -1 - }, -/turf/open/floor/catwalk_floor/iron, -/area/station/cargo/storage) "uAg" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, @@ -60099,7 +60135,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uEz" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -60194,7 +60230,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "uFy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -60494,7 +60530,7 @@ "uKj" = ( /obj/structure/chair, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uKx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -60576,7 +60612,7 @@ name = "AI Chamber Requests Console" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uLz" = ( /obj/machinery/light/small/directional/east, /obj/machinery/camera/directional/east{ @@ -60585,7 +60621,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uLE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61050,7 +61086,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uVd" = ( /obj/structure/chair{ dir = 8 @@ -61135,15 +61171,11 @@ }, /turf/open/floor/iron, /area/station/security/courtroom) -"uWk" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology/hallway) "uWn" = ( /obj/machinery/nuclearbomb/selfdestruct, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uWo" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /turf/open/floor/iron, @@ -61166,7 +61198,8 @@ }, /obj/machinery/light/directional/east, /obj/structure/sign/painting/library_secure{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/spawner/random/decoration/statue{ spawn_loot_chance = 50 @@ -61182,7 +61215,7 @@ name = "Theater Backstage" }, /obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/station/service/theater) @@ -61428,19 +61461,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /turf/open/floor/iron/white, /area/station/security/medical) -"vaI" = ( -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) "vaY" = ( /obj/item/storage/bag/trash, /obj/machinery/airalarm/directional/west, @@ -61499,7 +61519,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vbL" = ( /obj/machinery/door/airlock/research{ name = "Ordnance Lab" @@ -61701,7 +61721,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vgZ" = ( /obj/structure/table/glass, /obj/structure/cable, @@ -61793,7 +61813,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/item/poster/traitor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "viF" = ( /obj/machinery/computer/upload/borg, /obj/machinery/door/window/left/directional/south{ @@ -61804,7 +61824,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "viH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/structure/window/reinforced, @@ -61982,7 +62002,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -62040,7 +62060,7 @@ "vly" = ( /obj/item/target/alien/anchored, /obj/machinery/camera/preset/ordnance{ - dir = 5 + pixel_x = 10 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating/airless{ @@ -62090,7 +62110,7 @@ "vmk" = ( /obj/machinery/status_display/ai/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vmp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62112,17 +62132,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) -"vmX" = ( -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "vnk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -62148,7 +62157,7 @@ network = list("aicore") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vnp" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -62391,7 +62400,7 @@ dir = 8 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vrP" = ( /obj/structure/cable, /obj/structure/table/reinforced, @@ -62714,11 +62723,11 @@ "vwN" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/greater) "vwP" = ( @@ -62815,10 +62824,6 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/iron/white, /area/station/medical/abandoned) -"vyi" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/corporate_showroom) "vyv" = ( /obj/structure/table, /obj/machinery/status_display/ai/directional/west, @@ -62831,7 +62836,7 @@ }, /obj/item/ai_module/supplied/freeform, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vyy" = ( /obj/machinery/washing_machine, /obj/effect/decal/cleanable/dirt, @@ -62846,7 +62851,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vyZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -63547,7 +63552,8 @@ "vKt" = ( /obj/structure/table/wood/fancy/royalblue, /obj/structure/sign/painting/library_secure{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/spawner/random/decoration/statue{ spawn_loot_chance = 50 @@ -63649,6 +63655,21 @@ /obj/machinery/portable_atmospherics/canister/water_vapor, /turf/open/floor/iron, /area/station/service/janitor) +"vMj" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron, +/area/station/security/brig) "vMw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63732,7 +63753,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, @@ -63871,9 +63892,14 @@ /turf/open/floor/wood, /area/station/service/theater) "vQI" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/station/security/brig) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/pods/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "vQO" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -64197,19 +64223,13 @@ /obj/item/multitool, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"vVI" = ( -/obj/structure/table/glass, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) +/area/station/ai/satellite/maintenance/storage) "vVM" = ( /obj/effect/turf_decal/bot_white/right, /obj/structure/closet/crate/goldcrate, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vVV" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -64389,21 +64409,6 @@ /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron/white, /area/station/command/heads_quarters/rd) -"vYF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) "vYI" = ( /obj/structure/sign/warning/secure_area/directional/north, /obj/structure/closet/radiation, @@ -64431,6 +64436,18 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) +"vYP" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/atmos) "vZb" = ( /obj/machinery/disposal/bin{ desc = "A pneumatic waste disposal unit. This one leads to the morgue."; @@ -64555,6 +64572,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/service/hydroponics) +"wau" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/machinery/firealarm/directional/west, +/obj/item/stack/cable_coil{ + pixel_x = -1; + pixel_y = -3 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmospherics_engine) "waB" = ( /obj/machinery/door/airlock/external/glass{ name = "Supply Door Airlock" @@ -64768,13 +64795,6 @@ /obj/machinery/light/cold/directional/east, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"weq" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/station/science/ordnance/bomb) "wev" = ( /obj/structure/rack, /obj/item/storage/box, @@ -64795,7 +64815,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) @@ -64933,12 +64953,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/commons/dorms) -"wgw" = ( -/obj/structure/sign/warning/secure_area{ - name = "\improper STAY CLEAR HEAVY MACHINERY" - }, -/turf/closed/wall, -/area/station/maintenance/port/fore) "wgP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -65102,7 +65116,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wjT" = ( /obj/structure/cable, /obj/machinery/power/terminal{ @@ -65113,13 +65127,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/solars/port/aft) -"wkh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) "wki" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/wood, @@ -65198,6 +65205,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/storage/tools) +"wlQ" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmospherics_engine) "wlZ" = ( /obj/machinery/status_display/evac/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, @@ -65295,7 +65307,7 @@ }, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "wnW" = ( /obj/structure/bodycontainer/morgue{ dir = 1 @@ -65341,6 +65353,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/main) +"woU" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "woV" = ( /obj/machinery/door/window/left/directional/north, /turf/open/floor/iron/grimy, @@ -65402,7 +65420,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wpK" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -65509,7 +65527,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wss" = ( /obj/machinery/status_display/evac/directional/north, /obj/item/folder/yellow{ @@ -65541,12 +65559,12 @@ /obj/machinery/door/airlock/medical/glass{ name = "Cryogenics Bay" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "wsx" = ( @@ -65634,7 +65652,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, @@ -65686,7 +65704,7 @@ "wtB" = ( /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wtD" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/wall_healer/directional/east, @@ -65727,7 +65745,7 @@ "wuM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wvd" = ( /obj/machinery/door/airlock{ id_tag = "Cabin5"; @@ -66033,7 +66051,7 @@ "wzH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wzK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66076,6 +66094,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"wAI" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/carpet, +/area/station/command/bridge) "wBe" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -66222,6 +66244,18 @@ }, /turf/open/floor/iron, /area/station/security/courtroom) +"wCR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "wCS" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -66377,6 +66411,14 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron, /area/station/service/hydroponics) +"wFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/landmark/firealarm_sanity, +/turf/open/floor/iron, +/area/station/security/brig) "wGa" = ( /obj/machinery/camera/directional/west{ c_tag = "Central Primary Hallway - Starboard - Art Storage" @@ -66460,6 +66502,13 @@ }, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) +"wHr" = ( +/obj/machinery/flasher/directional/east{ + id = "hopflash"; + pixel_x = 0 + }, +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/command) "wHu" = ( /turf/closed/wall, /area/station/science/lobby) @@ -66474,20 +66523,6 @@ }, /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) -"wHK" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals - Station Entrance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer5, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) "wHL" = ( /obj/machinery/vending/wardrobe/bar_wardrobe, /obj/item/radio/intercom/directional/east, @@ -66506,7 +66541,7 @@ /turf/open/floor/circuit/green{ luminosity = 2 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wIa" = ( /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, @@ -66673,7 +66708,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wNp" = ( /obj/structure/bed, /obj/effect/decal/cleanable/cobweb, @@ -66814,7 +66849,7 @@ req_access = list("ai_upload") }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wPB" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine/air, @@ -66907,6 +66942,16 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"wQE" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/warning/directional/southeast, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) "wQI" = ( /obj/machinery/door/poddoor/shutters/preopen{ dir = 8; @@ -66948,18 +66993,6 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics/garden) -"wRB" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/firealarm/directional/west, -/obj/structure/table/wood, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) "wRD" = ( /obj/effect/decal/cleanable/dirt, /obj/item/mmi, @@ -67048,7 +67081,7 @@ /obj/item/pen, /obj/item/papercutter, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wTs" = ( /obj/item/radio/intercom/directional/south, /obj/machinery/camera/directional/south{ @@ -67104,13 +67137,6 @@ /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"wUG" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "wUH" = ( /obj/machinery/camera/directional/west{ c_tag = "Medbay Break Room"; @@ -67265,7 +67291,7 @@ /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -67527,7 +67553,7 @@ }, /obj/machinery/light/cold/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xdF" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -67561,7 +67587,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xeN" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -67677,43 +67703,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron, /area/station/cargo/storage) -"xgi" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/item/bodypart/arm/right/robot{ - pixel_x = 3 - }, -/obj/item/bodypart/arm/left/robot{ - pixel_x = -3 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/firealarm/directional/west, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/machinery/ecto_sniffer{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) "xgn" = ( /obj/structure/table/glass, /obj/effect/turf_decal/siding/white{ @@ -67761,7 +67750,7 @@ /obj/structure/cable/multilayer/connected, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "xgG" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/rack, @@ -67795,7 +67784,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xhb" = ( /obj/machinery/meter, /obj/effect/decal/cleanable/dirt, @@ -67902,7 +67891,7 @@ pixel_x = -8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xje" = ( /obj/machinery/duct, /turf/open/floor/plating, @@ -68005,7 +67994,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "xkE" = ( /obj/machinery/recharge_station, /obj/effect/landmark/start/hangover, @@ -68077,7 +68066,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xlW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -68503,7 +68492,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "north-maint-viewingdeck" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -68701,6 +68690,11 @@ "xww" = ( /turf/closed/wall/r_wall, /area/station/engineering/storage/tech) +"xwC" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/station/service/library) "xwD" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron/white, @@ -68799,7 +68793,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xyq" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -69007,7 +69001,7 @@ dir = 6 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xCf" = ( /obj/item/clothing/suit/jacket/straight_jacket, /obj/item/electropack, @@ -69045,7 +69039,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xCx" = ( /obj/item/stack/package_wrap, /obj/item/stack/package_wrap, @@ -69204,7 +69198,8 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/delivery, /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) @@ -69270,7 +69265,8 @@ /area/station/medical/medbay/lobby) "xFx" = ( /obj/structure/sign/map/meta/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) @@ -69312,7 +69308,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xGT" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, @@ -69469,11 +69465,11 @@ /turf/open/floor/iron/white, /area/station/science/ordnance/testlab) "xKd" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 +/obj/structure/sign/directions/engineering{ + dir = 4 }, -/turf/open/space/basic, -/area/space/nearstation) +/turf/closed/wall/r_wall, +/area/station/engineering/storage/tcomms) "xKh" = ( /obj/structure/railing{ dir = 10 @@ -69650,7 +69646,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "service-passthrough" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/greater) @@ -69678,6 +69674,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"xOB" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) "xOF" = ( /obj/docking_port/stationary/laborcamp_home{ dir = 8 @@ -69800,7 +69805,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xQO" = ( /obj/structure/table/glass, /obj/item/reagent_containers/cup/bottle/morphine{ @@ -69956,16 +69961,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/break_room) -"xUb" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) "xUh" = ( /obj/structure/closet/wardrobe/pjs, /obj/effect/landmark/start/hangover, @@ -70210,7 +70205,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xXM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/chair, @@ -70218,7 +70213,8 @@ dir = 1 }, /obj/structure/sign/map/meta/left{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) @@ -70745,7 +70741,7 @@ /area/station/engineering/atmos) "yfL" = ( /turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "yfT" = ( /obj/structure/table/wood, /obj/item/pen/red, @@ -70819,19 +70815,6 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"yhm" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) "yhu" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -70889,6 +70872,23 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/medical/chemistry) +"yiB" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"yiH" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/security/warden) "yiJ" = ( /obj/structure/chair/sofa/right/brown, /obj/item/toy/plush/moth{ @@ -71038,10 +71038,6 @@ }, /turf/open/floor/iron, /area/station/security/brig) -"yme" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/security/checkpoint/customs) (1,1,1) = {" aaa @@ -80404,7 +80400,7 @@ aaa aaa wdr vvW -mtL +wdr kFT nDP qEt @@ -83251,7 +83247,7 @@ eIa vNM wdr lMJ -lXm +qEt jrY qEt lMJ @@ -83522,7 +83518,7 @@ pOa aox aox aox -euT +aox aox aaa aaa @@ -84036,7 +84032,7 @@ iCx pOa dlL qgf -gDZ +aOs jUb jUb nBy @@ -84528,7 +84524,7 @@ lCD fSJ lCD lCD -wHK +kAw wwI lCD vAe @@ -85039,7 +85035,7 @@ fcq xjh qhW xjh -yme +xjh fxI tep dHc @@ -85341,7 +85337,7 @@ aaa aaa lMJ aox -pZW +lMJ aaa aaa xjH @@ -85855,7 +85851,7 @@ jUb jUb jUb oDs -aCW +oUJ nBy aaa xjH @@ -87585,7 +87581,7 @@ com hKg hKg xXR -kat +hKg hKg pnI hKg @@ -87595,7 +87591,7 @@ aaa hxo bnA riU -oDJ +cbz lAa fyz hxo @@ -88347,7 +88343,7 @@ dwI iPE vfv wXv -qCm +diI tXO jXu iGB @@ -88603,7 +88599,7 @@ ggZ isO gYE uEC -wgw +jXu twr fpn jXu @@ -88700,7 +88696,7 @@ gAf tSw tSw aaa -gda +lAu aaa aaa sGL @@ -89213,7 +89209,7 @@ tSw aBQ qEf qEf -aIl +xOB gXF atk bhS @@ -89913,7 +89909,7 @@ dfk rQD nsh vWD -uzK +jGH liU nrB smB @@ -90194,7 +90190,7 @@ wki jIY mjr bXQ -cxC +xwC saN tPe sVY @@ -90990,7 +90986,7 @@ rDJ guC fTE hBY -vVI +bKl gmN vun iRy @@ -91238,7 +91234,7 @@ mpV izs fYc gvd -grm +aCZ sSp ina drE @@ -91954,9 +91950,9 @@ rlU qrg cpi cpi -nSn -qpD -qYC +pEl +rlU +gda pNC uqX loR @@ -92045,7 +92041,7 @@ tSw wZA vpP tSw -wRB +tBO iix cvy xvf @@ -92236,7 +92232,7 @@ rBB kJk xJj gZq -aiy +ott oor mnP tEr @@ -92468,7 +92464,7 @@ rlU vbF wHW wHW -okj +khC rlU qYC pNC @@ -92482,7 +92478,7 @@ kQP kQP kQP kQP -rcR +lVp sZP pxK tAV @@ -92735,7 +92731,7 @@ hTM aHt aHt aHt -eaQ +jMg aHt qlW jfg @@ -93050,7 +93046,7 @@ mpk pyU vun eFG -cBH +lWX hwe iZn rar @@ -93272,7 +93268,7 @@ guR lsf usA vLi -vmX +mJO usA keR xuS @@ -93284,7 +93280,7 @@ usA vLi usA jWg -tKu +kJf bBA txz wYe @@ -93560,7 +93556,7 @@ dpI ttE ttE sZH -wUG +yiB eGJ rpw gQG @@ -93572,7 +93568,7 @@ pLz lgT hDp sOn -xUb +qGw ePg eMI jfN @@ -94818,8 +94814,8 @@ lxp qRI urA nIR -hyN -uaN +tOh +mGl jIg dTr rIL @@ -95014,7 +95010,7 @@ cFc tdW xQO tnb -cui +aqv aBL rUG cWI @@ -95597,8 +95593,8 @@ yfL yfL yfL yfL -hyN -qoR +tOh +jpS kON eLv qPJ @@ -95850,7 +95846,7 @@ gBD twl bcx rhK -rKJ +gwG wFe rjz fHd @@ -95860,7 +95856,7 @@ htd ebM uRA mTk -yhm +nTD rbs jHA lln @@ -96100,7 +96096,7 @@ htG bIq pJR mQq -ndS +wHr urA pFG gBD @@ -96305,7 +96301,7 @@ kNY btR btR swe -fNh +bHU wUc mtG uyd @@ -96318,7 +96314,7 @@ jyJ jyJ jyJ jyJ -cJj +dKl klp pHb wsX @@ -96562,7 +96558,7 @@ ndj cWI gCE lAM -osw +lAM lAM rJB ggj @@ -96575,7 +96571,7 @@ xqI gWc oAN iKj -vQI +lAM mCJ lsP ekP @@ -96616,8 +96612,8 @@ bOk tNg vpg ebx -aks -hux +gaO +gBD bbT ilq kAp @@ -97396,8 +97392,8 @@ sYh dVw nBs eLa -vyi -nNY +jzN +hhE htd tHR sTz @@ -97450,9 +97446,9 @@ bxX iUm aAS kJB -biA +woU iUm -xKd +lAu lMJ aaa aaa @@ -97642,8 +97638,8 @@ duI lwt ddm vKL -gmH -lSz +dho +wCR aks qzz qRV @@ -97861,7 +97857,7 @@ aeq dFW fYJ ycM -tYQ +dlf dsk ewC iAN @@ -98189,7 +98185,7 @@ iEK jyt vWn joq -naf +kUA hvs wWk aCE @@ -98200,11 +98196,11 @@ qQY njX njX njX -gSW +mio oAu bxf njX -cRw +jZU uGE njX vNv @@ -98633,7 +98629,7 @@ vDh ewj bkl wZU -pMy +yiH oGH orx eeq @@ -98889,8 +98885,8 @@ aeq jpj ewj ycM -mMM -bkl +mop +ycM ycM bkl bkl @@ -99148,7 +99144,7 @@ ayV gFR khm uok -bzV +vMj ezg uVv pdI @@ -99159,7 +99155,7 @@ olw pxT xEt wXT -jcR +hVQ fky vWI txH @@ -99183,8 +99179,8 @@ duI duI wtX ppB -nEC -gmH +wAI +dho ebx vQe kHn @@ -99206,7 +99202,7 @@ rgZ suW hJF cZK -euw +bto cXg nyy gVl @@ -99216,7 +99212,7 @@ ebV dZb ebV fma -xgi +bYQ sck iwA puP @@ -99405,8 +99401,8 @@ nZk sVi tjv pHb -syc -wkh +iNy +wFP dGW hhp bJq @@ -99452,8 +99448,8 @@ aAI gzi krL cqm -vyi -wpx +jzN +kGP htd tHR udN @@ -99662,7 +99658,7 @@ duF cJj erx lsP -vYF +mKQ eaP fDm bAV @@ -100179,7 +100175,7 @@ pHb qwh mrL fnN -cqd +jTk ieV qhz juj @@ -100214,8 +100210,8 @@ eoD eoD bcT xPN -vQe -kmZ +klN +tvE buL pha sdp @@ -100725,7 +100721,7 @@ syo sYp wBs apw -eVX +qfK syo nue vQe @@ -100770,7 +100766,7 @@ pJl rYI gHw nDw -eBU +jYa aYX vzx gyQ @@ -101719,7 +101715,7 @@ pBG sOZ uWo jMy -eey +gHD aHr mhA xNo @@ -102279,8 +102275,8 @@ tvE tvE aan tvE -kmZ -tsT +tvE +gJh htd dhU dkW @@ -102764,8 +102760,8 @@ iIf pJE uUl cBf -ftM -wEG +cBf +vQI htd vET syo @@ -103029,7 +103025,7 @@ sqM kwQ jZR sqM -cOP +dtE nOj wGa kwQ @@ -103037,7 +103033,7 @@ mmS vLb jmT jZR -mJN +fDb cwP sqM hBr @@ -103048,7 +103044,7 @@ diE dYg hwF diE -ggq +gyW nnR wah wpx @@ -103272,7 +103268,7 @@ rUO gmk qCP mPw -jhc +sqB iPp eVz pJE @@ -103313,8 +103309,8 @@ cfe ddO sLE cEv -cyM -eeT +tGy +hcg tUn hKV fWK @@ -103832,7 +103828,7 @@ qOM tUn ftj wXF -doM +bLq tZo bXg oFT @@ -104053,7 +104049,7 @@ xNv mqK qXB eFR -ubD +eXh usK dZm vFB @@ -104095,7 +104091,7 @@ rCx nBj gYe vQb -mdu +sQQ xPm ohZ sac @@ -104270,7 +104266,7 @@ aaa aaa aaa aaa -mxn +euT yeV hUB qmf @@ -104293,7 +104289,7 @@ fRW qnS uxb hAk -gzO +eve eqn jSb kAF @@ -105709,13 +105705,13 @@ lMJ dxK lMJ lMJ -weq +cxz kJi pgU qRS pnk kJi -weq +cxz aaa aaa aaa @@ -105870,7 +105866,7 @@ sFB mal wIf pmZ -qdI +oBK ttF sRY wDh @@ -105967,11 +105963,11 @@ aaa lMJ kJi kJi -hxV +fiu xhh xhh cmH -grw +jHy kJi kJi aaa @@ -106073,7 +106069,7 @@ cfy oAa peF peF -sSs +nOA gkM plL uKL @@ -106481,11 +106477,11 @@ aaa lMJ kJi kJi -coc +gDe bQk xhh xhh -iYD +wQE kJi kJi aaa @@ -106737,13 +106733,13 @@ lMJ dxK lMJ lMJ -weq +cxz kJi vpl cDb xOI kJi -weq +cxz aaa aaa aaa @@ -107112,7 +107108,7 @@ ewk dtg wcr mMx -edq +cUq wcr mMx qTz @@ -107443,9 +107439,9 @@ wXF mOD fAI tUn -tId +aah okQ -hEV +oBE bLd uGX xuD @@ -107700,9 +107696,9 @@ wXF wXF wXF wXF -bcb +gFQ gMQ -bcb +gFQ oWk clj xuD @@ -108744,7 +108740,7 @@ xuD xuD imU mEL -oWc +oWk rYy rUT uIi @@ -109947,7 +109943,7 @@ tCS aeu kSB gon -rux +hYH yaD uXd sVc @@ -109955,7 +109951,7 @@ tfg ssI ssI uXd -kCq +jyZ sXe gLo ofk @@ -109964,7 +109960,7 @@ fDL hSt qhw naN -fMN +lch icR sqE nGA @@ -110484,7 +110480,7 @@ sqE mEO gnS jPf -esk +xKd esk esk vgd @@ -110746,7 +110742,7 @@ mbJ ncd gYO flE -fcA +lpL cVj uKz fnT @@ -111252,7 +111248,7 @@ oWm cuc adz tUw -rHq +lkE peX kRi klw @@ -111491,7 +111487,7 @@ loA tlh loA erh -iHu +bRn xAW lia aXK @@ -112262,13 +112258,13 @@ wbF qaA bMA rao -vaI +djk yaF qaA fTL qaA wgf -jUT +mMH rao qaA haR @@ -112334,8 +112330,8 @@ aaa wmL cvO fjO -hUd -uWk +pSR +wmL aaa aaa aaa @@ -112519,13 +112515,13 @@ kYG sGC vuJ sGC -cFu +kYG kYG sGC wBM sGC dOs -cFu +kYG sGC pqb sNt @@ -113105,7 +113101,7 @@ eYu agN bXs bvg -juH +kZo pJA hLJ oMA @@ -114851,7 +114847,7 @@ fJy fJy fJy pnJ -dKl +fJy fJy byR iFh @@ -115896,7 +115892,7 @@ vRS gyJ qLU fFA -nGq +vYP kRf uQe pul @@ -117214,7 +117210,7 @@ nEb jCO caf tgm -gKD +rgH fdZ fdZ fdZ @@ -117433,7 +117429,7 @@ aaa vhv vhv vhv -sCp +vhv mUL isr eDc @@ -117689,8 +117685,8 @@ aaa aaa vhv sZI -trG -hEX +wau +wlQ vTX vTX gSu @@ -119239,8 +119235,8 @@ nqR oog vTX jTS -sCp -kJO +vhv +cAr cyW jvj pul @@ -119270,7 +119266,7 @@ rDf eUe eSb nnc -nnc +mtL nnc rvK nnc @@ -122814,10 +122810,10 @@ aaa aaa aaa lMJ -beq +ghL qmR cUI -beq +ghL blx qZX hml @@ -124360,7 +124356,7 @@ gfU gfU gfU gfU -evI +lhI abR pfe cok @@ -125128,7 +125124,7 @@ jEr lro aWN aVl -jGa +eBW uLv bjQ bjQ diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm index a5993035d49070..276d55ba7dba57 100644 --- a/_maps/map_files/Mining/Lavaland.dmm +++ b/_maps/map_files/Mining/Lavaland.dmm @@ -20,7 +20,6 @@ /turf/closed/mineral/random/high_chance/volcanic, /area/lavaland/surface/outdoors) "ae" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -82,12 +81,6 @@ /obj/item/clothing/glasses/meson, /turf/open/floor/iron/dark, /area/mine/storage/public) -"as" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "av" = ( /obj/machinery/computer/arcade/orion_trail{ dir = 4 @@ -100,15 +93,10 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "aF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) -"aH" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/obj/structure/lattice/catwalk/mining, +/obj/structure/railing, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) "aM" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "lavaland_living_east_maint" @@ -118,7 +106,7 @@ /obj/machinery/door/airlock/external{ name = "Mining External Airlock" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/decal/cleanable/dirt, @@ -153,20 +141,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/mine/maintenance/service) -"aX" = ( -/obj/effect/turf_decal/sand/plating/volcanic, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plating/lavaland_atmos, -/area/lavaland/surface/outdoors) -"ba" = ( -/obj/structure/chair/sofa/middle{ - dir = 1; - color = "#AA4A44" - }, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "bb" = ( /obj/structure/closet/crate/internals, /obj/item/tank/internals/emergency_oxygen, @@ -185,12 +159,19 @@ }, /area/mine/laborcamp/production) "be" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Raptor Ranch External Airlock" +/obj/structure/railing{ + dir = 6 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) +/obj/structure/table/wood, +/obj/item/raptor_dex, +/obj/item/raptor_dex{ + pixel_y = 7 + }, +/obj/item/raptor_dex{ + pixel_y = 13 + }, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "bf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large, @@ -234,10 +215,6 @@ }, /turf/open/floor/plating, /area/mine/maintenance/production) -"bE" = ( -/obj/structure/table/wood, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "bH" = ( /obj/structure/table, /obj/item/book/manual/chef_recipes{ @@ -398,8 +375,6 @@ /area/mine/maintenance/production) "cy" = ( /obj/structure/bed/medical/emergency, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white/smooth_corner{ dir = 8 @@ -630,18 +605,22 @@ /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) "dF" = ( -/obj/structure/table/wood, -/obj/item/food/meat/slab, -/obj/item/food/meat/slab{ - pixel_x = 6; - pixel_y = 5 +/obj/item/reagent_containers/cup/bucket/wooden{ + pixel_y = 12; + pixel_x = 10 + }, +/obj/structure/chair/plastic{ + dir = 4 }, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "dI" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ash/fireblossom, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "dJ" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -699,10 +678,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/iron/smooth_edge{ dir = 8 }, /area/mine/laborcamp/production) +"ep" = ( +/obj/structure/sign/directions/evac/directional/south{ + pixel_y = 0 + }, +/turf/closed/wall, +/area/mine/production) "et" = ( /obj/structure/stone_tile/block/cracked{ dir = 4 @@ -782,11 +768,12 @@ }, /area/mine/cafeteria) "eL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/sand/plating/volcanic, +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "eN" = ( /obj/structure/chair/wood{ dir = 1 @@ -834,9 +821,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/mine/laborcamp/security/maintenance) -"fa" = ( -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "fb" = ( /obj/structure/railing/corner{ dir = 4 @@ -847,6 +831,7 @@ "fe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "ff" = ( @@ -875,6 +860,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/iron/smooth, /area/mine/laborcamp) "fo" = ( @@ -1239,7 +1225,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/structure/cable, /obj/machinery/light/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, /obj/item/radio/intercom/directional/south, @@ -1289,8 +1274,10 @@ /turf/open/floor/iron/freezer, /area/mine/living_quarters) "hl" = ( -/obj/structure/tank_holder/extinguisher, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "hn" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -1410,13 +1397,6 @@ /obj/structure/stone_tile, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"hM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "hR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1456,6 +1436,7 @@ name = "Infirmary" }, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/side{ dir = 1 }, @@ -1516,10 +1497,6 @@ /obj/item/clothing/glasses/meson, /turf/open/floor/iron/dark, /area/mine/storage/public) -"il" = ( -/obj/item/flashlight/lantern/on, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "io" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1714,9 +1691,22 @@ /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) "jt" = ( -/obj/structure/fireplace, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/effect/turf_decal/trimline/yellow/filled/arrow_cw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/arrow_cw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/mine/production) "jw" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -1761,11 +1751,6 @@ }, /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) -"jJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "jL" = ( /obj/structure/stone_tile/surrounding_tile, /obj/structure/stone_tile/surrounding_tile{ @@ -1816,12 +1801,23 @@ }, /area/mine/production) "jX" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/effect/turf_decal/trimline/yellow/filled/arrow_cw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/arrow_cw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 4 }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/mine/production) "ka" = ( /obj/structure/table, /obj/machinery/newscaster/directional/north, @@ -1833,18 +1829,16 @@ /turf/open/floor/iron/checker, /area/mine/cafeteria) "kf" = ( -/obj/structure/railing{ - dir = 9 +/obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/marker_beacon/purple, +/obj/structure/railing/corner/end/flip{ + dir = 8 }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "kg" = ( /turf/closed/wall/r_wall, /area/mine/laborcamp) -"ki" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) "kk" = ( /obj/structure/stone_tile/block{ dir = 8 @@ -2193,12 +2187,15 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/airlock/external/glass{ name = "Mining Shuttle Airlock" }, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark/textured_large, /area/mine/production) "lN" = ( @@ -2328,17 +2325,6 @@ }, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"mk" = ( -/obj/structure/table/wood, -/obj/item/raptor_dex{ - pixel_y = 13 - }, -/obj/item/raptor_dex{ - pixel_y = 7 - }, -/obj/item/raptor_dex, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "ml" = ( /obj/structure/stone_tile/block/cracked{ dir = 8 @@ -2419,7 +2405,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -2752,12 +2738,6 @@ /obj/effect/spawner/random/trash/food_packaging, /turf/open/floor/iron/checker, /area/mine/laborcamp) -"nO" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) "nP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/scrubber, @@ -2858,7 +2838,6 @@ /turf/open/floor/iron/dark, /area/mine/production) "oq" = ( -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) @@ -2936,14 +2915,9 @@ /turf/open/floor/iron/dark, /area/mine/laborcamp) "oO" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Mining External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) +/obj/structure/railing, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "oS" = ( /obj/machinery/door/airlock/external/glass{ name = "Mining External Airlock" @@ -3015,7 +2989,6 @@ "pp" = ( /obj/effect/spawner/random/trash/graffiti, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "pq" = ( @@ -3090,12 +3063,6 @@ }, /turf/open/floor/plating, /area/mine/laborcamp) -"pF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "pH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3122,9 +3089,20 @@ /turf/open/floor/iron/freezer, /area/mine/laborcamp/quarters) "pM" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/mine/lobby/raptor) +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/arrow_ccw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/mine/production) "pO" = ( /obj/machinery/shower/directional/south, /obj/machinery/door/window/left/directional/south, @@ -3134,7 +3112,6 @@ "pP" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "pQ" = ( @@ -3284,11 +3261,6 @@ }, /turf/open/floor/iron/dark, /area/mine/laborcamp/security) -"qB" = ( -/obj/machinery/smartfridge/drying/rack, -/obj/item/food/cheese/firm_cheese, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "qH" = ( /obj/machinery/door/airlock{ id_tag = "miningbathroomprivate"; @@ -3348,35 +3320,12 @@ }, /turf/open/floor/plating/lavaland_atmos, /area/lavaland/surface/outdoors) -"rf" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "rj" = ( -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = -1; - pixel_x = 5 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 9; - pixel_x = 8 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 9; - pixel_x = 2 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?" - }, +/obj/structure/railing, +/obj/structure/table/wood, +/obj/item/flashlight/lantern/on, /turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/area/lavaland/surface/outdoors) "rm" = ( /obj/structure/sign/warning/gas_mask/directional/west, /obj/effect/decal/cleanable/dirt, @@ -3419,12 +3368,13 @@ /turf/open/floor/plating, /area/mine/maintenance/service) "rB" = ( -/obj/structure/chair/sofa/corner{ - dir = 1; - color = "#AA4A44" +/obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/railing/corner/end/flip{ + dir = 4 }, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/obj/structure/marker_beacon/purple, +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "rF" = ( /turf/closed/wall/r_wall, /area/mine/maintenance/labor) @@ -3495,11 +3445,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/mine/maintenance/service) -"sa" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern/on, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "se" = ( /turf/open/floor/iron/dark/textured_large, /area/mine/eva) @@ -3596,10 +3541,6 @@ "sO" = ( /turf/open/floor/plating, /area/mine/maintenance/service) -"sQ" = ( -/obj/structure/ore_container/food_trough/raptor_trough, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "sR" = ( /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, @@ -3673,12 +3614,11 @@ }, /area/mine/cafeteria) "tf" = ( -/obj/structure/chair/sofa/corner{ - dir = 8; - color = "#AA4A44" +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "tg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance{ @@ -3742,8 +3682,6 @@ "tB" = ( /obj/structure/bed, /obj/item/bedsheet, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 6 }, @@ -3868,10 +3806,6 @@ }, /turf/open/floor/iron/white/smooth_edge, /area/mine/cafeteria) -"uw" = ( -/obj/effect/spawner/random/lavaland_mob/raptor, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "ux" = ( /obj/machinery/door/airlock{ id_tag = "miningdorm1"; @@ -3887,6 +3821,7 @@ /obj/effect/turf_decal/siding/wideplating_new{ dir = 9 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/checker, /area/mine/laborcamp) "uD" = ( @@ -3944,8 +3879,8 @@ /turf/open/floor/iron/dark/smooth_edge, /area/mine/laborcamp/security) "vb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_corner, /area/mine/medical) "vc" = ( @@ -4035,14 +3970,24 @@ /turf/open/floor/plating, /area/mine/hydroponics) "vr" = ( -/obj/structure/railing{ - dir = 1 +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw{ + dir = 8 }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/obj/effect/turf_decal/trimline/red/filled/arrow_ccw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/mine/production) "vu" = ( /obj/structure/bed/medical/emergency, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, /area/mine/medical) @@ -4101,6 +4046,7 @@ /area/mine/living_quarters) "vJ" = ( /obj/item/cigbutt, +/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "vL" = ( @@ -4108,14 +4054,6 @@ /obj/item/cigbutt, /turf/open/floor/iron/smooth, /area/mine/laborcamp) -"vM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "vN" = ( /obj/machinery/computer/records/security, /obj/structure/cable, @@ -4168,11 +4106,12 @@ /turf/open/floor/iron/checker, /area/mine/laborcamp) "wa" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("mine") +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/structure/ore_container/food_trough/raptor_trough, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "wb" = ( /obj/structure/chair{ dir = 8 @@ -4655,7 +4594,11 @@ /turf/open/floor/plating, /area/mine/maintenance/service) "ze" = ( -/turf/open/misc/ashplanet/rocky, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/ore_container/food_trough/raptor_trough, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "zf" = ( /obj/machinery/door/airlock{ @@ -4811,12 +4754,9 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "zX" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/structure/railing/corner, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "Ae" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4833,12 +4773,12 @@ /turf/open/floor/plating, /area/mine/laborcamp/production) "Ah" = ( -/obj/machinery/microwave{ - pixel_y = 6 +/obj/structure/lattice/catwalk/mining, +/obj/structure/railing{ + dir = 1 }, -/obj/structure/table/wood, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) "Ai" = ( /obj/structure/stone_tile/cracked{ dir = 1 @@ -4875,10 +4815,10 @@ /turf/open/floor/iron/dark/textured_large, /area/mine/production) "Av" = ( -/obj/structure/railing{ - dir = 9 +/obj/structure/railing/corner{ + dir = 8 }, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Ax" = ( /obj/item/pickaxe, @@ -4903,11 +4843,10 @@ /turf/open/floor/iron/smooth, /area/mine/laborcamp) "AF" = ( -/obj/structure/lattice/catwalk/mining, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/lava/smooth/lava_land_surface, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "AI" = ( /obj/structure/cable, @@ -4986,7 +4925,6 @@ /turf/open/floor/iron/smooth, /area/mine/laborcamp) "BA" = ( -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_edge{ dir = 8 @@ -5041,7 +4979,7 @@ /obj/machinery/door/airlock/external{ name = "Mining External Airlock" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, @@ -5086,30 +5024,9 @@ }, /turf/open/floor/iron/checker, /area/mine/cafeteria) -"Cn" = ( -/obj/structure/table/wood, -/obj/item/plate{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/plate{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/reagent_containers/cup/glass/mug/tea{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/effect/turf_decal/siding/wood/end{ - dir = 8 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "Cv" = ( -/obj/effect/turf_decal/sand/plating/volcanic, -/obj/structure/marker_beacon/purple, -/obj/effect/turf_decal/sand/plating/volcanic, -/turf/open/floor/plating/lavaland_atmos, +/obj/effect/spawner/random/lavaland_mob/raptor/young, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Cz" = ( /obj/machinery/door/airlock/medical/glass{ @@ -5163,21 +5080,27 @@ /turf/open/floor/iron/dark, /area/mine/mechbay) "CI" = ( -/obj/structure/sign/directions/supply/directional/east{ - pixel_x = null; - pixel_y = -24 +/obj/structure/railing{ + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) +"CM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw{ + dir = 8 }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/edge{ - dir = 1 +/obj/effect/turf_decal/trimline/red/filled/arrow_ccw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 }, -/area/mine/living_quarters) -"CM" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/textured_large, /area/mine/production) "CO" = ( /turf/open/floor/iron/textured_large, @@ -5194,7 +5117,6 @@ /obj/machinery/door/airlock/maintenance{ name = "Mining Station Maintenance" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, @@ -5209,9 +5131,6 @@ /obj/structure/curtain, /turf/open/floor/iron/freezer, /area/mine/living_quarters) -"CV" = ( -/turf/closed/wall/mineral/iron, -/area/mine/lobby/raptor) "CX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5416,6 +5335,7 @@ "Ez" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "EB" = ( @@ -5476,12 +5396,6 @@ dir = 1 }, /area/mine/production) -"EP" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "EQ" = ( /turf/open/floor/iron/smooth_edge{ dir = 8 @@ -5536,12 +5450,6 @@ }, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"Fo" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "Fp" = ( /obj/structure/table, /obj/machinery/recharger, @@ -5551,11 +5459,17 @@ /turf/open/floor/iron/dark, /area/mine/laborcamp/security) "Fr" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Mining Shuttle Airlock" +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/turf/open/floor/iron/dark/textured_large, /area/mine/production) "Fs" = ( /obj/effect/turf_decal/sand/plating/volcanic, @@ -5600,10 +5514,6 @@ "FH" = ( /turf/closed/wall, /area/lavaland/surface/outdoors) -"FI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "FL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small/directional/west, @@ -5689,6 +5599,10 @@ /obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron/dark, /area/mine/laborcamp) +"Gw" = ( +/obj/structure/sign/directions/supply/directional/east, +/turf/closed/wall, +/area/mine/living_quarters) "Gx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5731,9 +5645,6 @@ dir = 8 }, /area/mine/production) -"GG" = ( -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "GH" = ( /obj/machinery/door/airlock/glass{ name = "Arrival Lounge" @@ -5743,12 +5654,6 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron, /area/mine/lounge) -"GI" = ( -/obj/structure/rack, -/obj/item/stack/sheet/mineral/wood/fifty, -/obj/item/lighter, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "GL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5797,7 +5702,6 @@ /turf/open/floor/plating, /area/mine/maintenance/labor) "Hd" = ( -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, @@ -6144,9 +6048,10 @@ /area/mine/laborcamp) "Jg" = ( /obj/effect/turf_decal/sand/plating/volcanic, -/obj/structure/railing{ - dir = 10 +/obj/structure/railing/corner/end{ + dir = 4 }, +/obj/structure/marker_beacon/purple, /turf/open/floor/plating/lavaland_atmos, /area/lavaland/surface/outdoors) "Jh" = ( @@ -6201,7 +6106,6 @@ /turf/open/floor/iron, /area/mine/lounge) "Ju" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, /area/mine/mechbay) @@ -6222,10 +6126,6 @@ /area/lavaland/surface/outdoors) "JA" = ( /obj/machinery/computer/shuttle/mining/common, -/obj/structure/sign/directions/evac/directional/east{ - pixel_x = 0; - pixel_y = 24 - }, /obj/machinery/camera/autoname/directional/north{ network = list("mine") }, @@ -6407,40 +6307,11 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "Km" = ( -/obj/structure/rack, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?" - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 9 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 9; - pixel_x = 2 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 6 - }, -/obj/item/food/grown/grass/fairy{ - name = "weird hay"; - desc = "Somehow, somewhere, this tells you it should increase your friendship level with your animals. Too bad that doesn't work, right?"; - pixel_y = 6; - pixel_x = 9 - }, -/obj/item/crowbar/large, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/structure/railing/corner/end{ + dir = 8 }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "Kn" = ( /obj/machinery/telecomms/relay/preset/mining, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6460,11 +6331,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/mine/storage/public) -"Kp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_edge, -/area/mine/laborcamp) "Kq" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -6534,12 +6400,6 @@ }, /turf/open/floor/iron/checker, /area/mine/cafeteria) -"KO" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "KV" = ( /obj/structure/table, /obj/machinery/light/directional/east, @@ -6580,6 +6440,7 @@ dir = 1 }, /obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/checker, /area/mine/laborcamp) "Lg" = ( @@ -6661,15 +6522,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/mine/storage) -"Lv" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "Lw" = ( /obj/effect/turf_decal/sand/plating/volcanic, /obj/effect/turf_decal/stripes/line{ @@ -6688,7 +6540,7 @@ /area/mine/storage) "LE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 8 }, /obj/effect/turf_decal/siding/yellow{ dir = 1 @@ -6761,7 +6613,6 @@ /area/mine/laborcamp/production) "LR" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/iron/smooth_edge{ dir = 4 @@ -6786,7 +6637,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_edge, /area/mine/laborcamp) @@ -6827,10 +6677,6 @@ dir = 8 }, /area/mine/lounge) -"Mf" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "Mr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -6909,28 +6755,19 @@ /turf/open/floor/iron/checker, /area/mine/cafeteria) "MQ" = ( -/obj/structure/railing/corner{ - dir = 4 - }, /obj/structure/sign/directions/security/directional/west{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/directions/lavaland/directional/north{ - pixel_x = 32; - pixel_y = 8 + pixel_y = -7; + pixel_x = 0 }, -/obj/effect/turf_decal/sand/plating/volcanic, -/turf/open/floor/plating/lavaland_atmos, +/turf/closed/wall, /area/lavaland/surface/outdoors) "MS" = ( /turf/open/floor/carpet/executive, /area/mine/lounge) "MW" = ( -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/smooth_edge{ dir = 4 }, @@ -6939,6 +6776,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "Nc" = ( @@ -7011,6 +6849,7 @@ /obj/structure/ore_box, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) "Ns" = ( @@ -7046,7 +6885,6 @@ "Nz" = ( /obj/effect/turf_decal/bot, /obj/structure/ore_box, -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth_large, /area/mine/laborcamp/production) @@ -7073,9 +6911,6 @@ /obj/machinery/computer/order_console/mining, /turf/open/floor/iron/dark, /area/mine/production) -"NK" = ( -/turf/open/misc/ashplanet/ash, -/area/lavaland/surface/outdoors) "NL" = ( /obj/structure/railing, /obj/structure/lattice/catwalk/mining, @@ -7086,12 +6921,12 @@ /turf/open/floor/plating, /area/mine/laborcamp/security/maintenance) "NP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating/lavaland_atmos, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random/lavaland_mob/raptor/baby, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "NR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -7101,9 +6936,6 @@ dir = 1 }, /area/mine/laborcamp/production) -"NS" = ( -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "NT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7198,13 +7030,6 @@ }, /turf/open/floor/iron, /area/mine/lounge) -"Oo" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/item/reagent_containers/cup/bucket/wooden, -/turf/open/misc/hay/lavaland, -/area/lavaland/surface/outdoors) "Op" = ( /obj/structure/stone_tile/slab, /turf/open/misc/asteroid/basalt/lava_land_surface, @@ -7226,16 +7051,6 @@ dir = 4 }, /area/mine/laborcamp/security) -"OE" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "OH" = ( /obj/item/storage/fancy/cigarettes/cigpack_robust{ pixel_x = -8; @@ -7282,17 +7097,6 @@ /obj/structure/cable, /turf/open/floor/iron/white/textured_large, /area/mine/cafeteria) -"OW" = ( -/obj/structure/table/wood, -/obj/item/soap/deluxe{ - pixel_y = 11 - }, -/obj/item/soap/deluxe{ - pixel_y = 6 - }, -/obj/item/soap/deluxe, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) "OZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7316,13 +7120,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating/lavaland_atmos, /area/lavaland/surface/outdoors) -"Pe" = ( -/obj/structure/lattice/catwalk/mining, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating/lavaland_atmos, -/area/lavaland/surface/outdoors) "Pi" = ( /obj/machinery/light/small/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, @@ -7362,10 +7159,10 @@ /turf/open/floor/plating, /area/mine/cafeteria) "Pn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating/lavaland_atmos, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Po" = ( /obj/structure/table, @@ -7673,23 +7470,6 @@ /obj/structure/easel, /turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) -"Rj" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 8 - }, -/area/mine/eva) -"Rm" = ( -/obj/structure/bed, -/obj/effect/spawner/random/bedsheet, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "Ro" = ( /obj/effect/turf_decal/loading_area, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -7746,26 +7526,16 @@ /turf/closed/wall, /area/mine/maintenance/labor) "RF" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/sign/directions/security/directional/west{ - pixel_x = 0; - pixel_y = 24 - }, /obj/structure/sign/directions/lavaland/directional/west{ - pixel_x = 0; - pixel_y = 32 + pixel_x = 0 }, -/obj/effect/turf_decal/sand/plating/volcanic, -/turf/open/floor/plating/lavaland_atmos, -/area/lavaland/surface/outdoors) +/turf/closed/wall, +/area/mine/cafeteria) "RG" = ( /obj/machinery/door/airlock/public/glass{ id_tag = "cellblock1"; name = "Labor Camp Operations" }, -/obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/mine/laborcamp) @@ -7775,12 +7545,12 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "RO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/eva) +/obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "RV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -7791,7 +7561,7 @@ /area/mine/laborcamp/quarters) "RW" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, @@ -7842,11 +7612,6 @@ }, /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) -"Sj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) "Sm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/siding/yellow, @@ -7861,15 +7626,16 @@ /turf/open/floor/iron/dark, /area/mine/hydroponics) "Sp" = ( -/obj/structure/easel, -/obj/item/canvas/fortyfive_twentyseven, -/obj/item/canvas/thirtysix_twentyfour, -/obj/item/canvas/twentythree_nineteen, -/obj/item/paint_palette, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "Sq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /obj/structure/cable, /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -8049,23 +7815,24 @@ dir = 4 }, /area/mine/production) -"Tt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/wood/end{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "Tu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/mine/laborcamp) -"Tw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +"Tv" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "lavaland_living_west" + }, +/obj/structure/sign/directions/security/directional/west{ + pixel_y = -8 + }, +/turf/open/floor/iron/textured_large, +/area/mine/cafeteria) "Tx" = ( /obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, @@ -8079,7 +7846,6 @@ /turf/open/floor/iron/dark/smooth_edge, /area/mine/production) "TF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -8225,9 +7991,7 @@ /turf/open/floor/iron/dark/textured_large, /area/mine/production) "Ut" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/smooth_edge, /area/mine/laborcamp) "Uu" = ( @@ -8246,9 +8010,12 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "Uz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/obj/structure/railing{ + dir = 1 + }, +/obj/item/flashlight/lantern/on, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "UD" = ( /obj/structure/toilet{ dir = 8 @@ -8337,9 +8104,9 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "Vd" = ( -/obj/structure/railing, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/obj/structure/flora/ash/tall_shroom, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "Ve" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured_large, @@ -8462,14 +8229,18 @@ /turf/open/floor/iron/checker, /area/mine/laborcamp) "VI" = ( -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/effect/spawner/random/food_or_drink/donkpockets{ - pixel_x = 6; - pixel_y = 5 +/obj/machinery/door/airlock/external/glass{ + name = "Mining Shuttle Airlock" }, -/obj/structure/table/wood, -/turf/open/floor/carpet/red, -/area/mine/lobby/raptor) +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/mine/production) "VJ" = ( /obj/structure/closet/crate, /obj/item/food/mint, @@ -8492,12 +8263,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/mine/maintenance/labor) -"VP" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 8 - }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) "VS" = ( /obj/machinery/hydroponics/constructable, /obj/effect/decal/cleanable/dirt, @@ -8508,10 +8273,8 @@ /turf/open/floor/iron/dark, /area/mine/laborcamp) "VU" = ( -/obj/structure/railing/corner/end{ - dir = 8 - }, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/obj/structure/railing, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "VX" = ( /obj/effect/decal/cleanable/dirt, @@ -8546,15 +8309,22 @@ /area/mine/lounge) "Wh" = ( /obj/structure/railing{ - dir = 8 + dir = 10 }, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/obj/structure/table/wood, +/obj/item/soap/deluxe, +/obj/item/soap/deluxe{ + pixel_y = 6 + }, +/obj/item/soap/deluxe{ + pixel_y = 11 + }, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Wk" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/misc/asteroid/basalt/lava_land_surface, +/obj/structure/railing, +/obj/effect/spawner/random/lavaland_mob/raptor/young, +/turf/open/misc/hay/lavaland, /area/lavaland/surface/outdoors) "Wl" = ( /obj/machinery/door/airlock/external/glass{ @@ -8576,11 +8346,9 @@ }, /area/mine/laborcamp/security) "Wq" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) +/obj/structure/flora/ash/leaf_shroom, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "Wt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/disposalpipe/segment, @@ -8746,10 +8514,6 @@ dir = 4 }, /area/mine/production) -"Xk" = ( -/obj/effect/spawner/random/lavaland_mob/raptor, -/turf/open/misc/hay/lavaland, -/area/lavaland/surface/outdoors) "Xp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8790,6 +8554,7 @@ /obj/effect/turf_decal/siding/wideplating_new{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/checker, /area/mine/laborcamp) "XA" = ( @@ -8839,13 +8604,6 @@ /obj/item/seeds/apple, /turf/open/floor/iron/dark, /area/mine/laborcamp) -"XM" = ( -/obj/structure/sign/directions/evac/directional/south{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/iron/dark/textured_large, -/area/mine/production) "XP" = ( /obj/structure/stone_tile/cracked, /obj/structure/stone_tile/block{ @@ -8936,8 +8694,6 @@ /area/mine/lounge) "Yg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/mine/eva) "Yk" = ( @@ -9024,13 +8780,13 @@ /turf/open/misc/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "YP" = ( -/obj/structure/bookcase/random/reference, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/railing/corner/end{ + dir = 8 }, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) +/obj/structure/marker_beacon/purple, +/turf/open/floor/plating/lavaland_atmos, +/area/lavaland/surface/outdoors) "YR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9066,6 +8822,11 @@ }, /turf/open/floor/iron, /area/mine/lounge) +"Zg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/evac/directional/east, +/turf/open/floor/plating, +/area/mine/lounge) "Zh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9114,10 +8875,6 @@ }, /turf/open/floor/iron/smooth, /area/mine/laborcamp/production) -"Zs" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) "Zt" = ( /turf/closed/wall, /area/mine/laborcamp) @@ -9137,12 +8894,10 @@ /area/mine/living_quarters) "Zx" = ( /obj/structure/sign/directions/dorms/directional/west{ - pixel_x = 0; - pixel_y = 24 + pixel_x = 0 }, -/obj/effect/turf_decal/sand/plating/volcanic, -/turf/open/floor/plating/lavaland_atmos, -/area/lavaland/surface/outdoors) +/turf/closed/wall, +/area/mine/maintenance/production) "Zz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9157,18 +8912,25 @@ dir = 8 }, /area/mine/lounge) -"ZB" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 +"ZC" = ( +/obj/structure/railing/corner{ + dir = 4 }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/large, -/area/mine/lobby/raptor) -"ZF" = ( -/obj/effect/turf_decal/sand/plating/volcanic, /obj/effect/turf_decal/sand/plating/volcanic, +/obj/structure/sign/directions/lavaland/directional/north{ + pixel_y = 40 + }, /turf/open/floor/plating/lavaland_atmos, /area/lavaland/surface/outdoors) +"ZF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/misc/hay/lavaland, +/area/lavaland/surface/outdoors) "ZH" = ( /obj/structure/closet/secure_closet/labor_camp_security, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -9178,12 +8940,11 @@ /turf/open/floor/iron/dark, /area/mine/laborcamp/security) "ZL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/wood, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "ZM" = ( /obj/structure/railing{ dir = 8 @@ -9216,16 +8977,9 @@ /turf/open/floor/plating, /area/mine/maintenance/public/north) "ZU" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/misc/hay/lavaland, -/area/mine/lobby/raptor) -"ZX" = ( -/obj/structure/table/wood, -/obj/item/knife, -/turf/open/floor/wood/parquet, -/area/mine/lobby/raptor) +/obj/effect/spawner/random/lavaland_mob/raptor/young, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "ZY" = ( /turf/closed/mineral/random/volcanic, /area/lavaland/surface/outdoors/unexplored) @@ -26417,7 +26171,7 @@ Zt rX Zt Ub -Tu +fg MW HS Dn @@ -26931,7 +26685,7 @@ Zt rX Zt rS -Kp +zQ Xy hW PY @@ -35417,7 +35171,7 @@ VK VK VK Nf -MQ +rG BP ol pU @@ -35674,8 +35428,8 @@ aj aj aj aj -FH -rG +MQ +ZC ol aj aj @@ -37473,8 +37227,8 @@ zH kY kY Tc -kY RF +vd NL aj aj @@ -37730,7 +37484,7 @@ te dz px DI -oS +Tv BP ol aj @@ -42353,7 +42107,7 @@ iu iu iN ix -iu +Gw Zw UD iu @@ -42609,7 +42363,7 @@ Nt pI zf Up -CI +ix iu iu iu @@ -42624,7 +42378,7 @@ mn QP MS MS -QP +PR LE os JQ @@ -42633,8 +42387,8 @@ Hj pU BP pU -NK -ze +ai +ai pU pU aj @@ -42889,9 +42643,9 @@ EL EL pU pU -ze +ai BP -ze +ai pU pU aj @@ -43146,8 +42900,8 @@ pU pU pU pU -ze -ze +ai +ai pU pU aj @@ -43389,7 +43143,7 @@ pU tF tF pU -SP +Zg ti DZ FD @@ -44946,8 +44700,8 @@ aj aj aj aj -NK -NK +ad +ad pU aj aj @@ -45177,8 +44931,8 @@ FX FX nm iY -nm Zx +BP Yq aj aj @@ -45204,7 +44958,7 @@ aj aj pU pU -ze +ad pU aj aj @@ -45461,7 +45215,7 @@ aj aj pU BP -ze +ai pU pU aj @@ -45717,7 +45471,7 @@ aj aj aj pU -NK +ai pU pU pU @@ -47494,11 +47248,11 @@ WB wt jw fA -Le -Le NU Le +ep Le +NU BP BP BP @@ -47516,9 +47270,9 @@ aj aj pU pU -NK +ai BP -ze +ad pU pU aj @@ -47752,8 +47506,8 @@ Jl rv TJ RW -cc -XM +pM +vr CM lM Ec @@ -47772,10 +47526,10 @@ aj aj aj pU -ze -ze -ze -ze +ai +ad +ad +ai aj aj aj @@ -48009,9 +47763,9 @@ GF lb Yl Le -Le +jX Fr -Le +jt Le BP BP @@ -48030,8 +47784,8 @@ aj aj pU BP -ze -NK +ad +ad pU aj aj @@ -48266,10 +48020,10 @@ Ra oh pK NU -BP -BP -BP -JD +Le +VI +Le +NU BP BP BP @@ -48286,8 +48040,8 @@ pU aj aj pU -NK -NK +ai +ai pU pU aj @@ -48524,7 +48278,7 @@ mT pK pU BP -ZF +BP BP JD BP @@ -48780,9 +48534,9 @@ Yg li dK pU -Cv BP -Cv +rB +BP zk mc mc @@ -49037,8 +48791,8 @@ Yg TQ dK pU -aX -BP +pU +RO Jg pU pU @@ -49290,14 +49044,14 @@ YD pK Ob IL -Rj +IL KV pK aj +aj yV -BP fK -pU +aj pU pU pU @@ -49547,12 +49301,12 @@ NU pK pK dK -RO +dK pK pK aj +aj yV -tF NL aj aj @@ -49804,12 +49558,12 @@ NU ai pU pU -Pn pU +pU +aj aj aj yV -tF NL aj aj @@ -50061,12 +49815,12 @@ pU pU pU pU -AF +aj aj aj pU +aj yV -tF NL aj aj @@ -50318,12 +50072,12 @@ pU aj aj aj -AF +aj aj pU aj +aj yV -tF NL aj pU @@ -50340,9 +50094,9 @@ pU pU pU pU -ze -ze -ze +ai +ad +ad pU pU pU @@ -50575,13 +50329,13 @@ aj aj aj aj -AF aj aj aj -zs -tF -de +aj +aj +Ah +aF aj aj aj @@ -50596,9 +50350,9 @@ aj pU pU pU -ze -NK -ze +ai +ad +ad BP pU pU @@ -50832,13 +50586,13 @@ aj aj aj aj -AF aj aj aj -ct -BP -ct +aj +aj +RO +kf pU aj aj @@ -50852,10 +50606,10 @@ aj pU pU pU -ze +ai BP -NK -ze +ai +ai pU pU pU @@ -51089,12 +50843,12 @@ ai ai pU pU -AF -aj +pU +pU aj aj -BP -BP +pU +YP BP pU pU @@ -51108,10 +50862,10 @@ aj pU pU pU -ze -ze -NK -ze +ai +ad +ai +ai lP pU pU @@ -51346,11 +51100,11 @@ ai ai ai ai -Pn -AF -AF -AF -Pe +pU +pU +pU +pU +pU BP BP BP @@ -51366,10 +51120,10 @@ lt Ri eN pU -ze -ze -ze -ze +ai +ai +ai +ai pU pU aj @@ -51607,10 +51361,8 @@ ai pU pU pU -AF -BP -BP -BP +pU +pU BP ct pU @@ -51618,6 +51370,8 @@ pU pU pU pU +pU +BP lt Ns lt @@ -51625,7 +51379,7 @@ pU pU pU pU -ze +ai pU pU aj @@ -51861,21 +51615,21 @@ aj aj ai ai -CV -CV -ki -NP -ki -CV -CV -CV -lt pU pU pU pU pU pU +pU +pU +pU +pU +pU +pU +pU +BP +BP lt pU lP @@ -52117,19 +51871,11 @@ aj aj aj aj -CV -CV -Km -qB -eL -Ah -VI -ZX -ki -Ns +aj +pU +pU lt pU -BP pU pU pU @@ -52138,6 +51884,14 @@ pU pU pU pU +Wq +pU +pU +pU +pU +pU +pU +pU pU pU aj @@ -52374,25 +52128,25 @@ aj aj aj aj -CV -GG -jX -Tw -eL -aF -pF -dF -ki -lt -lt +aj +aj +pU +Ns lt pU +BP +pU +pU pU pU BP -NK -NK -ze +pU +lt +Ns +lt +UI +pU +pU pU pU pU @@ -52628,28 +52382,28 @@ pU ai ai ai -pU +ai aj aj -CV -Sp -OE -as -ZL -Cn -zX -CV -CV +aj +aj +pU pU lt +lt pU pU pU pU +BP +eL ze -NK +AF +tf ze -BP +Sp +FH +pU pU pU pU @@ -52887,27 +52641,24 @@ ai ai ai ai +ai +aj +aj pU -CV -GG -Tt -fa -eL -ZB -GG -CV pU +lt pU pU -lP pU -BP pU -ze -NK pU -UI +BP +NP pU +oO +lP +lt +VU pU pU pU @@ -52919,6 +52670,9 @@ aj aj aj aj +aj +aj +aj "} (171,1,1) = {" aa @@ -53145,34 +52899,34 @@ aj ai ai ai -CV -wa -rB -fa -eL -Lv -CV -CV -CV -ct -pU +ai pU pU pU pU -ze +lP pU +BP pU -lt -lt -lt UI +ct +dI +Az +oO pU -aj +pU +VU pU pU aj +aj +aj +aj +aj +aj +aj pU +aj pU aj aj @@ -53400,29 +53154,25 @@ aj aj aj aj -pU ai -CV -jt -ba -fa -jJ -ZB -be -dI -oO -BP +ai +ai +pU +UI +ct +pU pU -BP pU pU pU -ct -BP lt lt -Ns +up +UI +oO +ZU lt +VU lt pU pU @@ -53430,7 +53180,11 @@ pU pU pU pU -pU +aj +aj +aj +aj +aj aj aj "} @@ -53659,37 +53413,37 @@ aj aj aj aj -CV -GG -tf -fa -Sj -ZB -CV -CV -CV -ct pU pU pU +BP +pU pU pU -BP +pU +lt +lt +lt +Km +pU +ZL +lt +lt Av Wh -Wh -CV -ki -ki -CV -CV -ki -ki -CV -CV +lt +pU +pU +pU +pU +pU +aj +aj pU pU aj +aj +aj "} (174,1,1) = {" aa @@ -53916,36 +53670,36 @@ aj aj aj aj -CV -rf -VP -fa -Sj -ZB -Mf -CV -hl +aj +aj +pU +pU +pU +BP +pU pU lt +Ns +lt lt pU pU lt lt -up +lt +rj lt pU -vr -sQ -NS -Vd -NS -NS -sQ -NS -CV pU +aj +aj pU +pU +aj +aj +aj +aj +aj aj "} (175,1,1) = {" @@ -54173,37 +53927,37 @@ aj aj aj aj -CV -GI -vM -FI -jJ -Fo -hM -CV -CV -Ns -lt +aj +aj +pU +pU +pU +pU +pU +pU pU pU lt +hl lt +xW +pU lt -up +zX +be pU pU -vr -il -NS -Vd -NS -NS -il -NS -ki pU aj aj +aj +aj +aj +aj +aj +aj +aj +aj "} (176,1,1) = {" aa @@ -54430,37 +54184,37 @@ aj aj aj aj -CV -pM -YP -GG -Uz -Uz -Uz -Zs -ki -lt -lt +aj +pU +pU +pU +pU +pU pU pU pU -lt pU +lt +Uz +lt +VU +lt +lt Wk -UI -ct -vr -NS -NS -Vd -NS -NS -NS -NS -ki +lt +pU +pU pU pU aj +aj +aj +aj +aj +aj +aj +aj +aj "} (177,1,1) = {" aa @@ -54685,39 +54439,39 @@ pU pU pU pU -aj -aj -CV -CV -YP -GG -fa -fa -Rm -bE -ki -lt pU pU pU pU pU pU -Wk pU +pU +pU +pU +ct lt -Wq -EP -NS -ZU -NS -NS -EP -EP -CV -CV +dF +up +Cv +VU +lt +lt +VU +lt +pU +pU +pU +pU +aj +aj +aj +aj +aj pU aj +aj +aj "} (178,1,1) = {" aa @@ -54943,36 +54697,36 @@ pU pU pU pU -aj -aj -CV -CV -ki -ki -ki -CV -CV -CV -lt pU pU -lt pU pU pU -VU -Xk +pU +pU +pU +pU +pU lt -NS -NS -NS -NS -NS -uw -NS -NS -NS -ki +Pb +up +lt +VU +Ns +Az +VU +pU +pU +pU +pU +pU +aj +aj +aj +aj +aj +aj +aj pU aj "} @@ -55201,9 +54955,6 @@ pU pU pU pU -aj -aj -aj pU pU pU @@ -55214,24 +54965,27 @@ pU pU pU Ns -Az +lt +CI +wa +Pn +ej +wa +ZF +FH +pU +pU +pU +pU +aj +aj +pU pU pU -lt -lt -lt -NS -mk -sa -NS -NS -NS -OW -sa -NS -ki aj aj +pU +aj "} (180,1,1) = {" aa @@ -55468,26 +55222,26 @@ pU pU pU pU -pU -pU -lt lt pU -xW lt lt lt -NS -NS -uw -NS -NS -NS -NS -NS -NS -ki +Vd +pU +pU +pU +pU +pU +aj +aj +pU +pU pU +pU +pU +aj +aj aj "} (181,1,1) = {" @@ -55728,22 +55482,22 @@ pU pU pU pU -lt pU pU -Wk -lt -lt -kf -KO -NS -aH -NS -NS -KO -KO -CV -CV +pU +pU +pU +pU +pU +pU +aj +aj +aj +pU +pU +pU +aj +aj pU aj "} @@ -55980,6 +55734,9 @@ pU pU pU pU +UI +pU +pU pU pU pU @@ -55988,21 +55745,18 @@ pU pU pU pU -Wk pU -ct -vr -NS -rj -Vd -NS -NS -NS -NS -ki pU aj aj +pU +pU +pU +pU +pU +aj +aj +aj "} (183,1,1) = {" aa @@ -56243,23 +55997,23 @@ pU pU pU pU -lt -lt -Wk pU pU -vr -il -NS -Vd -NS -NS -il -NS -ki pU pU pU +pU +pU +pU +pU +pU +pU +aj +aj +aj +aj +aj +pU "} (184,1,1) = {" aa @@ -56499,23 +56253,23 @@ pU pU pU pU -lt -Ns -lt -up -Pb pU -vr -sQ -NS -Vd -NS -NS -sQ -NS -CV pU pU +pU +pU +pU +pU +pU +pU +pU +pU +pU +aj +aj +pU +pU +aj aj "} (185,1,1) = {" @@ -56756,24 +56510,24 @@ pU pU pU pU -lt -lt -BP -Oo -ej -nO -CV -ki -ki -CV -CV -ki -ki -CV -CV +pU +pU +pU +pU +pU +pU +pU +pU +pU +pU +pU +pU +aj pU aj aj +aj +aj "} (186,1,1) = {" aa @@ -57015,12 +56769,6 @@ pU pU pU pU -ct -BP -pU -pU -pU -lt pU pU pU @@ -57031,6 +56779,12 @@ pU pU pU aj +aj +aj +aj +aj +aj +aj "} (187,1,1) = {" aa @@ -57273,13 +57027,8 @@ pU pU pU pU -lt pU pU -lt -Ns -lt -lt pU pU pU @@ -57288,6 +57037,11 @@ pU pU aj aj +aj +aj +aj +aj +aj "} (188,1,1) = {" aa @@ -57529,17 +57283,17 @@ pU pU pU pU -lt -lt -lt pU -lt -lt -lt -lt -lt pU pU +pU +pU +pU +pU +pU +pU +aj +aj aj aj aj @@ -57787,15 +57541,15 @@ pU pU pU pU -Ns pU pU -UI -lt -lt -Ns -lt pU +pU +pU +pU +pU +pU +aj aj aj aj @@ -58049,8 +57803,8 @@ pU pU pU pU -lt -lt +pU +pU pU aj aj diff --git a/_maps/map_files/NebulaStation/NebulaStation.dmm b/_maps/map_files/NebulaStation/NebulaStation.dmm index e7a68fd2f9719f..7ac250c073f871 100644 --- a/_maps/map_files/NebulaStation/NebulaStation.dmm +++ b/_maps/map_files/NebulaStation/NebulaStation.dmm @@ -335,7 +335,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/security/glass{ @@ -403,7 +403,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "adj" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/light/small/directional/north, @@ -604,6 +604,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "aeG" = ( @@ -980,7 +981,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "agX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -1745,7 +1746,7 @@ "amU" = ( /obj/machinery/porta_turret/ai, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "anh" = ( /obj/effect/turf_decal/siding, /obj/structure/chair/sofa/bench/right{ @@ -1972,7 +1973,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "aoQ" = ( /obj/structure/table/glass, /obj/effect/spawner/random/entertainment/cigarette_pack, @@ -2059,7 +2060,7 @@ network = list("minisat") }, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "apz" = ( /obj/machinery/holopad/secure, /obj/effect/turf_decal/box/white{ @@ -2288,17 +2289,6 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/structure/sign/directions/medical/directional/east{ - pixel_y = 8; - dir = 1 - }, -/obj/structure/sign/directions/science/directional/east{ - dir = 1 - }, -/obj/structure/sign/directions/supply/directional/east{ - pixel_y = -8; - dir = 1 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2562,7 +2552,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "atR" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -2807,7 +2797,7 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "auK" = ( /turf/open/floor/glass/reinforced, /area/station/security/prison) @@ -3426,7 +3416,7 @@ /obj/machinery/vending/coffee, /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "aAC" = ( /obj/machinery/shower/directional/north, /obj/effect/turf_decal/trimline/blue/end{ @@ -3732,7 +3722,7 @@ /obj/effect/turf_decal/trimline/dark/corner, /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aCJ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, @@ -3975,9 +3965,7 @@ /turf/open/floor/plating, /area/station/maintenance/aft/greater) "aEz" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/glass/reinforced/airless, /area/space/nearstation) "aEC" = ( @@ -4071,6 +4059,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"aFi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "aFm" = ( /obj/structure/table/reinforced, /obj/item/folder/red, @@ -4458,7 +4451,7 @@ }, /obj/item/gun/grenadelauncher, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aID" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/carpet, @@ -4659,7 +4652,7 @@ dir = 1 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aKm" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -4677,7 +4670,7 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aKr" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 1 @@ -5288,7 +5281,7 @@ }, /obj/effect/decal/cleanable/rubble, /turf/open/floor/holofloor/wood, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "aOZ" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -5885,7 +5878,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aUf" = ( /obj/effect/turf_decal/tile/dark/opposingcorners, /obj/effect/landmark/event_spawn, @@ -6380,7 +6373,7 @@ /obj/item/pen, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "aXu" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -6580,7 +6573,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aYC" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -6723,7 +6716,7 @@ "aZM" = ( /obj/effect/turf_decal/trimline/dark_blue, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aZQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6790,11 +6783,9 @@ /area/station/maintenance/aft/lesser) "bat" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "baD" = ( /obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ dir = 1 @@ -7352,7 +7343,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "beF" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -7404,10 +7395,11 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "bfk" = ( @@ -8138,7 +8130,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bmn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/machinery/meter, @@ -8334,7 +8326,7 @@ /obj/item/kirbyplants/random, /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bnD" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, /turf/open/floor/iron/dark/airless, @@ -8536,7 +8528,7 @@ /obj/item/clothing/shoes/magboots, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bpj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8762,7 +8754,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "brl" = ( /obj/structure/broken_flooring/singular/always_floorplane/directional/north, /obj/structure/chair/stool/bar/directional/west, @@ -8780,7 +8772,7 @@ dir = 9 }, /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "brC" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -9005,7 +8997,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "btQ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -9044,7 +9036,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "bum" = ( /obj/effect/turf_decal/siding/yellow, /obj/effect/turf_decal/trimline/yellow/filled/line, @@ -9085,7 +9077,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "buC" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ @@ -9415,16 +9407,20 @@ /turf/open/floor/iron/white, /area/station/medical/treatment_center) "bxv" = ( -/obj/structure/hedge, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/structure/sign/directions/upload/directional/south{ + pixel_y = -10; + dir = 9 }, -/obj/structure/sign/plaques/kiddie/library{ - pixel_y = 32 +/obj/structure/sign/directions/command/directional/south{ + dir = 9; + pixel_y = 0 }, -/obj/structure/railing, -/turf/open/floor/wood/large, -/area/station/service/library/upper) +/obj/structure/sign/directions/vault/directional/south{ + pixel_y = 10; + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/command) "bxw" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 8 @@ -9455,7 +9451,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bxA" = ( /obj/machinery/digital_clock/directional/north, /obj/structure/railing/corner{ @@ -9542,10 +9538,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "bxV" = ( @@ -9704,6 +9700,7 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "byI" = ( @@ -10003,7 +10000,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bAz" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 @@ -10135,7 +10132,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bBh" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -10478,7 +10475,7 @@ }, /obj/effect/turf_decal/stripes/line, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -10840,7 +10837,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -11372,12 +11369,10 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 10 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/railing{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "bJR" = ( @@ -11762,7 +11757,8 @@ pixel_x = 24; pixel_y = 6; id = "radioroom"; - name = "Curtains" + name = "Curtains"; + dir = 4 }, /obj/machinery/button/door/directional/east{ pixel_y = -6; @@ -11933,10 +11929,10 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bNG" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "bNI" = ( /obj/structure/chair/office/light{ dir = 1 @@ -12304,19 +12300,8 @@ /area/space/nearstation) "bQa" = ( /obj/structure/table/glass, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 3 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -2 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 13 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/defibrillator/loaded, /turf/open/floor/iron/dark, /area/station/medical/storage) "bQd" = ( @@ -12329,6 +12314,23 @@ }, /turf/open/space/openspace, /area/station/solars/port/aft) +"bQm" = ( +/obj/structure/sign/directions/medical/directional/west{ + pixel_y = 8; + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/science/directional/west{ + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/west{ + pixel_y = -8; + dir = 1; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/security/checkpoint/customs) "bQp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12356,6 +12358,21 @@ }, /turf/open/floor/iron/dark, /area/station/command) +"bQy" = ( +/obj/structure/sign/directions/dorms/directional/west{ + pixel_y = 8; + pixel_x = 0 + }, +/obj/structure/sign/directions/evac/directional/west{ + pixel_x = 0 + }, +/obj/structure/sign/directions/engineering/directional/west{ + pixel_y = -8; + dir = 2; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/commons/vacant_room/office) "bQT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12530,7 +12547,7 @@ /obj/item/stack/spacecash/c1000, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bRZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -13061,6 +13078,7 @@ /obj/effect/turf_decal/trimline/dark/corner{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark/side{ dir = 6 }, @@ -13170,7 +13188,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "bXi" = ( /obj/effect/turf_decal/tile/purple/fourcorners, /obj/structure/cable, @@ -13367,14 +13385,12 @@ /area/station/commons/fitness/recreation/lasertag) "bYK" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bYO" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -13712,7 +13728,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "caT" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth{ @@ -13872,7 +13888,7 @@ /obj/item/toy/figure/borg, /obj/item/radio/intercom/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ccj" = ( /obj/structure/flora/grass/brown/style_random, /obj/structure/flora/bush/snow/style_2, @@ -13909,7 +13925,7 @@ /area/station/science/xenobiology) "ccC" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "ccE" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 @@ -14818,7 +14834,7 @@ /obj/machinery/status_display/ai/directional/north, /obj/machinery/firealarm/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ckK" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -14934,7 +14950,7 @@ pixel_y = -2 }, /turf/open/floor/grass, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "cmj" = ( /obj/structure/table/reinforced/rglass, /obj/item/storage/box/donkpockets/donkpocketpizza{ @@ -15270,7 +15286,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "coT" = ( /obj/machinery/door/airlock/medical/glass{ name = "Infirmary" @@ -15502,12 +15518,12 @@ /obj/structure/bookcase{ name = "Forbidden Knowledge" }, -/obj/structure/sign/painting/large/library_private{ - dir = 1 - }, /obj/item/poster/random_contraband{ pixel_y = 18 }, +/obj/structure/sign/painting/large/library_private{ + dir = 1 + }, /turf/open/floor/wood/large, /area/station/service/library/printer) "cqG" = ( @@ -15883,7 +15899,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cti" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16008,7 +16024,6 @@ /obj/structure/railing/corner{ dir = 1 }, -/obj/structure/sign/nanotrasen, /turf/closed/wall/r_wall/rust, /area/space/nearstation) "cuf" = ( @@ -16264,7 +16279,8 @@ id = "SecElevator" }, /obj/structure/noticeboard/hos{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/lift_indicator/directional/west{ pixel_x = -33; @@ -16842,25 +16858,20 @@ /turf/open/floor/wood/large, /area/station/service/chapel/office) "czJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/directions/medical/directional/west{ - pixel_y = 8; - dir = 1 +/obj/structure/sign/directions/upload/directional/south{ + pixel_y = -10; + dir = 4 }, -/obj/structure/sign/directions/science/directional/west{ - dir = 1 +/obj/structure/sign/directions/command/directional/south{ + dir = 4; + pixel_y = 10 }, -/obj/structure/sign/directions/supply/directional/west{ - pixel_y = -8; - dir = 1 +/obj/structure/sign/directions/security/directional/south{ + pixel_y = 0; + dir = 4 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/service/barber) "czK" = ( /obj/machinery/atmospherics/components/binary/crystallizer{ dir = 4 @@ -16895,7 +16906,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "czS" = ( /obj/structure/closet/secure_closet/freezer/empty, /obj/item/reagent_containers/condiment/soymilk, @@ -16983,10 +16994,6 @@ /obj/structure/chair/sofa/corp/left{ dir = 1 }, -/obj/structure/sign/painting/large/library{ - pixel_y = -64; - dir = 1 - }, /turf/open/floor/stone, /area/station/commons/dorms) "cAp" = ( @@ -17004,9 +17011,7 @@ "cAu" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/radiation, -/obj/machinery/camera/autoname/directional/north{ - dir = 9 - }, +/obj/machinery/camera/autoname/directional/north, /obj/machinery/duct, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos/project) @@ -17135,7 +17140,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cBK" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -17479,7 +17484,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cEV" = ( /obj/effect/turf_decal/trimline/dark/corner, /obj/structure/chair/office{ @@ -17587,6 +17592,7 @@ "cFQ" = ( /obj/structure/sign/warning/biohazard, /obj/effect/spawner/random/structure/grille, +/obj/effect/spawner/structure/window/reinforced, /turf/open/space/openspace, /area/space/nearstation) "cFT" = ( @@ -18499,15 +18505,13 @@ /turf/open/floor/iron, /area/station/cargo/storage) "cMm" = ( -/obj/structure/noticeboard/directional/east{ - dir = 8 - }, /obj/structure/cable, /obj/effect/turf_decal/siding/wood{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/noticeboard/directional/east, /turf/open/floor/wood/tile, /area/station/service/minibar) "cMz" = ( @@ -18927,7 +18931,7 @@ /obj/structure/marker_beacon/lime, /obj/structure/flora/bush/lavendergrass/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cPZ" = ( /turf/closed/wall/r_wall, /area/station/medical/morgue) @@ -19085,11 +19089,12 @@ /obj/machinery/door/airlock/maintenance{ name = "UndergroundCasino" }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/central) "cRu" = ( @@ -19270,14 +19275,6 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/structure/sign/directions/evac/directional/west, -/obj/structure/sign/directions/dorms/directional/west{ - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering/directional/west{ - pixel_y = -8; - dir = 2 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19302,7 +19299,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "cSL" = ( /obj/structure/marker_beacon/bronze, /obj/structure/lattice/catwalk, @@ -19360,7 +19357,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cTe" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 @@ -19845,7 +19842,7 @@ }, /obj/item/toy/seashell, /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "cXw" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -20324,6 +20321,7 @@ /obj/effect/turf_decal/trimline/dark/corner{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/dark, /area/station/command) "dbh" = ( @@ -20443,18 +20441,16 @@ name = "AI Chamber Entrance Shutters Control"; req_access = list("ai_upload") }, -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = -29; - pixel_y = -6 - }, /obj/effect/landmark/start/ai, /obj/machinery/camera/autoname/directional/north{ network = list("minisat") }, +/obj/machinery/flasher/directional/east{ + pixel_y = -5; + id = "AI" + }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dbO" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -20934,7 +20930,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dfe" = ( /obj/item/kirbyplants/random, /obj/structure/plaque/static_plaque/golden{ @@ -21350,7 +21346,20 @@ id = "AIgarden2" }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) +"div" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "diw" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/ce) @@ -21723,7 +21732,7 @@ /obj/structure/flora/bush/flowers_br/style_random, /obj/structure/flora/bush/flowers_pp/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "dkY" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -21812,7 +21821,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/computer/security/telescreen/minisat/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dlT" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -21826,7 +21835,7 @@ name = "Library Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -22011,7 +22020,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -22260,7 +22269,7 @@ "doN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "doQ" = ( /obj/structure/water_source/puddle, /turf/open/floor/grass, @@ -22280,11 +22289,9 @@ dir = 8 }, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/box/red, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/station/security/execution/education) "dpj" = ( @@ -22744,7 +22751,7 @@ /turf/open/floor/iron/stairs{ color = "#3d3e42" }, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "dsE" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/siding/dark{ @@ -22930,7 +22937,8 @@ /obj/effect/turf_decal/siding/wood/corner, /obj/item/kirbyplants/random, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/airalarm/directional/west, /obj/machinery/light/small/directional/north, @@ -24022,9 +24030,7 @@ name = "Teleporter Shutters"; req_access = list("teleporter") }, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) "dBT" = ( @@ -24130,7 +24136,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "dCz" = ( /obj/structure/flora/rock/pile/jungle/style_random, /obj/effect/decal/cleanable/dirt, @@ -24293,7 +24299,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dEt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, @@ -24325,9 +24331,6 @@ /area/station/engineering/atmos/project) "dEG" = ( /obj/effect/turf_decal/siding/dark, -/obj/structure/noticeboard/directional/north{ - dir = 2 - }, /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, /obj/machinery/disposal/bin, @@ -24337,6 +24340,7 @@ /obj/machinery/camera/autoname/directional/north{ network = list("ss13","medbay") }, +/obj/structure/noticeboard/directional/north, /turf/open/floor/iron/dark/smooth_edge{ dir = 1 }, @@ -24454,7 +24458,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dFq" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -24481,7 +24485,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dFw" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -24782,7 +24786,7 @@ "dIf" = ( /obj/structure/transit_tube, /obj/effect/turf_decal/trimline/dark_blue, -/obj/structure/window/reinforced/fulltile, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/command) "dIj" = ( @@ -24990,7 +24994,7 @@ }, /obj/structure/marker_beacon/lime, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "dKA" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -25539,7 +25543,7 @@ /obj/structure/marker_beacon/lime, /obj/machinery/light/small/directional/south, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "dOT" = ( /obj/effect/turf_decal/trimline/yellow/corner, /obj/effect/turf_decal/siding/thinplating_new/dark/corner, @@ -26100,7 +26104,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "dTf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -26261,7 +26265,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dUk" = ( /obj/effect/turf_decal/trimline/yellow, /obj/machinery/light/floor, @@ -26469,7 +26473,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dVD" = ( /obj/effect/turf_decal/siding/dark/end{ dir = 8 @@ -26650,7 +26654,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dWL" = ( /obj/structure/table/wood, /obj/structure/desk_bell{ @@ -26790,7 +26794,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "dXQ" = ( /obj/structure/table/reinforced, /obj/structure/reagent_dispensers/servingdish, @@ -27191,7 +27195,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/dark, /area/station/service/janitor) "eaq" = ( @@ -27213,7 +27217,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eav" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/grassy/style_random, @@ -27282,6 +27286,7 @@ }, /obj/effect/turf_decal/stripes/white/corner, /obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "eaQ" = ( @@ -27353,7 +27358,7 @@ name = "Dormitory Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/duct, @@ -27487,7 +27492,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ecL" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 4 @@ -27717,7 +27722,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eel" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/warning/explosives/alt/directional/south, @@ -27910,12 +27915,8 @@ /obj/effect/turf_decal/trimline/white/warning{ dir = 8 }, -/obj/machinery/flasher/directional/east{ - id = "AI"; - pixel_y = 26 - }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "efL" = ( /obj/machinery/door/airlock/public/glass{ name = "Starboard Primary Hallway" @@ -27935,7 +27936,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "efX" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark/small, @@ -27973,7 +27974,7 @@ pixel_y = -2 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "egg" = ( /obj/effect/turf_decal/siding/dark/corner, /obj/effect/turf_decal/siding/dark{ @@ -28010,7 +28011,7 @@ network = list("aiupload") }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "egn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28869,7 +28870,7 @@ /area/station/science/breakroom) "emU" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "emW" = ( /obj/effect/turf_decal/stripes/white/corner, /obj/effect/turf_decal/siding/thinplating/dark/corner, @@ -28988,6 +28989,7 @@ "enK" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "enS" = ( @@ -29174,7 +29176,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "epf" = ( /obj/structure/chair/sofa/bench/left, /turf/open/floor/glass/reinforced, @@ -29270,7 +29272,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eqb" = ( /turf/open/floor/iron/stairs/medium{ color = "#3d3e42" @@ -29565,7 +29567,7 @@ /obj/effect/turf_decal/bot/left, /obj/structure/rack, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "esg" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -29801,10 +29803,6 @@ /obj/structure/bed, /obj/item/bedsheet, /obj/effect/landmark/start/hangover, -/obj/machinery/flasher/directional/east{ - pixel_y = 24; - id = "Cell 1" - }, /turf/open/floor/iron/dark, /area/station/security/brig) "etT" = ( @@ -30057,7 +30055,7 @@ }, /obj/structure/hedge, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "ewF" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -30266,7 +30264,7 @@ dir = 1 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "exV" = ( /obj/effect/landmark/start/cyborg, /obj/machinery/holopad/secure, @@ -30288,7 +30286,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "exW" = ( /obj/effect/turf_decal/stripes/white/corner{ dir = 4 @@ -30499,11 +30497,6 @@ /obj/structure/railing/corner/end/flip{ dir = 4 }, -/obj/structure/sign/directions/evac/directional/north{ - pixel_x = 0; - pixel_y = 26; - dir = 10 - }, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) "eAc" = ( @@ -30513,7 +30506,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "eAi" = ( /turf/closed/wall, /area/station/medical/coldroom) @@ -30908,7 +30901,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eCK" = ( /obj/machinery/drone_dispenser, /turf/open/floor/plating, @@ -31170,16 +31163,13 @@ dir = 1 }, /obj/item/kirbyplants/random, -/obj/structure/sign/directions/evac/directional/north{ - dir = 8 - }, /turf/open/floor/iron/dark/herringbone, /area/station/commons/dorms) "eEA" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/dark/warning, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eEB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/dark/corner{ @@ -31220,7 +31210,7 @@ /area/station/commons/fitness) "eFd" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eFf" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -31350,7 +31340,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eGu" = ( /obj/structure/cable, /obj/structure/broken_flooring/pile/directional/east, @@ -31471,13 +31461,13 @@ /obj/effect/turf_decal/caution/stand_clear{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/box, /obj/machinery/door/poddoor/shutters{ dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/box, /turf/open/floor/iron/dark/textured_half{ dir = 1 }, @@ -31671,7 +31661,7 @@ /area/station/maintenance/starboard/central) "eIE" = ( /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "eIH" = ( /obj/structure/table/reinforced/rglass, /obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ @@ -31706,7 +31696,7 @@ name = "Private Channel" }, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eIS" = ( /obj/effect/turf_decal/siding/dark, /obj/structure/sign/poster/official/random/directional/north, @@ -31745,7 +31735,7 @@ dir = 1 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eJe" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ @@ -31796,7 +31786,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eJT" = ( /obj/structure/table/wood/fancy, /obj/structure/sign/painting/library_secure{ @@ -32225,9 +32215,7 @@ dir = 8 }, /obj/item/kirbyplants/random, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/herringbone, /area/station/commons/dorms) "eMS" = ( @@ -32659,7 +32647,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron/white, @@ -32816,7 +32804,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "eSb" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/sign/poster/random/directional/north, @@ -32933,7 +32921,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eTe" = ( /obj/effect/turf_decal/trimline/yellow/filled/warning, /obj/structure/railing, @@ -33054,7 +33042,7 @@ pixel_y = 2 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eTX" = ( /obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible{ dir = 8 @@ -33178,7 +33166,7 @@ /obj/item/gun/energy/e_gun, /obj/item/gun/energy/e_gun, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eUS" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -33799,7 +33787,7 @@ req_access = list("eva") }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "eZk" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/flora/rock/pile/jungle/style_2, @@ -34785,7 +34773,7 @@ uses = 10 }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fgG" = ( /obj/structure/fluff/paper/stack{ dir = 4 @@ -34822,7 +34810,7 @@ /obj/machinery/door/airlock/research/glass{ name = "Research Division Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/poddoor/shutters/preopen{ id = "rdrnd"; name = "Research and Development Shutters" @@ -34995,7 +34983,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fic" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 4 @@ -35109,7 +35097,7 @@ name = "Library Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -35185,7 +35173,7 @@ /area/station/security/courtroom) "fjo" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "fjp" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/fyellow, @@ -35226,7 +35214,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/landmark/navigate_destination, /turf/open/floor/plating, /area/station/maintenance/disposal) @@ -35427,6 +35415,7 @@ }, /obj/structure/flora/bush/lavendergrass/style_random, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/misc/asteroid/airless, /area/space/nearstation) "flv" = ( @@ -36064,7 +36053,7 @@ "fqA" = ( /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fqC" = ( /obj/machinery/power/port_gen/pacman/pre_loaded, /obj/structure/sign/warning/electric_shock/directional/north, @@ -36342,7 +36331,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fsY" = ( /obj/structure/sign/clock/directional/east, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -36372,7 +36361,7 @@ dir = 6 }, /turf/open/water/beach, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ftw" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -36457,10 +36446,6 @@ }, /obj/structure/bed, /obj/item/bedsheet, -/obj/machinery/flasher/directional/east{ - pixel_y = 24; - id = "Cell 2" - }, /turf/open/floor/iron/dark, /area/station/security/brig) "fut" = ( @@ -36550,7 +36535,7 @@ network = list("minisat") }, /turf/open/misc/asteroid/airless, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "fuW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37136,7 +37121,7 @@ /obj/structure/sign/warning/electric_shock/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "fyL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -37379,7 +37364,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fAT" = ( /obj/effect/spawner/random/structure/girder, /turf/open/floor/plating, @@ -37470,8 +37455,10 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos) "fBx" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall/rust, +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "fBL" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ @@ -37637,7 +37624,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fDa" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -37667,6 +37654,16 @@ }, /turf/open/floor/plating, /area/station/maintenance/fore/greater) +"fDh" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "fDk" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ @@ -37691,7 +37688,7 @@ /obj/machinery/door/airlock/research/glass{ name = "Research Division Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/door/poddoor/shutters/preopen{ id = "rdrnd"; name = "Research and Development Shutters" @@ -37938,7 +37935,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Chapel Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -38956,7 +38953,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fNd" = ( /obj/structure/cable, /obj/effect/spawner/random/trash, @@ -39855,7 +39852,7 @@ dir = 4 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fTH" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -40487,7 +40484,7 @@ /turf/open/floor/iron/stairs{ color = "#3d3e42" }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fXQ" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 4 @@ -40619,13 +40616,13 @@ color = "#4874A2" }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fZk" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end, /obj/machinery/holopad/secure, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fZl" = ( /obj/structure/rack, /obj/item/reagent_containers/cup/bottle/acidic_buffer{ @@ -40887,6 +40884,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"gbi" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "gbm" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ @@ -41259,7 +41266,7 @@ /turf/open/floor/iron/stairs{ color = "#3d3e42" }, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gej" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /obj/effect/spawner/random/vending/colavend, @@ -41450,7 +41457,7 @@ id = "AIgarden" }, /turf/open/floor/plating, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gfH" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/chair/stool/directional/south, @@ -41557,7 +41564,7 @@ pixel_y = -10 }, /turf/open/misc/beach/sand, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ggl" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Education Chamber Maintenance" @@ -41597,7 +41604,7 @@ name = "Library Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -41803,6 +41810,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "gih" = ( @@ -42020,7 +42028,8 @@ id = "holdingflash"; name = "Holding Cell Flasher"; req_access = list("security"); - pixel_x = 24 + pixel_x = 24; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42738,7 +42747,7 @@ /obj/effect/turf_decal/box/red, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "goa" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -42843,7 +42852,7 @@ "goO" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "goU" = ( /obj/structure/railing/corner{ dir = 1 @@ -42973,7 +42982,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gpL" = ( /obj/structure/table/wood/fancy/blue, /obj/effect/spawner/random/aimodule/neutral, @@ -42988,7 +42997,7 @@ req_access = list("captain") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "gqf" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 6 @@ -43168,7 +43177,7 @@ }, /obj/machinery/light/directional/north, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "grL" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -43215,6 +43224,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "gsi" = ( @@ -43395,7 +43405,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "guo" = ( /obj/structure/stairs/south, /obj/structure/railing{ @@ -43460,7 +43470,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "guG" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /obj/machinery/pipedispenser/disposal, @@ -43675,7 +43685,7 @@ /area/station/engineering/atmos) "gwv" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gwz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -44116,7 +44126,7 @@ /obj/effect/turf_decal/bot/right, /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gzE" = ( /turf/open/floor/glass/reinforced, /area/station/maintenance/department/cargo) @@ -44213,7 +44223,7 @@ /obj/machinery/light/small/directional/west, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gAD" = ( /obj/effect/turf_decal/siding/wideplating_new/dark, /obj/structure/railing, @@ -44274,7 +44284,7 @@ /obj/structure/sign/poster/official/state_laws/directional/east, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "gBe" = ( /obj/effect/turf_decal/trimline/white/line, /obj/effect/turf_decal/trimline/white/line{ @@ -44364,7 +44374,7 @@ dir = 5 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gBD" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /obj/structure/table/reinforced, @@ -44514,7 +44524,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gCg" = ( /obj/item/clothing/shoes/workboots/mining, /turf/open/misc/asteroid/airless{ @@ -44548,7 +44558,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "gCB" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 8 @@ -44558,8 +44568,7 @@ }, /obj/structure/tank_holder/extinguisher, /obj/machinery/camera/autoname/directional/south{ - network = list("ss13","medbay"); - dir = 5 + network = list("ss13","medbay") }, /turf/open/floor/iron/white, /area/station/medical/lower) @@ -45232,7 +45241,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -45540,7 +45549,7 @@ /obj/item/pillow, /obj/machinery/light/small/directional/south, /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "gKD" = ( /obj/effect/turf_decal/stripes/white/box, /obj/machinery/computer/camera_advanced/xenobio{ @@ -46038,7 +46047,7 @@ color = "#3d3e42"; dir = 1 }, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "gNF" = ( /obj/structure/hedge, /obj/structure/railing{ @@ -46384,7 +46393,7 @@ /obj/structure/hedge, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "gQv" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -46473,7 +46482,7 @@ /obj/structure/extinguisher_cabinet/directional/west, /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gRg" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -46560,15 +46569,13 @@ /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/multilayer/connected, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gRR" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/dark/corner{ @@ -47045,6 +47052,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_edge, /area/station/medical/pharmacy) +"gVK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "medprivacy"; + name = "Privacy Shutter" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/treatment_center) "gVR" = ( /obj/effect/turf_decal/trimline/red/line, /obj/structure/closet/lasertag/red, @@ -47094,7 +47109,7 @@ /turf/open/floor/iron/white, /area/station/medical/abandoned) "gWm" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/machinery/button/door/directional/north{ id = "rdrnd"; name = "Research and Development Containment Control"; @@ -47146,7 +47161,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "gWz" = ( /obj/effect/turf_decal/siding/dark{ dir = 9 @@ -47213,7 +47228,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gXd" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -47997,7 +48012,7 @@ dir = 4 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hcA" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 @@ -48115,7 +48130,7 @@ /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/flora/bush/ferny/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hdF" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /obj/effect/mapping_helpers/broken_floor, @@ -48227,7 +48242,6 @@ /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/grassy/style_random, -/obj/machinery/light/small/directional/west, /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 }, @@ -48331,7 +48345,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "hfr" = ( /obj/structure/lattice, /obj/structure/railing{ @@ -48773,7 +48787,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -48848,8 +48862,13 @@ /obj/effect/turf_decal/trimline/white/warning{ dir = 8 }, +/obj/machinery/flasher/directional/east{ + id = "Cell 2"; + pixel_y = -5; + pixel_x = 24 + }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hiF" = ( /obj/structure/broken_flooring/singular/always_floorplane/directional/east, /obj/structure/railing/corner/end/flip{ @@ -49161,7 +49180,7 @@ /obj/effect/turf_decal/bot, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hkX" = ( /obj/effect/turf_decal/siding/wood/end{ dir = 1 @@ -49516,7 +49535,7 @@ }, /obj/structure/cable, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hox" = ( /obj/effect/turf_decal/siding/dark, /obj/structure/cable, @@ -49550,7 +49569,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -49804,7 +49823,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hqL" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/cable, @@ -49888,9 +49907,7 @@ "hrj" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/wideplating_new/dark/corner, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "hrm" = ( @@ -50080,7 +50097,7 @@ /obj/machinery/airalarm/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hsI" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 @@ -50100,7 +50117,7 @@ /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/tree/jungle/style_6, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hsL" = ( /obj/effect/turf_decal/bot, /obj/machinery/meter, @@ -50206,7 +50223,7 @@ /obj/effect/turf_decal/bot, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "htu" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -50380,6 +50397,21 @@ }, /turf/open/floor/iron/dark/small, /area/station/command) +"huN" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) "huQ" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -50694,7 +50726,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hxj" = ( /obj/structure/chair/office/light{ dir = 8 @@ -50803,7 +50835,7 @@ network = list("minisat") }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hyb" = ( /obj/effect/turf_decal/trimline/dark/corner{ dir = 1 @@ -50815,7 +50847,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hyc" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/effect/turf_decal/trimline/red/line{ @@ -51122,7 +51154,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "hAK" = ( /obj/effect/turf_decal/siding{ dir = 10 @@ -51287,6 +51319,12 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"hCG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "hCH" = ( /obj/structure/flora/grass/green/style_3, /obj/structure/flora/bush/flowers_br/style_random, @@ -51383,7 +51421,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "hDo" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -51653,7 +51691,7 @@ /obj/machinery/light_switch/directional/east, /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hFE" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -51757,7 +51795,7 @@ uses = 10 }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "hGO" = ( /obj/effect/turf_decal/tile/dark/diagonal_centre, /obj/structure/table/glass, @@ -51954,9 +51992,7 @@ /obj/item/clothing/under/misc/assistantformal, /obj/item/clothing/suit/hooded/wintercoat, /obj/item/clothing/shoes/winterboots, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/herringbone, /area/station/commons/locker) @@ -52018,7 +52054,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hIC" = ( /obj/structure/flora/rock/pile/style_random, /obj/structure/flora/grass/jungle/b/style_random, @@ -52344,7 +52380,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "hLu" = ( /obj/effect/turf_decal/trimline/dark/line{ dir = 6 @@ -52629,7 +52665,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hNu" = ( /obj/effect/turf_decal/trimline/brown/filled/line, /obj/effect/turf_decal/trimline/dark/line, @@ -52653,16 +52689,6 @@ dir = 8 }, /obj/structure/hedge, -/obj/structure/sign/directions/engineering/directional/south{ - pixel_y = -40 - }, -/obj/structure/sign/directions/dorms/directional/south{ - pixel_y = -24; - dir = 8 - }, -/obj/structure/sign/directions/evac/directional/south{ - dir = 8 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52909,6 +52935,9 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/warning/secure_area/directional/south{ + pixel_x = -32 + }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) "hOZ" = ( @@ -53167,7 +53196,7 @@ /obj/machinery/door/airlock/research/glass{ name = "Research Division Access" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -53314,7 +53343,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "hRv" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 9 @@ -53409,7 +53438,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hSt" = ( /obj/effect/turf_decal/trimline/blue/corner, /obj/effect/turf_decal/trimline/blue/corner{ @@ -53601,7 +53630,7 @@ }, /obj/effect/turf_decal/siding/dark, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hTz" = ( /obj/structure/rack, /obj/item/emergency_bed, @@ -53816,7 +53845,7 @@ /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/structure/closet/crate/goldcrate, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "hVw" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -53980,7 +54009,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hWL" = ( /obj/structure/railing/corner{ dir = 8 @@ -54008,7 +54037,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hWT" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -54019,7 +54048,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "hXa" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -54581,13 +54610,11 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 6 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/railing{ dir = 1 }, /obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "ibp" = ( @@ -54733,7 +54760,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "icu" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 1 @@ -55253,9 +55280,6 @@ /turf/open/misc/asteroid/airless, /area/space/nearstation) "igS" = ( -/obj/structure/sign/departments/vault/directional/north{ - pixel_x = 32 - }, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 1 }, @@ -55442,7 +55466,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iik" = ( /obj/effect/turf_decal/siding/dark_blue{ dir = 9 @@ -55566,7 +55590,7 @@ /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/cup/watering_can, /obj/machinery/camera/autoname/directional/south{ - dir = 5 + pixel_x = 20 }, /turf/open/floor/iron/dark/herringbone, /area/station/service/hydroponics) @@ -55948,7 +55972,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -55996,7 +56020,7 @@ /obj/structure/flora/rock/pile/jungle/style_random, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "imM" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -56216,7 +56240,7 @@ /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/carpet/blue, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ioq" = ( /obj/structure/broken_flooring/singular/directional/east, /obj/machinery/light/small/directional/west, @@ -56600,7 +56624,7 @@ name = "Tactical Gear Locker" }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iqV" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -56657,7 +56681,7 @@ /area/station/engineering/atmos/storage/gas) "irx" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "irB" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -56770,10 +56794,8 @@ /obj/effect/turf_decal/trimline/brown/line{ dir = 1 }, -/obj/structure/noticeboard/directional/north{ - dir = 2 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/noticeboard/directional/north, /turf/open/floor/iron/dark, /area/station/commons/vacant_room/commissary) "isG" = ( @@ -57287,10 +57309,10 @@ /turf/open/floor/wood/large, /area/station/hallway/primary/port) "iwD" = ( -/obj/effect/turf_decal/siding/brown{ +/obj/effect/turf_decal/siding/brown/corner{ dir = 4 }, -/obj/effect/turf_decal/trimline/brown/filled/line{ +/obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 }, /turf/open/floor/iron, @@ -57387,7 +57409,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ixf" = ( /obj/structure/cable, /obj/structure/railing/corner{ @@ -57422,7 +57444,7 @@ dir = 10 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ixm" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/vending/cigarette, @@ -57890,7 +57912,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iBn" = ( /obj/structure/mop_bucket, /obj/item/mop, @@ -58163,7 +58185,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "iDe" = ( /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos) @@ -58186,9 +58208,7 @@ pixel_x = 9; pixel_y = 11 }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "iDu" = ( @@ -58867,10 +58887,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_edge, /area/station/service/hydroponics) -"iHK" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) "iHR" = ( /obj/structure/broken_flooring/singular/directional/north, /obj/structure/curtain/cloth{ @@ -59015,7 +59031,7 @@ /area/station/science/xenobiology) "iJc" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "iJd" = ( /obj/effect/turf_decal/siding/purple, /obj/structure/table/reinforced/rglass, @@ -59144,13 +59160,14 @@ /turf/open/floor/plating, /area/station/maintenance/port) "iKq" = ( -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/maintenance{ name = "UndergroundCasino" }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "iKr" = ( @@ -59366,7 +59383,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -59603,7 +59620,7 @@ /area/station/science/ordnance/testlab) "iNm" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iNo" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 @@ -59838,7 +59855,7 @@ /obj/structure/table/reinforced, /obj/machinery/microwave, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iPF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59853,7 +59870,7 @@ /obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "iPG" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -60233,6 +60250,23 @@ dir = 1 }, /area/station/hallway/primary/starboard) +"iSX" = ( +/obj/structure/sign/directions/medical/directional/east{ + pixel_y = 8; + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/science/directional/east{ + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/east{ + pixel_y = -8; + dir = 1; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/commons/storage/primary) "iSZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -60271,7 +60305,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "iTm" = ( /obj/effect/turf_decal/trimline/purple/filled/warning, /obj/effect/turf_decal/stripes/corner{ @@ -60306,7 +60340,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iTt" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -60548,6 +60582,7 @@ dir = 1 }, /obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "iVR" = ( @@ -60594,7 +60629,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iWl" = ( /obj/structure/railing{ dir = 4 @@ -60735,6 +60770,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/camera/autoname/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/station/security/checkpoint/escape) "iWP" = ( @@ -60875,7 +60911,7 @@ name = "Auxiliry Dock Storage Room" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60966,7 +61002,7 @@ pixel_x = -6; pixel_y = 8 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -6 }, /turf/open/floor/iron/dark, @@ -61178,7 +61214,7 @@ uses = 10 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jbw" = ( /obj/structure/railing, /obj/structure/railing{ @@ -61190,7 +61226,7 @@ color = "#3d3e42"; dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jbD" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 @@ -61663,12 +61699,12 @@ /turf/closed/wall/r_wall, /area/station/maintenance/aft/greater) "jeA" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id = "cargosecprivacy"; name = "Privacy Shutter" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/checkpoint/supply) "jeI" = ( @@ -61763,7 +61799,7 @@ /obj/structure/hedge, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jfw" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 @@ -62003,7 +62039,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jhE" = ( /obj/effect/turf_decal/tile/dark_blue{ dir = 8 @@ -62196,7 +62232,8 @@ dir = 1 }, /obj/structure/sign/gym/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 9 @@ -62387,7 +62424,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jkh" = ( /obj/effect/turf_decal/stripes/box, /obj/machinery/computer/gateway_control, @@ -62450,6 +62487,11 @@ }, /turf/open/floor/iron/dark/smooth_edge, /area/station/science/genetics) +"jkQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "jkW" = ( /obj/structure/flora/rock/pile/jungle/style_random, /turf/open/floor/engine/hull/reinforced, @@ -62587,7 +62629,7 @@ /obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "jmZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -62722,7 +62764,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "joJ" = ( /obj/structure/hedge, /obj/structure/railing{ @@ -62744,7 +62786,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "joT" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -63012,14 +63054,14 @@ /obj/item/crowbar/red, /obj/item/wrench, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/service"; + control_area = "/area/station/ai/satellite/service"; name = "Service Bay Turret Control"; req_access = list("minisat"); pixel_y = -27 }, /obj/machinery/digital_clock/directional/east, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "jqT" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -63477,7 +63519,7 @@ /obj/structure/flora/bush/flowers_pp/style_random, /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "juB" = ( /obj/machinery/computer/order_console/mining, /turf/open/floor/iron/dark/textured_large, @@ -63572,10 +63614,10 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) "jvd" = ( @@ -63852,7 +63894,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/command/teleporter, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -63925,7 +63967,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -64317,7 +64359,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/trimline/red/filled/line, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jAf" = ( /obj/machinery/airalarm/directional/north, /obj/structure/cable, @@ -64371,8 +64413,7 @@ dir = 4 }, /obj/machinery/camera/autoname/directional/south{ - network = list("ss13","medbay"); - dir = 5 + network = list("ss13","medbay") }, /turf/open/floor/iron/dark/small, /area/station/medical/cryo) @@ -64398,7 +64439,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "jAu" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -64420,7 +64461,7 @@ /obj/item/radio/intercom/directional/north, /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jAD" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -64644,7 +64685,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jBA" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -64749,10 +64790,6 @@ /obj/machinery/computer/security/telescreen/rd/directional/north, /turf/open/floor/iron/dark/textured, /area/station/command/heads_quarters/rd) -"jCi" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) "jCl" = ( /obj/machinery/door/airlock/security/glass{ name = "Security Desk" @@ -64774,9 +64811,7 @@ dir = 5 }, /obj/item/kirbyplants/random, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/corner{ dir = 8 }, @@ -64945,6 +64980,13 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) +"jDr" = ( +/obj/structure/sign/directions/evac/directional/north{ + dir = 8; + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/commons/dorms) "jDu" = ( /obj/structure/hedge, /obj/structure/railing{ @@ -65226,7 +65268,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jFD" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -65839,7 +65881,7 @@ /obj/machinery/teleport/station, /obj/item/radio/intercom/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "jKS" = ( /obj/effect/turf_decal/siding{ dir = 1 @@ -66074,7 +66116,8 @@ }, /obj/effect/turf_decal/siding/wood/corner, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster/random/directional/west, @@ -66485,7 +66528,7 @@ /obj/structure/cable, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jPK" = ( /obj/structure/railing/corner{ dir = 8 @@ -66516,7 +66559,7 @@ }, /obj/structure/cable, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jQc" = ( /obj/effect/turf_decal/siding/brown{ dir = 1 @@ -66772,7 +66815,7 @@ "jRq" = ( /obj/structure/cable/multilayer/connected, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jRr" = ( /obj/structure/table/reinforced/rglass, /obj/item/flashlight/lamp/green{ @@ -66938,7 +66981,7 @@ /obj/structure/hedge, /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jTn" = ( /obj/effect/spawner/random/trash/graffiti{ random_icon = 0 @@ -67095,7 +67138,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/carpet/blue, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "jUR" = ( /obj/structure/transit_tube/station/dispenser/reverse{ dir = 4 @@ -67110,7 +67153,8 @@ /obj/effect/turf_decal/siding/thinplating_new/light, /obj/effect/turf_decal/trimline/dark_red/line, /obj/structure/sign/gym/right{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/trimline/dark_red/mid_joiner, /obj/machinery/light/directional/north, @@ -67145,7 +67189,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jUZ" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -67386,7 +67430,7 @@ /obj/effect/turf_decal/siding/wideplating_new/dark/corner, /obj/structure/flora/bush/lavendergrass/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "jWT" = ( /obj/structure/sign/poster/contraband/wildcat/directional/east, /obj/structure/hedge, @@ -67939,14 +67983,12 @@ /obj/structure/cable, /obj/effect/turf_decal/bot_white, /obj/structure/chair, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 10 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/aft/lesser) "kbw" = ( @@ -69146,7 +69188,8 @@ /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/bot, /obj/machinery/light/directional/north, @@ -69167,7 +69210,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kjT" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -69321,8 +69364,12 @@ /obj/effect/turf_decal/trimline/white/warning{ dir = 4 }, +/obj/machinery/flasher/directional/west{ + id = "AI"; + pixel_y = -5 + }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kkZ" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/cardboard, @@ -69707,9 +69754,7 @@ /obj/machinery/light_switch/directional/south{ pixel_x = -6 }, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/carpet, /area/station/command/meeting_room) "knt" = ( @@ -69801,7 +69846,7 @@ name = "Wine Storage" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -69856,7 +69901,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "koi" = ( /obj/effect/turf_decal/tile/dark/diagonal_centre, /obj/effect/turf_decal/siding/thinplating_new/light{ @@ -70015,7 +70060,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kpj" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -70038,12 +70083,12 @@ dir = 8 }, /obj/machinery/camera/autoname/directional/north{ - dir = 9; - network = list("aiupload") + network = list("aiupload"); + pixel_x = 22 }, /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "kpo" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -70391,7 +70436,7 @@ dir = 4 }, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "krt" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth{ @@ -70474,7 +70519,7 @@ "krS" = ( /obj/machinery/porta_turret/ai, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "krX" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -70661,7 +70706,7 @@ dir = 1 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ktO" = ( /obj/effect/turf_decal/siding/thinplating_new/light{ dir = 4 @@ -70842,7 +70887,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -71233,7 +71278,7 @@ /area/station/security/checkpoint/science) "kxn" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kxp" = ( /obj/item/radio/intercom/directional/south, /obj/structure/table/reinforced, @@ -71312,17 +71357,6 @@ /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 1 }, -/obj/structure/sign/directions/vault/directional/south{ - pixel_y = -24; - dir = 9 - }, -/obj/structure/sign/directions/command/directional/south{ - dir = 9 - }, -/obj/structure/sign/directions/upload/directional/south{ - pixel_y = -40; - dir = 9 - }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) "kxV" = ( @@ -71531,7 +71565,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kzh" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -71590,7 +71624,7 @@ "kzJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "kzM" = ( /obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71599,7 +71633,7 @@ }, /obj/machinery/newscaster/directional/south, /turf/open/floor/carpet/blue, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "kzQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71861,7 +71895,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kCd" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 4 @@ -71909,18 +71943,9 @@ /obj/item/stack/medical/suture, /obj/item/stack/medical/suture, /obj/machinery/airalarm/directional/west, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, +/obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"kCp" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/closed/wall/r_wall, -/area/station/science/server) "kCq" = ( /obj/structure/grille, /obj/structure/lattice, @@ -72106,7 +72131,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kDy" = ( /obj/structure/fireplace{ pixel_x = -32 @@ -72265,7 +72290,7 @@ uses = 10 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kEj" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -72392,7 +72417,7 @@ /obj/machinery/light/floor, /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kEP" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -72899,6 +72924,22 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) +"kIp" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "kIv" = ( /obj/structure/hedge, /turf/open/floor/plating, @@ -72916,7 +72957,7 @@ network = list("minisat") }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kII" = ( /obj/machinery/research/anomaly_refinery, /obj/effect/turf_decal/siding/purple, @@ -73225,7 +73266,7 @@ /area/station/maintenance/department/medical) "kLs" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kLw" = ( /turf/open/floor/wood/large, /area/station/command/heads_quarters/cmo) @@ -73246,7 +73287,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "kLD" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -73317,7 +73358,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kMe" = ( /obj/effect/turf_decal/bot_white/right, /obj/effect/turf_decal/stripes/line, @@ -73335,7 +73376,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "kMn" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -73447,13 +73488,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/small, /area/station/security/execution/transfer) -"kNp" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/station/science/ordnance/bomb) "kNt" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/trimline/brown, @@ -73756,7 +73790,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "kQf" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -73886,12 +73920,12 @@ /obj/effect/landmark/event_spawn, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kQP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "kQZ" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/structure/chair/wood{ @@ -74069,7 +74103,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "kSE" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74603,7 +74637,7 @@ }, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "kXm" = ( /obj/structure/sign/poster/random/directional/north, /obj/effect/spawner/random/maintenance, @@ -74860,7 +74894,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/digital_clock/directional/north, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "laa" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -75438,7 +75472,7 @@ /obj/structure/flora/bush/fullgrass/style_random, /obj/machinery/light/small/directional/south, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "lfD" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -75736,7 +75770,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/dark, /area/station/maintenance/aft/greater) "lid" = ( @@ -75797,7 +75831,7 @@ pixel_y = 0 }, /turf/open/water, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "liG" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -76145,7 +76179,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lkQ" = ( /obj/structure/sign/warning/secure_area/directional/south, /obj/effect/decal/cleanable/vomit/nebula, @@ -76399,7 +76433,7 @@ name = "Civil Rad Shelter" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -76808,7 +76842,7 @@ /obj/effect/turf_decal/bot/right, /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lpK" = ( /obj/effect/turf_decal/tile/brown/opposingcorners{ dir = 1 @@ -77302,12 +77336,15 @@ /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 }, -/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen{ + dir = 1 + }, /obj/structure/easel, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/tile, /area/station/maintenance/port) @@ -77889,6 +77926,11 @@ /obj/machinery/vending/security, /turf/open/floor/glass/reinforced, /area/station/security/lockers) +"lyI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "lyM" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/sign/warning/no_smoking/directional/north, @@ -78105,12 +78147,10 @@ /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 4 }, -/obj/machinery/button/door/directional/south{ +/obj/machinery/button/door/directional/east{ id = "gateshutter"; name = "Gateway Shutter Control"; - req_access = list("gateway"); - pixel_y = 0; - pixel_x = 24 + req_access = list("gatweay") }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) @@ -78318,7 +78358,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lBk" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 5 @@ -78366,7 +78406,8 @@ /area/space/nearstation) "lBt" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -78722,9 +78763,9 @@ "lEI" = ( /obj/structure/transit_tube, /obj/effect/turf_decal/trimline/dark_blue, -/obj/structure/window/reinforced/fulltile, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lEP" = ( /obj/effect/turf_decal/siding/dark/end{ dir = 4 @@ -79129,7 +79170,7 @@ }, /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "lII" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/glass, @@ -79186,7 +79227,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lJf" = ( /obj/structure/sign/poster/random/directional/north, /obj/structure/table/wood, @@ -79309,7 +79350,7 @@ /obj/structure/sign/warning/vacuum/external/directional/north, /obj/machinery/light/small/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lKl" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 4 @@ -79531,7 +79572,7 @@ }, /obj/structure/hedge, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lMe" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -79621,7 +79662,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lMG" = ( /obj/effect/turf_decal/trimline/brown/filled/corner, /obj/effect/turf_decal/trimline/brown/filled/warning{ @@ -79712,7 +79753,7 @@ pixel_x = 7; pixel_y = 14 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 7 }, @@ -79805,7 +79846,7 @@ dir = 1 }, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "Antechamber Turret Control"; req_access = list("minisat"); pixel_y = -30 @@ -79817,7 +79858,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lND" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -80010,7 +80051,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lPA" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -80028,7 +80069,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lPG" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -80218,7 +80259,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lRC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/misc/asteroid/airless, @@ -80747,7 +80788,7 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/command/teleporter, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/external{ @@ -80788,7 +80829,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lWJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80864,7 +80905,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "lXF" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, @@ -81153,7 +81194,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lZu" = ( /obj/structure/hedge, /obj/machinery/newscaster/directional/south, @@ -81368,7 +81409,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mbl" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted, /obj/structure/sink/directional/west, @@ -82071,6 +82112,7 @@ dir = 6 }, /obj/structure/sign/gym{ + dir = 1; pixel_y = 32 }, /obj/machinery/status_display/evac/directional/west, @@ -82154,7 +82196,7 @@ /obj/effect/turf_decal/bot, /obj/structure/safe/vault, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "mhQ" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/maintenance, @@ -82188,7 +82230,7 @@ /obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mij" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83209,7 +83251,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/port/aft) "mqG" = ( @@ -83268,7 +83310,7 @@ /turf/open/floor/iron/dark/textured, /area/station/security/checkpoint/medical) "mqY" = ( -/obj/structure/no_effect_signpost, +/obj/structure/signpost, /turf/open/misc/asteroid/airless, /area/space/nearstation) "mqZ" = ( @@ -83352,7 +83394,7 @@ }, /obj/structure/flora/rock/pile/style_random, /turf/open/water, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mrU" = ( /obj/structure/sign/departments/security/directional/south, /obj/effect/turf_decal/trimline/red/filled/corner{ @@ -83438,7 +83480,7 @@ }, /obj/structure/flora/rock/pile/style_random, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "msl" = ( /obj/machinery/defibrillator_mount/directional/south, /obj/structure/table/glass, @@ -83542,7 +83584,7 @@ pixel_x = 8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "msS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -83551,7 +83593,7 @@ color = "#3d3e42"; dir = 1 }, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "msT" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/bot_white, @@ -83602,8 +83644,8 @@ /area/station/maintenance/port) "mtj" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) "mty" = ( @@ -83669,7 +83711,7 @@ /obj/structure/rack, /obj/machinery/camera/autoname/motion/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "muq" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -83874,9 +83916,7 @@ dir = 8 }, /obj/item/kirbyplants/random, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/side{ dir = 8 }, @@ -84541,7 +84581,8 @@ /obj/machinery/button/flasher{ id = "visitorflash"; pixel_x = -24; - pixel_y = -6 + pixel_y = -6; + dir = 8 }, /turf/open/floor/iron/dark/side{ dir = 9 @@ -84592,7 +84633,7 @@ color = "#3d3e42"; dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mBg" = ( /obj/structure/chair/comfy/brown{ buildstackamount = 0; @@ -84612,7 +84653,6 @@ /obj/structure/fence{ dir = 4 }, -/obj/structure/sign/warning/secure_area, /turf/open/floor/plating, /area/station/maintenance/aft/greater) "mBl" = ( @@ -84640,7 +84680,7 @@ dir = 8 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mBn" = ( /obj/structure/flora/bush/grassy/style_3, /obj/effect/turf_decal/siding/wood, @@ -84763,17 +84803,9 @@ /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos/project) "mCn" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_blue/filled/line{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/station/command/corporate_suite) "mCr" = ( /obj/effect/spawner/random/structure/crate, @@ -84893,16 +84925,14 @@ /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 10 }, -/obj/machinery/button/door/directional/south{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - req_access = list("gateway"); - pixel_y = 0; - pixel_x = -24 - }, /obj/effect/turf_decal/trimline/dark_blue/corner{ dir = 4 }, +/obj/machinery/button/door/directional/west{ + id = "gateshutter"; + name = "Gatway Shutter Control"; + req_access = list("gateway") + }, /turf/open/floor/iron/dark, /area/station/command/gateway) "mDe" = ( @@ -85054,7 +85084,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "mFk" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -85180,8 +85210,11 @@ /turf/open/floor/iron/white/textured, /area/station/commons/fitness/recreation/pool) "mGv" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/misc/asteroid/airless, /area/space/nearstation) "mGG" = ( /obj/effect/turf_decal/siding/wood{ @@ -85753,7 +85786,7 @@ /obj/machinery/newscaster/directional/north, /obj/machinery/camera/autoname/motion/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mKS" = ( /obj/machinery/door/airlock/mining{ name = "Drone Bay" @@ -85973,7 +86006,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "mNi" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ dir = 4 @@ -86803,7 +86836,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "mSl" = ( /obj/machinery/door/airlock/external{ name = "Arrival Airlock"; @@ -87013,6 +87046,16 @@ }, /turf/open/floor/iron/dark/textured, /area/station/engineering/atmos/storage/gas) +"mTU" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "mTY" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, /obj/machinery/door/firedoor/heavy, @@ -87180,9 +87223,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/carpet/red, /area/station/service/library) "mVd" = ( @@ -87615,7 +87656,7 @@ /obj/structure/flora/bush/grassy/style_random, /obj/structure/flora/bush/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "mZd" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -88147,6 +88188,7 @@ /obj/structure/flora/rock/pile/jungle/style_random, /obj/structure/bed/dogbed, /obj/structure/marker_beacon/lime, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/grass, /area/station/maintenance/aft/greater) "ndj" = ( @@ -88180,7 +88222,7 @@ dir = 9 }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ndD" = ( /obj/structure/railing/corner{ dir = 8 @@ -88514,7 +88556,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nho" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -88528,11 +88570,9 @@ /area/station/service/bar) "nhu" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nhw" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 1 @@ -88576,6 +88616,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "nhR" = ( @@ -88687,7 +88728,7 @@ /obj/machinery/door/airlock/medical/glass{ name = "Primary Treatment Centre" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -88724,7 +88765,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "njl" = ( /turf/open/floor/plating, /area/station/construction/mining/aux_base) @@ -88898,10 +88939,10 @@ /obj/machinery/door/airlock/maintenance{ name = "Abandoned Project Room" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/central) "nkU" = ( @@ -89247,8 +89288,17 @@ /turf/open/floor/iron/dark, /area/station/cargo/miningoffice) "nnZ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/rust, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "noc" = ( /obj/effect/turf_decal/siding/wideplating_new/dark/corner{ @@ -89257,9 +89307,7 @@ /obj/structure/railing/corner{ dir = 1 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "noe" = ( @@ -89441,11 +89489,11 @@ /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) "npk" = ( @@ -89564,7 +89612,7 @@ }, /obj/effect/turf_decal/trimline/red/corner, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "npI" = ( /obj/effect/turf_decal/trimline/red/line{ dir = 4 @@ -90495,13 +90543,13 @@ }, /obj/machinery/light/small/directional/east, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/aisat/exterior"; + control_area = "/area/station/ai/satellite/exterior"; name = "Zen Garden Turret Control"; req_access = list("minisat"); pixel_y = 27 }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nwC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -90558,11 +90606,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "nxa" = ( @@ -90676,7 +90724,7 @@ /area/station/science/xenobiology) "nxR" = ( /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nym" = ( /obj/structure/table/wood, /obj/structure/cable, @@ -90930,7 +90978,7 @@ dir = 10 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nAd" = ( /obj/effect/turf_decal/siding/wideplating_new/dark/corner{ dir = 1 @@ -91402,7 +91450,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nDR" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, @@ -91501,9 +91549,7 @@ /obj/effect/turf_decal/trimline/dark/line{ dir = 1 }, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron, /area/station/cargo/storage) "nEz" = ( @@ -91756,7 +91802,8 @@ pixel_y = -6; pixel_x = -24; id = "ldorm1"; - name = "Curtains" + name = "Curtains"; + dir = 8 }, /turf/open/floor/wood/large, /area/station/commons/dorms) @@ -91831,7 +91878,8 @@ }, /obj/machinery/button/crematorium{ id = "crematoriumchapel"; - pixel_x = -25 + pixel_x = -25; + dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -91868,6 +91916,9 @@ dir = 6 }, /obj/effect/decal/cleanable/glass, +/obj/structure/sign/warning/secure_area/directional/south{ + pixel_x = 32 + }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) "nHv" = ( @@ -92309,7 +92360,7 @@ "nKQ" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "nKS" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -92496,6 +92547,9 @@ /obj/effect/turf_decal/trimline/dark_red/filled/warning{ dir = 5 }, +/obj/structure/sign/warning/secure_area/directional/north{ + pixel_x = 32 + }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) "nMM" = ( @@ -92891,6 +92945,7 @@ /obj/effect/turf_decal/siding/thinplating/dark{ dir = 9 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "nPK" = ( @@ -93107,11 +93162,10 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/rubble, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "nQT" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/box, -/obj/item/defibrillator/loaded, /obj/item/clothing/gloves/latex/nitrile, /obj/item/clothing/gloves/latex/nitrile, /obj/effect/turf_decal/siding/dark{ @@ -93122,6 +93176,9 @@ }, /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 3 + }, /turf/open/floor/iron/dark/small, /area/station/medical/storage) "nRd" = ( @@ -93396,14 +93453,14 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/command/eva, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/external{ name = "EVA Airlock" }, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nSV" = ( /obj/structure/railing, /obj/item/shell/bot, @@ -93954,7 +94011,7 @@ /area/station/maintenance/port) "nXA" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "nXE" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 4 @@ -94067,10 +94124,11 @@ /obj/structure/hedge, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nYG" = ( /obj/structure/sign/gym{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/hedge, /obj/structure/railing{ @@ -94461,7 +94519,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "obe" = ( /obj/structure/cable, /obj/effect/spawner/random/maintenance, @@ -94699,7 +94757,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ocH" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -95524,11 +95582,11 @@ /area/station/security/checkpoint/customs) "oil" = ( /obj/structure/rack, -/obj/effect/spawner/random/armory/laser_gun, +/obj/effect/spawner/random/armory/pick_laser_loadout, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oit" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/trimline/dark/corner{ @@ -96309,7 +96367,7 @@ /obj/machinery/digital_clock/directional/north, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "onN" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 10 @@ -96453,7 +96511,7 @@ }, /obj/machinery/newscaster/directional/south, /turf/open/floor/carpet/blue, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "ooA" = ( /obj/structure/cable, /obj/structure/broken_flooring/singular/directional/north, @@ -97442,7 +97500,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "owE" = ( /obj/structure/flora/bush/grassy/style_random, /obj/structure/flora/bush/lavendergrass/style_random, @@ -97525,7 +97583,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oxd" = ( /obj/structure/table/reinforced/plastitaniumglass, /obj/structure/chem_separator{ @@ -97672,7 +97730,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "oyb" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 1 @@ -97705,14 +97763,12 @@ /obj/structure/cable, /obj/effect/turf_decal/bot_white, /obj/structure/chair, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 6 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark/textured_large, /area/station/maintenance/aft/lesser) "oyl" = ( @@ -97775,7 +97831,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oyQ" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Two"; @@ -98298,7 +98354,7 @@ }, /obj/structure/flora/grass/jungle/b/style_5, /turf/open/water, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "oDe" = ( /obj/effect/turf_decal/siding/dark{ dir = 1 @@ -98382,9 +98438,7 @@ /obj/structure/railing/corner{ dir = 4 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "oDZ" = ( @@ -98465,7 +98519,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "oEB" = ( /obj/effect/turf_decal/siding{ dir = 10 @@ -98689,7 +98743,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "oGA" = ( /obj/effect/turf_decal/trimline/dark_green/warning{ dir = 4 @@ -98743,6 +98797,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"oGQ" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) "oGW" = ( /obj/structure/plasticflaps/opaque, /obj/machinery/navbeacon{ @@ -98786,9 +98846,7 @@ }, /obj/effect/turf_decal/trimline/yellow/corner, /obj/item/radio/intercom/directional/west, -/obj/machinery/camera/autoname/directional/west{ - dir = 10 - }, +/obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron/dark/textured_edge{ dir = 8 }, @@ -98893,7 +98951,7 @@ /obj/machinery/computer/monitor, /obj/structure/cable, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "oIK" = ( /obj/structure/table/reinforced, /obj/effect/spawner/surgery_tray/full, @@ -98933,7 +98991,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "oIU" = ( /obj/structure/stairs/west, /obj/structure/railing, @@ -99461,7 +99519,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "oMi" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 @@ -99519,7 +99577,7 @@ /obj/structure/cable, /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "oMO" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -99685,7 +99743,8 @@ /area/station/science/lab) "oOa" = ( /obj/structure/sign/departments/botany/botany/alt3{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/trimline/green/corner{ dir = 8 @@ -99896,7 +99955,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oOZ" = ( /obj/structure/flora/rock/pile/style_random, /obj/effect/spawner/random/trash, @@ -100062,7 +100121,8 @@ pixel_y = -6; pixel_x = -24; id = "ldorm2"; - name = "Curtains" + name = "Curtains"; + dir = 8 }, /obj/structure/railing{ color = "#36373a"; @@ -100103,6 +100163,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/effect/mapping_helpers/airlock/access/all/science/rd, /obj/structure/plasticflaps/kitchen, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron/dark, /area/station/science/server) "oQc" = ( @@ -100131,7 +100192,7 @@ /obj/structure/cable, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oQi" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 @@ -100559,7 +100620,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/rubble, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "oSQ" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 1 @@ -100904,13 +100965,6 @@ /obj/effect/turf_decal/trimline/dark/filled/line{ dir = 1 }, -/obj/machinery/button/door/directional/west{ - id = "main_surgery"; - name = "Privacy Shutters Control"; - req_access = list("surgery"); - pixel_x = -56; - pixel_y = 6 - }, /turf/open/floor/iron/showroomfloor, /area/station/medical/surgery/theatre) "oVD" = ( @@ -101344,7 +101398,7 @@ /obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "oYY" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -101363,7 +101417,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oZj" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -101438,7 +101492,7 @@ /obj/machinery/door/airlock/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "oZy" = ( @@ -101566,7 +101620,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Dormitory Maintenance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -101684,7 +101738,7 @@ /obj/machinery/holopad/secure, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "pbd" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 4 @@ -102026,6 +102080,24 @@ /obj/structure/sign/poster/official/plasma_effects/directional/north, /turf/open/floor/iron/smooth, /area/station/maintenance/department/bridge) +"pdx" = ( +/obj/machinery/button/door/directional/east{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + req_access = list("cargo"); + pixel_y = -8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/storage) "pdz" = ( /obj/structure/chair/wood/wings, /obj/structure/fluff/paper/stack{ @@ -102042,11 +102114,12 @@ "pdE" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/central) "pdF" = ( @@ -102128,7 +102201,7 @@ id = "AIgarden2" }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pdW" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/turf_decal/bot{ @@ -102195,7 +102268,7 @@ dir = 9 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "peB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/effect/turf_decal/stripes/line{ @@ -103145,7 +103218,7 @@ /obj/machinery/status_display/ai/directional/east, /obj/machinery/light/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "plp" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/table/glass, @@ -103688,7 +103761,7 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/service/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -103786,7 +103859,7 @@ dir = 1 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pqv" = ( /obj/machinery/door/airlock/maintenance{ name = "Courtroom Maintenance" @@ -103895,7 +103968,7 @@ /obj/machinery/holopad/secure, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "prn" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 10 @@ -105143,6 +105216,13 @@ /obj/machinery/duct, /turf/open/floor/iron/dark/textured, /area/station/commons/dorms) +"pzo" = ( +/obj/structure/sign/directions/engineering/directional/east{ + dir = 2; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/maintenance/port/aft) "pzp" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/effect/turf_decal/bot, @@ -105228,7 +105308,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pzR" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, @@ -105257,7 +105337,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/dark, /area/station/maintenance/aft/greater) "pAa" = ( @@ -105282,7 +105362,7 @@ }, /obj/effect/turf_decal/trimline/red, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pAe" = ( /obj/machinery/status_display/ai, /turf/closed/wall/r_wall, @@ -105429,7 +105509,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -105583,7 +105663,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "pCn" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 6 @@ -106139,7 +106219,7 @@ }, /obj/structure/marker_beacon/yellow, /turf/open/floor/bamboo, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "pHa" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/iron/fifty, @@ -106213,6 +106293,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "pHv" = ( @@ -106778,7 +106859,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pLG" = ( /obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, /turf/open/floor/circuit/green, @@ -107013,7 +107094,7 @@ /obj/item/gun/ballistic/shotgun/riot, /obj/item/gun/ballistic/shotgun/riot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pNP" = ( /turf/closed/wall, /area/station/service/lawoffice) @@ -107224,7 +107305,7 @@ /obj/item/storage/lockbox/loyalty, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pPe" = ( /obj/structure/chair/comfy/black{ dir = 1 @@ -107237,10 +107318,11 @@ /area/station/science/breakroom) "pPh" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/central) "pPi" = ( @@ -107623,13 +107705,26 @@ dir = 8 }, /obj/machinery/camera/autoname/directional/south{ - dir = 5; network = list("interrogation") }, /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, /area/station/security/interrogation) +"pRL" = ( +/obj/structure/sign/directions/evac/directional/south{ + dir = 8; + pixel_y = 10 + }, +/obj/structure/sign/directions/dorms/directional/south{ + pixel_y = -10; + dir = 8 + }, +/obj/structure/sign/directions/engineering/directional/south{ + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/service/boutique) "pRP" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -107860,7 +107955,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pTD" = ( /obj/effect/turf_decal/siding/brown{ dir = 1 @@ -107939,7 +108034,7 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pUf" = ( /turf/closed/wall, /area/station/medical/break_room) @@ -108033,7 +108128,7 @@ }, /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "pUZ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -108229,7 +108324,7 @@ req_access = list("captain") }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pWS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -108248,7 +108343,7 @@ name = "Chapel Maintenance" }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/plating, @@ -108412,7 +108507,7 @@ color = "#4874A2" }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pYq" = ( /obj/structure/chair, /obj/effect/turf_decal/bot_white, @@ -108460,7 +108555,7 @@ /turf/open/floor/iron/dark, /area/station/medical/storage) "pYN" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -108565,7 +108660,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pZs" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -108700,7 +108795,7 @@ dir = 9 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qaB" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -109090,6 +109185,7 @@ dir = 1 }, /obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "qeJ" = ( @@ -109235,7 +109331,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qfB" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/end{ dir = 1 @@ -109257,7 +109353,7 @@ name = "Private Channel" }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qfC" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /obj/structure/cable, @@ -109594,7 +109690,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable/layer3, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qih" = ( /obj/effect/turf_decal/tile/blue/full, /obj/machinery/defibrillator_mount/mobile{ @@ -110011,9 +110107,7 @@ /obj/effect/turf_decal/siding/wideplating_new/dark/corner{ dir = 8 }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "qlW" = ( @@ -110610,7 +110704,7 @@ /obj/structure/cable, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "qqk" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/carpet/neon/simple/red/nodots, @@ -111355,7 +111449,7 @@ /obj/item/restraints/handcuffs, /obj/item/assembly/flash/handheld, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qwT" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/trimline/green, @@ -111466,17 +111560,6 @@ dir = 4 }, /obj/structure/hedge, -/obj/structure/sign/directions/security/directional/north{ - pixel_y = 40; - dir = 4 - }, -/obj/structure/sign/directions/command/directional/north{ - dir = 4 - }, -/obj/structure/sign/directions/evac/directional/north{ - pixel_y = 24; - dir = 8 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -111586,7 +111669,7 @@ /obj/effect/turf_decal/bot, /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qyy" = ( /turf/open/floor/glass/reinforced, /area/station/commons/fitness) @@ -111666,9 +111749,7 @@ }, /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, -/obj/machinery/camera/autoname/directional/east{ - dir = 6 - }, +/obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark/smooth_edge{ dir = 8 }, @@ -111820,7 +111901,7 @@ pixel_x = -8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qAi" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -111831,14 +111912,12 @@ /area/station/medical/coldroom) "qAl" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qAt" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -111868,10 +111947,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/fore) "qAG" = ( @@ -111895,7 +111975,7 @@ /obj/effect/spawner/random/armory/riot_helmet, /obj/effect/spawner/random/armory/riot_shield, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qBb" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /obj/structure/cable, @@ -112423,7 +112503,7 @@ }, /obj/structure/sign/poster/official/random/directional/east, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/equipment) +/area/station/ai/satellite/equipment) "qEO" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -112653,7 +112733,7 @@ /obj/effect/turf_decal/bot/right, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qGL" = ( /obj/item/reagent_containers/cup/beaker/cryoxadone{ pixel_x = -6; @@ -113336,7 +113416,7 @@ "qKN" = ( /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qKS" = ( /obj/effect/turf_decal/trimline/yellow, /obj/machinery/light/floor, @@ -113349,7 +113429,8 @@ dir = 1 }, /obj/structure/sign/painting/library_private{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/item/kirbyplants/organic/plant10, /turf/open/floor/carpet/green, @@ -113685,7 +113766,7 @@ pixel_x = 3 }, /turf/open/misc/beach/sand, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qNb" = ( /turf/closed/wall, /area/station/medical/pharmacy) @@ -113734,7 +113815,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "qNs" = ( /obj/effect/turf_decal/trimline/yellow, /obj/machinery/light/floor, @@ -113811,7 +113892,7 @@ dir = 5 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qOs" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -113916,7 +113997,7 @@ /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "qPS" = ( /obj/effect/spawner/random/maintenance, /obj/structure/cable, @@ -113957,7 +114038,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qQa" = ( /obj/structure/closet/crate/coffin, /obj/effect/turf_decal/tile/dark/diagonal_centre, @@ -114032,7 +114113,7 @@ pixel_y = -32 }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qQC" = ( /obj/structure/flora/bush/fullgrass, /obj/structure/flora/bush/grassy/style_random, @@ -114199,6 +114280,9 @@ /obj/structure/broken_flooring/singular{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/north{ + pixel_x = -32 + }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) "qSi" = ( @@ -114376,12 +114460,10 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/structure/noticeboard/directional/west{ - dir = 4 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/noticeboard/directional/west, /turf/open/floor/wood/tile, /area/station/service/cafeteria) "qTF" = ( @@ -114489,7 +114571,7 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/service/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/disposalpipe/segment{ @@ -114569,7 +114651,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qVC" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -114843,7 +114925,7 @@ dir = 10 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qYk" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, @@ -114971,7 +115053,7 @@ network = list("minisat") }, /turf/open/misc/asteroid/airless, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "qZc" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -115304,7 +115386,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron/dark, @@ -115330,7 +115412,7 @@ /obj/structure/cable, /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rbJ" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/fyellow, @@ -115746,12 +115828,8 @@ /obj/effect/turf_decal/trimline/white/warning{ dir = 4 }, -/obj/machinery/flasher/directional/west{ - id = "AI"; - pixel_y = 26 - }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rfe" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -116978,7 +117056,7 @@ req_access = list("ai_upload") }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rot" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 4 @@ -117168,7 +117246,7 @@ /obj/structure/table/reinforced, /obj/machinery/recharger, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rpr" = ( /obj/effect/turf_decal/tile/brown/fourcorners, /obj/machinery/mineral/ore_redemption{ @@ -117549,7 +117627,7 @@ network = list("minisat") }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rrD" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/sparsegrass/style_random, @@ -117887,6 +117965,18 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) +"rub" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = 32; + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/wood/large, +/area/station/service/library/upper) "ruh" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -118010,6 +118100,17 @@ /obj/machinery/hydroponics/soil/rich, /turf/open/floor/grass, /area/station/service/hydroponics/garden) +"rvq" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "rvu" = ( /obj/item/kirbyplants/organic/plant10, /obj/effect/decal/cleanable/dirt/dust, @@ -118075,10 +118176,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) "rwe" = ( @@ -118264,7 +118365,7 @@ /obj/machinery/teleport/hub, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "rxz" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -118557,10 +118658,11 @@ /obj/machinery/door/airlock/maintenance/glass, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/cargo) "rAw" = ( @@ -118747,7 +118849,7 @@ "rBm" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "rBC" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -118818,7 +118920,7 @@ "rCf" = ( /obj/effect/turf_decal/trimline/dark/corner, /turf/open/floor/iron/dark/textured_corner, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "rCi" = ( /obj/effect/turf_decal/bot, /obj/machinery/digital_clock/directional/south, @@ -119259,10 +119361,10 @@ /area/station/command/heads_quarters/qm) "rEV" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; - pixel_y = 28 + pixel_y = 28; + dir = 1 }, /obj/effect/turf_decal/siding/dark{ dir = 6 @@ -119277,7 +119379,7 @@ }, /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "rEX" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -119669,7 +119771,7 @@ name = "Research Division Access" }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -119972,7 +120074,7 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rKH" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/purple, @@ -120014,9 +120116,7 @@ /obj/effect/turf_decal/trimline/red/corner{ dir = 8 }, -/obj/machinery/camera/autoname/directional/east{ - dir = 6 - }, +/obj/machinery/camera/autoname/directional/east, /obj/machinery/firealarm/directional/east{ pixel_x = 26; pixel_y = 6 @@ -120155,7 +120255,7 @@ }, /obj/machinery/light/small/directional/south, /turf/open/floor/holofloor/wood, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "rLH" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -120901,7 +121001,7 @@ /obj/item/kirbyplants/random, /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rRE" = ( /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron/white, @@ -120934,14 +121034,14 @@ pixel_y = 11 }, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/atmos"; + control_area = "/area/station/ai/satellite/atmos"; name = "Atmospherics Turret Control"; req_access = list("minisat"); pixel_y = -27 }, /obj/machinery/digital_clock/directional/west, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "rSd" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -121476,9 +121576,6 @@ /turf/open/floor/iron/smooth, /area/station/maintenance/port/central) "rWS" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /turf/open/space/basic, /area/space/nearstation) "rWW" = ( @@ -121582,6 +121679,13 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood/large, /area/station/service/kitchen/diner) +"rXp" = ( +/obj/machinery/turretid{ + pixel_y = -5; + name = "AI Chamber turret control" + }, +/turf/closed/wall/r_wall, +/area/station/ai/satellite/chamber) "rXs" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/stripes/line{ @@ -121770,7 +121874,7 @@ /area/station/science/lower) "rYP" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rYR" = ( /turf/closed/wall/r_wall, /area/station/tcommsat/server) @@ -121868,6 +121972,13 @@ pixel_x = -26; pixel_y = -6 }, +/obj/machinery/button/door/directional/west{ + id = "main_surgery"; + name = "Privacy Shutters Control"; + req_access = list("surgery"); + pixel_x = -26; + pixel_y = 6 + }, /turf/open/floor/iron/showroomfloor, /area/station/medical/surgery/theatre) "rZu" = ( @@ -122263,7 +122374,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sbL" = ( /obj/effect/turf_decal/weather/snow, /obj/structure/cable, @@ -122308,7 +122419,7 @@ name = "E.V.A. Storage Shutter" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "scx" = ( /obj/effect/turf_decal/tile/dark/diagonal_centre, /obj/machinery/oven/range, @@ -122898,6 +123009,15 @@ /obj/structure/flora/grass/jungle/b/style_4, /turf/open/floor/grass, /area/station/hallway/secondary/exit/departure_lounge) +"sgP" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) "sgS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -122938,7 +123058,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "shg" = ( /obj/structure/frame/machine, /turf/open/floor/iron/smooth_large, @@ -123182,7 +123302,7 @@ pixel_y = -24 }, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "sjI" = ( /obj/structure/cable, /obj/machinery/light/small/red/directional/west, @@ -123973,6 +124093,19 @@ dir = 6 }, /area/station/maintenance/department/security) +"sqU" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "srd" = ( /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/lavendergrass/style_random, @@ -124146,7 +124279,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ssw" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -124770,7 +124903,8 @@ /area/station/security/brig) "sxx" = ( /obj/structure/sign/departments/botany/botany/alt3{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/trimline/green/corner, /obj/effect/turf_decal/siding/dark{ @@ -125056,7 +125190,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -125362,7 +125496,7 @@ dir = 8 }, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sCy" = ( /obj/structure/railing{ dir = 4 @@ -125594,7 +125728,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "sEh" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -125649,8 +125783,17 @@ /turf/open/floor/wood/tile, /area/station/service/minibar) "sEF" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "sEG" = ( /obj/machinery/oven/range, @@ -126099,7 +126242,7 @@ }, /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sHT" = ( /obj/effect/turf_decal/trimline/blue, /obj/machinery/light/floor, @@ -126277,9 +126420,7 @@ /area/station/maintenance/fore/lesser) "sJY" = ( /obj/effect/turf_decal/tile/green/anticorner/contrasted, -/obj/structure/noticeboard/directional/south{ - dir = 1 - }, +/obj/structure/noticeboard/directional/south, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden) "sJZ" = ( @@ -126297,7 +126438,7 @@ /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -126403,7 +126544,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "sKF" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -126708,6 +126849,20 @@ "sMC" = ( /turf/closed/wall/r_wall, /area/station/science/lower) +"sMP" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "sMS" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/trimline/yellow/warning, @@ -127272,7 +127427,7 @@ }, /obj/structure/marker_beacon/lime, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sSe" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -127722,7 +127877,8 @@ /obj/effect/turf_decal/siding/purple, /obj/structure/cable, /obj/structure/noticeboard/rd{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/white, /area/station/science/lower) @@ -127790,7 +127946,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "sVU" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 1"; @@ -127898,6 +128054,9 @@ /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/painting/large/library{ + dir = 1 + }, /turf/open/floor/plating, /area/station/maintenance/radshelter/civil) "sWO" = ( @@ -128331,7 +128490,8 @@ dir = 1 }, /obj/structure/noticeboard/cmo{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/blue{ dir = 1 @@ -128360,7 +128520,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "sZP" = ( /obj/structure/chair/office{ dir = 4 @@ -128426,6 +128586,7 @@ /obj/effect/turf_decal/trimline/dark/corner{ dir = 1 }, +/obj/structure/sign/departments/vault/directional/north, /turf/open/floor/iron/dark, /area/station/command) "tao" = ( @@ -128697,6 +128858,22 @@ }, /turf/open/floor/iron/dark/small, /area/station/engineering/gravity_generator) +"tcG" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "tcI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ @@ -128794,7 +128971,7 @@ /obj/machinery/light/small/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tdd" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark/textured, @@ -129171,7 +129348,7 @@ }, /obj/structure/hedge, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tgm" = ( /obj/machinery/atmospherics/components/trinary/mixer/flipped{ dir = 8 @@ -129217,7 +129394,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tgF" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -129393,7 +129570,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "thP" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 10 @@ -129496,7 +129673,7 @@ /area/station/maintenance/port/fore) "tip" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "tiq" = ( /obj/effect/turf_decal/trimline/blue/line{ dir = 1 @@ -129606,7 +129783,7 @@ /obj/machinery/firealarm/directional/west, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tjx" = ( /obj/effect/turf_decal/trimline/blue, /obj/effect/turf_decal/trimline/blue/mid_joiner{ @@ -130115,13 +130292,15 @@ "tnz" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/box, -/obj/item/defibrillator/loaded, /obj/item/clothing/gloves/latex/nitrile, /obj/item/clothing/gloves/latex/nitrile, /obj/machinery/requests_console/auto_name/directional/north{ name = "Medbay Requests Console" }, /obj/effect/mapping_helpers/requests_console/assistance, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 3 + }, /turf/open/floor/iron/dark/small, /area/station/medical/storage) "tnR" = ( @@ -130311,7 +130490,7 @@ /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 }, -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 8 }, /obj/effect/turf_decal/trimline/purple/line{ @@ -130374,6 +130553,19 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"tpN" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "tpQ" = ( /obj/effect/turf_decal/siding/wideplating_new/dark{ dir = 10 @@ -130388,14 +130580,12 @@ /area/space/nearstation) "tpS" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tpZ" = ( /obj/machinery/power/smes{ charge = 5e+006 @@ -130438,7 +130628,7 @@ /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/ferny/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tqo" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -130895,11 +131085,11 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/command/eva, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ttz" = ( /obj/machinery/light_switch/directional/west, /obj/effect/turf_decal/siding/blue{ @@ -130953,7 +131143,7 @@ /obj/machinery/light/small/directional/east, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ttO" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -131129,7 +131319,7 @@ "tvt" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tvw" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -131914,12 +132104,6 @@ /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 }, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, /obj/effect/turf_decal/trimline/dark/corner{ dir = 8 }, @@ -132388,7 +132572,7 @@ /area/station/security/prison) "tDF" = ( /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tDJ" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/turf_decal/trimline/blue/filled/corner{ @@ -132438,7 +132622,7 @@ dir = 4 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tDR" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/structure/flora/grass/jungle/b/style_random, @@ -132796,7 +132980,7 @@ /area/station/service/chapel) "tGr" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "tGx" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -132979,7 +133163,7 @@ }, /obj/effect/turf_decal/caution/red, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tHw" = ( /obj/structure/railing{ dir = 6 @@ -133550,7 +133734,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "tLz" = ( /obj/structure/bookcase/random, /obj/effect/turf_decal/siding/wood{ @@ -134053,7 +134237,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/rubble, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "tPc" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -134467,7 +134651,7 @@ network = list("vault") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tSs" = ( /obj/structure/cable, /turf/open/floor/iron/dark/small, @@ -134661,7 +134845,6 @@ /obj/machinery/airalarm/directional/south, /obj/effect/mapping_helpers/airalarm/engine_access, /obj/machinery/camera/autoname/directional/south{ - dir = 5; network = list("ss13","engine") }, /obj/effect/mapping_helpers/airalarm/link{ @@ -134693,7 +134876,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tTV" = ( /obj/structure/sign/warning/vacuum/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -134899,7 +135082,6 @@ "tVO" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/box, -/obj/item/defibrillator/loaded, /obj/item/clothing/gloves/latex/nitrile, /obj/item/clothing/gloves/latex/nitrile, /obj/effect/turf_decal/siding/dark{ @@ -134913,6 +135095,9 @@ network = list("ss13","medbay"); dir = 9 }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 3 + }, /turf/open/floor/iron/dark/small, /area/station/medical/storage) "tVT" = ( @@ -134956,7 +135141,7 @@ /obj/machinery/digital_clock/directional/north, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "tWk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/effect/landmark/atmospheric_sanity/ignore_area, @@ -135053,7 +135238,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tXg" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth/fancy/mechanical{ @@ -135399,7 +135584,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tZm" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 @@ -135832,7 +136017,7 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "udz" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -136175,7 +136360,7 @@ /obj/item/kirbyplants/random, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ugO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/machinery/meter, @@ -136332,7 +136517,7 @@ /area/station/medical/paramedic) "uhM" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uhP" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -136401,9 +136586,7 @@ dir = 4 }, /obj/structure/table/reinforced/rglass, -/obj/machinery/camera/autoname/directional/east{ - dir = 6 - }, +/obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/dark, /area/station/command/bridge) "uiG" = ( @@ -136463,7 +136646,7 @@ /obj/machinery/newscaster/directional/north, /obj/structure/window/spawner/directional/west, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uiL" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -136494,7 +136677,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uiZ" = ( /turf/open/floor/glass, /area/station/commons/lounge) @@ -136535,7 +136718,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "ujm" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -136710,7 +136893,7 @@ /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ula" = ( /obj/structure/cable, /obj/effect/spawner/random/trash/caution_sign, @@ -136765,7 +136948,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ulJ" = ( /obj/structure/cable, /obj/structure/curtain/cloth{ @@ -137299,7 +137482,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -137881,7 +138064,7 @@ /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "uuG" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -138073,16 +138256,12 @@ name = "Primary AI Core Access"; req_access = list("ai_upload") }, -/obj/machinery/flasher/directional/north{ - pixel_x = 26; - id = "AI" - }, /obj/machinery/power/apc/auto_name/directional/west, /obj/effect/mapping_helpers/apc/cell_5k, /obj/machinery/light_switch/directional/east, /obj/structure/cable, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uwF" = ( /obj/structure/table/glass, /obj/item/reagent_containers/cup/glass/coffee, @@ -138619,6 +138798,11 @@ }, /turf/open/floor/iron/dark/small, /area/station/engineering/main) +"uAz" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/station/science/xenobiology) "uAA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -138914,7 +139098,7 @@ /area/station/maintenance/port/central) "uCV" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uCW" = ( /obj/structure/hedge, /obj/structure/window/reinforced/spawner/directional/west, @@ -138932,7 +139116,8 @@ dir = 1 }, /obj/structure/sign/painting/library_private{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/item/kirbyplants/random, /obj/machinery/camera/autoname/directional/north, @@ -138974,6 +139159,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "uDB" = ( @@ -139017,7 +139203,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "uEd" = ( /obj/effect/spawner/random/entertainment/money_small, /obj/structure/table, @@ -139201,7 +139387,8 @@ }, /obj/machinery/button/flasher{ id = "IsolationFlash"; - pixel_x = -24 + pixel_x = -24; + dir = 8 }, /turf/open/floor/iron/dark/textured, /area/station/security/execution/education) @@ -139699,7 +139886,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "uKz" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 8 @@ -139740,13 +139927,13 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "uKL" = ( /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/bot, /obj/machinery/computer/security/telescreen/minisat/directional/east, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uKZ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -140132,7 +140319,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uNI" = ( /obj/structure/railing{ dir = 9 @@ -140421,9 +140608,11 @@ /turf/open/floor/grass, /area/station/hallway/secondary/entry) "uPS" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/security/checkpoint/escape) +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/space/openspace, +/area/space/nearstation) "uPX" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; @@ -140659,6 +140848,7 @@ pixel_y = -4 }, /obj/structure/sign/warning/yes_smoking/circle/directional/south, +/obj/machinery/barsign/directional/south, /turf/open/floor/grass, /area/station/service/bar) "uSf" = ( @@ -140690,7 +140880,7 @@ network = list("minisat") }, /turf/open/misc/asteroid/airless, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uSn" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -140844,9 +141034,7 @@ /area/station/commons/lounge) "uTL" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "uTM" = ( @@ -140882,7 +141070,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/stone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uTS" = ( /obj/structure/chair/sofa/corp{ dir = 1 @@ -140932,7 +141120,7 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uUi" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 @@ -141007,7 +141195,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uUI" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -141169,7 +141357,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uVH" = ( /obj/effect/turf_decal/tile/purple/fourcorners, /obj/machinery/door/firedoor, @@ -141415,7 +141603,7 @@ }, /obj/structure/marker_beacon/lime, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "uXm" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, @@ -141478,7 +141666,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uXN" = ( /obj/structure/table/reinforced/rglass, /obj/item/storage/box/monkeycubes{ @@ -141628,7 +141816,7 @@ dir = 4 }, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uZi" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -141664,7 +141852,7 @@ /obj/structure/flora/bush/fullgrass/style_random, /obj/structure/flora/bush/sunny/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "uZr" = ( /obj/structure/chair/office{ dir = 8 @@ -141704,7 +141892,7 @@ /obj/structure/marker_beacon/lime, /obj/structure/cable, /turf/open/floor/grass, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "uZJ" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -141840,7 +142028,7 @@ }, /obj/machinery/firealarm/directional/west, /turf/open/floor/carpet/neon/simple/lime, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vaz" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ dir = 10 @@ -142058,7 +142246,7 @@ dir = 8 }, /turf/open/misc/dirt/dark/station, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vbG" = ( /obj/machinery/door/airlock/public/glass{ name = "Library" @@ -142100,7 +142288,7 @@ /obj/machinery/door/airlock/security/glass{ name = "Permabrig Visitation" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/turf_decal/stripes/line{ @@ -142202,17 +142390,6 @@ "vcy" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/hedge, -/obj/structure/sign/directions/security/directional/south{ - pixel_y = -24; - dir = 4 - }, -/obj/structure/sign/directions/command/directional/south{ - dir = 4 - }, -/obj/structure/sign/directions/upload/directional/south{ - pixel_y = -40; - dir = 4 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -142391,7 +142568,7 @@ /obj/structure/cable, /obj/machinery/computer/security/telescreen/aiupload/directional/north, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "vdA" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -142632,7 +142809,7 @@ req_access = list("armory") }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "veT" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/flipped{ dir = 4 @@ -142991,7 +143168,7 @@ dir = 6 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vhR" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -143491,10 +143668,8 @@ /turf/open/misc/asteroid/airless, /area/space/nearstation) "vkH" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/glass/reinforced/airless, /area/space/nearstation) "vkK" = ( @@ -143637,9 +143812,22 @@ /turf/open/floor/wood/large, /area/station/command/heads_quarters/cmo) "vlt" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "vlu" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -143696,7 +143884,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vlP" = ( /obj/structure/hedge, /obj/structure/railing{ @@ -144230,7 +144418,7 @@ }, /obj/structure/flora/bush/grassy/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vqa" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/rock/pile/jungle/style_random, @@ -144379,7 +144567,7 @@ pixel_x = -32 }, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vrO" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/railing{ @@ -144968,7 +145156,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "vvQ" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 8 @@ -145306,7 +145494,7 @@ }, /obj/structure/flora/rock/pile/jungle/style_random, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "vyb" = ( /obj/machinery/duct, /obj/structure/cable, @@ -145546,7 +145734,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -145711,22 +145899,10 @@ /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) "vBA" = ( -/obj/machinery/button/door/directional/east{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - req_access = list("cargo"); - pixel_y = 24 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, /turf/open/floor/iron/dark/side{ dir = 4 }, @@ -145980,7 +146156,7 @@ color = "#4874A2" }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vDE" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -146182,6 +146358,7 @@ dir = 4 }, /obj/machinery/camera/autoname/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark/side{ dir = 2 }, @@ -146595,10 +146772,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/port) "vIJ" = ( @@ -146771,6 +146948,13 @@ /obj/effect/turf_decal/trimline/red/corner, /turf/open/floor/iron/dark, /area/station/command/bridge) +"vJQ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "vKc" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/item/kirbyplants/organic/plant22, @@ -146829,9 +147013,6 @@ }, /obj/item/kirbyplants/random, /obj/machinery/camera/autoname/directional/north, -/obj/structure/sign/directions/evac/directional/north{ - dir = 8 - }, /turf/open/floor/iron/dark/herringbone, /area/station/commons/dorms) "vKB" = ( @@ -147144,6 +147325,7 @@ }, /obj/effect/turf_decal/trimline/dark/corner, /obj/machinery/digital_clock/directional/south, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark/side{ dir = 10 }, @@ -147298,7 +147480,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "vPe" = ( /obj/machinery/computer/mechpad, /obj/structure/cable, @@ -147327,7 +147509,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vPm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -147381,7 +147563,7 @@ "vPH" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vPU" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 @@ -147736,7 +147918,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "vSy" = ( /obj/effect/turf_decal/trimline/dark_green, /obj/structure/disposalpipe/segment, @@ -147787,7 +147969,8 @@ /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, @@ -148200,7 +148383,7 @@ dir = 6 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vWs" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/siding/thinplating_new/dark{ @@ -148325,9 +148508,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/machinery/camera/autoname/directional/north{ - dir = 9 - }, +/obj/machinery/camera/autoname/directional/north, /obj/structure/railing/corner{ dir = 4 }, @@ -148371,11 +148552,9 @@ /obj/item/kirbyplants/organic/plant10, /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/trimline/dark/corner, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, +/obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vXL" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -148894,7 +149073,8 @@ /area/station/science/lower) "wbI" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -148974,7 +149154,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wcg" = ( /obj/machinery/airalarm/directional/south, /obj/structure/chair/sofa/bench/right{ @@ -148995,7 +149175,7 @@ /obj/machinery/holopad, /obj/structure/flora/bush/sparsegrass/style_3, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "wcq" = ( /obj/structure/chair/sofa/corp, /obj/machinery/incident_display/delam/directional/north, @@ -149504,7 +149684,6 @@ dir = 8 }, /obj/machinery/camera/autoname/directional/south{ - dir = 5; network = list("prison") }, /obj/machinery/processor, @@ -149838,6 +150017,10 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating/airless, /area/station/solars/port/aft) +"wjl" = ( +/obj/structure/window/reinforced/plasma/fulltile, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) "wjr" = ( /obj/machinery/destructive_scanner, /obj/effect/turf_decal/delivery, @@ -149939,7 +150122,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -150273,7 +150456,7 @@ dir = 8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wmO" = ( /turf/open/floor/iron, /area/station/maintenance/fore/lesser) @@ -150419,7 +150602,7 @@ network = list("minisat") }, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "wnQ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -150523,7 +150706,7 @@ }, /obj/machinery/porta_turret/ai, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "woH" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -150878,7 +151061,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "wsY" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -150975,7 +151158,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wtR" = ( /obj/structure/curtain/cloth{ color = "#666666" @@ -151040,7 +151223,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wup" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/effect/turf_decal/trimline/dark_blue/filled/warning{ @@ -151287,7 +151470,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "wvS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -151430,13 +151613,13 @@ /turf/open/floor/wood, /area/station/maintenance/port/fore) "wwX" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/engineering/directional/east{ - dir = 2 +/obj/structure/sign/directions/evac/directional/north{ + pixel_x = 0; + pixel_y = -5; + dir = 10 }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) +/turf/closed/wall, +/area/station/service/kitchen/diner) "wwY" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/chair/sofa/bench/right{ @@ -151612,7 +151795,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "wyn" = ( /obj/machinery/door/window/brigdoor/left/directional/west{ req_access = list("security"); @@ -151819,6 +152002,22 @@ dir = 5 }, /area/station/commons/dorms) +"wzw" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "wzI" = ( /obj/effect/turf_decal/trimline/dark/corner{ dir = 1 @@ -151829,7 +152028,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 1 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "wzL" = ( /obj/structure/railing{ dir = 1 @@ -152206,7 +152405,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "wCr" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/components/unary/portables_connector/visible, @@ -152851,7 +153050,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wHS" = ( /obj/structure/chair/wood/wings{ dir = 1 @@ -153201,7 +153400,7 @@ dir = 4 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wKM" = ( /obj/effect/turf_decal/siding/brown, /obj/effect/turf_decal/trimline/brown/filled/corner, @@ -153346,7 +153545,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wLX" = ( /obj/machinery/dna_scannernew, /turf/open/floor/iron/dark/textured, @@ -153556,7 +153755,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 4 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wNP" = ( /obj/effect/spawner/random/structure/table_or_rack, /obj/item/clothing/mask/gas, @@ -153926,7 +154125,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wQQ" = ( /obj/structure/railing/corner{ dir = 1 @@ -154293,6 +154492,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "wUK" = ( @@ -154640,16 +154840,14 @@ /obj/effect/turf_decal/siding/dark{ dir = 1 }, +/obj/machinery/camera/autoname/directional/south, /obj/machinery/barsign/directional/south, -/obj/machinery/camera/autoname/directional/south{ - dir = 5 - }, /turf/open/floor/iron/dark/herringbone, /area/station/service/bar) "wXm" = ( /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "wXo" = ( /obj/structure/table, /obj/item/reagent_containers/spray/pestspray{ @@ -154667,6 +154865,19 @@ /obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden) +"wXs" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "wXu" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 10 @@ -155715,6 +155926,21 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"xgM" = ( +/obj/structure/sign/directions/evac/directional/north{ + pixel_y = 10; + dir = 8 + }, +/obj/structure/sign/directions/command/directional/north{ + dir = 4; + pixel_y = -10 + }, +/obj/structure/sign/directions/security/directional/north{ + pixel_y = 0; + dir = 4 + }, +/turf/closed/wall, +/area/station/service/cafeteria) "xgP" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -155991,7 +156217,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xji" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -156269,7 +156495,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/turret_protected/aisat/service) +/area/station/ai/satellite/service) "xla" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -156286,7 +156512,7 @@ /turf/open/floor/iron/dark/textured_corner{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xlf" = ( /obj/machinery/door/airlock{ name = "Unisex Showers" @@ -156474,7 +156700,7 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xmv" = ( /obj/effect/turf_decal/delivery, /obj/structure/rack, @@ -156886,7 +157112,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xpq" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -157308,7 +157534,7 @@ }, /obj/structure/flora/grass/jungle/b/style_2, /turf/open/water, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xsP" = ( /obj/effect/turf_decal/trimline/brown, /obj/machinery/light/floor, @@ -157706,7 +157932,7 @@ }, /obj/structure/marker_beacon/jade, /turf/open/floor/holofloor/wood, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xvH" = ( /obj/item/kirbyplants/organic/plant22{ pixel_y = 9 @@ -157764,6 +157990,7 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/duct, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "xwg" = ( @@ -157851,7 +158078,7 @@ /obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "xwW" = ( /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; @@ -158147,7 +158374,7 @@ dir = 6 }, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xzH" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -158601,7 +158828,7 @@ "xDe" = ( /obj/machinery/porta_turret/ai, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "xDi" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -158946,12 +159173,10 @@ /area/station/maintenance/port/fore) "xGg" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "xGh" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -159663,7 +159888,7 @@ /obj/machinery/firealarm/directional/west, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "xLb" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -159782,7 +160007,7 @@ dir = 8 }, /turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xLX" = ( /turf/open/floor/carpet/red, /area/station/security/detectives_office) @@ -159956,7 +160181,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xMI" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -160115,7 +160340,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_half, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xNP" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/tcomms_all, @@ -160194,11 +160419,19 @@ }, /turf/open/floor/carpet/orange, /area/station/command/heads_quarters/ce) +"xON" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "xOP" = ( /obj/structure/railing/corner{ dir = 4 }, -/obj/structure/sign/nanotrasen, /turf/closed/wall/r_wall, /area/space/nearstation) "xOV" = ( @@ -160287,7 +160520,7 @@ /obj/machinery/door/airlock/medical/glass{ name = "Primary Treatment Centre" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -160610,7 +160843,7 @@ /obj/machinery/status_display/ai/directional/west, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/atmos) +/area/station/ai/satellite/atmos) "xRE" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -161014,10 +161247,11 @@ network = list("minisat") }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xVs" = ( /obj/structure/noticeboard/qm{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 @@ -161300,7 +161534,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "xXR" = ( /obj/structure/table/wood, /obj/structure/cable, @@ -161678,7 +161912,7 @@ }, /obj/structure/chair/sofa/bench/solo, /turf/open/floor/iron/dark/herringbone, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "yaR" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/trimline/brown, @@ -162457,7 +162691,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/window/spawner/directional/west, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ygY" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -162640,7 +162874,7 @@ }, /obj/structure/flora/bush/grassy/style_random, /turf/open/floor/grass, -/area/station/ai_monitored/aisat/exterior) +/area/station/ai/satellite/exterior) "yiu" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -163001,12 +163235,12 @@ /obj/effect/turf_decal/caution/stand_clear{ dir = 8 }, +/obj/effect/turf_decal/box, /obj/machinery/door/poddoor/shutters{ dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters" }, -/obj/effect/turf_decal/box, /turf/open/floor/iron/dark/textured_half{ dir = 1 }, @@ -163254,7 +163488,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark/small, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ylW" = ( /obj/structure/table/reinforced/rglass, /obj/item/paper_bin{ @@ -178353,7 +178587,7 @@ qgY wvm uYI vFA -vlt +fdz cZB qSw cZB @@ -181941,7 +182175,7 @@ chn ptU fem ejn -uPS +bZT iWM kwY ldl @@ -182980,7 +183214,7 @@ fNC eMP ejn ejn -ejn +jDr eEx gOa tcM @@ -184522,7 +184756,7 @@ eRi tda ejn ejn -ejn +jDr vKu gOa oCL @@ -192261,7 +192495,7 @@ ukX lxu lcj enK -jCi +bdQ bdQ iHt rAE @@ -194833,7 +195067,7 @@ tOw ild tOw ukX -tOw +wjl vky ukX vky @@ -198590,7 +198824,7 @@ gym kFj kFj kFj -jsi +pif ciG sho ciG @@ -199378,7 +199612,7 @@ hFb cWB hrq wRM -kCp +pzy oQa pzy pzy @@ -199925,7 +200159,7 @@ kqn puv xrx cii -ird +uAz ird dPx dPx @@ -209695,10 +209929,10 @@ vjj rye hBv wYE -tiv +mCn +huN eDF eDF -mCn sWH wBq pem @@ -212774,7 +213008,7 @@ eJN mMZ pZo lMc -iHK +gwv dbg mfR mxG @@ -212838,7 +213072,7 @@ wKB uCV qig uhM -uhM +rXp uhM eJb jRq @@ -216847,11 +217081,11 @@ gym gym gym gJT -kNp +eoO hJX faj hJX -kNp +eoO gJT gym gym @@ -218389,11 +218623,11 @@ gym gym gym gym -kNp +eoO hJX kvJ hJX -kNp +eoO gym gym gym @@ -242073,7 +242307,7 @@ qvg kiX vLs joK -vLs +oGQ bLu bLu lng @@ -242834,8 +243068,8 @@ txW kaB pCa pCa -nnZ -uty +lAM +aEz hzt uty dya @@ -245142,8 +245376,8 @@ txW kaB pCa pCa -mGv -gxe +ewt +tpN pIn uty uty @@ -246423,7 +246657,7 @@ txW txW txW txW -mGv +ewt grZ jyx pSJ @@ -249507,7 +249741,7 @@ txW txW txW txW -mGv +ewt ghV oOw vLi @@ -249796,7 +250030,7 @@ rXt bbr dhB tLT -dMW +wwX eAb mrW byU @@ -250542,9 +250776,9 @@ kaB txW txW txW +lAM nnZ kLH -kLH akB dtb dtb @@ -252849,7 +253083,7 @@ pCa pCa rVd rVd -rVd +gVK rVd rVd pCa @@ -252871,7 +253105,7 @@ ugP jyh kGK hCZ -bxv +rub xbv cho kpP @@ -254619,7 +254853,7 @@ txW lAM aqt aqt -mGv +ewt aec aec lAM @@ -254876,7 +255110,7 @@ itE gxe aNh jjf -sLa +gbi sLa dtn xKy @@ -255127,8 +255361,8 @@ txW txW ewt keO -vIx -nnZ +wXs +lAM gxe dtb pIn @@ -255441,7 +255675,7 @@ hCZ htH tTl bwC -bxv +rub sbp cho lNb @@ -255472,7 +255706,7 @@ opa vCS jWv oth -wwX +qLk sSt irB naa @@ -255729,7 +255963,7 @@ naa jck naa jJw -naa +pzo naa veW ygk @@ -256535,7 +256769,7 @@ txW nzu txW nPJ -fBx +nuy tod txW nzu @@ -256667,8 +256901,8 @@ txW kaB pCa pCa -nnZ -sJF +lAM +fDh wPS wPS wPS @@ -257301,7 +257535,7 @@ gKy dtb dtb txW -sEF +aXd iVN vSW gAD @@ -257311,7 +257545,7 @@ cXz uJk okv uDx -sEF +aXd txW txW txW @@ -257949,8 +258183,8 @@ txW txW txW txW -mGv -tGj +ewt +tcG tGj vcY dtb @@ -258279,11 +258513,11 @@ fDJ fDJ xzR fDJ -fDJ +bQm aTh oJr tKp -fYi +bQy fYi aAN fYi @@ -258536,7 +258770,7 @@ iVK yck duV xIs -czJ +bna bna fub eAL @@ -258977,8 +259211,8 @@ txW txW txW txW -nnZ -sFS +lAM +vlt sFS xpG ukF @@ -259357,7 +259591,7 @@ gKy dtb dtb txW -fBx +nuy aeD eUh ukb @@ -259367,7 +259601,7 @@ cXz xYz eUh qeC -sEF +aXd txW txW txW @@ -260138,8 +260372,8 @@ eVR aqt aqt aqt -aqt sEF +aXd txW txW txW @@ -260641,8 +260875,8 @@ txW txW txW txW -sEF -aqt +aXd +div gxe dtb smB @@ -260771,8 +261005,8 @@ txW txW txW txW -opN -mGv +uPS +ewt pCa pCa gJT @@ -261172,7 +261406,7 @@ dtb dtb rfP oWn -oWn +kIp xOP txW txW @@ -261632,7 +261866,7 @@ jRA rdQ bUw hNz -uBc +pRL mgT tvU wwY @@ -262440,8 +262674,8 @@ cAe txW txW txW -fBx -kLH +nuy +nnZ uPq dtb lje @@ -262640,7 +262874,7 @@ sQm pHi dCI muG -gOV +xgM qxw mZk vSF @@ -262660,7 +262894,7 @@ lro iKL mkx vcy -nVN +czJ kwd dre mlp @@ -262714,7 +262948,7 @@ kLH kLH oOw uxn -uxn +wzw cud txW txW @@ -262965,8 +263199,8 @@ ukF ukF iWP kLH -kLH -sEF +sqU +aXd txW txW txW @@ -263341,8 +263575,8 @@ txW txW txW txW -opN -mGv +uPS +ewt pCa pCa gJT @@ -263725,8 +263959,8 @@ txW txW txW txW -sEF -aqt +aXd +div gxe dtb smB @@ -264247,8 +264481,8 @@ eiF uty hzt uty -nrR -fBx +sgP +nuy pCa hFK uty @@ -264641,7 +264875,7 @@ aGm aGm eIs aGm -qze +pdx vBA pAj wvp @@ -265989,7 +266223,7 @@ uIV uIV nix uIV -uIV +iSX vQP vGu cNH @@ -266303,8 +266537,8 @@ dBE mKY hzt uty -cff -sEF +xON +aXd pCa hFK uty @@ -267464,8 +267698,8 @@ txW txW txW txW -nnZ -pIn +lAM +hCG uty mKY hzt @@ -267473,8 +267707,8 @@ mKY hzt mKY uty -dya -nnZ +mTU +lAM txW txW txW @@ -268753,8 +268987,8 @@ ewt kLH kLH kLH -kLH -nnZ +sqU +lAM kLH kLH kLH @@ -269284,7 +269518,7 @@ vwR aqt aqt mzt -nnZ +lAM pCa pCa pCa @@ -271862,8 +272096,8 @@ ewt kLH kLH kLH -kLH -nnZ +sqU +lAM pCa pCa txW @@ -272622,7 +272856,7 @@ fEZ jyK sJF wPS -vwd +rvq wPS ndj pIn @@ -272879,7 +273113,7 @@ kHR fev uXh bSB -nnZ +lAM kLH kLH odY @@ -273677,12 +273911,12 @@ txW txW txW txW -sEF +aXd nhJ sLa feq flp -fBx +nuy rJW rJW lMp @@ -275219,12 +275453,12 @@ txW txW txW txW -fBx +nuy pHn gFv wPS eaO -sEF +aXd dtb rJW xKy @@ -276052,7 +276286,7 @@ dRZ txW lHF aqt -fBx +nuy wBM mpS txW @@ -276309,7 +276543,7 @@ aXd aqt cyB ukF -ukF +uTL ukF oKZ aqt @@ -276573,8 +276807,8 @@ dtb vwK dtb erl -aqt -fBx +sEF +nuy aqt uzU txW @@ -277058,8 +277292,8 @@ qvg pdG aqt oFa -aqt -fBx +sEF +nuy kaB pCa pCa @@ -277073,8 +277307,8 @@ pCa pCa pCa dRZ -fBx -pIn +nuy +hCG uty dUu vvn @@ -277350,8 +277584,8 @@ omF igQ xKy pdG -aqt -fBx +sEF +nuy dRZ txW txW @@ -278079,7 +278313,7 @@ aoX sXi ghk kxQ -vSH +bxv vSH vSH vSH @@ -278561,13 +278795,13 @@ txW txW txW txW -fBx -eiF +nuy +mGv uty hzt mKY -cff -sEF +xON +aXd jHP uty uty @@ -278637,8 +278871,8 @@ xDe cPU gfC omF -ukF -sEF +aFi +aXd dRZ txW txW @@ -279920,8 +280154,8 @@ omF dtb dtb sAF -fic -fBx +sMP +nuy dRZ txW txW @@ -280142,8 +280376,8 @@ qpJ ecL kLH nHW -kLH -sEF +sqU +aXd kaB pCa pCa @@ -280157,8 +280391,8 @@ pCa pCa pCa dRZ -sEF -bwF +aXd +vJQ uty gvK vBu @@ -280685,8 +280919,8 @@ ukF cWI ukF iLt -kLH -sEF +sqU +aXd kLH nMg txW @@ -280935,7 +281169,7 @@ nuy kLH qnv ukF -ukF +lyI ukF iWP fic @@ -281135,15 +281369,15 @@ txW txW txW txW -sEF -omF +aXd +jkQ eiF uty hzt uty cff -eLm fBx +nuy qvg iJc eZi @@ -281192,7 +281426,7 @@ dRZ txW thP kLH -sEF +aXd kLH nMg txW diff --git a/_maps/map_files/Pubbystation/pubbystation.dmm b/_maps/map_files/Pubbystation/pubbystation.dmm index 6d5bbabe15c563..139cde7ec6f0a2 100644 --- a/_maps/map_files/Pubbystation/pubbystation.dmm +++ b/_maps/map_files/Pubbystation/pubbystation.dmm @@ -139,7 +139,7 @@ }, /obj/structure/closet/l3closet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aaF" = ( /obj/machinery/computer/exodrone_control_console, /obj/effect/turf_decal/siding/thinplating_new/dark, @@ -187,7 +187,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "aaO" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -328,33 +328,33 @@ /area/station/solars/aisat) "abO" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "abV" = ( /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "abW" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "abY" = ( /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acc" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acd" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "ace" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acf" = ( /obj/machinery/camera/motion/directional/south{ c_tag = "MiniSat AI Chamber North"; @@ -368,24 +368,24 @@ /obj/machinery/holopad/secure, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acg" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "ach" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "ack" = ( /obj/machinery/power/smes/super/full, /obj/structure/cable, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acm" = ( /obj/machinery/camera/motion/directional/east{ c_tag = "MiniSat External Port"; @@ -403,13 +403,13 @@ }, /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "aco" = ( /turf/open/floor/plating, /area/station/cargo/drone_bay) "acq" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai"; + control_area = "/area/station/ai/upload/foyer"; name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24 @@ -423,13 +423,13 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acr" = ( /obj/machinery/ai_slipper{ uses = 8 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acu" = ( /obj/machinery/porta_turret/ai{ dir = 4 @@ -440,7 +440,7 @@ }, /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acv" = ( /obj/machinery/camera/motion/directional/west{ c_tag = "MiniSat External Starboard"; @@ -453,7 +453,7 @@ dir = 1 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acy" = ( /obj/effect/landmark/start/ai, /obj/machinery/newscaster/directional/south, @@ -464,14 +464,14 @@ pixel_y = -43 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acD" = ( /obj/machinery/light/directional/north, /obj/machinery/flasher{ @@ -488,11 +488,11 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acF" = ( /obj/effect/landmark/start/ai/secondary, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acI" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -500,7 +500,7 @@ /obj/item/radio/intercom/directional/west, /obj/structure/closet/l3closet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "acJ" = ( /obj/effect/turf_decal/trimline/brown/filled/corner, /obj/structure/chair/office{ @@ -531,7 +531,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acN" = ( /turf/closed/wall/r_wall, /area/station/engineering/storage_shared) @@ -547,28 +547,28 @@ /area/station/salvage_bay) "acP" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "acT" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "acU" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "acV" = ( /turf/closed/wall, /area/station/engineering/storage_shared) "acW" = ( /obj/machinery/computer/station_alert, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "acX" = ( /obj/machinery/computer/monitor, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "acY" = ( /obj/machinery/computer/atmos_alert, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "adb" = ( /obj/machinery/door/airlock/command/glass{ name = "AI Core" @@ -581,12 +581,12 @@ }, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "add" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "ade" = ( /obj/structure/table/glass, /obj/item/stack/sheet/glass{ @@ -602,16 +602,16 @@ pixel_y = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "adf" = ( /obj/machinery/light/small/directional/north, /obj/machinery/modular_computer/preset/civilian, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "adg" = ( /obj/machinery/mecha_part_fabricator, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "adh" = ( /obj/machinery/camera/directional/north{ c_tag = "MiniSat AI Chamber Center"; @@ -621,19 +621,19 @@ /obj/structure/cable, /obj/machinery/power/solar_control, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "adi" = ( /obj/structure/chair/office{ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "adj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "adk" = ( /obj/structure/table, /obj/machinery/recharger, @@ -642,7 +642,7 @@ dir = 8 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "adl" = ( /obj/structure/chair/office{ dir = 1 @@ -652,7 +652,7 @@ dir = 8 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "adn" = ( /obj/structure/chair/office{ dir = 4 @@ -662,7 +662,7 @@ dir = 8 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ado" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -672,13 +672,13 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "adq" = ( /obj/structure/chair/office{ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "ads" = ( /obj/machinery/light/directional/west, /obj/machinery/camera/directional/west{ @@ -689,7 +689,7 @@ }, /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "adt" = ( /obj/machinery/camera/directional/south{ c_tag = "MiniSat Maintenance Port Fore"; @@ -701,13 +701,13 @@ uses = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "adu" = ( /obj/structure/disposalpipe/segment, /obj/structure/tank_dispenser/oxygen, /obj/effect/turf_decal/stripes/end, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "adv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -722,7 +722,7 @@ /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "adx" = ( /obj/machinery/light/small/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -730,7 +730,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "adz" = ( /obj/machinery/light/small/directional/south, /obj/machinery/camera/motion/directional/south{ @@ -742,7 +742,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "adB" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "MiniSat Maintenance" @@ -757,7 +757,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "adC" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -782,7 +782,7 @@ uses = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "adF" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 9 @@ -814,7 +814,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "adO" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, @@ -822,7 +822,7 @@ "adT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "adU" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/delivery, @@ -838,10 +838,10 @@ /obj/effect/turf_decal/arrows/red, /obj/structure/sign/semiotic/warning/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "adX" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "adY" = ( /obj/machinery/door/firedoor, /turf/open/floor/iron, @@ -855,7 +855,7 @@ /obj/effect/turf_decal/arrows/red, /obj/structure/sign/semiotic/warning/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aec" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -863,7 +863,7 @@ /obj/structure/extinguisher_cabinet/directional/west, /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aed" = ( /obj/structure/lattice, /obj/structure/grille/broken, @@ -872,11 +872,11 @@ "aee" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "aef" = ( /obj/structure/table/reinforced/titaniumglass, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "aeh" = ( /obj/machinery/light/small/directional/west, /obj/structure/cable, @@ -884,22 +884,22 @@ uses = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "aej" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /obj/effect/turf_decal/bot_white, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aek" = ( /obj/structure/table/reinforced/titaniumglass, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "ael" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "aem" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron, @@ -943,7 +943,7 @@ }, /obj/structure/sign/semiotic/warning/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aeB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -985,7 +985,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "aeT" = ( /obj/machinery/power/tracker, /obj/structure/cable, @@ -997,14 +997,14 @@ /obj/structure/cable, /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "aeZ" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ dir = 4 }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "afa" = ( /obj/machinery/camera/directional/north{ c_tag = "MiniSat Maintenance Port Aft"; @@ -1020,7 +1020,7 @@ uses = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "afb" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -1028,7 +1028,7 @@ /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "afc" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1041,7 +1041,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "afd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1058,7 +1058,7 @@ /obj/structure/cable, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aff" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -1067,7 +1067,7 @@ /obj/structure/cable, /obj/effect/turf_decal/caution/red, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "afg" = ( /obj/item/kirbyplants/random, /obj/machinery/camera/directional/north{ @@ -1080,7 +1080,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "afh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1105,7 +1105,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "afj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1136,7 +1136,7 @@ uses = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "afl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1154,7 +1154,7 @@ /obj/machinery/power/port_gen/pacman/pre_loaded, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "afp" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/floor/engine/air, @@ -1166,7 +1166,7 @@ name = "Air Out" }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "afu" = ( /turf/closed/wall, /area/station/service/kitchen/coldroom) @@ -1177,13 +1177,13 @@ /obj/structure/chair/stool/bar/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "afw" = ( /obj/machinery/light/small/directional/west, /obj/item/radio/intercom/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "afy" = ( /obj/effect/landmark/start/cyborg, /obj/item/beacon, @@ -1191,7 +1191,7 @@ uses = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "afA" = ( /obj/machinery/light/small/directional/east, /obj/machinery/airalarm/directional/east, @@ -1199,14 +1199,14 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "afB" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/machinery/light/small/directional/east, /obj/item/stack/cable_coil, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "afE" = ( /obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -1226,24 +1226,24 @@ "afH" = ( /obj/machinery/flasher/portable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "afK" = ( /obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "afL" = ( /obj/structure/table, /obj/item/wrench, /obj/item/tank/internals/emergency_oxygen, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "afM" = ( /obj/structure/table, /obj/item/crowbar, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "afN" = ( /obj/machinery/teleport/hub, /obj/effect/turf_decal/stripes/line{ @@ -1251,7 +1251,7 @@ }, /obj/structure/sign/departments/aisat/directional/west, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "afO" = ( /obj/machinery/door/airlock/mining{ name = "Drone Bay" @@ -1274,7 +1274,7 @@ /obj/machinery/holopad/secure, /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "afQ" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -1286,11 +1286,11 @@ }, /obj/structure/sign/departments/aisat/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "afS" = ( /obj/machinery/recharge_station, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "afT" = ( /obj/structure/rack, /obj/item/storage/toolbox/electrical{ @@ -1299,7 +1299,7 @@ }, /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "afU" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted, /obj/machinery/plumbing/receiver, @@ -1314,10 +1314,10 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agf" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agg" = ( /obj/machinery/requests_console/directional/south{ department = "AI"; @@ -1325,7 +1325,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agh" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -1336,7 +1336,7 @@ }, /obj/structure/sign/semiotic/pressure/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agi" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, @@ -1359,7 +1359,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agr" = ( /obj/machinery/computer/teleporter{ dir = 4 @@ -1369,11 +1369,11 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ags" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agu" = ( /obj/structure/transit_tube, /obj/effect/turf_decal/stripes/line{ @@ -1381,19 +1381,19 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agD" = ( /obj/machinery/light/small/directional/west, /obj/structure/sign/semiotic/vacuum_ahead/directional/west, /obj/structure/sign/semiotic/warning/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agE" = ( /obj/structure/window/reinforced/fulltile, /obj/structure/transit_tube, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agP" = ( /turf/closed/wall, /area/station/security/office) @@ -1411,7 +1411,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "agS" = ( /obj/structure/transit_tube, /obj/structure/lattice/catwalk, @@ -1514,7 +1514,7 @@ /area/station/security/eva) "ahL" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ahM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -1619,8 +1619,8 @@ "aih" = ( /obj/structure/table, /obj/structure/extinguisher_cabinet/directional/east, -/obj/item/tank/jetpack/oxygen/security, -/obj/item/tank/jetpack/oxygen/security, +/obj/item/tank/jetpack/security, +/obj/item/tank/jetpack/security, /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron, @@ -1629,7 +1629,7 @@ /obj/structure/table, /obj/item/clothing/suit/hooded/ablative, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aik" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, @@ -1637,13 +1637,13 @@ "ail" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aim" = ( /obj/structure/chair/office{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aio" = ( /obj/effect/turf_decal/delivery, /obj/machinery/light_switch/directional/south, @@ -1722,8 +1722,8 @@ /obj/structure/table, /obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/tile/red/half/contrasted, -/obj/item/tank/jetpack/oxygen/security, -/obj/item/tank/jetpack/oxygen/security, +/obj/item/tank/jetpack/security, +/obj/item/tank/jetpack/security, /obj/machinery/door/window/brigdoor/security/cell/left/directional/west, /turf/open/floor/iron, /area/station/security/eva) @@ -1739,7 +1739,7 @@ pixel_y = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aiO" = ( /obj/structure/rack, /obj/structure/sign/warning/no_smoking/directional/east, @@ -1747,7 +1747,7 @@ /obj/effect/spawner/random/armory/slug, /obj/effect/spawner/random/armory/slug, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aiR" = ( /obj/structure/sign/warning/electric_shock, /turf/closed/wall, @@ -1815,18 +1815,18 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/spawner/random/armory/bulletproof_helmet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ajh" = ( /obj/structure/table, /obj/item/gun/energy/temperature/security, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ajj" = ( /obj/structure/rack, /obj/effect/spawner/random/armory/rubbershot, /obj/effect/spawner/random/armory/rubbershot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ajk" = ( /obj/effect/landmark/start/security_officer, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -2026,7 +2026,7 @@ /obj/effect/spawner/random/armory/riot_helmet, /obj/effect/spawner/random/armory/riot_helmet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ajQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2039,7 +2039,7 @@ /obj/effect/spawner/random/armory/riot_shield, /obj/effect/spawner/random/armory/riot_shield, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ajS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2053,7 +2053,7 @@ /obj/effect/spawner/random/armory/buckshot, /obj/effect/spawner/random/armory/buckshot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ajW" = ( /obj/effect/landmark/start/security_officer, /obj/structure/chair/stool/bar/directional/north, @@ -2334,10 +2334,10 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "akM" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "akO" = ( /obj/structure/table/reinforced, /obj/item/hand_labeler{ @@ -2677,7 +2677,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/sign/semiotic/bulkhead/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "ame" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3766,7 +3766,7 @@ /area/space/nearstation) "apT" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "apX" = ( /turf/closed/wall, /area/station/commons/dorms) @@ -3782,7 +3782,7 @@ "aqg" = ( /obj/effect/turf_decal/caution/red, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aqh" = ( /obj/effect/spawner/random/engineering/tank, /turf/open/floor/plating, @@ -3849,7 +3849,7 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/effect/mapping_helpers/apc/cell_10k, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "aqx" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ dir = 4 @@ -3914,18 +3914,18 @@ /obj/item/piggy_bank/vault, /obj/structure/table/glass, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aqM" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aqN" = ( /obj/machinery/light/directional/north, /obj/machinery/newscaster/directional/north, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aqO" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light/directional/south, @@ -3936,7 +3936,7 @@ /obj/structure/filingcabinet, /obj/item/folder/documents, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aqR" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -4190,11 +4190,11 @@ "arU" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "arW" = ( /obj/machinery/ore_silo, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "arX" = ( /obj/machinery/camera/directional/west{ c_tag = "Gateway" @@ -4444,11 +4444,11 @@ /obj/structure/closet/crate/goldcrate, /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "asX" = ( /obj/machinery/holopad, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "asY" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 @@ -4462,7 +4462,7 @@ "asZ" = ( /obj/structure/closet/crate/silvercrate, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ata" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -4736,18 +4736,18 @@ /obj/item/reagent_containers/cup/glass/drinkingglass/shotglass, /obj/item/clothing/head/costume/bearpelt, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aub" = ( /obj/machinery/light/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "auc" = ( /obj/machinery/computer/bank_machine{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aud" = ( /obj/machinery/camera/motion/directional/south{ c_tag = "Vault"; @@ -4758,14 +4758,14 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aue" = ( /obj/structure/safe, /obj/item/blueprints, /obj/item/skillchip/disk_verifier, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "auf" = ( /obj/machinery/requests_console/directional/west{ department = "Gateway"; @@ -5040,7 +5040,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/supply/vault, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "auZ" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -5449,7 +5449,7 @@ "awt" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "awu" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment{ @@ -6137,7 +6137,7 @@ /area/station/command/bridge) "azk" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload turret control"; pixel_y = -25 }, @@ -6240,7 +6240,7 @@ }, /obj/item/storage/belt/grenade, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "azN" = ( /obj/effect/turf_decal/box/white{ color = "#52B4E9" @@ -6429,7 +6429,7 @@ /area/station/command/bridge) "aAB" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aAC" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Upload Access" @@ -6444,7 +6444,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aAD" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -6636,7 +6636,7 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aBy" = ( /obj/machinery/door/firedoor, /turf/open/floor/wood/large, @@ -6890,7 +6890,7 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aCM" = ( /obj/machinery/camera/motion/directional/east{ c_tag = "AI Upload Starboard"; @@ -6908,7 +6908,7 @@ /obj/effect/turf_decal/siding/green, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aCP" = ( /obj/machinery/keycard_auth{ pixel_x = -26; @@ -7196,7 +7196,7 @@ dir = 8 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aDM" = ( /obj/machinery/camera/motion/directional/south{ c_tag = "AI Upload Center"; @@ -7210,7 +7210,7 @@ /obj/effect/mapping_helpers/apc/cell_10k, /obj/effect/mapping_helpers/apc/cut_AI_wire, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aDN" = ( /obj/machinery/porta_turret/ai{ dir = 8 @@ -7219,7 +7219,7 @@ pixel_x = 32 }, /turf/open/floor/iron/white/smooth_large, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aDO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -7321,7 +7321,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aEc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -7505,7 +7505,7 @@ /obj/structure/table/wood/fancy/green, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aEE" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/green/corner{ @@ -7513,26 +7513,26 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aEF" = ( /obj/machinery/computer/upload/ai{ dir = 1 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aEG" = ( /obj/machinery/flasher{ id = "AI"; pixel_y = -6 }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aEH" = ( /obj/machinery/computer/upload/borg{ dir = 1 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aEI" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/machinery/flasher{ @@ -7550,7 +7550,7 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aEJ" = ( /obj/machinery/light/directional/west, /obj/machinery/camera/directional/west{ @@ -7663,7 +7663,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/sign/semiotic/bulkhead/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "aFe" = ( /obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8797,12 +8797,12 @@ /area/station/maintenance/department/engine) "aKY" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aKZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aLa" = ( /obj/machinery/door/poddoor/shutters{ id = "evashutter"; @@ -8812,7 +8812,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aLb" = ( /obj/machinery/door/airlock/command/glass{ name = "EVA Storage"; @@ -8827,7 +8827,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/command/eva, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aLc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -8972,13 +8972,13 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aLS" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aLU" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -9003,10 +9003,10 @@ req_access = list("eva") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aLV" = ( /turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aLW" = ( /obj/item/kirbyplants/organic/plant14, /obj/machinery/requests_console/directional/west{ @@ -9280,7 +9280,7 @@ }, /obj/structure/closet/radiation, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aNt" = ( /obj/structure/rack, /obj/item/tank/jetpack/carbondioxide, @@ -9297,7 +9297,7 @@ }, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aNu" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/firealarm/directional/west, @@ -9472,7 +9472,7 @@ /obj/item/clothing/under/frontier_colonist/casual, /obj/item/clothing/under/frontier_colonist/casual, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aOE" = ( /obj/machinery/light/directional/west, /obj/machinery/camera/directional/west{ @@ -9716,7 +9716,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aPJ" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -9727,10 +9727,10 @@ }, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aPK" = ( /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aPL" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -9754,7 +9754,7 @@ /obj/item/clothing/under/frontier_colonist/casual, /obj/item/clothing/under/frontier_colonist/casual, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aPM" = ( /obj/structure/table, /obj/item/beacon, @@ -10055,12 +10055,12 @@ /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aQZ" = ( /obj/machinery/firealarm/directional/south, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aRa" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -10069,11 +10069,11 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aRb" = ( /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aRc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -10094,7 +10094,7 @@ /obj/item/clothing/under/frontier_colonist/casual, /obj/machinery/wall_healer/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aRd" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -11712,7 +11712,7 @@ "aYh" = ( /obj/machinery/holopad, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aYi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, @@ -11888,7 +11888,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aYR" = ( /obj/structure/sink/kitchen/directional/south{ pixel_x = -1; @@ -13333,7 +13333,7 @@ "bfm" = ( /obj/structure/sign/warning/electric_shock, /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "bfn" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/effect/turf_decal/tile/green, @@ -14747,7 +14747,7 @@ "blS" = ( /obj/structure/table/reinforced/titaniumglass, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "blX" = ( /turf/open/floor/engine, /area/station/science/xenobiology) @@ -19480,7 +19480,7 @@ "bJq" = ( /obj/machinery/computer/security/telescreen/entertainment, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bJD" = ( /obj/structure/sign/departments/engineering/directional/south, /obj/machinery/door/firedoor, @@ -22066,7 +22066,7 @@ /obj/structure/cable, /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "bUC" = ( /obj/structure/flora/bush/ferny/style_random, /turf/open/misc/asteroid, @@ -22726,7 +22726,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "bXi" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -24214,7 +24214,7 @@ /obj/structure/cable, /obj/machinery/firealarm/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "cff" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -25564,14 +25564,14 @@ /area/space/nearstation) "cnC" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "AI Satellite turret control"; pixel_x = -5; pixel_y = -24 }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cnD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -25583,12 +25583,12 @@ uses = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "cnE" = ( /obj/effect/turf_decal/arrows/red, /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cnJ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/vending/wardrobe/sec_wardrobe, @@ -27651,7 +27651,7 @@ /obj/structure/cable, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cCP" = ( /obj/effect/turf_decal/bot/right, /turf/open/floor/iron/white, @@ -28117,7 +28117,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dbI" = ( /obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/siding/wood{ @@ -28352,7 +28352,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dnR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -28521,7 +28521,7 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dsv" = ( /obj/structure/table, /obj/machinery/reagentgrinder, @@ -29350,7 +29350,7 @@ /obj/structure/cable, /obj/machinery/firealarm/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "eaB" = ( /obj/machinery/requests_console/auto_name/directional/north, /obj/effect/turf_decal/tile/office_blue{ @@ -29962,7 +29962,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "ezx" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/flora/bush/large/style_random{ @@ -30954,7 +30954,7 @@ uses = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fkH" = ( /obj/machinery/light/directional/south, /obj/machinery/camera/directional/south{ @@ -31104,7 +31104,7 @@ /obj/structure/cable, /obj/machinery/holopad/secure, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "fqJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -31164,7 +31164,7 @@ uses = 8 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "fsA" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -31391,7 +31391,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fBp" = ( /turf/closed/wall/r_wall, /area/station/engineering/atmos) @@ -31412,7 +31412,7 @@ "fBZ" = ( /obj/machinery/holopad, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fCa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/electric_yellow, @@ -31736,7 +31736,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fQd" = ( /obj/machinery/conveyor{ id = "CargoLoad" @@ -32050,7 +32050,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gfe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -32619,7 +32619,7 @@ }, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "gBb" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -33036,7 +33036,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gRU" = ( /obj/effect/turf_decal/siding/dark_blue, /obj/effect/turf_decal/tile/office_blue/half/contrasted, @@ -33278,7 +33278,7 @@ /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "hhs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33534,7 +33534,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hpp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -33844,7 +33844,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "hDu" = ( /turf/closed/wall, /area/station/hallway/secondary/command) @@ -34169,14 +34169,14 @@ /obj/machinery/light/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hQd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hQh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34387,7 +34387,7 @@ /obj/effect/spawner/random/contraband/armory, /obj/item/epic_loot/plasma_explosive, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hWW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -34540,7 +34540,7 @@ dir = 8 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ifr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -34801,7 +34801,7 @@ dir = 8 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "ipH" = ( /obj/effect/turf_decal/caution, /obj/effect/turf_decal/stripes/line{ @@ -35369,7 +35369,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iLl" = ( /obj/structure/sink{ pixel_y = 29 @@ -35460,7 +35460,7 @@ uses = 8 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "iOf" = ( /obj/effect/landmark/start/hangover, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -35538,7 +35538,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iTa" = ( /obj/machinery/newscaster/directional/south, /obj/effect/turf_decal/tile/red/half/contrasted, @@ -35559,7 +35559,7 @@ "iVA" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iVJ" = ( /obj/effect/spawner/random/medical/memeorgans, /obj/effect/mapping_helpers/broken_floor, @@ -35742,7 +35742,7 @@ /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /obj/structure/cable, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "jcc" = ( /obj/machinery/chem_mass_spec, /turf/open/floor/iron/white/textured_large, @@ -36926,7 +36926,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/sign/semiotic/bulkhead/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "jZC" = ( /obj/machinery/atmospherics/components/unary/airlock_pump, /obj/machinery/camera/autoname/directional/east, @@ -36983,7 +36983,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "kdb" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/camera/directional/north{ @@ -37029,7 +37029,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kfA" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ @@ -37175,7 +37175,7 @@ /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "kkk" = ( /obj/structure/table, /obj/item/reagent_containers/cup/glass/shaker, @@ -37657,7 +37657,7 @@ uses = 8 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kAD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37980,7 +37980,7 @@ "kPc" = ( /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "kPM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -38090,7 +38090,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kUw" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/vending/wardrobe/coroner_wardrobe, @@ -38117,7 +38117,7 @@ /obj/structure/table, /obj/item/gun/energy/ionrifle, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kVt" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -38571,7 +38571,7 @@ "lmI" = ( /obj/machinery/computer/security/telescreen/entertainment, /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lmU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -38686,7 +38686,7 @@ dir = 8 }, /turf/open/floor/plating/airless, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "lqc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -38816,7 +38816,7 @@ }, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ltJ" = ( /obj/structure/statue/petrified, /turf/open/floor/plating, @@ -39052,7 +39052,7 @@ /obj/machinery/cell_charger, /obj/effect/turf_decal/stripes/end, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lFh" = ( /obj/machinery/holopad, /obj/structure/cable, @@ -39377,7 +39377,7 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lUC" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -39426,7 +39426,7 @@ /obj/machinery/door/firedoor, /obj/item/storage/fancy/donut_box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lWv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/engine, @@ -39600,7 +39600,7 @@ dir = 8 }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "mdr" = ( /obj/effect/turf_decal/siding/dark_blue{ dir = 4 @@ -39642,7 +39642,7 @@ uses = 8 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "meu" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -39856,7 +39856,7 @@ /obj/structure/cable, /obj/structure/sign/semiotic/warning/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "mnr" = ( /obj/machinery/light/small/directional/east, /obj/machinery/camera/directional/east{ @@ -39915,7 +39915,7 @@ /obj/machinery/light/small/directional/south, /obj/structure/sign/semiotic/warning/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mpc" = ( /obj/structure/rack, /obj/structure/cable, @@ -40084,7 +40084,7 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mtC" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -40701,7 +40701,7 @@ "mTO" = ( /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "mUc" = ( /obj/structure/table/wood, /obj/structure/cable, @@ -41135,7 +41135,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "nlW" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark, @@ -41289,7 +41289,7 @@ /obj/effect/turf_decal/siding/green, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nsy" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -41528,7 +41528,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/holopad/secure, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "nDP" = ( /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, @@ -41714,7 +41714,7 @@ dir = 1 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "nLS" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -41767,7 +41767,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nOt" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/north, @@ -42403,7 +42403,7 @@ "olO" = ( /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "olV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -42603,7 +42603,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/sign/semiotic/warning/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "orZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43170,7 +43170,7 @@ name = "Armory Shutter" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oNE" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/light/directional/west, @@ -43549,7 +43549,7 @@ uses = 8 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "paB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44028,7 +44028,7 @@ network = list("minisat") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "pqw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -44227,7 +44227,7 @@ "pxU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pyn" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/siding, @@ -44858,7 +44858,7 @@ /obj/structure/rack, /obj/item/gun/ballistic/automatic/battle_rifle, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pWy" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/firealarm/directional/south, @@ -45557,7 +45557,7 @@ /obj/structure/cable, /obj/structure/sign/semiotic/bulkhead/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "qsk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -46209,7 +46209,7 @@ }, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "qVd" = ( /obj/machinery/atmospherics/pipe/smart/simple/general{ dir = 6 @@ -46792,7 +46792,7 @@ "rrt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rry" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -46978,7 +46978,7 @@ "rvS" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rwx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47096,7 +47096,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "rAm" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 @@ -47172,7 +47172,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rBP" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/dark_blue, @@ -47247,7 +47247,7 @@ dir = 8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rDf" = ( /obj/structure/cable, /obj/effect/landmark/start/hangover, @@ -47299,7 +47299,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rFv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -47563,7 +47563,7 @@ pixel_y = 0 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rPu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -47975,7 +47975,7 @@ "sdY" = ( /obj/structure/sign/semiotic/warning/directional/south, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "sea" = ( /obj/effect/spawner/random/medical/patient_stretcher, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48429,7 +48429,7 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "suU" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/pine_green/half/contrasted{ @@ -48636,7 +48636,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "szh" = ( /obj/structure/maintenance_loot_structure/military_case/random, /turf/open/floor/plating, @@ -48720,7 +48720,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "sDk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -48792,7 +48792,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sGc" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/blue/corner{ @@ -48958,7 +48958,7 @@ "sPa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_ap) +/area/station/ai/satellite/exterior) "sPb" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -49259,7 +49259,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "sZb" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -49359,7 +49359,7 @@ /obj/structure/table, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tcm" = ( /obj/effect/turf_decal/tile/pine_green/half/contrasted{ dir = 1 @@ -49606,7 +49606,7 @@ pixel_y = -40 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "tir" = ( /obj/structure/chair/sofa/left/maroon{ dir = 4 @@ -49884,7 +49884,7 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tsq" = ( /obj/structure/cable, /obj/structure/table, @@ -50267,7 +50267,7 @@ }, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tCJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -50779,7 +50779,7 @@ /obj/structure/cable, /obj/machinery/firealarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "uaC" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -51209,7 +51209,7 @@ /obj/effect/landmark/event_spawn, /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "umd" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, @@ -51555,7 +51555,7 @@ "uyY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "uzn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52367,7 +52367,7 @@ "vdB" = ( /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "vdC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53747,7 +53747,7 @@ /obj/machinery/holopad/secure, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "weL" = ( /obj/structure/railing{ dir = 4 @@ -54283,7 +54283,7 @@ }, /obj/effect/turf_decal/tile/dark/diagonal_edge, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wxa" = ( /obj/structure/rack, /obj/item/storage/box/teargas{ @@ -54295,7 +54295,7 @@ pixel_y = 0 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wxn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -54485,7 +54485,7 @@ /obj/structure/rack, /obj/effect/spawner/random/armory/shotgun, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wEl" = ( /obj/structure/disposalpipe/segment, /obj/structure/extinguisher_cabinet/directional/east, @@ -54516,7 +54516,7 @@ /area/station/hallway/secondary/exit) "wEJ" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wFr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -54677,7 +54677,7 @@ /obj/effect/turf_decal/tile/dark/diagonal_edge, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white/diagonal, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wKP" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/white/corner{ @@ -54795,7 +54795,7 @@ uses = 8 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/upload/foyer) "wPw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56074,7 +56074,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_sat_ext_as) +/area/station/ai/satellite/exterior) "xEI" = ( /obj/structure/disposalpipe/segment{ dir = 9 diff --git a/_maps/map_files/debug/multiz.dmm b/_maps/map_files/debug/multiz.dmm index a856336cb46fe8..ba848218d2c4aa 100644 --- a/_maps/map_files/debug/multiz.dmm +++ b/_maps/map_files/debug/multiz.dmm @@ -1022,8 +1022,8 @@ dir = 8 }, /obj/structure/table, -/obj/item/tank/jetpack/oxygen/captain, -/obj/item/storage/belt/utility/chief/full, +/obj/item/tank/jetpack/captain, +/obj/item/storage/belt/utility/full/powertools, /obj/item/clothing/gloves/color/yellow{ pixel_y = 10 }, diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm index 1d0269d8cb1409..f7bdd8885160fe 100644 --- a/_maps/map_files/debug/runtimestation.dmm +++ b/_maps/map_files/debug/runtimestation.dmm @@ -159,7 +159,7 @@ /obj/structure/table, /obj/item/weldingtool/experimental, /obj/item/inducer, -/obj/item/storage/belt/utility/chief/full, +/obj/item/storage/belt/utility/full/powertools, /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, @@ -254,7 +254,7 @@ /turf/open/floor/iron, /area/station/hallway/primary/central) "bF" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/iron, /area/station/science) "bI" = ( @@ -905,9 +905,8 @@ /turf/open/floor/iron, /area/station/cargo/storage) "fn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, +/obj/structure/sign/warning/vacuum/external/directional/west, +/turf/open/floor/iron, /area/station/hallway/secondary/entry) "fo" = ( /obj/machinery/conveyor_switch/oneway{ @@ -960,21 +959,18 @@ /turf/open/floor/iron, /area/station/cargo/bitrunning/den) "fM" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_x = 32 - }, /obj/structure/sign/directions/engineering{ dir = 1; - pixel_x = 32; pixel_y = 7 }, +/obj/structure/sign/directions/supply{ + dir = 4 + }, /obj/structure/sign/directions/evac{ - pixel_x = 32; pixel_y = -7 }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) +/turf/closed/wall/r_wall, +/area/station/commons/storage/primary) "fO" = ( /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) @@ -985,9 +981,7 @@ /area/station/hallway/secondary/exit/departure_lounge) "fQ" = ( /obj/machinery/computer/communications, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, +/obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "fS" = ( @@ -996,21 +990,18 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "fX" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_x = -32 - }, /obj/structure/sign/directions/engineering{ dir = 1; - pixel_x = -32; pixel_y = 7 }, +/obj/structure/sign/directions/supply{ + dir = 4 + }, /obj/structure/sign/directions/evac{ - pixel_x = -32; pixel_y = -7 }, -/turf/open/floor/plating, -/area/station/commons/storage/primary) +/turf/closed/wall/r_wall, +/area/station/construction) "fY" = ( /obj/machinery/light/directional/west, /obj/structure/cable, @@ -1035,19 +1026,7 @@ /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "gg" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_x = 32 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/directions/evac{ - pixel_x = 32; - pixel_y = -7 - }, +/obj/machinery/camera/autoname/directional/east, /turf/open/floor/plating, /area/station/commons/storage/primary) "gi" = ( @@ -1817,7 +1796,7 @@ /area/station/command/bridge) "BG" = ( /obj/structure/table, -/obj/item/ammo_box/c10mm, +/obj/item/ammo_box/c9mm, /obj/item/gun/ballistic/automatic/pistol, /turf/open/floor/iron, /area/station/command/bridge) @@ -2154,7 +2133,6 @@ /turf/open/floor/iron, /area/station/commons/storage/primary) "JV" = ( -/obj/machinery/camera/autoname/directional/east, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -5736,7 +5714,7 @@ ax eh dY dY -fn +en fs en dY @@ -5828,7 +5806,7 @@ ax eh eh eV -eh +fn eh eh eV @@ -6007,7 +5985,7 @@ eh eh eF HW -fM +eh eh eh eh @@ -6099,7 +6077,7 @@ cN cN cN cN -cN +fX ef ef cN @@ -7295,7 +7273,7 @@ cS cS cS cS -cS +fM dG dG cS @@ -7387,7 +7365,7 @@ Zz dp dl dl -fX +dl dE dB dl @@ -8583,7 +8561,7 @@ cS cS cS cS -cS +fM Is Jd tz diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index 11fb4bc5caaeac..c63c1c091cef6e 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -719,7 +719,7 @@ pixel_x = 6; pixel_y = 6 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 3; pixel_y = 3 }, @@ -866,6 +866,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "dG" = ( @@ -877,6 +878,12 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/tdome/observation) +"dI" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/courtroom) "dJ" = ( /obj/machinery/button/door/indestructible{ id = "thunderdomehea"; @@ -993,6 +1000,7 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "ev" = ( @@ -1019,6 +1027,7 @@ "eB" = ( /obj/structure/bookcase/random, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) "eD" = ( @@ -1027,7 +1036,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) "eE" = ( @@ -1127,7 +1136,7 @@ id = "tdomeflash"; name = "Thunderdome Flash" }, -/turf/open/floor/circuit/green, +/turf/closed/wall, /area/centcom/tdome/arena) "fc" = ( /obj/effect/turf_decal/delivery, @@ -1249,7 +1258,7 @@ name = "Bathroom" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron/white, /area/centcom/central_command_areas/admin) "fI" = ( @@ -1490,9 +1499,10 @@ /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "gS" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/ferry) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/armory) "gU" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 @@ -1673,6 +1683,7 @@ "hP" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "hT" = ( @@ -1737,8 +1748,11 @@ /turf/open/floor/iron, /area/centcom/central_command_areas/prison) "in" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron, /area/centcom/central_command_areas/control) "io" = ( /turf/closed/indestructible/riveted, @@ -1767,6 +1781,7 @@ /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/clothing/mask/gas, /obj/effect/turf_decal/stripes/line, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/prison) "iu" = ( @@ -1816,6 +1831,7 @@ /obj/item/restraints/handcuffs/cable/zipties, /obj/item/assembly/flash/handheld, /obj/effect/turf_decal/stripes/line, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/prison) "iz" = ( @@ -1874,9 +1890,10 @@ }, /area/centcom/central_command_areas/supply) "iH" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/prison) +/obj/effect/turf_decal/tile/green, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/centcom/central_command_areas/ferry) "iK" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -1977,11 +1994,6 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/courtroom) -"jb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/centcom/central_command_areas/supply) "jc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -2038,6 +2050,7 @@ dir = 4; id = "XCCQMLoad2" }, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) "jm" = ( @@ -2128,13 +2141,15 @@ id = "XCCQMLoaddoor"; name = "Loading Doors"; pixel_x = -27; - pixel_y = -5 + pixel_y = -5; + dir = 8 }, /obj/machinery/button/door/indestructible{ id = "XCCQMLoaddoor2"; name = "Loading Doors"; pixel_x = -27; - pixel_y = 5 + pixel_y = 5; + dir = 8 }, /obj/machinery/computer/cargo{ dir = 4 @@ -2200,6 +2215,7 @@ id = "XCCQMLoad" }, /obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/vacuum/external/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/supply) "jK" = ( @@ -2265,6 +2281,21 @@ /obj/machinery/computer, /turf/open/floor/iron, /area/centcom/central_command_areas/prison) +"ka" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/light_emitter/thunderdome, +/obj/machinery/camera/directional/north{ + c_tag = "Green Team"; + network = list("thunder"); + pixel_x = 12; + pixel_y = -10; + resistance_flags = 64 + }, +/turf/open/floor/iron, +/area/centcom/tdome/arena) "kd" = ( /obj/structure/table/reinforced, /obj/machinery/button/showtime{ @@ -2321,6 +2352,13 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) +"ku" = ( +/obj/machinery/button/door/indestructible{ + id = "CCcustoms1"; + name = "CC Emergency Docks Control" + }, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/evacuation) "kv" = ( /obj/item/kirbyplants/organic/plant21, /obj/effect/turf_decal/tile/red{ @@ -2349,7 +2387,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/wood, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/courtroom) @@ -2394,9 +2432,12 @@ /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) "kR" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/admin/storage) +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "kS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -3073,6 +3114,21 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/prison) +"ob" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 4; + dir = 1 + }, +/obj/structure/sign/directions/command{ + pixel_y = 10; + dir = 1 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/centcom/central_command_areas/evacuation/ship) "oe" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -3222,6 +3278,7 @@ "oL" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/armory) "oM" = ( @@ -3315,8 +3372,9 @@ /turf/open/floor/iron, /area/centcom/tdome/arena) "pc" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "pd" = ( /obj/item/clipboard{ @@ -3327,7 +3385,7 @@ pixel_x = -2; pixel_y = 12 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_y = 7 }, /obj/structure/table/reinforced, @@ -3502,6 +3560,7 @@ /obj/item/taperecorder, /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "qd" = ( @@ -3566,7 +3625,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -3700,9 +3759,10 @@ /turf/open/floor/iron, /area/centcom/tdome/arena) "qR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/ferry) +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/centcom/tdome/observation) "qS" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Security" @@ -3908,7 +3968,8 @@ /area/centcom/central_command_areas/courtroom) "rN" = ( /obj/machinery/newscaster{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 @@ -3951,9 +4012,12 @@ /turf/open/floor/grass, /area/centcom/central_command_areas/evacuation) "rY" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/armory) +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "rZ" = ( /obj/machinery/shower/directional/west, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ @@ -4413,6 +4477,10 @@ /obj/structure/sign/poster/contraband/syndicate_recruitment/directional/north, /turf/open/indestructible/dark, /area/centcom/central_command_areas/admin) +"ub" = ( +/obj/structure/sign/directions/command, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/ferry) "uc" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -4540,6 +4608,11 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/evacuation) +"uB" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/centcom/tdome/observation) "uE" = ( /obj/effect/light_emitter/thunderdome, /turf/closed/indestructible/fakeglass, @@ -4919,9 +4992,6 @@ /area/centcom/tdome/observation) "wg" = ( /obj/structure/closet/secure_closet/ert_com, -/obj/structure/sign/directions/command{ - pixel_y = 24 - }, /obj/effect/turf_decal/stripes/line, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron, @@ -4929,6 +4999,7 @@ "wh" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/green, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) "wj" = ( @@ -4940,6 +5011,14 @@ /obj/structure/flora/bush/pointy/style_random, /turf/open/floor/grass, /area/centcom/tdome/administration) +"wk" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron, +/area/centcom/central_command_areas/control) "wl" = ( /obj/machinery/modular_computer/preset/id/centcom{ dir = 1 @@ -5000,12 +5079,6 @@ /turf/open/floor/iron, /area/centcom/central_command_areas/ferry) "ww" = ( -/obj/machinery/button/door/indestructible{ - id = "CCFerry"; - name = "Hanger Bay Shutters"; - pixel_y = 24; - req_access = list("cent_general") - }, /obj/effect/turf_decal/stripes/line{ dir = 5 }, @@ -5319,7 +5392,8 @@ /area/centcom/central_command_areas/control) "xX" = ( /obj/machinery/newscaster{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -5415,21 +5489,6 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral/full, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -2; - dir = 1 - }, -/obj/structure/sign/directions/command{ - pixel_x = 32; - pixel_y = 10; - dir = 1 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 4; - dir = 1 - }, /obj/structure/closet/firecloset, /turf/open/floor/iron/dark/textured_large, /area/centcom/central_command_areas/evacuation/ship) @@ -5472,9 +5531,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 + dir = 8 }, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation/ship) @@ -5508,7 +5566,7 @@ pixel_x = 6; pixel_y = 6 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 3; pixel_y = 3 }, @@ -5662,34 +5720,16 @@ /turf/open/floor/iron, /area/centcom/tdome/observation) "zw" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/tdome/observation) +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "zx" = ( -/obj/effect/turf_decal/siding/wideplating_new/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/full, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/command{ - pixel_x = 32; - pixel_y = 10; - dir = 1 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 4; - dir = 1 - }, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -2; - dir = 1 +/obj/machinery/defibrillator_mount/loaded{ + pixel_y = null }, -/turf/open/floor/iron/dark/textured_large, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/centcom/central_command_areas/evacuation/ship) "zz" = ( /obj/structure/table/reinforced, @@ -5778,6 +5818,11 @@ /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/two) "zO" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/light_emitter/thunderdome, /obj/machinery/camera/directional/north{ c_tag = "Red Team"; network = list("thunder"); @@ -5785,9 +5830,6 @@ pixel_y = -9; resistance_flags = 64 }, -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/light_emitter/thunderdome, /turf/open/floor/iron, /area/centcom/tdome/arena) "zR" = ( @@ -5879,11 +5921,13 @@ /obj/effect/turf_decal/tile/green{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "Ao" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/green, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "Aq" = ( @@ -6296,9 +6340,10 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "BW" = ( @@ -6365,6 +6410,23 @@ }, /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod/loading/four) +"Cp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, +/area/centcom/central_command_areas/ferry) +"Cq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/radio/intercom/syndicate{ + pixel_x = -32; + dir = 8 + }, +/turf/open/floor/iron/grimy, +/area/centcom/central_command_areas/courtroom) "Cx" = ( /obj/structure/table/reinforced, /obj/item/storage/box/handcuffs, @@ -6403,7 +6465,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -6428,6 +6490,7 @@ /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "CJ" = ( @@ -6453,6 +6516,7 @@ /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "CO" = ( @@ -6534,8 +6598,10 @@ /turf/closed/indestructible/riveted, /area/centcom/ai_multicam_room) "Dj" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, +/obj/effect/landmark/prisonwarp, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/indestructible/dark, /area/centcom/central_command_areas/prison/cells) "Dk" = ( /obj/structure/cable, @@ -6673,6 +6739,10 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/evacuation) +"DW" = ( +/obj/machinery/newscaster, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/armory) "Eb" = ( /obj/item/kirbyplants/organic/plant21, /obj/structure/extinguisher_cabinet/directional/south, @@ -6885,9 +6955,6 @@ /turf/open/floor/iron/white, /area/centcom/tdome/observation) "Ff" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 - }, /turf/open/floor/carpet/red, /area/centcom/central_command_areas/evacuation/ship) "Fg" = ( @@ -6936,9 +7003,12 @@ /turf/open/floor/plating, /area/centcom/central_command_areas/prison) "Fq" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/control) +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "Fs" = ( /obj/machinery/door/poddoor/shutters{ id = "CCsec1"; @@ -7047,6 +7117,12 @@ /obj/effect/light_emitter/thunderdome, /turf/closed/indestructible/fakeglass, /area/centcom/tdome/observation) +"Ge" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/briefing) "Gf" = ( /obj/machinery/firealarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump{ @@ -7214,6 +7290,12 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/smooth_edge, /area/centcom/central_command_areas/evacuation/ship) +"He" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/floor, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/indestructible/dark, +/area/centcom/central_command_areas/prison/cells) "Hi" = ( /obj/effect/turf_decal/tile/green, /obj/machinery/light/directional/south, @@ -7224,6 +7306,7 @@ /obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/tdome/observation) "Hl" = ( @@ -7341,34 +7424,53 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/white, /area/centcom/central_command_areas/evacuation/ship) +"HS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "HV" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/closet/secure_closet/quartermaster, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) +"HW" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/courtroom) "HY" = ( /obj/machinery/button/door/indestructible{ id = "CCsec3"; name = "CC Shutter 3 Control"; - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/button/door/indestructible{ id = "CCcustoms2"; name = "CC Shutter 2 Control"; pixel_x = 9; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/button/door/indestructible{ id = "CCsec1"; name = "CC Shutter 1 Control"; - pixel_y = 40 + pixel_y = 40; + dir = 1 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/button/door/indestructible{ id = "CCsec4"; name = "CC Shutter 4 Control"; pixel_x = -9; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/photocopier/gratis/prebuilt, /turf/open/floor/iron/dark, @@ -7417,7 +7519,8 @@ /area/centcom/central_command_areas/supply) "If" = ( /obj/machinery/newscaster{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -7529,10 +7632,11 @@ /turf/open/floor/iron, /area/centcom/tdome/observation) "Jq" = ( +/obj/effect/light_emitter/thunderdome, /obj/machinery/camera/motion/thunderdome{ pixel_x = 10 }, -/turf/open/floor/circuit/green, +/turf/open/floor/iron, /area/centcom/tdome/arena) "JC" = ( /obj/machinery/modular_computer/preset/command{ @@ -7565,6 +7669,21 @@ /obj/machinery/modular_computer/preset/id/centcom, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) +"JS" = ( +/obj/structure/sign/directions/command{ + pixel_y = 10; + dir = 1 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 4; + dir = 1 + }, +/obj/structure/sign/directions/medical{ + pixel_y = -2; + dir = 1 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/centcom/central_command_areas/evacuation/ship) "JU" = ( /obj/structure/chair{ dir = 4 @@ -7610,7 +7729,7 @@ dir = 8 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) "Kg" = ( @@ -8005,9 +8124,6 @@ /area/space) "LN" = ( /obj/structure/table/optable, -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = 28 - }, /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, @@ -8075,6 +8191,7 @@ /obj/structure/bed, /obj/item/bedsheet/black, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) "Mp" = ( @@ -8187,6 +8304,7 @@ "ML" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "MM" = ( @@ -8226,9 +8344,12 @@ /turf/open/floor/iron/smooth_edge, /area/centcom/central_command_areas/evacuation/ship) "MY" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/briefing) +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron, +/area/centcom/central_command_areas/control) "Ne" = ( /obj/structure/table/wood, /obj/item/reagent_containers/cup/glass/trophy/gold_cup, @@ -8434,8 +8555,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/admin/captain, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/admin) "Od" = ( @@ -8448,7 +8569,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -8590,6 +8711,11 @@ /obj/item/kirbyplants/organic/plant21, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) +"OK" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/armory) "OM" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -8831,16 +8957,19 @@ /turf/open/floor/iron, /area/centcom/central_command_areas/fore) "PE" = ( -/obj/machinery/newscaster{ - pixel_x = 32 +/obj/machinery/button/door/indestructible{ + id = "CCFerry"; + name = "Hanger Bay Shutters"; + req_access = list("cent_general") }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/centcom/central_command_areas/armory) -"PF" = ( -/obj/structure/sign/nanotrasen, /turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/admin) +/area/centcom/central_command_areas/ferry) +"PF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron, +/area/centcom/central_command_areas/prison) "PG" = ( /obj/effect/turf_decal/tile/dark_blue/fourcorners, /obj/effect/turf_decal/tile/dark_blue/fourcorners, @@ -8990,7 +9119,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/reinforced, /obj/machinery/status_display/ai/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -9164,6 +9293,7 @@ "Rd" = ( /obj/structure/bookcase/random, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) "Rf" = ( @@ -9352,18 +9482,11 @@ /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "RQ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Green Team"; - network = list("thunder"); - pixel_x = 12; - pixel_y = -10; - resistance_flags = 64 +/obj/structure/sign/directions/medical{ + dir = 1 }, -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/light_emitter/thunderdome, -/turf/open/floor/iron, -/area/centcom/tdome/arena) +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/armory) "RR" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -9474,9 +9597,13 @@ /turf/open/floor/iron, /area/centcom/central_command_areas/supplypod) "Sx" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/admin/storage) +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/centcom/central_command_areas/fore) "Sy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -9500,6 +9627,13 @@ /obj/structure/window/reinforced/survival_pod/spawner/directional/west, /turf/open/floor/iron/smooth_large, /area/centcom/central_command_areas/evacuation/ship) +"SD" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/courtroom) "SE" = ( /obj/effect/turf_decal/delivery, /obj/effect/light_emitter/podbay, @@ -9612,6 +9746,7 @@ "Th" = ( /obj/structure/filingcabinet/white, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/supply) "Tj" = ( @@ -9937,6 +10072,7 @@ dir = 1 }, /obj/machinery/firealarm/directional/south, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/iron, /area/centcom/central_command_areas/admin/storage) "UK" = ( @@ -10035,9 +10171,6 @@ pixel_y = 3 }, /obj/item/gun/energy/e_gun, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -10172,10 +10305,6 @@ /area/centcom/central_command_areas/admin) "VM" = ( /obj/structure/closet/secure_closet/ert_sec, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -24 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -10209,21 +10338,11 @@ /obj/machinery/computer/records/security{ dir = 8 }, -/obj/machinery/button/door/indestructible{ - id = "CCcustoms1"; - name = "CC Emergency Docks Control"; - pixel_x = 24; - pixel_y = 24 - }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/evacuation) "VZ" = ( /obj/structure/closet/secure_closet/ert_med, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = -24 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -10235,6 +10354,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/briefing) +"Wb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron, +/area/centcom/central_command_areas/ferry) "Wc" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Security" @@ -10326,9 +10452,6 @@ /area/centcom/central_command_areas/evacuation) "WG" = ( /obj/structure/closet/secure_closet/ert_engi, -/obj/structure/sign/directions/engineering{ - pixel_y = 24 - }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/centcom/central_command_areas/armory) @@ -10344,8 +10467,13 @@ /obj/effect/turf_decal/tile/green{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/centcom/tdome/observation) +"WM" = ( +/obj/structure/sign/directions/engineering, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/ferry) "WN" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, @@ -10394,7 +10522,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/turf_decal/stripes/line, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/admin/captain, +/obj/effect/mapping_helpers/airlock/access/all/admin/officer, /turf/open/floor/iron, /area/centcom/central_command_areas/admin) "WX" = ( @@ -10430,6 +10558,7 @@ "Xc" = ( /obj/structure/noticeboard/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark, /area/centcom/central_command_areas/courtroom) "Xd" = ( @@ -10557,6 +10686,11 @@ /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/courtroom) +"XG" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/dark, +/area/centcom/tdome/observation) "XJ" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/structure/flora/bush/sparsegrass/style_random, @@ -10654,6 +10788,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/iron/grimy, /area/centcom/central_command_areas/admin) +"Yt" = ( +/obj/structure/sign/directions/security{ + dir = 1 + }, +/turf/closed/indestructible/riveted, +/area/centcom/central_command_areas/armory) "Yx" = ( /turf/open/floor/iron/white/herringbone, /area/centcom/central_command_areas/evacuation/ship) @@ -10754,9 +10894,10 @@ /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/evacuation/ship) "YX" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/prison/cells) +/obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/dark, +/area/centcom/central_command_areas/briefing) "YY" = ( /obj/item/storage/medkit/toxin, /obj/item/storage/medkit/o2{ @@ -10771,9 +10912,10 @@ /turf/open/floor/iron/white, /area/centcom/central_command_areas/control) "Za" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/centcom/central_command_areas/fore) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/centcom/tdome/observation) "Ze" = ( /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, @@ -10952,7 +11094,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/stamp, +/obj/item/stamp/granted, /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -38196,7 +38338,7 @@ aL Lt Lt aa -Lt +zx LN OW yX @@ -39241,7 +39383,7 @@ KO LA nb Lp -zx +Lp ZA Lp Lp @@ -39498,7 +39640,7 @@ Lt LP Lt Lt -Lt +JS LP Lt Lt @@ -39508,7 +39650,7 @@ Lt Lt Lt LP -Lt +ob KH aa aa @@ -47914,20 +48056,20 @@ On On On On -PF -mD +On +PE ww Fh wz -qR +mD Rd eF hx TE az eF -Rd -MY +Ge +gO aa aa aa @@ -48432,8 +48574,8 @@ oh mD ss fw -tr -gS +Wb +mD kO WR RH @@ -49200,8 +49342,8 @@ dz Nr Xq Hw -gS -wz +mD +Cp TK xR OQ @@ -49461,7 +49603,7 @@ mD su fw wh -gS +mD Fz MJ TI @@ -49974,14 +50116,14 @@ On mD su fw -ts -qR +iH +mD Mp Pd RH NC RH -Pd +YX dW gO aa @@ -50234,11 +50376,11 @@ fw ne mD Ya -rY +Ya ST VO ST -rY +Ya Ya Ya aa @@ -50457,13 +50599,13 @@ aa aa aa aa -jb +iX jl js iX js jJ -jb +iX aa aa aa @@ -50479,7 +50621,7 @@ EJ QV QV Mo -Sx +YU Gs Ow aD @@ -50489,15 +50631,15 @@ oe su fw ts -mD +WM WG -sE +OK sE bH sE Zv VZ -Ya +RQ aa aa aa @@ -50996,7 +51138,7 @@ On YU YU Rj -kR +YU YU oe oe @@ -51507,7 +51649,7 @@ mi pj nm Th -Sx +YU Nn yi cL @@ -51516,7 +51658,7 @@ vb oe su xk -ts +iH mD Vg bH @@ -51545,11 +51687,11 @@ OO VT BY QC -bR -HK zO HK HK +HK +HK pb Ic Zk @@ -51774,15 +51916,15 @@ oe wB Fh xS -mD +ub wg oL fj RM -PE sE +gS VM -Ya +Yt aa aa aa @@ -52033,11 +52175,11 @@ xh ds mD Ya -rY Ya Ya Ya -rY +DW +Ya Ya Ya Dq @@ -52309,8 +52451,8 @@ bz QC Zj bi -eI -zw +qR +QC Id Bs vW @@ -52806,7 +52948,7 @@ Dp mR zF dC -Fq +io iu io yC @@ -53317,8 +53459,8 @@ wC iu iu iu -in -tL +io +wk tL io iu @@ -53585,7 +53727,7 @@ iu Dt DH iu -in +io Sl RW Sl @@ -53819,11 +53961,11 @@ Ox Ox Ox Ox -qs -Za +Sx Vx -Za -tK +Vx +Vx +in gL io HY @@ -53834,9 +53976,9 @@ hc iu Ab An -in io -in +io +io CI CY wH @@ -54108,8 +54250,8 @@ aB DF BW BW -BW -zw +Za +QC yY Kd yY @@ -54375,10 +54517,10 @@ Ef NY NY fb -Jq +Ji NY NY -Ef +Jq uE mE qk @@ -54619,8 +54761,8 @@ Mu Mu Mu aB -zw -BW +QC +XG BW BW QC @@ -54847,11 +54989,11 @@ Ox Ox Ox Ox -qs -Za +Sx Vx -Za -tN +Vx +Vx +MY gL io SQ @@ -54862,9 +55004,9 @@ Oh iu Ab Ao -in io -in +io +io CL CZ wH @@ -55127,7 +55269,7 @@ iu Xa DI iu -in +io Sl RW Sl @@ -55373,8 +55515,8 @@ wC iu iu iu -in -tL +io +wk tL io iu @@ -55594,19 +55736,19 @@ aa Jb rs am +Jb Dj -rs -am -Dj -rs am +Jb Dj -rs am +Jb Dj -rs am +Jb Dj +He +Jb rs am Jb @@ -55851,7 +55993,7 @@ aa Jb ir IF -YX +Jb ir IF Jb @@ -55863,11 +56005,11 @@ IF Jb ir IF -YX +Jb ir IF Jb -iH +il il Mz GC @@ -56108,7 +56250,7 @@ aa il is lL -iL +kR iT iT SL @@ -56120,11 +56262,11 @@ iT If iT iT -iT +Fq ls lL Ra -kB +PF nD iL iT @@ -56136,7 +56278,7 @@ io io io io -Fq +io UO io io @@ -56362,7 +56504,7 @@ aa aa aa aa -iH +il it lL im @@ -56421,8 +56563,8 @@ bz QC dV cS -cS -zw +uB +QC Ot Ot di @@ -57199,9 +57341,9 @@ ym TV fg QC -dj +ka +Mf Mf -RQ Mf Mf Zi @@ -57904,7 +58046,7 @@ aa aa aa aa -iH +il iy lL ip @@ -58164,7 +58306,7 @@ aa il iz lL -iK +rY iU iU OB @@ -58176,11 +58318,11 @@ iU sI iU iU -iU +HS lt lL Ra -kB +zw rg iK iU @@ -58421,7 +58563,7 @@ aa Jb ir IF -YX +Jb ir IF Jb @@ -58433,11 +58575,11 @@ IF Jb ir IF -YX +Jb ir IF Jb -pc +Hv Hv RI ja @@ -58678,19 +58820,19 @@ aa Jb rs am +Jb Dj -rs -am -Dj -rs am +Jb Dj -rs am +Jb Dj -rs am +Jb Dj +He +Jb rs am Jb @@ -58957,8 +59099,8 @@ rM rM rM rM -zc -pc +HW +Hv cg PL fm @@ -59982,10 +60124,10 @@ Hv Hv Hv Hv -pc +Hv ja ja -pc +Hv Hv qA qy @@ -60232,17 +60374,17 @@ Hv bB ps tQ -pc +Hv hP lR ml mW rN bP +pc ps ps -ps -aU +SD Hv qy qz @@ -61256,7 +61398,7 @@ aa aa aa aa -pc +Hv qc rk kE @@ -61770,8 +61912,8 @@ aa aa aa aa -pc -bC +Hv +dI rk kG ld @@ -62042,7 +62184,7 @@ MV mY rM ML -pc +Hv qz qy cg @@ -62059,7 +62201,7 @@ zm xt vZ AZ -cg +ku fm cg cg @@ -62284,7 +62426,7 @@ aa aa aa aa -pc +Hv BU rk kE @@ -63061,7 +63203,7 @@ rM rM ct ps -lV +Cq lW lW lV @@ -63316,7 +63458,7 @@ Hv Wp xX QX -pc +Hv Xc KD rc diff --git a/_maps/map_files/generic/CentCom_minimal.dmm b/_maps/map_files/generic/CentCom_minimal.dmm index bab075b8627097..0537923543259a 100644 --- a/_maps/map_files/generic/CentCom_minimal.dmm +++ b/_maps/map_files/generic/CentCom_minimal.dmm @@ -11,6 +11,8 @@ /area/centcom/central_command_areas/control) "x" = ( /obj/effect/landmark/error, +/obj/effect/landmark/observer_start, +/obj/effect/landmark/latejoin, /turf/open/floor/iron, /area/centcom/central_command_areas/control) "A" = ( diff --git a/_maps/map_files/tramstation/maintenance_modules/arrivalsecupper_3.dmm b/_maps/map_files/tramstation/maintenance_modules/arrivalsecupper_3.dmm index 085542568ac849..557804df81567a 100644 --- a/_maps/map_files/tramstation/maintenance_modules/arrivalsecupper_3.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/arrivalsecupper_3.dmm @@ -83,7 +83,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/open/floor/iron/smooth, /area/station/maintenance/department/eva) "L" = ( @@ -115,7 +115,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/open/floor/plating, /area/station/maintenance/department/eva) "Y" = ( diff --git a/_maps/map_files/tramstation/maintenance_modules/atmoscilower_2.dmm b/_maps/map_files/tramstation/maintenance_modules/atmoscilower_2.dmm index 63b01e5ed5ad0f..05fb51b60ac96c 100644 --- a/_maps/map_files/tramstation/maintenance_modules/atmoscilower_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/atmoscilower_2.dmm @@ -204,7 +204,7 @@ pixel_x = -7; pixel_y = -10 }, -/obj/item/food/sandwich/cheese/grilled{ +/obj/item/food/sandwich/grilled_cheese{ pixel_x = -5; pixel_y = -9 }, diff --git a/_maps/map_files/tramstation/maintenance_modules/barcargoupper_2.dmm b/_maps/map_files/tramstation/maintenance_modules/barcargoupper_2.dmm index 0901318e301430..b19a77c30230e0 100644 --- a/_maps/map_files/tramstation/maintenance_modules/barcargoupper_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/barcargoupper_2.dmm @@ -191,11 +191,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'MULE CROSSING - LOOK BOTH WAYS"; - name = "MULE CROSSING - LOOK BOTH WAYS"; - pixel_x = -32 - }, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/catwalk_floor, /area/station/maintenance/department/cargo) "tI" = ( diff --git a/_maps/map_files/tramstation/maintenance_modules/dormenginelower_attachment_b_1.dmm b/_maps/map_files/tramstation/maintenance_modules/dormenginelower_attachment_b_1.dmm index bfe095561311a6..81bb18c3d899a0 100644 --- a/_maps/map_files/tramstation/maintenance_modules/dormenginelower_attachment_b_1.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/dormenginelower_attachment_b_1.dmm @@ -307,7 +307,7 @@ T B B B -C +m a a a @@ -324,7 +324,7 @@ L K B B -m +C V D O diff --git a/_maps/map_files/tramstation/maintenance_modules/medsciupper_1.dmm b/_maps/map_files/tramstation/maintenance_modules/medsciupper_1.dmm index bed44b8895c9a6..45a0e429f0d319 100644 --- a/_maps/map_files/tramstation/maintenance_modules/medsciupper_1.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/medsciupper_1.dmm @@ -324,7 +324,7 @@ /obj/machinery/door/airlock/grunge{ name = "Medical Maintenance Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/modular_map_connector, @@ -398,6 +398,9 @@ /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, /area/station/asteroid) +"YV" = ( +/turf/closed/wall, +/area/station/asteroid) "Zs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -1273,7 +1276,7 @@ XJ fd rJ hs -jx +YV nm nm gV diff --git a/_maps/map_files/tramstation/maintenance_modules/medsciupper_2.dmm b/_maps/map_files/tramstation/maintenance_modules/medsciupper_2.dmm index 9e76b86ee64001..f0401a50d7e9cd 100644 --- a/_maps/map_files/tramstation/maintenance_modules/medsciupper_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/medsciupper_2.dmm @@ -117,7 +117,7 @@ /obj/machinery/door/airlock/grunge{ name = "Medical Maintenance Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/modular_map_connector, @@ -292,6 +292,9 @@ "II" = ( /turf/open/floor/plating, /area/station/maintenance/department/science) +"IV" = ( +/turf/closed/wall, +/area/station/asteroid) "Kw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, @@ -369,7 +372,7 @@ name = "Medical Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/catwalk_floor, @@ -1300,7 +1303,7 @@ nm cn vr Vh -tD +IV tD tD Mf diff --git a/_maps/map_files/tramstation/maintenance_modules/medsciupper_3.dmm b/_maps/map_files/tramstation/maintenance_modules/medsciupper_3.dmm index 5e40d0ac4f60a8..c921b68dbb9131 100644 --- a/_maps/map_files/tramstation/maintenance_modules/medsciupper_3.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/medsciupper_3.dmm @@ -271,7 +271,7 @@ /obj/machinery/door/airlock/grunge{ name = "Medical Maintenance Access" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/modular_map_connector, @@ -468,6 +468,9 @@ /obj/effect/spawner/random/contraband/narcotics, /turf/open/floor/iron/smooth, /area/station/maintenance/department/medical) +"MY" = ( +/turf/closed/wall, +/area/station/asteroid) "Ny" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -1466,7 +1469,7 @@ Pu gZ hQ JY -wP +MY wP LV wP diff --git a/_maps/map_files/tramstation/maintenance_modules/secbarupper_1.dmm b/_maps/map_files/tramstation/maintenance_modules/secbarupper_1.dmm index 6c18e97d1378f2..127b72c632bb07 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secbarupper_1.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secbarupper_1.dmm @@ -172,7 +172,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -346,11 +346,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'MULE CROSSING - LOOK BOTH WAYS"; - name = "MULE CROSSING - LOOK BOTH WAYS"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/catwalk_floor, /area/station/maintenance/department/security) "Uo" = ( @@ -399,8 +395,8 @@ /turf/open/floor/catwalk_floor, /area/station/maintenance/department/security) "XI" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/sand/plating, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/security) "Yj" = ( @@ -758,7 +754,7 @@ eg (9,1,1) = {" eg Fc -XI +pH eg eg eg @@ -798,7 +794,7 @@ eg (10,1,1) = {" ZA bW -Rh +XI eg eg eg diff --git a/_maps/map_files/tramstation/maintenance_modules/secbarupper_2.dmm b/_maps/map_files/tramstation/maintenance_modules/secbarupper_2.dmm index 6b0093caccd283..d7cba70ef2fd75 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secbarupper_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secbarupper_2.dmm @@ -30,11 +30,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'MULE CROSSING - LOOK BOTH WAYS"; - name = "MULE CROSSING - LOOK BOTH WAYS"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/catwalk_floor, /area/station/maintenance/department/security) @@ -207,7 +203,7 @@ /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ dir = 1 }, -/obj/machinery/light/small/directional/south, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron/smooth, /area/station/maintenance/department/security) "CA" = ( @@ -308,7 +304,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, diff --git a/_maps/map_files/tramstation/maintenance_modules/secbarupper_3.dmm b/_maps/map_files/tramstation/maintenance_modules/secbarupper_3.dmm index 9291070132b97e..be69dfb9e70181 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secbarupper_3.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secbarupper_3.dmm @@ -221,7 +221,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -468,8 +468,8 @@ /turf/open/misc/asteroid, /area/station/maintenance/department/security) "VW" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/sand/plating, +/obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/security) "Wo" = ( @@ -823,7 +823,7 @@ Py (9,1,1) = {" Py Wo -VW +uw Py Py Py @@ -863,7 +863,7 @@ Py (10,1,1) = {" Sc RO -fV +VW Py Py Py diff --git a/_maps/map_files/tramstation/maintenance_modules/secservicelower_1.dmm b/_maps/map_files/tramstation/maintenance_modules/secservicelower_1.dmm index ccd28eb4b312e0..7a44cf6394bac4 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secservicelower_1.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secservicelower_1.dmm @@ -157,14 +157,9 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/port/central) -"kD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) "lS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -261,7 +256,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -411,6 +406,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, +/obj/machinery/light/small/directional/north, /turf/open/floor/iron/smooth, /area/station/maintenance/central/greater) "Bz" = ( @@ -2627,7 +2623,7 @@ TQ vR Ip VO -kD +PM nk nk nk diff --git a/_maps/map_files/tramstation/maintenance_modules/secservicelower_2.dmm b/_maps/map_files/tramstation/maintenance_modules/secservicelower_2.dmm index 9ba614bb78214f..2a805eacb74d2d 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secservicelower_2.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secservicelower_2.dmm @@ -105,7 +105,7 @@ /area/station/maintenance/central/greater) "gc" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -159,7 +159,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, diff --git a/_maps/map_files/tramstation/maintenance_modules/secservicelower_3.dmm b/_maps/map_files/tramstation/maintenance_modules/secservicelower_3.dmm index 3695915478abed..7af7a378d1419a 100644 --- a/_maps/map_files/tramstation/maintenance_modules/secservicelower_3.dmm +++ b/_maps/map_files/tramstation/maintenance_modules/secservicelower_3.dmm @@ -105,7 +105,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -311,7 +311,7 @@ /area/station/maintenance/port/central) "xH" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, diff --git a/_maps/map_files/tramstation/tramstation.dmm b/_maps/map_files/tramstation/tramstation.dmm index bc0c649584fc91..d5153099e4ae2c 100644 --- a/_maps/map_files/tramstation/tramstation.dmm +++ b/_maps/map_files/tramstation/tramstation.dmm @@ -41,7 +41,8 @@ "aah" = ( /obj/machinery/power/smes/engineering, /obj/structure/sign/warning/electric_shock{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -90,15 +91,6 @@ /obj/structure/marker_beacon/burgundy, /turf/open/misc/asteroid/airless, /area/station/asteroid) -"aar" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/chair/plastic{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/salvage_bay) "aat" = ( /obj/item/stack/cable_coil, /turf/open/misc/asteroid/airless, @@ -1506,7 +1498,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aeT" = ( /obj/effect/turf_decal/siding/wideplating{ dir = 10 @@ -1516,7 +1508,7 @@ c_tag = "Secure - Nuclear Storage" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aeV" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, @@ -1538,7 +1530,7 @@ /obj/effect/turf_decal/stripes/line, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "aeY" = ( /obj/effect/turf_decal/trimline/white/warning{ dir = 9 @@ -1608,7 +1600,7 @@ "afn" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "afo" = ( /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, @@ -1934,9 +1926,7 @@ /turf/open/floor/iron, /area/station/security/checkpoint/supply) "agK" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/misc/asteroid/airless, /area/station/asteroid) "agL" = ( @@ -2305,7 +2295,8 @@ pixel_y = -9; id = "private_j"; specialfunctions = 4; - normaldoorcontrol = 1 + normaldoorcontrol = 1; + dir = 4 }, /turf/open/floor/wood, /area/station/commons/dorms) @@ -2398,7 +2389,8 @@ pixel_y = -9; id = "private_k"; specialfunctions = 4; - normaldoorcontrol = 1 + normaldoorcontrol = 1; + dir = 4 }, /turf/open/floor/carpet, /area/station/commons/dorms) @@ -2535,13 +2527,11 @@ /area/station/commons/dorms) "alb" = ( /obj/structure/chair/stool/directional/north, -/obj/machinery/button/door/directional/west{ +/obj/machinery/button/door/directional/east{ name = "Privacy Bolts"; - pixel_x = 24; - pixel_y = -9; id = "private_l"; - specialfunctions = 4; - normaldoorcontrol = 1 + normaldoorcontrol = 1; + specialfunctions = 4 }, /turf/open/floor/wood, /area/station/commons/dorms) @@ -2767,7 +2757,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "anr" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -2835,9 +2825,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, +/obj/structure/sign/warning/secure_area/directional/east, /obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, /turf/open/floor/iron, /area/station/engineering/atmos) @@ -2880,7 +2868,7 @@ "aoh" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aor" = ( /obj/effect/landmark/start/station_engineer, /obj/effect/turf_decal/trimline/yellow/arrow_cw, @@ -3247,7 +3235,7 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/power_store/cell/high, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "asQ" = ( /obj/structure/sign/warning/no_smoking, /turf/closed/wall, @@ -3385,7 +3373,7 @@ "aur" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "auz" = ( /turf/closed/wall, /area/station/commons/vacant_room) @@ -3460,7 +3448,7 @@ dir = 6 }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "avj" = ( /obj/structure/table, /obj/machinery/syndicatebomb/training, @@ -3631,7 +3619,7 @@ dir = 4 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/security/brig, @@ -3843,7 +3831,7 @@ "ayI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ayJ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -3913,9 +3901,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/command) -"azR" = ( -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "azU" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -3998,9 +3983,6 @@ /turf/open/floor/glass, /area/station/cargo/sorting) "aBq" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, /obj/effect/turf_decal/stripes/white/full, /obj/machinery/door/firedoor, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -4221,12 +4203,6 @@ /obj/machinery/smartfridge/petri/preloaded, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"aDs" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/salvage_bay) "aDu" = ( /obj/effect/turf_decal/arrows/white{ dir = 8 @@ -4390,9 +4366,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/structure/sign/departments/cargo{ - pixel_y = 32 - }, +/obj/structure/sign/departments/cargo/directional/north, /obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 1 }, @@ -4646,13 +4620,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/hallway/primary/tram/center) -"aHg" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating, -/area/station/salvage_bay) "aHl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door_buttons/airlock_controller{ @@ -4724,10 +4691,6 @@ /obj/effect/turf_decal/trimline/neutral/corner{ dir = 8 }, -/obj/structure/sign/departments/science{ - pixel_x = -32; - pixel_y = -32 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -5017,7 +4980,7 @@ dir = 1 }, /obj/effect/landmark/event_spawn, -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /turf/open/floor/iron, /area/station/science/lab) "aKA" = ( @@ -5065,7 +5028,6 @@ /obj/machinery/door/airlock/medical/glass{ name = "Treatment Center" }, -/obj/effect/mapping_helpers/airlock/unres, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, @@ -5075,6 +5037,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "aKU" = ( @@ -5249,7 +5212,6 @@ /turf/open/floor/iron, /area/station/commons/storage/art) "aMt" = ( -/obj/structure/sign/warning/electric_shock, /obj/effect/turf_decal/stripes/end{ dir = 4 }, @@ -5367,7 +5329,7 @@ /area/station/command/bridge) "aNq" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aNr" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/power/apc/auto_name/directional/south, @@ -5406,14 +5368,6 @@ dir = 6 }, /area/station/service/chapel) -"aNT" = ( -/obj/structure/railing{ - dir = 9 - }, -/obj/structure/sign/semiotic/vacuum_ahead/directional/east, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating, -/area/station/salvage_bay) "aNU" = ( /obj/machinery/airalarm/directional/north, /obj/structure/cable, @@ -5505,7 +5459,7 @@ "aOH" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "aOJ" = ( /obj/machinery/computer/crew{ dir = 8 @@ -5681,7 +5635,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aQf" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -5840,11 +5794,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/station/service/chapel/monastery) -"aRH" = ( -/obj/structure/girder/reinforced, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/space/nearstation) "aRI" = ( /turf/open/floor/iron/dark/smooth_large, /area/station/service/chapel/monastery) @@ -5947,11 +5896,7 @@ /obj/effect/turf_decal/siding/thinplating/dark/corner{ dir = 1 }, -/obj/structure/sign/warning/secure_area{ - name = "BOMB RANGE"; - desc = "A warning sign which reads 'BOMB RANGE"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -6026,7 +5971,7 @@ /obj/machinery/status_display/ai/directional/north, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "aUC" = ( /obj/machinery/camera/directional/south{ c_tag = "Civilian - Chapel South" @@ -6077,9 +6022,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/tram/mid) -"aVR" = ( -/turf/closed/wall/rock, -/area/station/salvage_bay) "aVT" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -6189,7 +6131,7 @@ dir = 4 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "aYA" = ( /turf/open/floor/iron, /area/station/hallway/primary/tram/right) @@ -6322,11 +6264,11 @@ }, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bcI" = ( /obj/item/kirbyplants/photosynthetic, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bcL" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 @@ -6343,7 +6285,7 @@ }, /obj/effect/turf_decal/trimline/yellow/corner, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bcV" = ( /obj/effect/turf_decal/trimline/white/filled/corner{ dir = 1 @@ -6371,7 +6313,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bej" = ( /obj/machinery/newscaster/directional/north, /obj/effect/turf_decal/trimline/green/filled/line, @@ -6547,7 +6489,7 @@ /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bhG" = ( /obj/machinery/door/airlock/centcom{ name = "Syndicate Secure Airlock System"; @@ -6556,13 +6498,6 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron/grimy, /area/station/commons/vacant_room) -"bhQ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/reinforced/airless, -/area/space/nearstation) "bhY" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 @@ -6590,7 +6525,7 @@ }, /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bio" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -6943,7 +6878,7 @@ }, /obj/effect/turf_decal/trimline/yellow/filled/warning, /turf/open/floor/iron/dark/side, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bqU" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/iron/dark, @@ -7332,7 +7267,7 @@ /area/station/service/janitor) "bya" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "byh" = ( /obj/structure/table/glass, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -7346,7 +7281,7 @@ dir = 8 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "byw" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -7373,11 +7308,6 @@ }, /turf/open/openspace, /area/station/asteroid) -"byD" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/salvage_bay) "byF" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -7388,7 +7318,7 @@ c_tag = "Secure - AI Antechamber North" }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "byH" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -7450,7 +7380,7 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bzN" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -7474,7 +7404,7 @@ name = "Tram Mechanical Room" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -7505,7 +7435,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bBl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7636,7 +7566,7 @@ /obj/effect/turf_decal/bot_white/right, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bEM" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -7669,7 +7599,7 @@ pixel_y = 2 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "bFo" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/camera/directional/south{ @@ -7710,7 +7640,7 @@ name = "Theatre Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, @@ -7734,7 +7664,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -7931,7 +7861,7 @@ dir = 10 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "bKb" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -7988,7 +7918,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "bKM" = ( /turf/open/floor/iron/dark, /area/station/commons/lounge) @@ -8107,12 +8037,11 @@ "bLO" = ( /obj/machinery/light/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bLQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, -/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/exit) "bLS" = ( @@ -8157,7 +8086,7 @@ }, /obj/machinery/bluespace_beacon, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bME" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -8196,7 +8125,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/science/research) "bNi" = ( @@ -8238,7 +8167,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "bNx" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -8472,11 +8401,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/station/service/library) -"bSn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/salvage_bay) "bSr" = ( /obj/structure/chair{ name = "Judge"; @@ -8545,13 +8469,6 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) -"bTQ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin/carbon, -/obj/item/pen/fourcolor, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "bUh" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8663,7 +8580,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bVL" = ( /obj/structure/chair{ dir = 8 @@ -8935,10 +8852,6 @@ }, /turf/open/floor/iron, /area/station/service/janitor) -"bYJ" = ( -/obj/machinery/electrolyzer/co2_cracker, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "bYP" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 @@ -8972,13 +8885,6 @@ /obj/structure/sign/warning/test_chamber/directional/north, /turf/open/floor/iron/white, /area/station/science/lower) -"bZg" = ( -/obj/machinery/conveyor{ - id = "SalvageProcess" - }, -/obj/structure/sign/semiotic/vacuum_ahead/directional/east, -/turf/open/floor/plating, -/area/station/salvage_bay) "bZh" = ( /obj/machinery/requests_console/directional/south{ name = "Law Office Requests Console"; @@ -9025,7 +8931,7 @@ }, /obj/structure/cable, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "bZI" = ( /obj/machinery/door/window/brigdoor/left/directional/south{ name = "Secure Morgue Trays"; @@ -9096,15 +9002,6 @@ }, /turf/open/floor/iron/kitchen_coldroom, /area/station/service/kitchen/coldroom) -"caA" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/item/mod/paint{ - pixel_y = 20; - pixel_x = -3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "caH" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 6 @@ -9132,7 +9029,8 @@ dir = 4 }, /obj/structure/sign/departments/psychology{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) @@ -9392,7 +9290,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cey" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -9459,7 +9357,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cfp" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner, @@ -9533,7 +9431,7 @@ /turf/open/floor/iron/dark/corner{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cgw" = ( /obj/machinery/computer/operating{ dir = 8 @@ -9607,7 +9505,7 @@ /obj/effect/turf_decal/stripes/corner, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cht" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -9666,11 +9564,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white, /area/station/security/execution/education) -"cjC" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/box, -/turf/open/space/openspace, -/area/space/nearstation) "cjG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/closed/wall/r_wall, @@ -9780,11 +9673,6 @@ "clT" = ( /turf/closed/wall, /area/station/security/checkpoint/medical) -"clV" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "cmo" = ( /obj/effect/turf_decal/siding/thinplating/end, /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4{ @@ -9794,7 +9682,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cmH" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -10177,7 +10065,7 @@ name = "Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/catwalk_floor, @@ -10594,21 +10482,10 @@ name = "HoP Arrival Procedure Enforcement Shutters"; id = "papersplease" }, -/obj/machinery/button/door/directional/south{ - name = "Arrival Checkpoint Enforcement Override"; - pixel_x = 24; - pixel_y = 0; - id = "papersplease"; - req_access = list("kitchen") - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"czS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/salvage_bay) "czX" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 @@ -10811,7 +10688,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cEg" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/effect/turf_decal/trimline/neutral/filled/corner{ @@ -10875,10 +10752,6 @@ "cFs" = ( /turf/open/openspace, /area/station/hallway/primary/tram/left) -"cFt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/salvage_bay) "cFF" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -10982,11 +10855,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics/mechbay) -"cGM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/teal, -/turf/open/space/openspace, -/area/space/nearstation) "cGN" = ( /obj/structure/table/wood, /obj/item/pai_card{ @@ -11069,7 +10937,7 @@ "cHZ" = ( /obj/structure/railing, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cIm" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/bot, @@ -11339,21 +11207,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/white, /area/station/medical/surgery/aft) -"cNt" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/gps/mining{ - pixel_x = -5; - pixel_y = -2 - }, -/obj/item/gps/mining{ - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) "cNy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11390,7 +11243,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cOg" = ( /obj/machinery/door/airlock/command/glass{ name = "EVA Storage" @@ -11402,7 +11255,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "cOl" = ( /obj/machinery/computer/prisoner/management{ dir = 8 @@ -11473,7 +11326,7 @@ dir = 4 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cPx" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 @@ -11576,6 +11429,7 @@ dir = 1 }, /obj/structure/cable/layer1, +/obj/structure/sign/warning/radiation/directional/south, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "cQD" = ( @@ -11789,7 +11643,7 @@ }, /obj/machinery/status_display/ai/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cUB" = ( /obj/effect/landmark/start/shaft_miner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11819,6 +11673,11 @@ dir = 1 }, /obj/machinery/light/cold/directional/north, +/obj/machinery/button/door/directional/north{ + id = "papersplease"; + name = "Arrival Checkpoint Enforcement Override"; + req_access = list("kitchen") + }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) "cVd" = ( @@ -11860,8 +11719,13 @@ "cVr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/machinery/flasher/directional/west{ + id = "AI"; + pixel_y = 5; + pixel_x = -22 + }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "cVs" = ( /obj/effect/turf_decal/weather/snow, /obj/machinery/gibber, @@ -11918,7 +11782,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "cWl" = ( /obj/machinery/computer/shuttle/mining{ dir = 1 @@ -11952,14 +11816,6 @@ /obj/item/clothing/shoes/clown_shoes, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) -"cWW" = ( -/obj/structure/girder/reinforced, -/obj/structure/shuttle_decoration/wall_plate/armor{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/space/nearstation) "cWZ" = ( /turf/closed/wall, /area/station/service/bar/backroom) @@ -11977,7 +11833,7 @@ }, /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "cXy" = ( /obj/machinery/igniter/incinerator_ordmix, /turf/open/floor/engine/vacuum, @@ -12020,7 +11876,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/catwalk_floor, @@ -12150,11 +12006,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/cargo/miningdock) -"dab" = ( -/obj/structure/tank_holder/extinguisher/advanced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "dai" = ( /obj/structure/chair/sofa/corp/corner{ dir = 4 @@ -12216,7 +12067,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/item/storage/toolbox/drone, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dbr" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -12507,7 +12358,7 @@ "dgd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12633,7 +12484,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "diN" = ( /obj/machinery/computer/slot_machine{ pixel_y = 2 @@ -12728,7 +12579,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dkl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -12757,10 +12608,6 @@ "dkO" = ( /turf/open/floor/iron, /area/station/security/brig) -"dlf" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron/stairs/left, -/area/station/salvage_bay) "dlg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12887,7 +12734,8 @@ /area/station/science/breakroom) "dmX" = ( /obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -12932,7 +12780,7 @@ dir = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "doa" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /obj/effect/spawner/structure/window/reinforced, @@ -13074,7 +12922,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dqW" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -13176,7 +13024,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dsw" = ( /obj/machinery/modular_computer/preset/id{ dir = 8 @@ -13238,12 +13086,21 @@ /turf/open/floor/wood, /area/station/command/meeting_room) "dtz" = ( -/obj/machinery/flasher/directional/east{ - pixel_y = 26; - id = "AI" +/obj/structure/sign/directions/upload{ + dir = 4; + pixel_y = -7 }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/obj/structure/sign/directions/engineering{ + pixel_y = 7 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 14 + }, +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/closed/wall, +/area/station/hallway/primary/tram/center) "dtA" = ( /turf/open/openspace, /area/station/security/courtroom/holding) @@ -13323,7 +13180,6 @@ /area/station/service/hydroponics) "dvj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/exit) "dvn" = ( @@ -13637,7 +13493,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/dim/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "dAR" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/bot, @@ -13667,7 +13523,7 @@ "dBj" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dBM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ @@ -13814,7 +13670,7 @@ /area/station/hallway/primary/tram/right) "dEv" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dEH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external{ @@ -13939,7 +13795,7 @@ name = "Tunnel Access Hatch" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14197,10 +14053,10 @@ /obj/effect/landmark/event_spawn, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dKV" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dLp" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 4 @@ -14256,14 +14112,13 @@ "dLS" = ( /obj/machinery/turretid{ name = "AI Chamber turret control"; - icon_state = "control_stun"; pixel_x = 3; pixel_y = -23 }, /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dMg" = ( /turf/open/openspace, /area/station/maintenance/solars/starboard/fore) @@ -14308,7 +14163,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "dNp" = ( /obj/machinery/newscaster/directional/north, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -14366,7 +14221,7 @@ req_access = list("captain") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dNY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -14453,12 +14308,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/office) -"dPG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/stairs/medium, -/area/station/salvage_bay) "dPI" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 @@ -14516,7 +14365,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "dQn" = ( /obj/machinery/power/supermatter_crystal/engine, /turf/open/floor/engine, @@ -14554,7 +14403,7 @@ pixel_y = -2 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dQI" = ( /obj/machinery/disposal/bin, /obj/machinery/airalarm/directional/south, @@ -14868,7 +14717,7 @@ /area/station/cargo/storage) "dVM" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "dWd" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -15060,6 +14909,7 @@ }, /obj/effect/turf_decal/trimline/red/filled/line, /obj/item/radio/intercom/directional/south, +/obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/station/security/checkpoint/science) "eaq" = ( @@ -15173,7 +15023,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "ecg" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -15391,7 +15241,7 @@ req_one_access = list("teleporter","minisat") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "egK" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 @@ -15430,7 +15280,7 @@ /obj/structure/cable, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ehS" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 1 @@ -15438,7 +15288,7 @@ /obj/effect/turf_decal/trimline/yellow/line, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eiy" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, @@ -15576,7 +15426,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ekh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15621,7 +15471,7 @@ /obj/effect/turf_decal/bot, /obj/structure/rack, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "elM" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue/opposingcorners, @@ -15637,18 +15487,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"ema" = ( -/obj/structure/shelf, -/obj/item/gun/energy/plasmacutter{ - pixel_y = -2 - }, -/obj/item/gun/energy/plasmacutter{ - pixel_y = 4; - pixel_x = -3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "emn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15825,13 +15663,6 @@ /obj/effect/landmark/navigate_destination/tcomms, /turf/open/floor/iron, /area/station/tcommsat/computer) -"eql" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 2 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating, -/area/station/salvage_bay) "eqK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -15930,7 +15761,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "esA" = ( /obj/machinery/iv_drip, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -16020,7 +15851,8 @@ name = "AI Upload Turret Control"; pixel_x = 25; req_access = list("minisat"); - control_area = "/area/station/ai_monitored/turret_protected/ai_upload" + control_area = "/area/station/ai/upload/chamber"; + dir = 4 }, /turf/open/floor/iron/dark, /area/station/science/lower) @@ -16030,12 +15862,6 @@ }, /turf/open/floor/glass/reinforced, /area/station/security/warden) -"eul" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/delivery, -/obj/structure/marker_beacon/yellow, -/turf/open/floor/plating/airless, -/area/station/asteroid) "euC" = ( /turf/open/floor/wood/parquet, /area/station/medical/psychology) @@ -16181,7 +16007,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "exF" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -16261,7 +16087,8 @@ /obj/structure/sign/warning/docking{ name = "KEEP CLEAR: TRAM DOCKING AREA sign"; desc = "A warning sign which reads 'KEEP CLEAR OF TRAM DOCKING AREA'."; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/thinplating, /obj/structure/disposalpipe/segment{ @@ -16472,7 +16299,7 @@ /obj/machinery/space_heater, /obj/effect/turf_decal/bot, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "eBF" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -16513,7 +16340,6 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/exit) "eCp" = ( @@ -16548,7 +16374,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -3; pixel_y = 3 }, @@ -16695,15 +16521,6 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/miningdock/oresilo) -"eFB" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/salvage_bay) "eFJ" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -16721,13 +16538,6 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"eFX" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "SalvageProcess" - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "eGe" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/stripes/asteroid/line{ @@ -16795,13 +16605,6 @@ "eHN" = ( /turf/closed/wall, /area/station/medical/paramedic) -"eHO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/loading_area/white{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/asteroid) "eHR" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -16855,14 +16658,6 @@ }, /turf/open/floor/iron, /area/station/security/checkpoint/escape) -"eIX" = ( -/obj/structure/girder/reinforced, -/obj/structure/shuttle_decoration/wall_plate/armor{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/space/nearstation) "eIZ" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ dir = 9 @@ -16880,7 +16675,7 @@ /obj/effect/spawner/random/armory/riot_helmet, /obj/effect/spawner/random/armory/riot_shield, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eJI" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -17024,23 +16819,6 @@ /obj/machinery/computer/pandemic, /turf/open/floor/iron/white, /area/station/medical/virology) -"eNM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/status_display/ai/directional/east{ - pixel_y = -32 - }, -/obj/structure/cable/layer1, -/obj/effect/turf_decal/trimline/yellow/arrow_cw{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "eNP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -17196,28 +16974,23 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "eQL" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/medical{ - pixel_y = 34 - }, -/obj/structure/sign/directions/engineering{ - pixel_y = 40 +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_y = 7 }, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = 22 +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = -7 }, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 14 }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ +/obj/structure/sign/directions/supply{ dir = 1 }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) +/turf/closed/wall, +/area/station/hallway/primary/tram/right) "eQN" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/airalarm/directional/west, @@ -17303,11 +17076,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) -"eRZ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/light/dim/directional/east, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "eSj" = ( /obj/structure/table, /obj/item/storage/box/firingpins, @@ -17315,7 +17083,7 @@ /obj/item/key/security, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eSs" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -17341,10 +17109,10 @@ /area/station/hallway/primary/tram/center) "eSH" = ( /obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted, /obj/machinery/computer/records/medical{ dir = 1 }, -/obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron, /area/station/command/bridge) "eSI" = ( @@ -17538,7 +17306,7 @@ freerange = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eVn" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -17836,10 +17604,6 @@ /obj/structure/table, /turf/open/floor/iron, /area/station/commons/dorms) -"faP" = ( -/obj/structure/sign/semiotic/arrow, -/turf/closed/wall, -/area/station/hallway/secondary/exit) "fbj" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -17892,10 +17656,6 @@ }, /turf/open/floor/iron, /area/station/cargo/miningfoundry) -"fdi" = ( -/obj/structure/shuttle_decoration/headlight/directional/east, -/turf/closed/wall/r_wall, -/area/space/nearstation) "fdr" = ( /obj/machinery/duct, /obj/structure/cable, @@ -17993,16 +17753,12 @@ /turf/open/floor/iron, /area/station/commons/fitness/recreation) "ffe" = ( -/obj/machinery/flasher/directional/south{ - pixel_x = 20; - id = "AI" - }, /obj/machinery/door/window/brigdoor/right/directional/north{ name = "Primary AI Core Access"; req_access = list("ai_upload") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ffh" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -18089,7 +17845,7 @@ dir = 8 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "fhv" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 6 @@ -18174,7 +17930,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "fhM" = ( /obj/machinery/door/airlock/public/glass{ name = "Library" @@ -18226,7 +17982,7 @@ }, /obj/machinery/light/directional/west, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fiS" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Public Garden Maintenance Hatch" @@ -18539,6 +18295,7 @@ /turf/open/floor/engine, /area/station/engineering/supermatter/room) "fnZ" = ( +/obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/station/security/checkpoint/science) "fof" = ( @@ -18572,7 +18329,7 @@ dir = 8 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/security/brig, @@ -19355,7 +19112,7 @@ }, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "fEZ" = ( /obj/structure/noticeboard/directional/north, /obj/item/fish_tank/lawyer, @@ -19446,7 +19203,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fFO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/navigate_destination/disposals, @@ -19541,7 +19298,7 @@ freerange = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "fHV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -19722,11 +19479,9 @@ anchored = 1 }, /obj/effect/turf_decal/bot, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fLE" = ( /obj/structure/table, /obj/machinery/camera/directional/north{ @@ -19817,7 +19572,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fMQ" = ( /obj/machinery/air_sensor/ordnance_burn_chamber, /turf/open/floor/engine/vacuum, @@ -20233,7 +19988,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fVN" = ( /obj/machinery/door/airlock/hatch{ name = "Emergency Exit" @@ -20338,10 +20093,7 @@ /turf/open/floor/wood/large, /area/station/service/barber) "fXf" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/plating, /area/station/hallway/secondary/entry) "fXl" = ( @@ -20422,7 +20174,7 @@ }, /obj/machinery/status_display/ai/directional/east, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "fYB" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/catwalk_floor, @@ -20771,7 +20523,7 @@ /obj/effect/spawner/round_default_module, /obj/machinery/camera/motion/directional/east, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "gfX" = ( /obj/structure/fluff/iced_abductor, /turf/open/misc/asteroid/airless, @@ -20808,7 +20560,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/barrier_grenades, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ggH" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -20919,6 +20671,7 @@ /obj/effect/turf_decal/trimline/neutral/corner{ dir = 1 }, +/obj/structure/sign/departments/cargo/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) "giT" = ( @@ -21077,9 +20830,6 @@ /obj/machinery/door/airlock/medical/glass{ name = "Treatment Center" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, @@ -21088,6 +20838,9 @@ /obj/machinery/duct, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "glc" = ( @@ -21108,30 +20861,9 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "glv" = ( -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -40 - }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/tram/filled/line, -/obj/effect/turf_decal/trimline/tram/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/maintenance/tram/right) "glP" = ( /obj/structure/chair/plastic, /turf/open/floor/eighties/red, @@ -21262,27 +20994,22 @@ /turf/open/floor/carpet, /area/station/medical/psychology) "gnK" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/medical{ - pixel_y = -34 +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_y = 7 }, -/obj/structure/sign/directions/engineering{ - pixel_y = -40 +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 14 }, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = -22 +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -7 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/sign/directions/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/tram/filled/line, -/obj/effect/turf_decal/trimline/tram/filled/warning, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/tram/center) "gnL" = ( /obj/effect/turf_decal/trimline/red/filled/line, @@ -21480,7 +21207,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gsu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21581,7 +21308,7 @@ c_tag = "Secure - AI Lower Ring Access" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gul" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -21679,7 +21406,8 @@ /area/station/hallway/primary/tram/left) "gwy" = ( /obj/structure/sign/warning/no_smoking{ - pixel_x = -28 + pixel_x = -28; + dir = 8 }, /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/atmos_control/nocontrol/incinerator{ @@ -21733,7 +21461,7 @@ /obj/machinery/flasher/portable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "gxm" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -21818,9 +21546,6 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/ai/directional/west{ - pixel_y = 32 - }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "gyN" = ( @@ -21860,7 +21585,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gzY" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 @@ -21874,7 +21599,8 @@ dir = 8 }, /obj/structure/sign/warning/engine_safety{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/iron, /area/station/engineering/break_room) @@ -22176,7 +21902,7 @@ /area/station/science/research) "gFf" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "gFk" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 @@ -22357,6 +22083,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "gJs" = ( @@ -22528,7 +22255,7 @@ /area/station/medical/medbay/central) "gNm" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gNn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -22639,7 +22366,7 @@ dir = 8 }, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gOA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -22674,7 +22401,7 @@ /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white/side, /area/station/science/research) "gOX" = ( @@ -22983,7 +22710,7 @@ c_tag = "Secure - AI Upper Ring North" }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "gVu" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/table, @@ -23068,7 +22795,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gWD" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -23212,7 +22939,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hae" = ( /obj/machinery/duct, /obj/structure/cable, @@ -23435,7 +23162,7 @@ /turf/open/floor/iron/dark/side{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "heS" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -23479,7 +23206,7 @@ c_tag = "Secure - AI Upper Ring West" }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hft" = ( /obj/structure/bed{ dir = 8 @@ -23526,7 +23253,7 @@ "hgn" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hgG" = ( /obj/structure/sign/warning/secure_area/directional/north, /obj/structure/disposalpipe/segment{ @@ -23552,7 +23279,7 @@ /obj/machinery/power/smes/super/full, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "hht" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23606,7 +23333,7 @@ dir = 4 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hif" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -23867,7 +23594,7 @@ pixel_y = -1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hlB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line, @@ -24186,7 +23913,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "htr" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/preopen{ @@ -24344,15 +24071,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/security/warden) -"hwA" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "SalvageProcess"; - name = "Salvage Processor"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "hwM" = ( /obj/effect/turf_decal/bot, /obj/machinery/requests_console/directional/west{ @@ -24409,7 +24127,7 @@ /area/station/command/teleporter) "hzN" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "hzQ" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/stripes/line{ @@ -24424,10 +24142,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, /area/station/command/gateway) -"hAy" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/iron, -/area/station/salvage_bay) "hAD" = ( /turf/open/floor/iron/freezer, /area/station/commons/toilet) @@ -24511,7 +24225,7 @@ c_tag = "Secure - AI Upper Ring South" }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "hBK" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -24536,11 +24250,6 @@ /obj/machinery/vending/cigarette, /turf/open/floor/iron/cafeteria, /area/station/science/breakroom) -"hCx" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/railing, -/turf/open/floor/plating/reinforced/airless, -/area/space/nearstation) "hCA" = ( /obj/machinery/chem_master/condimaster{ name = "HoochMaster Deluxe"; @@ -24765,7 +24474,17 @@ /obj/item/pen, /obj/machinery/firealarm/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) +"hGc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + name = "Bridge Blast Door"; + id = "bunkermodeactivated" + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron, +/area/station/command/bridge) "hGd" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -24951,7 +24670,7 @@ /area/station/engineering/main) "hJl" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "hJA" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible, /obj/machinery/meter, @@ -25065,7 +24784,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/spawner/random/armory/shotgun, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hMs" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -25105,15 +24824,12 @@ /turf/open/floor/iron, /area/station/engineering/engine_smes) "hMQ" = ( -/obj/structure/sign/warning/secure_area{ - name = "HIGH SECURITY STORAGE"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "hNb" = ( /obj/structure/table/wood, /obj/item/papercutter{ @@ -25261,15 +24977,12 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit) -"hPp" = ( -/turf/open/misc/asteroid, -/area/station/salvage_bay) "hPs" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hPA" = ( /obj/structure/chair/office{ dir = 1 @@ -25564,7 +25277,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "hUQ" = ( /obj/machinery/teleport/station, /obj/structure/cable, @@ -25653,7 +25366,7 @@ /obj/machinery/status_display/ai/directional/north, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hXK" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -25839,7 +25552,7 @@ freerange = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hZL" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -26021,7 +25734,7 @@ dir = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "idg" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -26029,12 +25742,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/engineering/atmos) -"idu" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/salvage_bay) "idz" = ( /obj/effect/turf_decal/trimline/green/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -26102,15 +25809,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/checkpoint/science) -"ife" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/stairs{ - dir = 8 - }, -/area/station/salvage_bay) "ifg" = ( /obj/structure/railing{ dir = 4 @@ -26138,7 +25836,7 @@ name = "Dormatories Maintenance Hatch" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -26243,7 +25941,7 @@ /obj/machinery/status_display/evac/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ihl" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -26503,7 +26201,7 @@ name = "Recreation Area Maintenance Access" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -26654,7 +26352,7 @@ pixel_y = 20 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iqZ" = ( /obj/structure/railing, /obj/machinery/door/window/right/directional/north{ @@ -26683,7 +26381,7 @@ pixel_y = -8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "irv" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 9 @@ -26831,7 +26529,7 @@ dir = 10 }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iue" = ( /obj/structure/table/glass, /obj/item/radio/intercom, @@ -26986,7 +26684,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iwV" = ( /obj/effect/turf_decal/trimline/white/filled/line{ dir = 4 @@ -27016,7 +26714,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/decal/cleanable/dirt, @@ -27049,7 +26747,7 @@ }, /obj/machinery/status_display/evac/directional/east, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ixK" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/duct, @@ -27513,7 +27211,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iHI" = ( /obj/machinery/door/airlock/public/glass{ name = "Courtroom" @@ -27574,21 +27272,6 @@ /turf/open/floor/iron, /area/station/engineering/engine_smes) "iIS" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = -34 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -40 - }, -/obj/structure/sign/directions/upload{ - pixel_y = -22 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/tram/filled/line, @@ -27624,7 +27307,7 @@ /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "iKg" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 1 @@ -27849,16 +27532,6 @@ }, /turf/open/floor/iron, /area/station/security/processing) -"iOa" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/salvage_bay) "iOc" = ( /obj/machinery/stasis{ dir = 8 @@ -27876,7 +27549,8 @@ /obj/machinery/button/flasher{ pixel_x = 23; pixel_y = -10; - id = "hopflash" + id = "hopflash"; + dir = 4 }, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) @@ -28090,7 +27764,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iSt" = ( /obj/structure/table/wood, /obj/item/staff/broom, @@ -28175,7 +27849,7 @@ }, /obj/item/kirbyplants/photosynthetic, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iTO" = ( /obj/structure/window/spawner/directional/east, /obj/structure/window/spawner/directional/west, @@ -28256,7 +27930,6 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/exit) "iUE" = ( @@ -28275,7 +27948,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iVj" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -28382,12 +28055,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iWQ" = ( /obj/structure/chair/office{ dir = 4 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/carpet, /area/station/commons/vacant_room/office) "iXx" = ( @@ -28442,6 +28115,14 @@ }, /turf/open/floor/plating/airless, /area/station/asteroid) +"iYD" = ( +/obj/machinery/flasher/directional/east{ + id = "AI"; + pixel_x = 22; + pixel_y = -5 + }, +/turf/open/floor/circuit, +/area/station/ai/satellite/chamber) "iYO" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -28735,7 +28416,7 @@ name = "Vacant Office A" }, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -28755,7 +28436,7 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jdt" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -28852,7 +28533,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jeS" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 6 @@ -28892,7 +28573,7 @@ "jfu" = ( /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "jfD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, /turf/open/floor/engine, @@ -28936,7 +28617,7 @@ "jgq" = ( /obj/structure/railing/corner, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "jgs" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -28948,11 +28629,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) -"jgv" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/airless, -/area/station/asteroid) "jgy" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -29056,7 +28732,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jim" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ @@ -29099,9 +28775,6 @@ dir = 1 }, /area/station/security/execution/transfer) -"jiO" = ( -/turf/closed/mineral/random/stationside/asteroid/porus, -/area/station/salvage_bay) "jiQ" = ( /turf/closed/wall, /area/station/science/xenobiology) @@ -29182,7 +28855,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jkn" = ( /obj/machinery/door/airlock{ name = "Custodial Closet" @@ -29263,7 +28936,7 @@ /obj/effect/turf_decal/stripes/end, /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jlo" = ( /obj/machinery/conveyor/inverted{ dir = 9; @@ -29283,7 +28956,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jlX" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -29362,7 +29035,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jnq" = ( /turf/closed/wall, /area/station/maintenance/central/lesser) @@ -29550,16 +29223,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science/ordnance/office) -"jpZ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron/stairs/right, -/area/station/salvage_bay) "jqs" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 8 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jqv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -29676,13 +29345,13 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jrR" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jst" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -29807,9 +29476,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/escapepodbay) -"jum" = ( -/turf/closed/wall/r_wall, -/area/station/salvage_bay) "jur" = ( /obj/effect/turf_decal/trimline/brown/filled/line, /obj/effect/turf_decal/siding/thinplating{ @@ -29820,13 +29486,9 @@ "jus" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/flasher/directional/west{ - pixel_y = -26; - id = "AI" - }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "juw" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -29853,9 +29515,9 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/cable, -/obj/effect/spawner/random/armory/laser_gun, +/obj/effect/spawner/random/armory/pick_laser_loadout, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "juV" = ( /obj/structure/chair{ dir = 8 @@ -30074,7 +29736,7 @@ name = "Science Maintenance Hatch" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -30283,13 +29945,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/command/heads_quarters/qm) -"jBf" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "SalvageProcess" - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "jBk" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner, /obj/structure/cable, @@ -30546,10 +30201,10 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jFR" = ( /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jGi" = ( /obj/effect/turf_decal/siding/thinplating, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30623,7 +30278,7 @@ "jHc" = ( /obj/structure/rack, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jHd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -30676,7 +30331,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jIy" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/rnd_all, @@ -30724,7 +30379,7 @@ /area/station/cargo/sorting) "jJv" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jJz" = ( /obj/structure/chair{ dir = 8 @@ -30781,7 +30436,7 @@ /area/station/cargo/storage) "jJX" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -30877,7 +30532,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jLy" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 4 @@ -30911,14 +30566,12 @@ /area/station/engineering/atmos) "jMe" = ( /obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/camera/directional/south{ network = list("ss13","Security"); c_tag = "Civilian - Security Outpost" }, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/security/checkpoint/arrivals) "jMo" = ( @@ -31136,14 +30789,6 @@ }, /turf/open/floor/plating, /area/station/science/lab) -"jRA" = ( -/obj/structure/girder/reinforced, -/obj/structure/shuttle_decoration/wall_plate/armor{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/station/asteroid) "jRS" = ( /obj/structure/closet/secure_closet/chemical, /obj/effect/turf_decal/tile/yellow/fourcorners, @@ -31281,7 +30926,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jUW" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ @@ -31307,15 +30952,12 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "jVG" = ( -/obj/structure/sign/warning/secure_area{ - name = "HIGH SECURITY STORAGE"; - pixel_y = 32 - }, +/obj/structure/sign/warning/secure_area/directional/north, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jVT" = ( /obj/structure/table, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -31347,7 +30989,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jWg" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/machinery/camera/directional/south{ @@ -31384,7 +31026,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "jWs" = ( /turf/closed/wall/r_wall, /area/station/security/execution/transfer) @@ -31554,7 +31196,7 @@ /area/station/service/chapel/office) "jYf" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "jYj" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -31569,7 +31211,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "jYr" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance_hatch{ @@ -31577,7 +31219,7 @@ }, /obj/machinery/duct, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -31765,14 +31407,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/security/execution/transfer) -"kba" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/red/dim/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plating, -/area/station/salvage_bay) "kbc" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 10 @@ -31784,7 +31418,7 @@ pixel_y = 20 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kbi" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -32102,7 +31736,7 @@ "keJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "keN" = ( /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, @@ -32240,7 +31874,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kgG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -32330,6 +31964,9 @@ name = "Secure Medical Storage"; req_access = list("medical") }, +/obj/item/defibrillator/loaded{ + pixel_y = 6 + }, /obj/item/clothing/glasses/blindfold, /obj/item/clothing/glasses/blindfold, /obj/item/clothing/ears/earmuffs, @@ -32417,7 +32054,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kjH" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/white/full, @@ -32480,7 +32117,8 @@ pixel_y = 9; id = "private_a"; specialfunctions = 4; - normaldoorcontrol = 1 + normaldoorcontrol = 1; + dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32555,7 +32193,7 @@ /obj/machinery/suit_storage_unit/security, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kli" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -32596,7 +32234,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/hallway/primary/tram/center) @@ -32736,6 +32374,15 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 10 }, +/obj/structure/rack, +/obj/item/gps/mining{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/gps/mining{ + pixel_x = -2; + pixel_y = 1 + }, /turf/open/floor/iron, /area/station/hallway/secondary/exit) "kpd" = ( @@ -33116,12 +32763,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"ktP" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "kum" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -33199,7 +32840,7 @@ "kwe" = ( /obj/structure/ladder, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "kwk" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -33238,7 +32879,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/spawner/random/armory/disablers, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kwD" = ( /obj/effect/landmark/start/cargo_technician, /turf/open/floor/glass, @@ -33287,12 +32928,6 @@ /obj/machinery/light/small/dim/directional/south, /turf/open/floor/iron, /area/station/maintenance/tram/left) -"kxU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/misc/asteroid, -/area/station/salvage_bay) "kxV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/stripes/line{ @@ -33423,7 +33058,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "kzT" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -33626,7 +33261,7 @@ /turf/open/floor/iron/dark/corner{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kDF" = ( /obj/structure/closet/wardrobe/miner, /obj/structure/disposalpipe/segment, @@ -34131,9 +33766,6 @@ /obj/effect/mapping_helpers/airlock/access/all/service/lawyer, /turf/open/floor/wood, /area/station/service/lawoffice) -"kKT" = ( -/turf/open/floor/iron, -/area/station/salvage_bay) "kKV" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2, /turf/open/floor/iron/dark, @@ -34152,10 +33784,6 @@ "kLz" = ( /turf/closed/wall/r_wall, /area/station/security/prison/work) -"kLF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/catwalk_floor, -/area/station/salvage_bay) "kLI" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -34442,7 +34070,7 @@ /turf/open/floor/iron/dark/side{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kPC" = ( /turf/closed/wall/rust, /area/station/security/prison/workout) @@ -34497,7 +34125,7 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/power_store/cell/high, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kQR" = ( /obj/structure/flora/bush/lavendergrass/style_random, /obj/item/food/grown/banana/bunch{ @@ -35056,7 +34684,7 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kZB" = ( /obj/effect/landmark/start/hangover, /obj/structure/cable, @@ -35105,7 +34733,7 @@ c_tag = "Secure - AI Antechamber East" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kZM" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -35263,13 +34891,6 @@ }, /turf/open/floor/plating, /area/station/cargo/warehouse) -"ldP" = ( -/obj/machinery/light/dim/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "lej" = ( /obj/effect/turf_decal/trimline/tram/filled/line{ dir = 1 @@ -35319,14 +34940,17 @@ }, /obj/machinery/button/door/incinerator_vent_ordmix{ pixel_x = 24; - pixel_y = 8 + pixel_y = 8; + dir = 4 }, /obj/machinery/button/ignition/incinerator/ordmix{ pixel_x = 24; - pixel_y = -6 + pixel_y = -6; + dir = 4 }, /obj/machinery/airlock_controller/incinerator_ordmix{ - pixel_x = -24 + pixel_x = -24; + dir = 4 }, /obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/engine, @@ -35402,8 +35026,8 @@ "lgP" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/rack, -/obj/item/tank/jetpack/oxygen, -/obj/item/tank/jetpack/oxygen{ +/obj/item/tank/jetpack, +/obj/item/tank/jetpack{ pixel_x = 3; pixel_y = 3 }, @@ -35474,7 +35098,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "liN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, @@ -35487,7 +35111,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "lje" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -35788,7 +35412,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "lns" = ( /obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 8 @@ -35889,7 +35513,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "loG" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 @@ -36010,7 +35634,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lqS" = ( /obj/structure/table/wood, /obj/item/book/bible, @@ -36081,13 +35705,13 @@ /obj/effect/mapping_helpers/requests_console/assistance, /obj/structure/cable/multilayer/connected, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lry" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lrA" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -36404,7 +36028,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lxm" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -36549,7 +36173,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/spawner/random/armory/bulletproof_helmet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lyK" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 @@ -36657,7 +36281,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "lAO" = ( /obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ dir = 4 @@ -36785,12 +36409,6 @@ }, /turf/open/floor/iron/kitchen_coldroom, /area/station/medical/coldroom) -"lDn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) "lDo" = ( /obj/structure/table, /obj/item/storage/box/prisoner, @@ -36989,12 +36607,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/service/bar) -"lGi" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/salvage_bay) "lGp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37042,10 +36654,10 @@ /obj/machinery/turretid{ name = "AI Antechamber turret control"; pixel_y = -25; - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior" + control_area = "/area/station/ai/satellite/interior" }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lHp" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/light/small/directional/north, @@ -37177,9 +36789,7 @@ /turf/open/floor/iron, /area/station/cargo/miningdock) "lJu" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, +/obj/structure/sign/warning/vacuum/external/directional/west, /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 }, @@ -37225,7 +36835,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lKE" = ( /obj/structure/table, /obj/item/storage/box/donkpockets, @@ -37590,15 +37200,6 @@ "lQM" = ( /turf/closed/wall/r_wall, /area/station/maintenance/port/central) -"lQO" = ( -/obj/machinery/door/airlock/grunge{ - name = "Salvage Oversight" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "lQT" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 6 @@ -37659,11 +37260,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/hydroponics/garden) -"lRV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/salvage_bay) "lSo" = ( /turf/open/floor/glass/reinforced, /area/station/security/brig) @@ -37701,7 +37297,7 @@ dir = 1 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lSI" = ( /obj/machinery/newscaster/directional/east, /obj/machinery/conveyor_switch/oneway{ @@ -37907,13 +37503,6 @@ }, /turf/open/floor/catwalk_floor, /area/station/hallway/primary/tram/right) -"lVf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/salvage_bay) "lVi" = ( /turf/closed/wall, /area/station/maintenance/department/science) @@ -38190,10 +37779,6 @@ /obj/structure/sign/tram_plate/directional/south, /turf/open/openspace, /area/station/hallway/primary/tram/center) -"maw" = ( -/obj/structure/shuttle_decoration/headlight/directional/west, -/turf/closed/wall/r_wall, -/area/space/nearstation) "max" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -38203,7 +37788,8 @@ pixel_x = 9; pixel_y = 27; id = "permafrontdoor"; - req_access = list("brig") + req_access = list("brig"); + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38320,10 +37906,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/station/security/warden) -"mcd" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/openspace, -/area/space/nearstation) "mcg" = ( /obj/machinery/vending/boozeomat, /turf/open/floor/wood, @@ -38349,7 +37931,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mcX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -38382,13 +37964,13 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "mdr" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mdD" = ( /obj/effect/turf_decal/siding/thinplating, /obj/effect/turf_decal/siding/thinplating{ @@ -38418,7 +38000,7 @@ /area/station/maintenance/tram/left) "mdV" = ( /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "meb" = ( /obj/effect/landmark/carpspawn, /turf/open/space/openspace, @@ -38571,7 +38153,6 @@ listening = 0; freerange = 1 }, -/obj/effect/landmark/start/ai, /obj/machinery/button/door/directional/south{ name = "AI Core Shutters Control"; pixel_x = 24; @@ -38579,8 +38160,9 @@ req_access = list("ai_upload") }, /obj/structure/cable, +/obj/effect/landmark/start/ai, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mgj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -38671,11 +38253,6 @@ }, /turf/open/floor/iron, /area/station/command/heads_quarters/qm) -"mie" = ( -/obj/effect/spawner/random/structure/grille, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/station/asteroid) "min" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -38781,10 +38358,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/commons/dorms) -"mky" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "mkA" = ( /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/wood/large, @@ -38794,11 +38367,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/large, /area/station/service/library) -"mkZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/catwalk_floor, -/area/station/salvage_bay) "mld" = ( /obj/effect/landmark/navigate_destination/dockescpod2, /obj/structure/cable, @@ -38920,11 +38488,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/miningdock) -"mnQ" = ( -/obj/structure/table, -/obj/item/storage/cans/sixbeer, -/turf/open/floor/iron, -/area/station/salvage_bay) "mon" = ( /mob/living/basic/sloth/paperwork, /turf/open/floor/glass, @@ -39136,10 +38699,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"mrD" = ( -/obj/effect/turf_decal/recharge, -/turf/open/floor/plating, -/area/station/salvage_bay) "mrF" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -39153,7 +38712,7 @@ c_tag = "Secure - AI Upper Ring Access" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "mrS" = ( /obj/structure/chair{ dir = 8 @@ -39356,7 +38915,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mxf" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -39370,7 +38929,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mxw" = ( /obj/machinery/door/airlock/research{ name = "Chemical Storage" @@ -39733,7 +39292,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mEd" = ( /obj/structure/railing{ dir = 1 @@ -39836,7 +39395,7 @@ "mGl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "mGo" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -39896,7 +39455,7 @@ c_tag = "Secure - AI Antechamber West" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mHc" = ( /turf/open/floor/iron/checker, /area/station/commons/lounge) @@ -39915,7 +39474,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/smooth, @@ -40148,7 +39707,7 @@ /obj/vehicle/ridden/secway, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mKQ" = ( /obj/machinery/dna_infuser, /obj/structure/extinguisher_cabinet/directional/east, @@ -40347,7 +39906,7 @@ dir = 8 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/security/brig, @@ -40677,7 +40236,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mYw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -40690,7 +40249,7 @@ }, /obj/machinery/newscaster/directional/north, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mYI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40849,7 +40408,7 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nbI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -40858,10 +40417,6 @@ }, /turf/open/floor/plating, /area/station/science/xenobiology) -"nbL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/reinforced/airless, -/area/space/nearstation) "nca" = ( /turf/open/openspace, /area/station/security/brig) @@ -40897,12 +40452,6 @@ "ncF" = ( /turf/closed/wall, /area/station/maintenance/tram/left) -"ncI" = ( -/obj/effect/turf_decal/tile/dark/half{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "ncT" = ( /obj/structure/cable, /obj/structure/disposalpipe/junction/flip{ @@ -40940,8 +40489,12 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/cable, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = -10 + }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ndz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -41151,19 +40704,13 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"nhf" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plating, -/area/station/salvage_bay) "nhj" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -41313,7 +40860,7 @@ /area/station/solars/starboard/fore) "njC" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "njI" = ( /obj/effect/turf_decal/siding/thinplating/corner{ dir = 1 @@ -41359,7 +40906,8 @@ dir = 4 }, /obj/structure/sign/departments/security{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /obj/machinery/light/directional/west, /turf/open/floor/iron, @@ -41489,7 +41037,7 @@ /turf/open/floor/iron, /area/station/hallway/secondary/service) "nlF" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 8 }, /obj/structure/window/reinforced/spawner/directional/east, @@ -41640,13 +41188,6 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/hallway/primary/tram/center) -"nnM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/loading_area/red{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/asteroid) "nnQ" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 8 @@ -41800,7 +41341,7 @@ req_access = list("captain") }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "nrh" = ( /obj/structure/table/glass, /obj/item/storage/fancy/coffee_cart_rack{ @@ -41836,11 +41377,6 @@ /obj/effect/turf_decal/tile/dark_blue/fourcorners, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain/private) -"nrE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/salvage_bay) "nrM" = ( /obj/machinery/door/airlock/mining/glass{ name = "Cargo Office" @@ -41900,7 +41436,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nsv" = ( /obj/machinery/camera/directional/north{ network = list("test","rd"); @@ -42038,7 +41574,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "nwd" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 @@ -42447,7 +41983,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nCe" = ( /turf/open/floor/iron, /area/station/security/courtroom) @@ -42536,32 +42072,22 @@ /turf/open/floor/plating, /area/station/hallway/primary/tram/center) "nEu" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/security{ +/obj/structure/sign/directions/vault{ dir = 1; - pixel_y = 34 + pixel_y = 7 }, /obj/structure/sign/directions/command{ dir = 1; - pixel_y = 40 + pixel_y = -7 }, -/obj/structure/sign/directions/vault{ +/obj/structure/sign/directions/security{ dir = 1; - pixel_y = 22 + pixel_y = 14 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/sign/directions/supply{ dir = 4 }, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/tram/left) "nEB" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -42822,22 +42348,6 @@ /turf/open/floor/iron, /area/station/hallway/secondary/command) "nKo" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = -34 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = -40 - }, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = -22 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42868,6 +42378,7 @@ dir = 4 }, /obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "nKU" = ( @@ -42960,10 +42471,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/maintenance/central/greater) -"nMz" = ( -/obj/structure/sign/semiotic/storage, -/turf/closed/wall/r_wall, -/area/station/salvage_bay) "nMB" = ( /turf/open/floor/iron, /area/station/science/ordnance/testlab) @@ -43004,7 +42511,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "nNl" = ( /obj/structure/holosign/barrier/atmos/tram, /obj/structure/disposalpipe/segment{ @@ -43064,7 +42571,7 @@ name = "Tram Mechanical Room" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/iron/smooth, @@ -43073,14 +42580,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/engineering/engine_smes) -"nOv" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "nOB" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/reagent_dispensers/watertank, @@ -43639,22 +43138,6 @@ /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "nYq" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -34 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -40 - }, -/obj/structure/sign/directions/vault{ - dir = 1; - pixel_y = -22 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -43694,7 +43177,7 @@ name = "Recreation Area Maintenance Hatch" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43857,7 +43340,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "obz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ @@ -43948,7 +43431,7 @@ "odF" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "odH" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -44138,31 +43621,10 @@ /turf/open/floor/wood, /area/station/commons/dorms) "oiv" = ( -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/structure/sign/departments/science{ + pixel_y = -32 }, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) @@ -44505,13 +43967,6 @@ }, /turf/open/space/openspace, /area/station/solars/port) -"ope" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/salvage_bay) "opT" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -44543,10 +43998,10 @@ "oqi" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oqp" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oqy" = ( /obj/machinery/conveyor{ id = "cargolower" @@ -44752,7 +44207,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ouE" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 @@ -44780,7 +44235,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ouQ" = ( /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, @@ -44944,11 +44399,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron, /area/station/security/prison) -"oxV" = ( -/obj/structure/girder/reinforced, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/station/asteroid) "oys" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard/central) @@ -44975,13 +44425,6 @@ "oyR" = ( /turf/closed/mineral/random/stationside/asteroid/porus, /area/station/science/explab) -"oyX" = ( -/obj/structure/shuttle_decoration/wall_plate/armor{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/space/nearstation) "ozd" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 8 @@ -45023,7 +44466,6 @@ }, /obj/structure/table, /obj/item/folder/yellow, -/obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/exit) "oAV" = ( @@ -45060,7 +44502,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "oCe" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -45093,12 +44535,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/prison) -"oCm" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/salvage_bay) "oCt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -45339,9 +44775,6 @@ }, /turf/open/floor/iron/white, /area/station/science/lab) -"oHf" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) "oHp" = ( /obj/structure/bookcase/random/nonfiction, /turf/open/floor/wood/large, @@ -45416,12 +44849,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white, /area/station/medical/surgery/fore) -"oJD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating, -/area/station/salvage_bay) "oKe" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -45456,7 +44883,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "oLn" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/effect/turf_decal/siding/thinplating{ @@ -45501,13 +44928,13 @@ /area/station/science/research) "oMI" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "oMK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oMP" = ( /obj/machinery/firealarm/directional/south{ pixel_x = 3 @@ -45545,7 +44972,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oNp" = ( /obj/structure/sink{ pixel_y = 15 @@ -45705,9 +45132,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/meeting_room) -"oPI" = ( -/turf/open/floor/iron/grimy, -/area/station/salvage_bay) "oQf" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, @@ -45733,12 +45157,6 @@ /obj/effect/turf_decal/trimline/yellow/filled/warning, /turf/open/floor/iron, /area/station/construction/mining/aux_base) -"oQJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/misc/asteroid, -/area/station/salvage_bay) "oQO" = ( /obj/structure/safe/vault, /obj/item/clothing/head/costume/bearpelt, @@ -45748,7 +45166,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/dim/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oQU" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/open/misc/grass/jungle/station, @@ -45787,9 +45205,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/tram/left) -"oRN" = ( -/turf/open/floor/plating/aluminum, -/area/station/salvage_bay) "oRV" = ( /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/trimline/green/filled/line, @@ -45880,7 +45295,7 @@ dir = 9 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "oTc" = ( /obj/machinery/conveyor{ dir = 6; @@ -46072,7 +45487,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oWZ" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -46102,7 +45517,7 @@ id = "teledoor" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "oXz" = ( /obj/machinery/iv_drip, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -46276,7 +45691,7 @@ /obj/structure/cable, /obj/effect/spawner/random/armory/e_gun, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pbr" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/stripes/line{ @@ -46917,7 +46332,7 @@ /obj/item/folder/documents, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pnD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -46944,7 +46359,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "pnU" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -47082,7 +46497,8 @@ dir = 1 }, /obj/structure/sign/departments/security{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/machinery/light/directional/east, /turf/open/floor/iron, @@ -47155,16 +46571,6 @@ }, /turf/open/floor/wood/large, /area/station/service/library) -"pru" = ( -/obj/machinery/atmos_shield_gen/active{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "SalvageProcess" - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "prI" = ( /obj/machinery/door/airlock/research/glass{ name = "Testing Lab" @@ -47236,7 +46642,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pth" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/structure/sign/warning/secure_area/directional/north, @@ -47324,7 +46730,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "puL" = ( /obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ name = "Burn Chamber Exterior Airlock" @@ -47369,7 +46775,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pvp" = ( /obj/effect/turf_decal/trimline/yellow/filled/end{ dir = 1 @@ -47394,32 +46800,23 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "pvI" = ( -/obj/structure/sign/directions/evac{ +/obj/structure/sign/directions/upload{ dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 34 + pixel_y = -7 }, /obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/upload{ - pixel_y = 22 + dir = 4; + pixel_y = 7 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 14 }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ - dir = 1 +/obj/structure/sign/directions/evac{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) +/turf/closed/wall, +/area/station/hallway/primary/tram/left) "pvL" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/trimline/yellow/filled/corner, @@ -47514,7 +46911,8 @@ "pxf" = ( /obj/structure/closet/secure_closet/hos, /obj/structure/secure_safe/hos{ - pixel_x = 35 + pixel_x = 35; + dir = 1 }, /obj/structure/sign/poster/official/space_cops/directional/north, /turf/open/floor/carpet, @@ -47640,7 +47038,7 @@ req_access = list("security") }, /turf/open/floor/plating, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "pyG" = ( /obj/machinery/atmospherics/components/binary/tank_compressor{ dir = 8 @@ -47739,7 +47137,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pAv" = ( /obj/structure/curtain, /obj/machinery/shower/directional/north, @@ -47756,7 +47154,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/navigate_destination/vault, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "pAC" = ( /obj/effect/turf_decal/siding/thinplating/end, /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4{ @@ -47766,7 +47164,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pAD" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ dir = 1 @@ -47796,7 +47194,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white, /area/station/science/research) "pAT" = ( @@ -47811,13 +47209,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"pBn" = ( -/obj/structure/table/reinforced, -/obj/item/radio, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/red/dim/directional/north, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "pBp" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/random/entertainment/deck, @@ -47962,13 +47353,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor, /area/station/maintenance/solars/starboard/fore) -"pDU" = ( -/obj/structure/sign/semiotic/vacuum_ahead/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "pEa" = ( /obj/machinery/atmospherics/components/unary/passive_vent{ name = "killroom vent"; @@ -48018,7 +47402,7 @@ /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/science/general, /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron/white/side, /area/station/science/research) "pFm" = ( @@ -48026,7 +47410,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pFu" = ( /obj/item/experi_scanner{ pixel_x = 5 @@ -48244,7 +47628,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "pIt" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -48291,7 +47675,7 @@ "pIQ" = ( /obj/structure/cable, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pIS" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -48457,7 +47841,7 @@ "pMi" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "pMk" = ( /turf/closed/wall/r_wall, /area/station/science/research) @@ -48489,7 +47873,7 @@ /obj/effect/turf_decal/siding/thinplating/corner, /obj/structure/ladder, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pMS" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 @@ -48577,10 +47961,6 @@ }, /turf/open/floor/iron, /area/station/security/brig) -"pOe" = ( -/obj/structure/lattice, -/turf/open/misc/asteroid/airless, -/area/station/asteroid) "pOg" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -48776,7 +48156,7 @@ dir = 8 }, /turf/open/floor/plating/airless, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pRm" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -48889,7 +48269,7 @@ "pUz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pUC" = ( /obj/machinery/portable_atmospherics/pump{ name = "Lil Pump" @@ -49025,13 +48405,13 @@ /turf/open/floor/iron, /area/station/service/hydroponics/garden) "pWN" = ( -/obj/structure/plaque/static_plaque/golden/commission/tram, /obj/structure/disposalpipe/segment{ dir = 5 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/structure/plaque/static_plaque/golden/commission/tram, /turf/open/floor/iron/dark, /area/station/command/bridge) "pWO" = ( @@ -49079,7 +48459,7 @@ }, /obj/item/kirbyplants/photosynthetic, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "pXq" = ( /mob/living/simple_animal/bot/mulebot, /obj/effect/turf_decal/delivery, @@ -49100,7 +48480,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/any/command/minisat, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pXG" = ( /obj/structure/railing{ dir = 8 @@ -49178,13 +48558,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/maintenance/starboard/greater) -"pZp" = ( -/obj/machinery/conveyor{ - id = "SalvageProcess" - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plating, -/area/station/salvage_bay) "pZr" = ( /mob/living/basic/mouse/brown/tom, /turf/open/misc/asteroid, @@ -49285,7 +48658,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qaN" = ( /obj/structure/cable, /turf/open/floor/carpet, @@ -49671,9 +49044,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/tram/left) "qib" = ( @@ -49692,7 +49063,6 @@ /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/medical/coldroom) "qik" = ( -/obj/structure/sign/warning/radiation, /obj/effect/baseturf_helper/space, /turf/closed/wall/r_wall, /area/station/engineering/supermatter) @@ -49747,12 +49117,6 @@ /obj/machinery/digital_clock, /turf/closed/wall/r_wall, /area/station/command/bridge) -"qiY" = ( -/obj/machinery/conveyor{ - id = "SalvageProcess" - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "qjp" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -49878,7 +49242,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Tunnel Access Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/smooth, @@ -49953,7 +49317,7 @@ }, /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron/dark/corner, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qnd" = ( /obj/structure/rack, /obj/item/reagent_containers/cup/bottle/iron{ @@ -50141,15 +49505,12 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "qrg" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/status_display/evac/directional/east{ - pixel_y = 32 - }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "qrl" = ( @@ -50219,6 +49580,7 @@ "qsm" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/sign/poster/official/safety_report/directional/south, +/obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/station/security/checkpoint/science) "qsJ" = ( @@ -50284,10 +49646,6 @@ /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 }, -/obj/structure/sign/departments/cargo{ - pixel_x = -32; - pixel_y = 32 - }, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) "qtM" = ( @@ -50323,7 +49681,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "qug" = ( /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -50611,7 +49969,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Tunnel Access Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/disposalpipe/segment, @@ -50789,33 +50147,23 @@ /turf/open/floor/engine, /area/station/engineering/supermatter/room) "qCJ" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 34 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = 40 - }, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = 22 +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 14 }, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -7 }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ +/obj/structure/sign/directions/supply{ dir = 1 }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) +/turf/closed/wall, +/area/station/hallway/primary/tram/right) "qCP" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -51089,6 +50437,7 @@ "qIq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /obj/machinery/light/directional/west, +/obj/machinery/status_display/ai/directional/west, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "qIs" = ( @@ -51153,7 +50502,7 @@ dir = 1 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "qJs" = ( /obj/structure/table/glass, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -51491,7 +50840,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qPX" = ( /obj/structure/table, /obj/item/analyzer, @@ -51525,7 +50874,8 @@ "qQW" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/sign/flag{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/iron/cafeteria, /area/station/science/breakroom) @@ -51557,13 +50907,6 @@ /obj/structure/railing, /turf/open/floor/plating/elevatorshaft, /area/station/maintenance/tram/left) -"qRq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/docking_clamp{ - dir = 4 - }, -/turf/open/floor/plating/reinforced/airless, -/area/space/nearstation) "qRC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -51827,14 +51170,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/tram/left) -"qVJ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "SalvageProcess" - }, -/obj/machinery/light/dim/directional/south, -/turf/open/floor/plating, -/area/station/salvage_bay) "qVN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51970,14 +51305,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/floor/iron, /area/station/engineering/atmos) -"qXE" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/salvage_bay) "qXS" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -52020,16 +51347,7 @@ id = "AI" }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"qYL" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "SalvageProcess" - }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/station/salvage_bay) +/area/station/ai/satellite/chamber) "qYQ" = ( /obj/machinery/computer/message_monitor{ dir = 1 @@ -52047,9 +51365,7 @@ /obj/machinery/door/airlock/external{ name = "Escape Airlock" }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "qYV" = ( @@ -52075,12 +51391,12 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "qZj" = ( @@ -52169,7 +51485,8 @@ dir = 8 }, /obj/structure/sign/departments/restroom{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, /turf/open/floor/iron, /area/station/commons/dorms) @@ -52227,7 +51544,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rbM" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/north, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -52403,7 +51720,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/effect/landmark/navigate_destination/aiupload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "reU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/directional/south{ @@ -52415,9 +51732,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/obj/machinery/light/small/directional/south{ - dir = 4 - }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/disposal/incinerator) "rfi" = ( @@ -52658,12 +51973,6 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron, /area/station/command/bridge) -"rjb" = ( -/obj/machinery/computer/salvage_bay_controller{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "rjs" = ( /obj/machinery/medical_kiosk, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -52701,7 +52010,7 @@ dir = 4 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "rkd" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -52930,10 +52239,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor, /area/station/hallway/primary/tram/left) -"rnX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/station/asteroid) "rnY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, @@ -53068,20 +52373,13 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/atmos) -"rpl" = ( -/obj/structure/shuttle_decoration/wall_plate/armor{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/station/asteroid) "rpp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance_hatch{ name = "Tunnel Access Hatch" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor, @@ -53192,10 +52490,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/service) -"rrI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/salvage_bay) "rrL" = ( /obj/machinery/disposal/bin, /obj/structure/cable, @@ -53232,7 +52526,8 @@ /area/station/engineering/break_room) "rsH" = ( /obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wideplating{ dir = 10 @@ -53241,11 +52536,11 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rsZ" = ( /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "rti" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -53293,9 +52588,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 }, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, +/obj/structure/sign/warning/secure_area/directional/west, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/security/office) @@ -53768,7 +53061,7 @@ }, /obj/effect/turf_decal/trimline/yellow/line, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "rDT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/cafeteria, @@ -53917,12 +53210,12 @@ "rHC" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rIa" = ( /obj/machinery/porta_turret/ai, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "rIg" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -54336,7 +53629,7 @@ c_tag = "Secure - AI Core South" }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rOV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -54574,6 +53867,7 @@ /obj/item/mod/module/signlang_radio, /obj/item/mod/module/thermal_regulator, /obj/item/gun/syringe, +/obj/item/gun/syringe, /turf/open/floor/iron/dark, /area/station/medical/storage) "rSb" = ( @@ -54635,11 +53929,11 @@ /turf/open/floor/iron/dark/side{ dir = 4 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rSB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "rSC" = ( /obj/machinery/modular_computer/preset/civilian, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -54656,9 +53950,7 @@ /turf/open/floor/iron/white, /area/station/commons/vacant_room) "rTm" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, +/obj/structure/sign/warning/vacuum/external/directional/east, /obj/machinery/computer/security/labor, /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -54704,12 +53996,6 @@ }, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"rUi" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/light/red/dim/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/salvage_bay) "rUr" = ( /obj/machinery/module_duplicator, /obj/machinery/light/directional/south, @@ -54721,7 +54007,7 @@ /area/station/hallway/secondary/exit/departure_lounge) "rUR" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rUX" = ( /obj/structure/cable/multilayer/multiz, /obj/effect/turf_decal/stripes/box, @@ -54871,19 +54157,6 @@ }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) -"rXl" = ( -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/station/salvage_bay) -"rXw" = ( -/obj/structure/shuttle_decoration/wall_plate/armor{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/space/nearstation) "rXA" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -54894,13 +54167,6 @@ /obj/machinery/light/cold/directional/north, /turf/open/floor/iron/white, /area/station/science/lobby) -"rXH" = ( -/obj/machinery/conveyor{ - id = "SalvageProcess" - }, -/obj/machinery/light/small/red/directional/west, -/turf/open/floor/plating, -/area/station/salvage_bay) "rXO" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 4 @@ -54979,7 +54245,7 @@ /turf/open/floor/iron/dark/side{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "rZx" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "Gas to Filter"; @@ -55255,7 +54521,7 @@ c_tag = "Secure - AI Upload" }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "seR" = ( /turf/open/floor/glass/reinforced/tram, /area/station/hallway/primary/tram/right) @@ -55298,7 +54564,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "sfX" = ( /obj/structure/table, /obj/item/radio/intercom/prison/directional/west, @@ -55368,7 +54634,7 @@ }, /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "shF" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump{ @@ -55595,7 +54861,7 @@ "skT" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, @@ -55751,7 +55017,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "snp" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw, /obj/effect/turf_decal/trimline/yellow/arrow_ccw{ @@ -55862,16 +55128,12 @@ "spF" = ( /turf/open/floor/engine/vacuum, /area/station/engineering/atmos) -"spM" = ( -/obj/effect/spawner/random/salvage/container_or_crate_or_cargo/salvage, -/turf/open/floor/plating/aluminum, -/area/station/salvage_bay) "sqc" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/spawner/random/armory/rubbershot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "sql" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 @@ -56052,7 +55314,7 @@ name = "Maintenance Hatch" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, @@ -56334,10 +55596,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/virology) -"svJ" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/plating, -/area/station/salvage_bay) "swd" = ( /obj/structure/ladder, /obj/effect/decal/cleanable/dirt, @@ -56467,7 +55725,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, @@ -56548,7 +55806,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sAc" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/table, @@ -56685,7 +55943,7 @@ dir = 1 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "sDZ" = ( /turf/closed/wall, /area/station/maintenance/disposal/incinerator) @@ -56697,7 +55955,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sEx" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -56717,7 +55975,7 @@ }, /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sEW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -56965,13 +56223,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"sJE" = ( -/obj/effect/turf_decal/sand, -/obj/structure/chair/plastic, -/obj/machinery/light/dim/directional/west, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/salvage_bay) "sJQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -57019,7 +56270,7 @@ pixel_y = -32 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "sKC" = ( /obj/structure/chair/office/light, /obj/effect/turf_decal/trimline/blue/filled/corner{ @@ -57235,31 +56486,23 @@ /turf/open/floor/iron, /area/station/engineering/main) "sOD" = ( -/obj/structure/sign/directions/supply{ +/obj/structure/sign/directions/upload{ dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -34 + pixel_y = 7 }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -40 +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 14 }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = -22 +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -7 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/sign/directions/evac{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/tram/filled/line, -/obj/effect/turf_decal/trimline/tram/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) +/turf/closed/wall, +/area/station/hallway/primary/tram/left) "sOI" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -57356,7 +56599,7 @@ "sQk" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "sQJ" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -57380,7 +56623,7 @@ c_tag = "Secure - AI Core North" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "sRA" = ( /obj/structure/chair/sofa/corp/left, /turf/open/floor/wood/large, @@ -57396,7 +56639,7 @@ pixel_y = 20 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sRZ" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/chair{ @@ -57406,9 +56649,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/white, /area/station/science/lobby) -"sSf" = ( -/turf/closed/wall, -/area/station/salvage_bay) "sSr" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -57621,7 +56861,7 @@ /obj/machinery/holopad/secure, /obj/structure/cable, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "sVE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -57690,6 +56930,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron, /area/station/command/bridge) "sWY" = ( @@ -57753,7 +56994,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sXV" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/power/apc/auto_name/directional/south, @@ -58368,11 +57609,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/requests_console/directional/south{ - name = "Bridge Requests Console"; - pixel_y = 30; - department = "Bridge" - }, /obj/effect/mapping_helpers/requests_console/announcement, /obj/effect/mapping_helpers/requests_console/information, /obj/effect/mapping_helpers/requests_console/assistance, @@ -58382,6 +57618,10 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, +/obj/machinery/requests_console/directional/north{ + department = "Bridge"; + name = "Bridge Requests Console" + }, /turf/open/floor/iron, /area/station/command/bridge) "tjl" = ( @@ -58666,10 +57906,6 @@ /obj/item/mod/module/thermal_regulator, /turf/open/floor/iron, /area/station/security/office) -"toC" = ( -/obj/machinery/light/red/dim/directional/east, -/turf/open/misc/asteroid, -/area/station/salvage_bay) "toT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -58800,7 +58036,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "trr" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58844,7 +58080,7 @@ /obj/effect/spawner/random/maintenance/three, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "trZ" = ( /obj/effect/turf_decal/trimline/neutral/corner{ dir = 4 @@ -58879,7 +58115,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tsg" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 8 @@ -58928,13 +58164,6 @@ /obj/structure/chair, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"tsU" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating, -/area/station/salvage_bay) "tsV" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/shower/directional/east, @@ -59171,6 +58400,7 @@ dir = 4 }, /obj/machinery/light/directional/west, +/obj/machinery/status_display/evac/directional/west, /turf/open/floor/engine, /area/station/engineering/supermatter/room) "twS" = ( @@ -59263,7 +58493,7 @@ frequency = 1447 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "tyB" = ( /obj/structure/bed{ dir = 4 @@ -59285,7 +58515,7 @@ dir = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tyV" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" @@ -59434,7 +58664,7 @@ /obj/structure/reagent_dispensers/wall/peppertank/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tBa" = ( /obj/structure/table, /obj/item/raw_anomaly_core/random{ @@ -59547,7 +58777,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/carpet, /area/station/commons/vacant_room/office) "tDn" = ( @@ -59555,7 +58785,7 @@ dir = 8 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "tDz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -59824,7 +59054,7 @@ "tIi" = ( /mob/living/basic/bot/repairbot, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tIk" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -59909,7 +59139,7 @@ "tJp" = ( /obj/machinery/teleport/station, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tJz" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/structure/table, @@ -59966,7 +59196,7 @@ name = "Suit Storage" }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tKh" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 @@ -60046,7 +59276,8 @@ }, /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/structure/sign/warning/chem_diamond{ - pixel_x = 32 + pixel_x = 32; + dir = 4 }, /obj/structure/chair/office/light, /obj/effect/landmark/start/chemist, @@ -60123,7 +59354,7 @@ }, /obj/structure/cable, /turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "tNJ" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 @@ -60133,7 +59364,6 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/exit) "tNO" = ( @@ -60174,10 +59404,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"tOz" = ( -/obj/structure/sign/semiotic/storage, -/turf/closed/wall, -/area/station/salvage_bay) "tOA" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -60292,7 +59518,7 @@ "tQq" = ( /obj/machinery/recharge_station, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tQy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -60405,13 +59631,6 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) -"tSt" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/salvage_bay) "tSz" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical, @@ -60576,13 +59795,6 @@ }, /turf/open/floor/iron, /area/station/science/explab) -"tVY" = ( -/obj/machinery/light/red/dim/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "tWb" = ( /obj/machinery/camera/directional/east{ c_tag = "Civilian - Theatre Stage" @@ -60709,7 +59921,7 @@ "tXU" = ( /obj/structure/lattice, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "tXW" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/window/left/directional/east{ @@ -60834,7 +60046,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uba" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 @@ -60859,7 +60071,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ubt" = ( /obj/structure/chair/office/light{ dir = 1 @@ -61276,7 +60488,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uiV" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -61460,7 +60672,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ukE" = ( /obj/machinery/computer/station_alert{ dir = 1 @@ -61485,7 +60697,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/power/port_gen/pacman, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "ulb" = ( /obj/machinery/chem_master, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -61612,22 +60824,22 @@ /turf/open/floor/circuit/telecomms/server, /area/station/science/server) "umx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/structure/sign/directions/upload{ + pixel_y = 7 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/west{ - pixel_y = -32 +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 14 }, -/obj/structure/cable/layer1, -/obj/effect/turf_decal/trimline/yellow/arrow_cw{ - dir = 8 +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -7 }, -/obj/effect/turf_decal/trimline/yellow/arrow_ccw{ +/obj/structure/sign/directions/evac{ dir = 4 }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) +/turf/closed/wall, +/area/station/hallway/primary/tram/right) "umC" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -61693,7 +60905,8 @@ dir = 5 }, /obj/structure/sign/warning/rad_shelter{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/light/directional/east, /turf/open/floor/iron, @@ -61762,7 +60975,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "upf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61887,7 +61100,7 @@ /area/station/hallway/secondary/entry) "uqS" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "ure" = ( /obj/machinery/portable_atmospherics/pump{ name = "Lil Pump" @@ -61994,12 +61207,6 @@ }, /turf/open/floor/iron, /area/station/cargo/drone_bay) -"usw" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light/red/dim/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "usz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/event_spawn, @@ -62322,7 +61529,7 @@ freerange = 1 }, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uxM" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 @@ -62408,10 +61615,6 @@ /obj/item/pai_card, /turf/open/floor/iron/white, /area/station/science/lower) -"uzf" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/salvage_bay) "uzl" = ( /obj/structure/fluff/tram_rail/electric, /obj/structure/transport/linear/tram, @@ -62527,13 +61730,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/cargo/drone_bay) -"uAR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/salvage_bay) "uAZ" = ( /obj/effect/turf_decal/trimline/white/warning{ dir = 8 @@ -62560,7 +61756,7 @@ }, /obj/structure/cable, /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uBu" = ( /obj/item/radio/intercom/prison/directional/south, /obj/effect/turf_decal/trimline/red/filled/line, @@ -62601,31 +61797,22 @@ dir = 5 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "uCl" = ( -/obj/structure/sign/directions/supply{ +/obj/structure/sign/directions/upload{ dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 40 + pixel_y = 14 }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = 22 +/obj/structure/sign/directions/engineering{ + pixel_y = 7 }, -/obj/effect/turf_decal/trimline/tram/filled/line{ - dir = 1 +/obj/structure/sign/directions/medical{ + pixel_y = -7 }, -/obj/effect/turf_decal/trimline/tram/filled/warning{ - dir = 1 +/obj/structure/sign/directions/evac{ + dir = 4 }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/tram/center) "uCo" = ( /obj/effect/turf_decal/siding/thinplating, @@ -63162,7 +62349,7 @@ c_tag = "Secure - AI Upper Ring East" }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "uJf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door_buttons/airlock_controller{ @@ -63181,7 +62368,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "uJk" = ( /obj/structure/easel, /obj/item/canvas/nineteen_nineteen, @@ -63396,7 +62583,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uNa" = ( /obj/machinery/computer/security/mining{ dir = 4 @@ -63433,13 +62620,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating, /area/station/maintenance/central/greater) -"uNF" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating, -/area/station/salvage_bay) "uNI" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/effect/turf_decal/trimline/yellow/filled/corner{ @@ -63487,11 +62667,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/science/breakroom) -"uNU" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/sign/semiotic/airlock/directional/east, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "uOg" = ( /obj/machinery/computer/atmos_control/carbon_tank{ dir = 8 @@ -63594,7 +62769,7 @@ /obj/item/storage/lockbox/loyalty, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uQb" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/machinery/firealarm/directional/south, @@ -63616,29 +62791,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/engine_smes) -"uQB" = ( -/obj/structure/shelf, -/obj/item/binoculars{ - pixel_y = 13 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = -8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) -"uQQ" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/salvage_bay) "uQS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uRh" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 4 @@ -63651,7 +62808,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uRv" = ( /obj/structure/lattice, /turf/open/space/openspace, @@ -63687,7 +62844,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "uTm" = ( /obj/structure/window/reinforced/plasma/spawner/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, @@ -64030,10 +63187,6 @@ }, /turf/open/floor/iron, /area/station/security/office) -"uYy" = ( -/obj/structure/sign/semiotic/warning, -/turf/closed/wall/r_wall, -/area/station/salvage_bay) "uYD" = ( /obj/machinery/suit_storage_unit/captain, /obj/structure/sign/calendar/directional/north, @@ -64106,7 +63259,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "uZs" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -64296,7 +63449,7 @@ /obj/machinery/door/airlock/maintenance_hatch{ name = "Tunnel Access Hatch" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/cable, @@ -64468,16 +63621,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"vgc" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "vgl" = ( /obj/structure/railing{ dir = 8 @@ -64781,7 +63924,7 @@ /turf/open/floor/iron/dark, /area/station/service/chapel) "vkE" = ( -/obj/machinery/computer/rdconsole{ +/obj/machinery/computer/rdconsole/unlocked{ dir = 4 }, /turf/open/floor/glass/reinforced, @@ -64813,7 +63956,7 @@ "vlb" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner, /obj/machinery/camera{ - dir = 6; + dir = 4; c_tag = "Hallway - Port Tram Platform South-East" }, /obj/machinery/firealarm/directional/east, @@ -64884,11 +64027,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/prison) -"vmo" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/components/tank/air/layer4, -/turf/open/floor/plating, -/area/station/salvage_bay) "vmB" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -64988,9 +64126,6 @@ /turf/open/floor/wood/large, /area/station/service/theater) "vpa" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, /obj/effect/turf_decal/stripes/white/full, /obj/machinery/door/firedoor, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -65277,7 +64412,7 @@ "vsM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vsU" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -65288,14 +64423,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) -"vsY" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plating, -/area/station/salvage_bay) "vtb" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/white/full, @@ -65371,7 +64498,7 @@ /area/station/hallway/secondary/construction/engineering) "vvd" = ( /obj/machinery/camera{ - dir = 10; + dir = 8; c_tag = "Hallway - Starboard Tram Platform South-West" }, /obj/machinery/firealarm/directional/west, @@ -65756,14 +64883,6 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"vBY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/dim/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/sand, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plating, -/area/station/salvage_bay) "vCh" = ( /obj/machinery/light/cold/directional/south, /turf/open/openspace, @@ -65774,11 +64893,6 @@ /obj/effect/turf_decal/siding/thinplating, /turf/open/floor/iron, /area/station/service/hydroponics/garden) -"vCn" = ( -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/salvage_bay) "vCt" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -66145,7 +65259,7 @@ /turf/open/floor/iron/dark/side{ dir = 8 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vHO" = ( /obj/structure/railing/corner{ dir = 1 @@ -66184,7 +65298,7 @@ "vIv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vIC" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -66391,7 +65505,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vNe" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -66429,14 +65543,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/checkpoint/supply) -"vNz" = ( -/obj/machinery/atmos_shield_gen/active, -/obj/machinery/conveyor{ - dir = 8; - id = "SalvageProcess" - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "vNB" = ( /obj/effect/turf_decal/box, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -66490,7 +65596,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "vOE" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -66599,12 +65705,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/checkpoint/escape) -"vRf" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/salvage_bay) "vRm" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "Port to Filter" @@ -66622,7 +65722,7 @@ /turf/open/floor/iron/dark/corner{ dir = 1 }, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vRv" = ( /turf/open/floor/iron, /area/station/command/heads_quarters/ce) @@ -66800,7 +65900,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vTF" = ( /obj/structure/tank_dispenser{ pixel_x = -1 @@ -66899,7 +65999,7 @@ dir = 6 }, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "vWx" = ( /turf/closed/wall/r_wall, /area/station/cargo/miningdock/oresilo) @@ -67000,7 +66100,8 @@ /area/station/command/bridge) "vYy" = ( /obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wideplating{ dir = 6 @@ -67009,7 +66110,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "vYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -67064,7 +66165,7 @@ /area/station/hallway/secondary/service) "waj" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "wao" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -67117,7 +66218,7 @@ /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/bot, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "wbH" = ( /turf/open/floor/iron, /area/station/security/office) @@ -67150,12 +66251,12 @@ }, /obj/machinery/turretid{ name = "AI Hallway turret control"; - icon_state = "control_stun"; pixel_x = 3; - pixel_y = 28 + pixel_y = 28; + dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "wce" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -67338,7 +66439,7 @@ }, /obj/structure/cable, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "wfb" = ( /obj/structure/closet/crate/coffin, /turf/open/floor/plating, @@ -67691,7 +66792,7 @@ /obj/structure/table, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "wlo" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch" @@ -67843,7 +66944,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wpq" = ( /obj/structure/cable, /obj/machinery/light/floor, @@ -67946,7 +67047,7 @@ dir = 1 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wri" = ( /obj/structure/closet/wardrobe/mixed, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -68007,6 +67108,9 @@ /obj/item/book/manual/wiki/grenades, /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, /turf/open/floor/iron/white, /area/station/medical/pharmacy) "wsb" = ( @@ -68034,7 +67138,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wsI" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -68157,7 +67261,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wvG" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -68460,7 +67564,7 @@ c_tag = "Secure - AI Minisat Chargebay" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wzJ" = ( /obj/structure/sign/warning/electric_shock, /turf/closed/wall/r_wall, @@ -68815,13 +67919,6 @@ /obj/effect/turf_decal/siding/thinplating/dark, /turf/open/floor/iron/white, /area/station/science/research) -"wFN" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating/reinforced/airless, -/area/space/nearstation) "wFR" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/structure/sign/gym/mirrored{ @@ -69093,7 +68190,7 @@ "wLe" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "wLl" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -69117,7 +68214,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wLP" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -69260,7 +68357,7 @@ /area/station/cargo/miningdock) "wOw" = ( /turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wOx" = ( /obj/structure/kitchenspike, /obj/effect/turf_decal/weather/snow, @@ -69273,10 +68370,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/courtroom/holding) -"wOJ" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "wOU" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/disposal/bin, @@ -69351,13 +68444,6 @@ }, /turf/open/floor/iron/kitchen_coldroom, /area/station/service/kitchen/coldroom) -"wQt" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/salvage_bay) "wQN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69410,7 +68496,7 @@ dir = 6 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wRR" = ( /obj/structure/dresser, /turf/open/floor/iron/white, @@ -69462,10 +68548,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/security/prison) -"wTf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/space/nearstation) "wTi" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69645,7 +68727,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wXM" = ( /turf/open/floor/carpet, /area/station/commons/vacant_room/office) @@ -69691,7 +68773,7 @@ /obj/machinery/recharger, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "wYO" = ( /obj/machinery/rnd/production/protolathe/department/engineering, /obj/effect/turf_decal/trimline/yellow/filled/end{ @@ -69713,11 +68795,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"wZh" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/iron, -/area/station/salvage_bay) +/area/station/ai/satellite/chamber) "wZl" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/item/bikehorn/rubberducky, @@ -70016,7 +69094,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "xfd" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/effect/turf_decal/trimline/red/filled/corner{ @@ -70127,7 +69205,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xhL" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -70334,7 +69412,7 @@ }, /obj/effect/turf_decal/bot, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xlT" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 4 @@ -70454,7 +69532,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xnU" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner, /obj/effect/turf_decal/trimline/neutral/filled/corner{ @@ -70472,7 +69550,6 @@ "xog" = ( /obj/machinery/door/airlock/security/glass{ name = "Isolation Wing"; - unres_sensor = 1; unres_sides = 8 }, /obj/machinery/door/firedoor, @@ -70549,9 +69626,6 @@ /obj/machinery/door/airlock/medical/glass{ name = "Treatment Center" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, @@ -70563,6 +69637,9 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "xqO" = ( @@ -70685,7 +69762,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xsX" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -70755,7 +69832,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "xuk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, /obj/machinery/meter, @@ -70824,7 +69901,7 @@ /area/station/service/hydroponics/garden) "xvl" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xvm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/slippery, @@ -70883,7 +69960,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xwi" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -71343,18 +70420,6 @@ "xFx" = ( /turf/open/floor/iron, /area/station/commons/fitness) -"xGv" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/mineral/stacking_unit_console{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/salvage_bay) "xGw" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" @@ -71421,7 +70486,7 @@ }, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xIV" = ( /obj/structure/table, /obj/item/stock_parts/micro_laser{ @@ -71444,14 +70509,6 @@ }, /turf/open/floor/iron, /area/station/cargo/drone_bay) -"xIW" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "SalvageProcess" - }, -/obj/machinery/light/small/blacklight/directional/west, -/turf/open/floor/plating, -/area/station/salvage_bay) "xJt" = ( /obj/structure/railing/corner{ dir = 4 @@ -71482,7 +70539,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xJD" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -71583,15 +70640,6 @@ /obj/structure/closet/secure_closet/atmospherics, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"xLS" = ( -/obj/machinery/door/airlock/atmos{ - name = "Salvage Bay" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured_large, -/area/station/salvage_bay) "xMa" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -71616,7 +70664,7 @@ /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xMl" = ( /obj/machinery/vending/hydronutrients, /obj/structure/noticeboard/directional/south, @@ -71803,7 +70851,8 @@ /area/station/maintenance/tram/mid) "xPg" = ( /obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/cable, +/obj/structure/table, +/obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/exit) "xPj" = ( @@ -71889,7 +70938,7 @@ pixel_y = 2 }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xQM" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 5 @@ -71942,11 +70991,6 @@ "xRn" = ( /turf/open/floor/plating, /area/station/hallway/secondary/service) -"xRr" = ( -/obj/effect/spawner/random/structure/grille, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless, -/area/space/nearstation) "xRx" = ( /turf/closed/wall, /area/station/medical/surgery/fore) @@ -71962,7 +71006,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xRI" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 6 @@ -72204,7 +71248,7 @@ dir = 9 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) +/area/station/ai/satellite/hallway) "xWj" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/trinary/filter/flipped/layer2{ @@ -72216,7 +71260,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xWu" = ( /obj/machinery/status_display/shuttle, /turf/closed/wall, @@ -72318,7 +71362,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) +/area/station/ai/satellite/maintenance) "xZi" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -72344,7 +71388,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xZC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -72469,6 +71513,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, +/obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/station/security/checkpoint/science) "ybZ" = ( @@ -72541,10 +71586,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/virology) -"ycM" = ( -/obj/structure/lattice/catwalk, -/turf/open/misc/asteroid/airless, -/area/station/asteroid) "ycV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line, @@ -72619,12 +71660,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"yeh" = ( -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 8 - }, -/turf/open/misc/asteroid/airless, -/area/station/asteroid) "yei" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 8 @@ -72983,7 +72018,7 @@ /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "yjr" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/effect/turf_decal/siding/thinplating{ @@ -73005,16 +72040,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/department/crew_quarters/dorms) -"yjF" = ( -/obj/machinery/recycler{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "SalvageProcess" - }, -/turf/open/floor/plating, -/area/station/salvage_bay) "yjN" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 @@ -102371,7 +101396,7 @@ ldf dJM saC cIw -eNM +cIw nKQ cIw dQs @@ -104941,7 +103966,7 @@ aDm fuj lDy cyN -umx +cyN twR hKM jux @@ -121089,7 +120114,7 @@ qxm nOo myD myD -myD +glv myD myD myD @@ -146522,7 +145547,7 @@ tPE qnv tld nmY -fXf +nmY nmY pMW pMW @@ -146779,7 +145804,7 @@ tPE rhF jEu mlu -tCT +fXf kHa pMW pMW @@ -148578,7 +147603,7 @@ iyc hfy jEu mlu -tCT +fXf kHa pMW pMW @@ -148835,7 +147860,7 @@ jde kIZ aVT nmY -fXf +nmY nmY pMW pMW @@ -155783,14 +154808,14 @@ aQO aQO rxI nYq -yiM +nEu cFs nVr gbe jGG cFs -yiM nEu +pow rLP mlj yjQ @@ -158341,7 +157366,7 @@ uVo eVC qyZ tfX -htr +hGc aQO aQO aQO @@ -158353,14 +157378,14 @@ aQO aQO qhM nKo -yiM +sOD cFs nVr gbe jGG cFs -yiM -qCJ +pvI +pow vNF prs gtQ @@ -169403,15 +168428,15 @@ izU izU izU tAL -sOD -izU +mYI +gnK kkR nIU ejH euV qvf -izU -uCl +gnK +lej lRC ofT ofT @@ -171973,15 +170998,15 @@ izU izU hce aEm -gnK -izU +mpa +uCl kBG nIU ejH euV mjp -izU -eQL +dtz +lej ycx eHN ayP @@ -183024,15 +182049,15 @@ kNf whL esQ rEB -glv -bMb +oPw +eQL brm gay fXl jwH brm -bMb -oiv +qCJ +blg aHq lfQ cnV @@ -185346,7 +184371,7 @@ jwH brm idI xZQ -stt +oiv wpK lfQ ehz @@ -185595,14 +184620,14 @@ bIp evu qtF iIS -bMb +umx brm gay fXl jwH brm -bMb -pvI +umx +xZQ aHs aHt sSr @@ -187949,11 +186974,11 @@ aaa aaa aaa aaa -aVR -jiO -jiO -jiO -aVR +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -188177,7 +187202,7 @@ fZS kDH vPB qbp -qdy +geG xdF lCy xNT @@ -188189,30 +187214,30 @@ xNT xNT xNT xNT -jiO +aaa syv syv kpw lOC kpw syv -jiO -jiO -jiO -aVR aaa aaa aaa aaa aaa -jiO -aVR -hPp -kxU -oQJ -aVR -jiO -jiO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac aaa aaa aaS @@ -188251,8 +187276,8 @@ dVM hFY lSG xsW -jJv -dtz +iYD +njC jJv bcx jJv @@ -188434,7 +187459,7 @@ aHw aHE aHS qbp -qdy +geG rls twO eBd @@ -188443,34 +187468,34 @@ kro nQr aKU koy -faP -hPp -uzf -jiO -jiO +qUB +aaa +aaa +aaa +aaa syv loG xrl nKb syv -clV -azR -ema -aVR aaa aaa aaa aaa aaa -jiO -hPp -aDs -kba -idu -idu -hPp -jiO aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac aac pMW pMW @@ -188691,7 +187716,7 @@ pEx fmy dbV seY -lDn +qbp eCo iUD tNJ @@ -188700,34 +187725,34 @@ dvj dvj bLQ xPg -xLS -vCn -vCn -byD -hPp +qUB +aaa +aaa +aaa +aaa syv wzk xNI gWe syv -caA -azR -usw -sSf -jiO -aVR -jiO -jiO -jiO -aVR -aDs -aDs -aVR -hPp -aDs -hPp -jiO aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac aac pMW pMW @@ -188955,36 +187980,36 @@ nxB awi awi lco -cNt +awi oAG qUB -jiO -toC -byD -hPp +aaa +aaa +aaa +aaa syv syv syv syv syv -ncI -ife -ncI -sSf -sSf -aVR -eql -mrD -ktP -aVR -lQO -sSf -aVR -hPp -aDs -aDs -jiO -sSf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac pMW pMW pMW @@ -189215,33 +188240,33 @@ twO twO ume qUB -jiO -aVR -nhf -byD -vCn -hPp -sSf -sJE -mnQ -aar -kKT -lGi -tOz -vBY -oJD -oJD -bSn -bSn -lVf -lRV -qVJ -aVR -sSf -cFt -lQO -sSf -sSf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +pMW pMW pMW pMW @@ -189473,32 +188498,32 @@ aac aac aaa aaa -aVR -jiO -hPp -rUi -vCn -rXl -wZh -tSt -wQt -hAy -kKT -dlf -oJD -spM -oRN -oRN -spM -oRN -qXE -jBf -vsY -sSf -wOJ -uAR -uQB -sSf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +pMW +pMW pMW pMW pMW @@ -189731,31 +188756,31 @@ aac aac aaa aac -jiO -jiO -aVR -hPp -rXl -vCn -oCm -vRf -lRV -lRV -dPG -bSn -spM -spM -oRN -oRN -oRN -qXE -jBf -uNF -sSf -pBn -eFB -oPI -cFt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +pMW +pMW +pMW +pMW +pMW pMW pMW pMW @@ -189990,29 +189015,29 @@ aac aac aaa aaa -aVR -jiO -sSf -uQQ -vRf -hAy -kKT -rrI -jpZ -ope -oRN -oRN -oRN -oRN -spM -iOa -jBf -tsU -sSf -bTQ -rjb -oPI -cFt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +pMW +pMW +pMW +pMW +pMW pMW pMW pMW @@ -190249,27 +189274,27 @@ aaa aaa aaa aaa -sSf -bYJ -lRV -uNU -eRZ -dab -tOz -ldP -qiY -qiY -qiY -pZp -bZg -xGv -qVJ -sSf -sSf -cFt -cFt -cFt -sSf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +pMW +pMW +pMW +pMW +pMW pMW pMW pMW @@ -190505,23 +189530,23 @@ aaa aaa aaa aaa -aVR -aVR -sSf -vgc -sSf -sSf -nrE -sSf -hwA -jBf -aNT -aHg -jum -jum -jum -qYL -jum +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaa +aaa +aac +aac pMW pMW pMW @@ -190762,23 +189787,23 @@ pMW aaa aaa aaa -jiO -vmo -czS -mkZ -tVY -sSf -yeh -sSf -jum -qYL -jum -jum -jum -qiY -rXH -jBf -jum +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaa +aac +aac +aac +aac +aaa +aac +aac pMW pMW pMW @@ -191019,23 +190044,23 @@ pMW pMW aaa aaa -jiO -vmo -svJ -kLF -pDU -sSf +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac aac aac -jum -jBf -xIW -eFX -jum -yjF -yjF -yjF -jum +aac +pMW pMW pMW pMW @@ -191276,23 +190301,23 @@ pMW pMW aac aaa -aVR -aVR -sSf -nOv -sSf -sSf +aaa +aaa +aaa +aaa +aaa +aac aac aac -nMz -vNz -jBf -pru -jum -vNz -jBf -pru -uYy +aac +aac +aac +pMW +pMW +pMW +pMW +pMW +pMW pMW pMW pMW @@ -191536,42 +190561,42 @@ aac aaa aaa aaa -mie -mie -mie -oxV -mie -mie -eHO -eHO -eHO -jgv -nnM -nnM -nnM -mie -xRr -aRH -xRr -xRr -xRr -xRr -xRr -aRH -xRr -xRr -xRr -xRr -xRr -aRH -xRr -xRr -xRr -xRr -oHf -oHf -oHf -oHf +aaa +aaa +aaa +aac +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW pMW pMW pMW @@ -191793,46 +190818,46 @@ aac aaa aaa aaa +aaa +aaa aac -pOe -jRA -oxV -jRA -rpl -rnX -rnX -rnX -eul -rnX -rnX -rnX -rXw -eIX -eIX -eIX -rXw -wTf -rXw -eIX -eIX -eIX -rXw -wTf -rXw -eIX -eIX -eIX -rXw -wTf -wTf -wTf -oHf -wIP -wIP -wIP -wIP -wIP -cGM +aac +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW pMW pMW pMW @@ -192050,41 +191075,41 @@ aac aaa aaa aaa -pOe -pOe -pOe -fdi -mcd -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -bhQ -nbL -nbL -nbL -hCx -xRm -xRm -xRm -xRm -xRm -xRm -xRm -xRm -xRm -xRm -xRm -mky -fdi -wIP +aaa +aaa +aac +aac +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW pMW pMW pMW @@ -192307,44 +191332,44 @@ pMW aaa aaa aaa -ycM -ycM -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -wFN -nbL -qRq -nbL -wFN -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -wIP -wIP -wIP -wIP -cGM +aaa +aac +aac +aac +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW pMW pMW pMW @@ -192564,9 +191589,9 @@ pMW pMW iLP aac -cjC +iLP +pMW pMW -mcd pMW pMW pMW @@ -192823,7 +191848,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -193080,7 +192105,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -193336,8 +192361,6 @@ pMW wIP wIP wIP -wIP -mcd pMW pMW pMW @@ -193369,6 +192392,8 @@ pMW pMW pMW pMW +meb +pMW pMW pMW pMW @@ -193594,7 +192619,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -193851,7 +192876,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -194108,7 +193133,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -194364,8 +193389,8 @@ pMW wIP wIP wIP -wIP -mcd +pMW +pMW pMW pMW pMW @@ -194622,7 +193647,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -194879,7 +193904,6 @@ wIP pMW wIP pMW -mcd pMW pMW pMW @@ -194894,6 +193918,7 @@ pMW pMW pMW pMW +meb pMW pMW pMW @@ -195136,7 +194161,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -195392,8 +194417,8 @@ pMW wIP wIP wIP -wIP -mcd +pMW +pMW pMW pMW pMW @@ -195650,7 +194675,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -195907,7 +194932,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -196164,7 +195189,7 @@ wIP pMW wIP pMW -mcd +pMW pMW pMW pMW @@ -196420,8 +195445,8 @@ pMW wIP wIP wIP -wIP -mcd +pMW +pMW pMW pMW pMW @@ -196678,13 +195703,13 @@ wIP pMW wIP pMW -mcd -pMW -pMW -pMW -pMW pMW +aaa +aaa pMW +aaa +aaa +aaa pMW pMW pMW @@ -196934,15 +195959,15 @@ pMW wIP pMW wIP -pMW -mcd -pMW -pMW -pMW -pMW -pMW -pMW -pMW +aac +aaa +aac +aac +aac +aaa +aaa +aaa +aaa pMW pMW pMW @@ -197191,15 +196216,15 @@ pMW wIP pMW wIP -pMW -mcd -pMW -pMW -pMW -pMW -pMW -pMW -pMW +aac +aac +aac +aaa +aac +aaa +aaa +aaa +aaa pMW pMW pMW @@ -197448,43 +196473,43 @@ pMW wIP wIP wIP -wIP -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -mcd -wIP -wIP -wIP -wIP -cGM +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW pMW pMW pMW @@ -197705,40 +196730,40 @@ pMW wIP pMW wIP +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW pMW pMW -maw -mcd -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -mcd -wIP -wIP -wIP -wIP -wIP -mcd -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -wIP -mcd -maw -wIP pMW pMW pMW @@ -197962,45 +196987,45 @@ aac wIP pMW wIP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW pMW -cWW -aRH -cWW -oyX -wTf -oyX -cWW -cWW -cWW -oyX -wTf -oyX -cWW -cWW -cWW -oyX -wTf -oyX -cWW -cWW -cWW -oyX -wTf -oyX -cWW -cWW -cWW -oyX -wTf -wTf -wTf -oHf -wIP -wIP -wIP -wIP -wIP -cGM pMW pMW pMW @@ -198219,41 +197244,41 @@ aac wIP pMW wIP -xRr -xRr -aRH -xRr -xRr -xRr -xRr -xRr -aRH -xRr -xRr -xRr -xRr -xRr -aRH -xRr -xRr -xRr -xRr -xRr -aRH -xRr -xRr -xRr -xRr -xRr -aRH -xRr -xRr -xRr -xRr -oHf -oHf -oHf -oHf +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW +pMW pMW pMW pMW diff --git a/_maps/map_files/wawastation/wawastation.dmm b/_maps/map_files/wawastation/wawastation.dmm index 1249394f1c5c4c..2a07700a6ad262 100644 --- a/_maps/map_files/wawastation/wawastation.dmm +++ b/_maps/map_files/wawastation/wawastation.dmm @@ -64,7 +64,7 @@ "abi" = ( /obj/machinery/light/floor, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "abm" = ( /obj/structure/railing{ dir = 1 @@ -103,14 +103,14 @@ }, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aby" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/structure/cable/layer3, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "abC" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -174,8 +174,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/research) "adc" = ( @@ -190,7 +190,7 @@ dir = 4 }, /obj/structure/table/wood/fancy/orange, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 9 }, @@ -254,7 +254,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable, /turf/open/floor/plating, @@ -264,7 +264,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -326,7 +326,6 @@ /area/station/hallway/primary/central) "afp" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ dir = 10 @@ -719,7 +718,7 @@ /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "alJ" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -822,7 +821,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "anf" = ( /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, @@ -1042,7 +1041,7 @@ "aqT" = ( /mob/living/basic/bot/cleanbot, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "arl" = ( /obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, @@ -1090,6 +1089,10 @@ /obj/structure/sign/poster/random/directional/south, /turf/open/floor/iron, /area/station/cargo/warehouse) +"asd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "asl" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/engine, @@ -1206,7 +1209,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "auB" = ( /turf/open/floor/engine, /area/station/medical/chemistry) @@ -1326,9 +1329,7 @@ /area/station/science/breakroom) "awd" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/security/prison) "awf" = ( @@ -1360,7 +1361,7 @@ /obj/structure/sign/poster/official/random/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "awC" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -1492,7 +1493,7 @@ /obj/effect/turf_decal/bot_white, /obj/item/folder/documents, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "ayC" = ( /obj/machinery/light/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1581,8 +1582,6 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "azQ" = ( @@ -1611,7 +1610,7 @@ /obj/machinery/holopad, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aAl" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 @@ -1682,6 +1681,14 @@ }, /turf/open/openspace, /area/station/security/prison/shower) +"aCk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "aCp" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 @@ -1851,13 +1858,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/royalblue, /area/station/command/heads_quarters/captain/private) -"aEY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/tile, -/area/station/service/bar) "aFb" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -1875,14 +1875,6 @@ }, /turf/open/floor/carpet/orange, /area/station/service/theater) -"aFw" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/cafeteria, -/area/station/commons/locker) "aFz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -2128,7 +2120,6 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -2185,11 +2176,6 @@ /obj/machinery/vending/cigarette, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"aKd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/parquet, -/area/station/cargo/boutique) "aKg" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment{ @@ -2205,7 +2191,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "aKj" = ( /obj/machinery/computer/station_alert{ dir = 1 @@ -2230,23 +2216,21 @@ /turf/open/floor/plating, /area/station/maintenance/department/cargo) "aKJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/directions/engineering/directional/east{ - pixel_y = -8 +/obj/structure/sign/directions/command/directional/north{ + dir = 4; + pixel_y = -10 }, -/obj/structure/sign/directions/security/directional/east{ - dir = 1; - pixel_y = 8 +/obj/structure/sign/directions/engineering/directional/north{ + dir = 4; + pixel_y = 10 }, -/obj/structure/sign/directions/supply/directional/east{ - dir = 1 +/obj/structure/sign/directions/science/directional/north{ + dir = 4; + pixel_y = 0 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/security/courtroom) "aKP" = ( -/obj/structure/cable, /turf/open/floor/iron/half, /area/station/service/hydroponics/garden) "aKS" = ( @@ -2280,7 +2264,7 @@ pixel_y = 8 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "aLe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2301,7 +2285,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/red_alert_access, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "aLA" = ( /obj/machinery/door/poddoor/massdriver_chapel, /obj/effect/turf_decal/stripes/full, @@ -2359,7 +2343,7 @@ /obj/item/electronics/apc, /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aMx" = ( /obj/structure/cable, /obj/machinery/camera/autoname/motion/directional/south{ @@ -2372,7 +2356,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/random/maintenance/no_decals/three, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "aME" = ( /obj/structure/cable/multilayer/multiz, /obj/effect/turf_decal/stripes/line{ @@ -2480,8 +2464,6 @@ /area/station/command/heads_quarters/qm) "aNR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/storage) "aNV" = ( @@ -2517,7 +2499,7 @@ /area/station/security/brig/entrance) "aOQ" = ( /turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "aOY" = ( /obj/structure/chair/stool/bar/directional/north, /obj/effect/turf_decal/siding/wood, @@ -2546,7 +2528,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "aPC" = ( /obj/effect/spawner/structure/window/plasma, /turf/open/floor/engine, @@ -2567,7 +2549,6 @@ pixel_y = -8; req_access = list("xenobiology") }, -/obj/structure/cable, /obj/machinery/shower/directional/south, /obj/effect/turf_decal{ icon = 'icons/obj/mining_zones/survival_pod.dmi'; @@ -2733,7 +2714,7 @@ }, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "aSS" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/dark_green/opposingcorners, @@ -2865,10 +2846,10 @@ /area/station/service/cafeteria) "aVm" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "aVp" = ( @@ -2938,8 +2919,8 @@ "aXA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "aXD" = ( @@ -3191,6 +3172,7 @@ "bcm" = ( /obj/machinery/camera/autoname/directional/south, /obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured, /area/station/engineering/storage/tech) "bco" = ( @@ -3275,6 +3257,8 @@ dir = 8 }, /obj/item/trash/shrimp_chips, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "bej" = ( @@ -3361,7 +3345,6 @@ /area/station/maintenance/department/science) "bfD" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/chapel{ dir = 1 @@ -3460,7 +3443,7 @@ name = "Aft Solar Access" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -3473,6 +3456,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/command/bridge) +"bhG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/main) "bhL" = ( /obj/effect/turf_decal/siding/dark, /obj/machinery/door/firedoor/border_only, @@ -3533,7 +3520,7 @@ /area/station/engineering/supermatter/room) "biS" = ( /turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bjb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/kirbyplants/random/dead, @@ -3656,9 +3643,11 @@ /turf/open/floor/plating, /area/station/maintenance/department/medical) "bme" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/obj/structure/sign/warning/directional/east, +/turf/closed/mineral/random/stationside/asteroid/porus{ + mineralChance = 20 + }, +/area/station/asteroid) "bmf" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -3901,17 +3890,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/lesser) -"bqV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) "bqX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -3929,7 +3907,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "brx" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -3995,13 +3973,13 @@ /obj/item/electronics/airalarm, /obj/item/electronics/airlock, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "bsZ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/table/reinforced, /obj/item/pai_card, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "btl" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4073,10 +4051,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "buw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) @@ -4624,9 +4601,7 @@ "bDN" = ( /obj/item/stack/tile/iron/white, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white/smooth_large, /area/station/medical/chemistry/minisat) "bDX" = ( @@ -4652,7 +4627,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "bEd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ @@ -4751,7 +4726,7 @@ /area/station/commons/vacant_room/commissary) "bFS" = ( /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bGc" = ( /obj/structure/table, /obj/item/stack/package_wrap, @@ -4778,7 +4753,7 @@ /obj/item/electronics/firelock, /obj/machinery/light/cold/dim/directional/south, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "bGk" = ( /turf/closed/wall/r_wall, /area/station/medical/chemistry) @@ -4846,7 +4821,6 @@ /turf/open/floor/iron, /area/station/engineering/atmos/upper) "bGW" = ( -/obj/structure/cable, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/station/command/bridge) @@ -4876,11 +4850,15 @@ /obj/item/paper, /obj/item/pen, /obj/effect/turf_decal/stripes/box, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters"; + dir = 8 + }, /turf/open/floor/iron, /area/station/service/hydroponics) "bHc" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/medical/psychology) @@ -4903,7 +4881,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "bHj" = ( /obj/structure/chair/sofa/bench/left{ dir = 1 @@ -4925,7 +4903,7 @@ /area/station/maintenance/department/cargo) "bIe" = ( /obj/structure/table, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -3; pixel_y = 3 }, @@ -4982,7 +4960,7 @@ /area/station/maintenance/department/medical/central) "bJQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /obj/structure/cable, /turf/open/floor/iron/chapel{ @@ -5086,7 +5064,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "bNp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5100,7 +5078,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "bNz" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ @@ -5149,7 +5127,7 @@ pixel_y = 2 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bNL" = ( /turf/closed/wall, /area/station/cargo/bitrunning/den) @@ -5174,7 +5152,7 @@ "bOl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "bOr" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -5191,6 +5169,7 @@ dir = 4 }, /obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/command/corporate_showroom) "bOT" = ( @@ -5247,8 +5226,6 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "bQc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/stairs/left{ dir = 1 }, @@ -5333,7 +5310,7 @@ }, /obj/machinery/camera/autoname/directional/east, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "bSH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5422,7 +5399,7 @@ "bTO" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, /area/station/hallway/secondary/entry) @@ -5492,7 +5469,6 @@ "bUJ" = ( /obj/effect/landmark/start/shaft_miner, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/miningoffice) "bUM" = ( @@ -5535,22 +5511,13 @@ /turf/open/floor/plating, /area/station/maintenance/department/cargo) "bVA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/directions/evac/directional/east{ - dir = 8 - }, -/obj/structure/sign/directions/science/directional/east{ - dir = 1; - pixel_y = -8 - }, -/obj/structure/sign/directions/medical/directional/east{ - dir = 8; - pixel_y = 8 +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "capshut" }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/captain/private) "bVY" = ( /obj/machinery/holopad{ pixel_x = 1 @@ -5702,8 +5669,8 @@ "bYF" = ( /obj/effect/turf_decal/arrows, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "bYP" = ( @@ -5759,7 +5726,7 @@ "bZH" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /turf/open/floor/wood, /area/station/service/lawoffice) @@ -5768,7 +5735,7 @@ /mob/living/simple_animal/bot/secbot/beepsky/armsky, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "caq" = ( /obj/effect/spawner/surgery_tray/full/deployed, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -5781,6 +5748,7 @@ /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) "cax" = ( @@ -5803,9 +5771,7 @@ /turf/open/floor/iron/white, /area/station/science/lobby) "caP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "caW" = ( @@ -5837,7 +5803,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cbn" = ( /obj/machinery/conveyor{ dir = 4; @@ -5891,7 +5857,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "cca" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5925,17 +5891,11 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ccT" = ( /obj/machinery/light/directional/west, /turf/open/floor/wood/large, /area/station/cargo/boutique) -"ccZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel) "cda" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -6094,11 +6054,11 @@ /obj/machinery/power/smes{ charge = 5e+006 }, -/obj/structure/cable, /obj/machinery/light/directional/north, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "cgj" = ( @@ -6177,7 +6137,6 @@ /area/station/cargo/lobby) "chF" = ( /obj/machinery/newscaster/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /turf/open/floor/wood/large, @@ -6258,7 +6217,7 @@ icon_state = "catwalk-8" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ciV" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -6279,7 +6238,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/east, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cjp" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, @@ -6362,8 +6321,6 @@ /area/station/medical/surgery) "clG" = ( /obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/multi_tile/public/glass{ name = "Restrooms" }, @@ -6379,7 +6336,6 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos) "clM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/table, /obj/item/storage/box/hug/medical, /turf/open/floor/iron, @@ -6564,7 +6520,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "cqH" = ( /obj/structure/transit_tube, /obj/structure/lattice, @@ -6602,7 +6558,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "crg" = ( /obj/effect/turf_decal/trimline/blue/corner{ dir = 1 @@ -6751,7 +6707,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/door/firedoor, @@ -7118,22 +7074,10 @@ "cBb" = ( /turf/closed/wall, /area/station/medical/paramedic) -"cBh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "cBj" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/commons/lounge) -"cBr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "cBt" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -7285,7 +7229,6 @@ /turf/open/floor/plating, /area/station/maintenance/department/cargo) "cEy" = ( -/obj/structure/cable, /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7300,7 +7243,13 @@ /obj/structure/table/reinforced, /obj/item/book/manual/wiki/robotics_cyborgs, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) +"cEU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) "cEV" = ( /obj/machinery/light_switch/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -7364,7 +7313,6 @@ /obj/effect/turf_decal/stripes{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/dark, @@ -7423,7 +7371,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/sand/plating, @@ -7750,7 +7698,6 @@ /area/station/cargo/boutique) "cOb" = ( /obj/item/food/grown/banana, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/grass, /area/station/medical/chemistry) @@ -7847,7 +7794,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "cPQ" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 8 @@ -7981,7 +7928,8 @@ "cRM" = ( /obj/machinery/button/curtain{ id = "chapelc"; - pixel_y = 26 + pixel_y = 26; + dir = 1 }, /turf/open/floor/iron/chapel{ dir = 1 @@ -8042,7 +7990,6 @@ /turf/open/floor/wood, /area/station/service/theater) "cSy" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/white/corner{ dir = 4 }, @@ -8126,12 +8073,14 @@ /area/station/science/xenobiology) "cUk" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/lobby) "cUm" = ( /obj/effect/turf_decal/stripes/red/corner, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/dark/smooth_large, /area/station/medical/morgue) @@ -8274,7 +8223,7 @@ /obj/effect/turf_decal/bot, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "cWv" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -8331,6 +8280,12 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron/dark, /area/station/maintenance/department/engine) +"cXn" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel) "cXo" = ( /obj/structure/barricade/wooden/crude, /obj/structure/holosign/barrier/atmos, @@ -8466,7 +8421,7 @@ /obj/structure/window/spawner/directional/east, /obj/structure/window/spawner/directional/north, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "cZp" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/reinforced/airless, @@ -8496,7 +8451,7 @@ /obj/structure/cable, /obj/machinery/flasher/directional/south, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "daK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -8511,6 +8466,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "dbl" = ( @@ -8615,7 +8571,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dco" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -8670,6 +8626,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/construction/mining/aux_base) +"dcI" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "dcO" = ( /obj/machinery/vending/wardrobe/science_wardrobe, /obj/effect/turf_decal/delivery, @@ -8693,10 +8658,10 @@ "dda" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/commons/vacant_room/commissary) "ddb" = ( @@ -8730,6 +8695,11 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"deW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "deY" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/firealarm/directional/east, @@ -8744,7 +8714,7 @@ "dfd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dfk" = ( /turf/open/floor/engine, /area/station/command/heads_quarters/rd) @@ -8773,7 +8743,9 @@ dir = 8 }, /obj/machinery/light_switch/directional/south{ - pixel_x = 26 + pixel_y = -10; + dir = 4; + pixel_x = 20 }, /turf/open/floor/iron, /area/station/security/brig/entrance) @@ -8905,9 +8877,7 @@ /area/station/maintenance/port/lesser) "dhv" = ( /obj/effect/landmark/start/shaft_miner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/cargo/miningoffice) "dhN" = ( @@ -8921,6 +8891,7 @@ }, /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "dhO" = ( @@ -8933,7 +8904,6 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "dhR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/rack, /obj/item/wrench, /obj/item/knife/kitchen{ @@ -9034,8 +9004,6 @@ "dko" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/lobby) "dkq" = ( @@ -9129,7 +9097,6 @@ /turf/open/floor/iron/dark, /area/station/medical/paramedic) "dla" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/stairs/right{ dir = 1 }, @@ -9196,7 +9163,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/door/firedoor, @@ -9231,9 +9198,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/storage) "dni" = ( @@ -9452,7 +9416,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dqK" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w, @@ -9480,6 +9444,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/cargo) +"dra" = ( +/obj/structure/sign/warning/directional/west, +/turf/open/misc/asteroid, +/area/station/asteroid) "drb" = ( /obj/machinery/newscaster/directional/west, /obj/machinery/vending/wardrobe/curator_wardrobe, @@ -9622,8 +9590,6 @@ /area/station/service/janitor) "dsY" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "dtc" = ( @@ -9687,6 +9653,12 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"duf" = ( +/obj/item/stack/tile/iron/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/white, +/area/station/medical/chemistry/minisat) "dum" = ( /obj/structure/table/wood, /obj/item/clothing/head/helmet/toggleable/justice/escape{ @@ -9742,19 +9714,22 @@ /turf/open/floor/plating, /area/station/maintenance/department/medical) "dvz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, /obj/structure/sign/directions/medical/directional/east{ dir = 8; - pixel_y = 8 + pixel_y = 8; + pixel_x = 0 }, /obj/structure/sign/directions/evac/directional/east{ - pixel_y = -8 + dir = 8; + pixel_x = 0 }, -/obj/structure/sign/directions/engineering/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/obj/structure/sign/directions/science/directional/east{ + dir = 1; + pixel_y = -8; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/maintenance/port/lesser) "dvC" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/grille, @@ -9839,7 +9814,7 @@ /area/station/hallway/primary/central) "dyb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/dark/textured, /area/station/science/robotics/lab) @@ -9851,6 +9826,9 @@ /area/station/science/ordnance) "dyv" = ( /obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/lobby) "dyA" = ( @@ -10095,7 +10073,6 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "dBn" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/machinery/incident_display/bridge/directional/south, /turf/open/floor/iron, @@ -10197,7 +10174,7 @@ name = "EVA Requests Console" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "dCv" = ( /obj/structure/railing, /obj/structure/dresser, @@ -10312,7 +10289,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/structure/disposalpipe/segment, @@ -10345,18 +10322,24 @@ /obj/machinery/door/airlock/engineering{ name = "Floor Electrical Relay" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/catwalk_floor, /area/station/maintenance/central/lesser) "dGh" = ( /obj/structure/cable, /turf/open/floor/carpet/executive, /area/station/command/heads_quarters/captain/private) +"dGk" = ( +/obj/structure/sign/warning/directional/south, +/turf/closed/mineral/random/stationside/asteroid/porus{ + mineralChance = 20 + }, +/area/station/asteroid) "dGq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -10443,7 +10426,6 @@ /turf/open/floor/iron/white, /area/station/science/auxlab/firing_range) "dHk" = ( -/obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, @@ -10524,6 +10506,7 @@ /obj/structure/disposalpipe/sorting/mail/flip, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) "dIv" = ( @@ -10895,7 +10878,7 @@ /obj/effect/landmark/start/medical_doctor, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 4 }, /turf/open/floor/iron/white/textured_large, /area/station/medical/exam_room) @@ -10948,7 +10931,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "dQr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured, @@ -11037,12 +11020,12 @@ "dSl" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/central/greater) "dSn" = ( @@ -11174,7 +11157,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "dTR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/siding/white{ @@ -11206,7 +11189,7 @@ "dUl" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "dUA" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ @@ -11247,9 +11230,6 @@ /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/storage) "dVp" = ( @@ -11269,7 +11249,7 @@ dir = 8 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dVx" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 @@ -11304,7 +11284,7 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "dWl" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/turf_decal/siding/wideplating/dark, @@ -11534,7 +11514,7 @@ /area/station/engineering/atmos) "dZy" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "dZA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11593,7 +11573,8 @@ id = "theater_curtains"; name = "curtain control"; pixel_y = 32; - req_access = list("theatre") + req_access = list("theatre"); + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -11616,7 +11597,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/event_spawn, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ebz" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 @@ -11935,6 +11916,9 @@ pixel_y = 3 }, /obj/item/defibrillator/loaded, +/obj/item/defibrillator/loaded{ + pixel_y = -4 + }, /obj/structure/window/spawner/directional/east, /turf/open/floor/iron/white, /area/station/medical/storage) @@ -11999,7 +11983,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -12012,7 +11996,7 @@ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "eiJ" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 @@ -12139,6 +12123,14 @@ dir = 4 }, /area/station/service/chapel) +"ekF" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/commons/locker) "ekL" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment{ @@ -12192,11 +12184,11 @@ /area/station/engineering/atmos/upper) "ely" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/turf_decal/sand/plating, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/central/greater) "elE" = ( @@ -12254,7 +12246,7 @@ /area/station/service/kitchen) "enz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) @@ -12266,6 +12258,7 @@ /obj/effect/spawner/random/structure/chair_comfy{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/bridge) "eoo" = ( @@ -12301,7 +12294,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, @@ -12431,10 +12424,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"eqQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/science/robotics/lab) "era" = ( /obj/structure/cable, /obj/machinery/door/firedoor, @@ -12477,7 +12466,7 @@ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "esc" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -12876,7 +12865,7 @@ pixel_y = -12 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ezg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -12918,11 +12907,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/medical/morgue) -"ezP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) "eAg" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood{ @@ -12973,7 +12957,7 @@ "eAW" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "eAZ" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -13041,11 +13025,11 @@ /area/station/science/ordnance/storage) "eBK" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/command/bridge) "eBY" = ( @@ -13202,15 +13186,10 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/station/security) -"eDV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/lounge) "eEa" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -13246,7 +13225,7 @@ /obj/structure/stairs/east, /obj/structure/railing, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eEC" = ( /obj/machinery/barsign/directional/south, /obj/machinery/vending/cigarette, @@ -13382,7 +13361,6 @@ /obj/effect/turf_decal/siding/green, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/storage/art) "eGM" = ( @@ -13490,6 +13468,9 @@ /area/station/maintenance/department/science) "eIY" = ( /obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/storage) "eJi" = ( @@ -13545,7 +13526,7 @@ /obj/structure/flora/bush/flowers_pp/style_random, /obj/structure/window/spawner/directional/south, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eJS" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/air, @@ -13655,7 +13636,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "eMk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/effect/turf_decal/stripes{ @@ -13678,7 +13659,7 @@ /area/station/security) "eMD" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "eMG" = ( /obj/structure/closet/firecloset, /turf/open/floor/iron/textured, @@ -13719,7 +13700,7 @@ "eOn" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eOx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -13748,6 +13729,10 @@ /area/station/command/heads_quarters/cmo) "eOY" = ( /obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/plating, /area/station/service/hydroponics) "eOZ" = ( @@ -13814,7 +13799,7 @@ /obj/item/radio/intercom/directional/south, /obj/effect/spawner/random/armory/dragnet, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "eQY" = ( /obj/structure/cable, /turf/open/floor/iron/freezer, @@ -14041,16 +14026,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/button/door/directional/north{ - id = "triage"; - name = "triage button"; - normaldoorcontrol = 1; - pixel_x = -26 - }, -/obj/machinery/button/ticket_machine{ - pixel_x = -26; - pixel_y = 36 - }, /turf/open/floor/iron/white, /area/station/medical/exam_room) "eVA" = ( @@ -14065,7 +14040,7 @@ pixel_y = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "eVG" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/trash/hobo_squat, @@ -14079,7 +14054,6 @@ req_access = list("robotics") }, /obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/lobby) "eWB" = ( @@ -14099,7 +14073,7 @@ "eWD" = ( /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "eWJ" = ( /obj/item/radio/intercom/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -14112,7 +14086,7 @@ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "eXb" = ( /obj/machinery/door/airlock{ id_tag = "u2"; @@ -14260,7 +14234,6 @@ /obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/mannequin/skeleton, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -14376,7 +14349,7 @@ /area/station/medical/pharmacy) "faK" = ( /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "faP" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/holopad, @@ -14396,7 +14369,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ @@ -14407,8 +14379,6 @@ "fbC" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/command) @@ -14531,9 +14501,6 @@ /area/station/hallway/primary/central) "feN" = ( /obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security) "feQ" = ( @@ -14557,7 +14524,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ffk" = ( /obj/structure/chair/stool/directional/west, /turf/open/floor/wood, @@ -14634,7 +14601,7 @@ name = "Port Bow Solar Access" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -14667,7 +14634,7 @@ /obj/structure/sign/poster/official/random/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "fhH" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/machinery/door/airlock/engineering/glass{ @@ -14689,14 +14656,13 @@ "fhN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/science) "fhP" = ( /obj/structure/railing/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/catwalk_floor/iron_white, /area/station/science/lobby) @@ -14982,7 +14948,7 @@ icon_state = "catwalk-13" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fnU" = ( /obj/machinery/door/airlock/virology/glass{ name = "Virology Lab" @@ -15050,13 +15016,13 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "fpm" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue, /obj/effect/turf_decal/tile/dark_blue{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) "fpo" = ( @@ -15127,7 +15093,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "fqs" = ( /obj/structure/cable, /obj/structure/railing{ @@ -15154,11 +15120,6 @@ }, /turf/open/misc/asteroid/airless, /area/station/asteroid) -"fqF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/exam_room) "frd" = ( /obj/machinery/vending/wardrobe/hydro_wardrobe, /obj/effect/turf_decal/stripes/line{ @@ -15204,7 +15165,7 @@ /area/station/medical/morgue) "fry" = ( /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "frG" = ( /obj/structure/railing{ dir = 4 @@ -15358,7 +15319,9 @@ /turf/open/floor/iron/dark, /area/station/security/lockers) "ftR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /obj/effect/turf_decal/tile/dark_blue{ dir = 8 }, @@ -15377,13 +15340,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/central/greater) -"fun" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "fuo" = ( /obj/effect/landmark/start/geneticist, /obj/structure/chair/office{ @@ -15392,10 +15348,10 @@ /turf/open/floor/glass/reinforced, /area/station/science/genetics) "fus" = ( +/obj/machinery/holopad, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "fux" = ( @@ -15534,7 +15490,7 @@ /obj/machinery/light/small/dim/directional/north, /obj/effect/turf_decal/stripes, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "fxp" = ( /turf/closed/indestructible/riveted{ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; @@ -15577,7 +15533,7 @@ }, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "fyn" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15587,23 +15543,17 @@ /obj/machinery/door/airlock/medical{ name = "Surgery" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white/smooth_large, /area/station/medical/surgery) -"fyA" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security) "fyC" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -15611,7 +15561,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fyJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /obj/machinery/door/airlock/command/glass{ @@ -15683,7 +15633,7 @@ "fzK" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -15731,7 +15681,7 @@ "fAg" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/decal/cleanable/dirt, @@ -15751,7 +15701,6 @@ /area/station/maintenance/central/greater) "fAR" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, /obj/effect/turf_decal/tile/red, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, @@ -15961,6 +15910,8 @@ "fEa" = ( /obj/structure/railing/corner, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/corner, /area/station/command/meeting_room) "fEe" = ( @@ -15970,7 +15921,7 @@ dir = 4 }, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "fEm" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 1; @@ -16075,14 +16026,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"fFz" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/spawner/random/maintenance, -/obj/effect/spawner/random/structure/closet_empty/crate, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) "fFE" = ( /obj/effect/decal/cleanable/rubble, /turf/open/misc/asteroid, @@ -16113,7 +16056,7 @@ /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "fGo" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -16202,6 +16145,15 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"fHI" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lobby) "fHJ" = ( /obj/effect/turf_decal/siding/white{ dir = 6 @@ -16274,6 +16226,8 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "fIX" = ( @@ -16354,8 +16308,6 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "fLe" = ( @@ -16462,7 +16414,7 @@ "fNk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "fNn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt/dust, @@ -16692,7 +16644,6 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/item/radio/intercom/command/directional/east, /obj/machinery/suit_storage_unit/captain{ @@ -16816,7 +16767,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "fSk" = ( /obj/structure/chair/office{ dir = 1 @@ -16863,9 +16814,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/storage) "fSP" = ( @@ -16896,13 +16844,13 @@ name = "Cyborg Entertainment Closet"; req_access = list("something only silicons open") }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/locked, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "fTl" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -16925,6 +16873,8 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/research) "fTX" = ( @@ -17024,7 +16974,7 @@ "fVI" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, @@ -17118,7 +17068,7 @@ /obj/effect/mapping_helpers/airlock/access/any/service/general, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron/dark, @@ -17147,7 +17097,6 @@ /turf/open/floor/iron/cafeteria, /area/station/commons/locker) "fXU" = ( -/obj/structure/cable, /obj/effect/spawner/xmastree, /turf/open/floor/wood, /area/station/commons/lounge) @@ -17280,7 +17229,6 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/service/chapel) "gak" = ( @@ -17432,6 +17380,8 @@ /area/station/cargo/storage) "gcV" = ( /obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "gcZ" = ( @@ -17624,7 +17574,7 @@ /obj/item/food/grown/harebell, /obj/item/food/grown/harebell, /turf/open/floor/iron/chapel{ - dir = 1 + dir = 4 }, /area/station/service/chapel) "ghp" = ( @@ -17652,6 +17602,10 @@ desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; name = "HoochMaster Deluxe" }, +/obj/machinery/button/door/directional/west{ + name = "Bar shuttters"; + id = "bar_shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "ghU" = ( @@ -17692,7 +17646,9 @@ /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "giv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) "giy" = ( @@ -17722,13 +17678,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_white, /area/station/science/lab) -"giK" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) "gjt" = ( /obj/machinery/pdapainter/medbay, /obj/effect/turf_decal/trimline/dark_blue/filled/line{ @@ -17868,7 +17817,7 @@ uses = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "gls" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -18002,9 +17951,9 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/unres, /obj/structure/cable, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/white, /area/station/medical/exam_room) "gok" = ( @@ -18256,7 +18205,6 @@ "gsn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/miningoffice) "gsM" = ( @@ -18264,7 +18212,7 @@ dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 1 }, /turf/open/floor/iron, /area/station/engineering/lobby) @@ -18296,15 +18244,11 @@ /obj/structure/railing/corner, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gty" = ( /obj/effect/landmark/carpspawn, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) -"gtB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) "gtE" = ( /obj/machinery/door/poddoor/shutters/window/preopen{ dir = 8; @@ -18339,9 +18283,8 @@ "gub" = ( /obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "guk" = ( /obj/machinery/vending/wardrobe/gene_wardrobe, /turf/open/floor/iron/white/textured, @@ -18518,9 +18461,8 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "gwA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/storage) "gwE" = ( @@ -18566,7 +18508,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable/layer3, /turf/open/floor/iron/dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "gxy" = ( /obj/machinery/light/small/dim/directional/west, /obj/effect/decal/cleanable/blood/tracks, @@ -18642,7 +18584,8 @@ id = "theater_curtains"; name = "curtain control"; pixel_x = 32; - req_access = list("theatre") + req_access = list("theatre"); + dir = 4 }, /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -18835,7 +18778,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gBy" = ( /obj/structure/sign/warning/electric_shock/directional/south, /turf/open/floor/plating, @@ -18963,8 +18906,6 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/trunk/multiz/down{ dir = 1 }, @@ -19102,7 +19043,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/recharge_floor, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "gGm" = ( /obj/effect/spawner/random/engineering/tank, /turf/open/floor/plating, @@ -19216,7 +19157,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gHS" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -19226,7 +19167,6 @@ /turf/open/floor/iron, /area/station/security/breakroom) "gHX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/executive, /area/station/command/heads_quarters/captain/private) @@ -19255,7 +19195,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "gIw" = ( /obj/machinery/door/airlock/research/glass{ name = "Robotics Lab" @@ -19317,7 +19257,7 @@ /obj/structure/window/spawner/directional/north, /mob/living/basic/butterfly, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gJA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19326,10 +19266,10 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) "gJC" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/white{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/iron/large, /area/station/service/hydroponics/garden) "gJE" = ( @@ -19424,7 +19364,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "gLK" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -19487,7 +19427,7 @@ "gMH" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -19566,7 +19506,7 @@ /area/station/medical/pharmacy) "gNV" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "gNZ" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -19614,14 +19554,6 @@ }, /turf/open/floor/iron/white/textured, /area/station/science/genetics) -"gOG" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/tile, -/area/station/service/bar) "gOY" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance) @@ -19649,7 +19581,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "gPZ" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -19677,7 +19609,7 @@ }, /obj/machinery/holopad, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gQt" = ( /obj/machinery/door/airlock{ id_tag = "Cabin6"; @@ -19696,12 +19628,6 @@ /obj/structure/sign/warning/directional/west, /turf/closed/wall/rust, /area/station/medical/chemistry/minisat) -"gQN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) "gRp" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -19715,14 +19641,14 @@ /obj/structure/cable/layer3, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gRA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/airalarm/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "gRG" = ( /obj/effect/turf_decal/stripes, /turf/open/floor/engine, @@ -19769,8 +19695,8 @@ /turf/open/floor/holofloor/dark, /area/station/command/heads_quarters/cmo) "gSJ" = ( -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/white, /area/station/medical/chemistry/minisat) "gSY" = ( @@ -19898,6 +19824,10 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door/directional/north{ + name = "Hydroponics shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/iron, /area/station/service/hydroponics) "gUv" = ( @@ -20006,7 +19936,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "gWX" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -20081,7 +20011,6 @@ dir = 8 }, /obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) @@ -20096,7 +20025,7 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/turf_decal/siding/wood, @@ -20132,6 +20061,9 @@ /area/station/engineering/atmos) "gZe" = ( /obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron, /area/station/security/execution/transfer) "gZk" = ( @@ -20179,7 +20111,6 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science) "gZF" = ( @@ -20287,7 +20218,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -20479,7 +20409,7 @@ "hep" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -20542,7 +20472,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hfn" = ( /obj/structure/chair/office{ dir = 1 @@ -20581,7 +20511,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hfS" = ( /obj/machinery/door/airlock{ id_tag = "Cabin5"; @@ -20635,7 +20565,7 @@ /obj/machinery/door/airlock/maintenance/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/barricade/wooden, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -20743,7 +20673,6 @@ /obj/structure/chair{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/service/lawoffice) @@ -20828,7 +20757,7 @@ /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/burnt_floor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -20857,7 +20786,6 @@ /area/station/science/lobby) "hlh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20991,7 +20919,7 @@ "hna" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "hnh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -21036,6 +20964,11 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "capspace" }, +/obj/machinery/button/door/directional/north{ + id = "cap_ext"; + name = "bolt control"; + specialfunctions = 4 + }, /turf/open/floor/engine, /area/station/command/heads_quarters/captain/private) "hnJ" = ( @@ -21045,7 +20978,7 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hnL" = ( /obj/structure/tank_holder/extinguisher, /obj/machinery/light/small/dim/directional/south, @@ -21053,7 +20986,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hnY" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -21120,23 +21053,19 @@ /turf/open/floor/wood/tile, /area/station/service/bar) "hpB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/directions/security/directional/west{ - dir = 1 +/obj/structure/sign/directions/medical/directional/east{ + dir = 8; + pixel_y = 8; + pixel_x = 0 }, -/obj/structure/sign/directions/supply/directional/west{ - dir = 1; - pixel_y = 8 +/obj/structure/sign/directions/engineering/directional/east{ + pixel_x = 0 }, -/obj/structure/sign/directions/science/directional/west{ - dir = 1; - pixel_y = -8 +/obj/structure/sign/directions/evac/directional/east{ + pixel_y = -8; + pixel_x = 0 }, -/turf/open/floor/iron, +/turf/closed/wall, /area/station/hallway/primary/central) "hpT" = ( /obj/machinery/door/airlock/command{ @@ -21404,7 +21333,6 @@ dir = 4 }, /obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/service/chapel) "htN" = ( @@ -21540,7 +21468,7 @@ pixel_y = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hvT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -21550,7 +21478,7 @@ "hvV" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "hwb" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -21692,7 +21620,8 @@ }, /obj/machinery/button/flasher{ id = "executionflash"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, @@ -21702,7 +21631,7 @@ /area/station/hallway/secondary/exit/departure_lounge) "hAa" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hAd" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 @@ -21713,7 +21642,7 @@ "hAg" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/carpet/executive, /area/station/command/heads_quarters/captain/private) @@ -21756,7 +21685,7 @@ pixel_y = 10 }, /turf/open/floor/iron/chapel{ - dir = 4 + dir = 1 }, /area/station/service/chapel) "hBi" = ( @@ -21767,18 +21696,14 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/station/commons/storage/tools) -"hBD" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security) "hBF" = ( /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"hBQ" = ( +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lobby) "hBX" = ( /obj/machinery/computer/records/security, /obj/effect/turf_decal/tile/green/anticorner/contrasted{ @@ -21941,7 +21866,7 @@ /area/station/service/theater) "hED" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "hEI" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -22018,11 +21943,13 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/lobby) "hGh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/chapel{ dir = 1 @@ -22076,7 +22003,7 @@ /obj/machinery/light/small/dim/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "hHa" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -22142,7 +22069,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/west, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hHS" = ( /obj/machinery/airalarm/directional/north, /obj/structure/cable, @@ -22310,6 +22237,8 @@ /turf/open/floor/iron/white/textured_large, /area/station/science/xenobiology) "hLG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/command/bridge) @@ -22366,7 +22295,7 @@ icon_state = "catwalk-4" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hNG" = ( /obj/effect/turf_decal/siding/green, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -22378,9 +22307,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/chemistry) "hNP" = ( @@ -22504,7 +22431,7 @@ }, /obj/machinery/light/cold/dim/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "hPF" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/closet/crate/trashcart, @@ -22563,9 +22490,7 @@ /area/station/cargo/storage) "hQy" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/cargo/storage) "hQA" = ( @@ -22584,7 +22509,7 @@ /obj/structure/cable, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22721,7 +22646,6 @@ /area/station/hallway/secondary/exit/departure_lounge) "hSi" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 8 }, @@ -22793,6 +22717,8 @@ dir = 4 }, /obj/effect/mapping_helpers/mail_sorting/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security) "hTf" = ( @@ -22800,7 +22726,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "hTl" = ( /obj/machinery/computer/records/medical{ dir = 1 @@ -22846,7 +22772,7 @@ "hUm" = ( /obj/machinery/light/cold/dim/directional/south, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hUo" = ( /obj/machinery/shieldgen, /obj/effect/decal/cleanable/dirt, @@ -22982,7 +22908,7 @@ dir = 8 }, /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "hWx" = ( /obj/effect/spawner/random/structure/closet_empty/crate/with_loot, /obj/structure/broken_flooring/corner/directional/north, @@ -23132,7 +23058,7 @@ "hZM" = ( /obj/machinery/light/cold/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "hZN" = ( /obj/structure/flora/bush/sparsegrass/style_random, /obj/item/food/grown/banana, @@ -23194,7 +23120,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ibl" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -23352,7 +23278,7 @@ "idU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "idV" = ( /obj/docking_port/stationary{ dwidth = 3; @@ -23455,7 +23381,7 @@ /area/space/nearstation) "ifj" = ( /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "ifl" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -23555,6 +23481,7 @@ "igS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/wood/tile, /area/station/service/bar) "ihd" = ( @@ -23601,6 +23528,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/iron/textured, /area/station/cargo/miningoffice) "iin" = ( @@ -23697,7 +23625,7 @@ pixel_x = 3; pixel_y = 12 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = -6; pixel_y = 4 }, @@ -23738,7 +23666,7 @@ /obj/structure/transport/linear/public, /obj/machinery/holopad, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ilx" = ( /obj/machinery/smartfridge/organ, /turf/open/floor/plating, @@ -23801,7 +23729,7 @@ "imZ" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "ina" = ( /obj/effect/spawner/random/structure/steam_vent, /obj/effect/decal/cleanable/dirt/dust, @@ -23826,7 +23754,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "inz" = ( /obj/machinery/door/airlock/research{ glass = 1; @@ -23869,7 +23797,6 @@ /area/station/service/lawoffice) "iom" = ( /obj/effect/mapping_helpers/dead_body_placer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/medical/morgue) "iov" = ( @@ -23880,7 +23807,6 @@ /turf/open/floor/carpet/purple, /area/station/service/library) "iow" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue, /obj/structure/disposalpipe/junction/flip{ dir = 1 @@ -23918,7 +23844,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ipq" = ( /obj/structure/table, /obj/item/reagent_containers/condiment/saltshaker{ @@ -23977,7 +23903,7 @@ "ipR" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "ipT" = ( /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 1 @@ -23997,8 +23923,6 @@ "ipZ" = ( /obj/effect/landmark/event_spawn, /obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/station/medical/chemistry) "iqa" = ( @@ -24031,7 +23955,7 @@ /obj/item/pen, /obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iqW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24245,7 +24169,7 @@ /area/station/maintenance/department/medical/central) "iuB" = ( /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iuU" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/airalarm/directional/south, @@ -24254,7 +24178,7 @@ /obj/item/storage/toolbox/emergency, /obj/item/stack/cable_coil, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iuV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24352,7 +24276,7 @@ /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/tlv_cold_room, /turf/open/floor/iron/dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ixa" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/yellow, @@ -24362,7 +24286,7 @@ /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -24436,6 +24360,12 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"iyg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry/minisat) "iyw" = ( /obj/machinery/power/smes, /obj/structure/cable, @@ -24490,7 +24420,7 @@ "izd" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /turf/open/floor/wood/large, /area/station/cargo/boutique) @@ -24531,14 +24461,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/auxlab/firing_range) -"iAw" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) "iAE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24554,12 +24476,18 @@ /obj/machinery/computer/security/telescreen/rd/directional/south, /turf/open/floor/glass/reinforced/plasma, /area/station/command/heads_quarters/rd) +"iAQ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/white, +/area/station/medical/chemistry/minisat) "iBe" = ( /obj/structure/chair/pew/right{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel, /area/station/service/chapel) "iBg" = ( @@ -24589,7 +24517,7 @@ dir = 1 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -24739,8 +24667,6 @@ /turf/open/floor/iron/white, /area/station/medical/medbay/central) "iEK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron/chapel{ dir = 1 @@ -24751,8 +24677,6 @@ /area/station/security/prison/mess) "iEQ" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/smooth_large, /area/station/command/meeting_room) "iFb" = ( @@ -24764,7 +24688,7 @@ }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -24880,9 +24804,7 @@ /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "iGK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, /area/station/commons/lounge) "iHr" = ( @@ -24911,7 +24833,6 @@ /area/station/maintenance/solars/port) "iHG" = ( /obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "iHH" = ( @@ -24972,7 +24893,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iIq" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -25020,7 +24941,7 @@ /obj/machinery/camera/autoname/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "iIY" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -25039,6 +24960,14 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, +/obj/machinery/button/door/directional/north{ + id = "triage"; + name = "triage button"; + normaldoorcontrol = 1 + }, +/obj/machinery/button/ticket_machine{ + pixel_y = 36 + }, /turf/open/floor/iron/white, /area/station/medical/exam_room) "iJg" = ( @@ -25049,7 +24978,7 @@ }, /obj/item/ai_module/supplied/freeform, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "iJm" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/airless, @@ -25075,7 +25004,7 @@ name = "Psychology Bedroom" }, /obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25090,7 +25019,7 @@ /area/station/medical/patients_rooms/room_a) "iJG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/dark, /area/station/security/lockers) @@ -25099,7 +25028,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iJS" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -25112,7 +25041,6 @@ "iJT" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/small, /area/station/science/cytology) "iJZ" = ( @@ -25171,7 +25099,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "iLo" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/dirt/dust, @@ -25220,6 +25148,8 @@ "iMD" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "iMK" = ( @@ -25227,9 +25157,13 @@ /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) +"iMS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "iMT" = ( /obj/effect/spawner/random/trash/mess, /obj/effect/turf_decal/stripes/corner{ @@ -25391,16 +25325,12 @@ "iPH" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iPQ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) -"iPS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/corporate_showroom) +/area/station/ai/satellite/teleporter) "iQs" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -25429,7 +25359,7 @@ /turf/open/floor/iron/stairs{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iQJ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -25449,7 +25379,7 @@ /obj/structure/table/reinforced, /obj/item/newspaper, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iRs" = ( /obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25457,6 +25387,7 @@ /obj/structure/disposalpipe/junction/flip{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/security) "iRy" = ( @@ -25483,6 +25414,10 @@ /area/station/commons/fitness/recreation) "iRL" = ( /obj/structure/sink/kitchen/directional/east, +/obj/machinery/button/door/directional/west{ + id = "kitchen_counter"; + name = "Kitchen Shutters" + }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) "iRR" = ( @@ -25500,7 +25435,7 @@ /obj/effect/turf_decal/bot_white, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "iSz" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/trash, @@ -25618,7 +25553,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "iUX" = ( /obj/structure/transport/linear/public, /obj/machinery/elevator_control_panel{ @@ -25627,7 +25562,7 @@ preset_destination_names = list("2" = "Telecomms", "3" = "AI Core") }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "iVk" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -25655,7 +25590,7 @@ "iVJ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -25668,7 +25603,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iVL" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -25698,7 +25633,6 @@ /area/station/cargo/miningoffice) "iWO" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron, @@ -25743,7 +25677,7 @@ dir = 8 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "iXA" = ( /obj/machinery/door/airlock/research/glass{ name = "Chemistry Minisat" @@ -25842,20 +25776,14 @@ /turf/open/floor/iron/white/smooth_large, /area/station/science/research) "jaa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/directions/command/directional/north, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4; - pixel_y = 40 - }, -/obj/structure/sign/directions/security/directional/north{ - dir = 8; - pixel_y = 24 +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/button/door/directional/west{ + id = "maintbridge"; + name = "Shutter Control" }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/open/floor/plating, +/area/station/maintenance/department/medical/central) "jaf" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, @@ -25973,7 +25901,6 @@ dir = 1 }, /obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "jco" = ( @@ -26066,12 +25993,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) -"jea" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) "jer" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/landmark/event_spawn, @@ -26095,7 +26016,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "jeY" = ( /obj/structure/railing/corner{ dir = 1 @@ -26123,7 +26044,6 @@ /obj/effect/turf_decal/stripes{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) @@ -26173,8 +26093,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/execution/transfer) "jge" = ( @@ -26278,7 +26196,7 @@ "jir" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/misc/asteroid, @@ -26370,14 +26288,14 @@ /area/station/engineering/supermatter/room) "jjQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) "jjS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/rack, /obj/effect/spawner/random/entertainment/cigarette_pack, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) "jka" = ( @@ -26424,6 +26342,11 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "jkG" = ( @@ -26555,7 +26478,7 @@ }, /obj/machinery/firealarm/directional/east, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "jlU" = ( /obj/machinery/newscaster/directional/south, /obj/machinery/hydroponics/soil/rich, @@ -26802,7 +26725,6 @@ /obj/structure/railing{ dir = 5 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor/border_only{ dir = 4 }, @@ -26885,7 +26807,7 @@ /obj/machinery/teleport/station, /obj/machinery/light/cold/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "jqG" = ( /obj/machinery/computer/security{ dir = 1 @@ -27028,11 +26950,9 @@ /obj/structure/table/reinforced, /obj/item/analyzer, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jui" = ( /obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/chair/sofa/bench/right{ dir = 8 }, @@ -27096,9 +27016,7 @@ }, /area/station/science/robotics/lab) "jvN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/textured_large, /area/station/engineering/storage/tech) "jvO" = ( @@ -27150,6 +27068,11 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "jwK" = ( @@ -27233,7 +27156,6 @@ /area/station/security/checkpoint/supply) "jyx" = ( /obj/structure/chair/office, -/obj/structure/cable, /obj/effect/landmark/start/paramedic, /turf/open/floor/iron/dark, /area/station/medical/paramedic) @@ -27291,10 +27213,10 @@ /area/station/engineering/storage/tcomms) "jzC" = ( /obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light_switch/directional/west, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) "jzI" = ( @@ -27350,7 +27272,7 @@ "jAd" = ( /obj/machinery/teleport/hub, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "jAe" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/iron, @@ -27388,7 +27310,6 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) "jAG" = ( @@ -27417,7 +27338,7 @@ network = list("minisat") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jBh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -27722,7 +27643,7 @@ "jEY" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jFc" = ( /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, @@ -27800,10 +27721,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/office) -"jGK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/station/cargo/boutique) "jGW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ @@ -27821,13 +27738,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"jGZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) "jHn" = ( /obj/structure/railing{ dir = 8 @@ -27887,7 +27797,7 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -27922,8 +27832,6 @@ /obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor/border_only{ dir = 1 }, @@ -27933,7 +27841,6 @@ /area/station/command/meeting_room) "jIm" = ( /obj/structure/sign/poster/random/directional/south, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) "jIn" = ( @@ -28054,7 +27961,7 @@ /area/station/medical/morgue) "jKp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 1 }, /turf/open/floor/iron, /area/station/engineering/storage) @@ -28166,7 +28073,7 @@ }, /obj/machinery/camera/autoname/directional/south, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jMN" = ( /obj/machinery/camera/autoname/directional/south, /turf/open/misc/asteroid, @@ -28189,7 +28096,7 @@ "jNg" = ( /mob/living/basic/bot/repairbot, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "jNh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -28364,7 +28271,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "jQf" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -28464,7 +28371,6 @@ /obj/structure/chair/office{ name = "grimy chair" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) @@ -28596,11 +28502,13 @@ /obj/machinery/door/airlock/security/glass, /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/all/security/general, /obj/structure/disposalpipe/segment{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/office) "jUU" = ( @@ -28708,14 +28616,14 @@ /area/station/service/chapel) "jWh" = ( /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "jWj" = ( /obj/structure/cable, /obj/structure/cable/layer3, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "jWm" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -28945,11 +28853,6 @@ /obj/machinery/light/small/dim/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"kaz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) "kaJ" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /obj/structure/cable, @@ -28976,15 +28879,16 @@ /area/station/cargo/miningoffice) "kbv" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "AI Antechamber turret control"; - pixel_x = 27 + pixel_x = 27; + dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kbD" = ( /obj/machinery/newscaster/directional/south, /obj/effect/turf_decal/siding/purple, @@ -29039,7 +28943,7 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "kco" = ( /obj/effect/turf_decal/stripes/asteroid/line{ dir = 5 @@ -29050,7 +28954,6 @@ /obj/structure/table/optable, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/digital_clock/directional/south, -/obj/structure/cable, /obj/machinery/camera/autoname/directional/west{ network = list("ss13","medbay") }, @@ -29070,6 +28973,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security) "kcB" = ( @@ -29143,7 +29048,7 @@ /area/station/hallway/primary/central) "kdc" = ( /obj/effect/spawner/random/trash/graffiti, -/obj/machinery/light/small/dim/directional/east, +/obj/machinery/light/small/dim/directional/north, /turf/open/floor/plating, /area/station/maintenance/central/greater) "kde" = ( @@ -29158,6 +29063,15 @@ "kdg" = ( /turf/closed/wall, /area/station/science/research) +"kdh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/storage) "kdo" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, @@ -29227,13 +29141,17 @@ network = list("aicore") }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kdW" = ( /obj/machinery/smartfridge, /obj/effect/turf_decal/tile/green/opposingcorners{ dir = 1 }, /obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/iron, /area/station/service/hydroponics) "ked" = ( @@ -29244,7 +29162,7 @@ /obj/structure/cable/layer3, /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "keg" = ( /obj/structure/cable, /obj/machinery/light/small/directional/east, @@ -29297,6 +29215,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/lockers) "kfr" = ( @@ -29372,6 +29291,10 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"kgO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage/tech) "kgT" = ( /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/door/firedoor, @@ -29524,7 +29447,7 @@ "kjp" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /turf/open/floor/iron, /area/station/engineering/gravity_generator) @@ -29539,12 +29462,12 @@ /area/station/command/bridge) "kju" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/science) "kjx" = ( @@ -29625,12 +29548,12 @@ "kkC" = ( /obj/machinery/light/small/directional/east, /obj/structure/rack, -/obj/effect/spawner/random/armory/laser_gun, +/obj/effect/spawner/random/armory/pick_laser_loadout, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kkD" = ( /obj/machinery/smartfridge/extract, /obj/structure/sign/poster/official/random/directional/south, @@ -29654,19 +29577,13 @@ req_access = list("command") }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kkK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"kkT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/lockers) +/area/station/command/vault) "kkU" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/machinery/camera/autoname/directional/south, @@ -29986,6 +29903,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/security) "kpD" = ( @@ -30000,7 +29918,7 @@ pixel_y = 11 }, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "kpG" = ( /obj/effect/turf_decal/stripes/red/corner, /obj/effect/turf_decal/stripes/red/corner{ @@ -30104,7 +30022,7 @@ }, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "kqW" = ( /turf/open/floor/wood, /area/station/service/library) @@ -30513,7 +30431,6 @@ /obj/effect/landmark/start/station_engineer, /obj/effect/landmark/event_spawn, /obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/storage) "kyi" = ( @@ -30531,7 +30448,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "kyA" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/structure/cable, @@ -30666,7 +30583,7 @@ /obj/structure/cable/multilayer/multiz, /obj/machinery/light/small/dim/directional/west, /turf/open/floor/glass, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kBo" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -30710,7 +30627,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "kBM" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -30778,9 +30695,7 @@ dir = 4 }, /obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "kCD" = ( @@ -30865,7 +30780,7 @@ /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kEn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -31098,7 +31013,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "kIm" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -31141,12 +31056,6 @@ }, /turf/open/floor/iron/white/smooth_large, /area/station/medical/treatment_center) -"kJl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) "kJp" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ @@ -31168,7 +31077,7 @@ /area/station/maintenance/department/medical/central) "kJN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) @@ -31304,7 +31213,6 @@ dir = 1 }, /obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "kNk" = ( @@ -31357,10 +31265,12 @@ }, /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "kOl" = ( /obj/structure/railing, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/side, /area/station/command/meeting_room) "kOn" = ( @@ -31386,7 +31296,8 @@ /area/station/security/courtroom) "kOE" = ( /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -31460,6 +31371,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) "kQF" = ( @@ -31472,10 +31384,10 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, /turf/open/floor/iron/white, @@ -31707,7 +31619,7 @@ "kTx" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "kTy" = ( /obj/structure/railing, /turf/open/floor/iron/dark/side, @@ -31820,13 +31732,6 @@ }, /turf/open/floor/iron/large, /area/station/service/hydroponics/garden) -"kUW" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) "kUX" = ( /turf/closed/wall/r_wall, /area/station/engineering/atmospherics_engine) @@ -31852,7 +31757,7 @@ /area/station/cargo/miningoffice) "kWb" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "kWc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/structure/closet_maintenance, @@ -31864,6 +31769,11 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron, /area/station/science/robotics/lab) +"kWC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos/upper) "kWH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ @@ -31918,10 +31828,10 @@ /area/station/command/bridge) "kXV" = ( /obj/structure/cable, -/obj/structure/plaque/static_plaque/golden/commission/wawa, /obj/structure/disposalpipe/segment{ dir = 8 }, +/obj/structure/plaque/static_plaque/golden/commission/wawa, /turf/open/floor/iron, /area/station/hallway/primary/central) "kYc" = ( @@ -31969,12 +31879,11 @@ /area/station/medical/chemistry/minisat) "kYu" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "kYB" = ( /obj/effect/turf_decal/siding/white{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 8 @@ -32007,6 +31916,11 @@ }, /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "kYZ" = ( @@ -32018,12 +31932,6 @@ /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/central) -"kZg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/dark_blue/opposingcorners, -/turf/open/floor/iron, -/area/station/command/bridge) "kZj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32044,8 +31952,6 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/execution/transfer) "kZw" = ( @@ -32075,6 +31981,10 @@ req_access = list("hydroponics") }, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/iron, /area/station/service/hydroponics) "lac" = ( @@ -32119,7 +32029,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "lar" = ( /obj/structure/table/reinforced/rglass, /obj/effect/landmark/start/lawyer, @@ -32178,7 +32088,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "lbw" = ( /obj/structure/closet/l3closet, /obj/effect/decal/cleanable/dirt/dust, @@ -32276,7 +32186,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -32387,10 +32297,7 @@ /turf/open/floor/iron/showroomfloor, /area/station/maintenance/department/engine) "lfx" = ( -/obj/structure/cable, /obj/machinery/light/dim/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/research) "lfy" = ( @@ -32535,7 +32442,7 @@ "lib" = ( /obj/machinery/light/directional/west, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "lil" = ( /obj/machinery/atmospherics/components/binary/valve, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32581,7 +32488,6 @@ /obj/effect/decal/cleanable/glass, /obj/item/stack/rods/two, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) @@ -32708,7 +32614,7 @@ /obj/structure/transport/linear/public, /obj/machinery/porta_turret/ai, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lmt" = ( /obj/structure/cable, /obj/effect/mapping_helpers/burnt_floor, @@ -32727,7 +32633,6 @@ /obj/effect/turf_decal/bot_white, /obj/effect/spawner/random/maintenance, /obj/effect/spawner/random/structure/closet_empty/crate, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/storage) "lmU" = ( @@ -32737,7 +32642,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) "lno" = ( @@ -32772,7 +32676,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/item/clothing/head/costume/cardborg, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "lnG" = ( /obj/structure/bed, /obj/machinery/airalarm/directional/north, @@ -32792,7 +32696,7 @@ /obj/item/stack/sheet/glass/fifty, /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "loa" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -32801,10 +32705,10 @@ /area/station/service/theater) "log" = ( /obj/effect/decal/cleanable/blood/oil, -/obj/machinery/light/small/directional/west, /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/disposal) "loh" = ( @@ -32834,7 +32738,7 @@ /obj/structure/rack, /obj/item/toy/figure/borg, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "loC" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel's Quarters" @@ -32947,6 +32851,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "lqy" = ( @@ -32962,17 +32868,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) +"lqM" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) "lqR" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/cargo/drone_bay) -"lrc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/stairs/right{ - dir = 1 - }, -/area/station/command/bridge) "lrk" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance, @@ -32999,6 +32908,7 @@ /obj/effect/turf_decal/siding/red{ dir = 10 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, /area/station/science/robotics/lab) "lrV" = ( @@ -33169,7 +33079,6 @@ /area/station/engineering/atmos/project) "lvg" = ( /obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "lvj" = ( @@ -33234,7 +33143,7 @@ /obj/structure/railing, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lwu" = ( /turf/open/floor/carpet/red, /area/station/command/heads_quarters/qm) @@ -33279,11 +33188,11 @@ /obj/machinery/power/terminal{ dir = 8 }, -/obj/structure/cable, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 }, /obj/machinery/power/port_gen/pacman, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "lwI" = ( @@ -33354,6 +33263,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/textured, /area/station/construction/mining/aux_base) +"lxX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) "lyr" = ( /obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/tile/blue/fourcorners, @@ -33434,6 +33352,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "lzs" = ( @@ -33478,6 +33397,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "lAc" = ( @@ -33537,8 +33458,6 @@ /obj/structure/railing/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/corner{ dir = 4 }, @@ -33647,7 +33566,6 @@ "lCU" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/machinery/duct, /turf/open/floor/iron/freezer, @@ -33680,7 +33598,6 @@ }, /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/textured, /area/station/medical/pharmacy) "lDn" = ( @@ -33731,7 +33648,7 @@ /area/station/hallway/secondary/entry) "lDZ" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_smooth, @@ -33744,7 +33661,7 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lEu" = ( /obj/structure/railing/corner{ dir = 4 @@ -33776,8 +33693,8 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "lES" = ( @@ -33807,7 +33724,6 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/central) "lFG" = ( @@ -34038,7 +33954,7 @@ /obj/effect/mapping_helpers/mob_buckler, /obj/machinery/light/small/dim/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "lJw" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -34055,7 +33971,6 @@ "lJT" = ( /obj/machinery/photocopier/prebuilt, /obj/machinery/light_switch/directional/east, -/obj/structure/cable, /obj/machinery/firealarm/directional/south, /turf/open/floor/carpet/black, /area/station/command/heads_quarters/hos) @@ -34093,7 +34008,7 @@ dir = 1 }, /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lKN" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/stripes/white/line{ @@ -34268,7 +34183,7 @@ /obj/structure/cable, /obj/machinery/door/firedoor, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "lNJ" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, @@ -34333,14 +34248,14 @@ dir = 1 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "lPj" = ( /obj/machinery/firealarm/directional/north, /obj/structure/rack, /obj/item/storage/toolbox/emergency, /obj/effect/turf_decal/stripes, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "lPn" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -34363,7 +34278,9 @@ /turf/open/floor/engine, /area/station/command/corporate_dock) "lPz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron/dark, /area/station/command/bridge) @@ -34388,7 +34305,7 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/power_store/cell/high, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "lQl" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/hollow/reinforced/end{ @@ -34455,14 +34372,14 @@ "lRk" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/open/floor/iron/dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lRr" = ( /obj/machinery/door/airlock/maintenance/glass, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) "lRJ" = ( @@ -34557,13 +34474,13 @@ /turf/open/floor/iron, /area/station/service/janitor) "lSI" = ( -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 6 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/white, /area/station/medical/chemistry/minisat) "lSM" = ( @@ -34665,6 +34582,12 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron/dark, /area/station/security/prison/safe) +"lUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) "lVj" = ( /obj/effect/turf_decal/loading_area/white{ dir = 4 @@ -34757,7 +34680,7 @@ "lWW" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "lXb" = ( /obj/machinery/light/warm/directional/east, /obj/effect/turf_decal/siding/wood{ @@ -34772,7 +34695,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "lXi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34916,7 +34839,7 @@ /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "lYR" = ( /obj/machinery/flasher/portable, /obj/effect/turf_decal/tile/blue/half/contrasted{ @@ -35043,7 +34966,7 @@ /area/station/science/xenobiology) "mbL" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "mbM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -35077,6 +35000,9 @@ "mcw" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) "mcA" = ( @@ -35145,7 +35071,7 @@ /obj/item/electronics/airlock, /obj/item/electronics/airlock, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "meL" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -35158,9 +35084,6 @@ /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/storage) "meQ" = ( @@ -35246,7 +35169,7 @@ "mgV" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, @@ -35336,6 +35259,12 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"mic" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/station/service/bar) "mio" = ( /obj/machinery/computer/station_alert, /turf/open/floor/iron, @@ -35406,16 +35335,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/main) +"mjj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/medical/chemistry) "mjq" = ( /obj/structure/cable/layer3, /obj/machinery/camera/autoname/directional/north{ network = list("aicore") }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mju" = ( /obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) "mjx" = ( @@ -35423,7 +35355,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, @@ -35453,7 +35385,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -35470,9 +35402,9 @@ /area/station/engineering/atmos) "mkc" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) "mks" = ( @@ -35501,7 +35433,7 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/security/hos, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/carpet/red, @@ -35608,7 +35540,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "mmh" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/engineering) @@ -35821,7 +35753,7 @@ "mpG" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/plating, @@ -35831,7 +35763,6 @@ dir = 1 }, /obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) "mpP" = ( @@ -35872,7 +35803,7 @@ /obj/effect/spawner/random/armory/bulletproof_armor, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mqE" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 10 @@ -35884,14 +35815,18 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "mra" = ( /obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_y = 24 + pixel_y = 24; + dir = 1 }, /obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_y = 40 + pixel_y = 40; + dir = 1 }, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -36070,6 +36005,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/firealarm/directional/west, +/obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "mua" = ( @@ -36082,6 +36018,8 @@ dir = 4 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel, /area/station/service/chapel) "mut" = ( @@ -36229,7 +36167,6 @@ /area/station/commons/fitness/recreation) "mwc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/firealarm/directional/east, /turf/open/floor/carpet/red, /area/station/command/heads_quarters/qm) @@ -36238,7 +36175,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "mwo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/herringbone, @@ -36423,8 +36360,6 @@ /area/station/medical/pharmacy) "mAd" = ( /obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/office) "mAi" = ( @@ -36468,7 +36403,6 @@ /obj/effect/turf_decal/box/corners{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/firealarm/directional/south, /obj/machinery/camera/autoname/directional/south, @@ -36539,7 +36473,7 @@ /area/station/engineering/lobby) "mBY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /turf/open/floor/carpet/red, /area/station/command/heads_quarters/qm) @@ -36572,7 +36506,7 @@ "mCt" = ( /obj/machinery/light/cold/dim/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mCv" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -36650,7 +36584,7 @@ pixel_y = -29 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "mDT" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -36754,7 +36688,8 @@ dir = 1 }, /obj/structure/sign/painting/library{ - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood/tile, /area/station/service/bar) @@ -36872,7 +36807,6 @@ "mId" = ( /obj/structure/urinal/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) @@ -36881,7 +36815,7 @@ /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mIk" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/cobweb, @@ -36897,6 +36831,11 @@ }, /turf/open/floor/wood/large, /area/station/cargo/boutique) +"mIC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/engineering/lobby) "mIH" = ( /obj/structure/lattice, /obj/effect/turf_decal/stripes/asteroid/line{ @@ -36913,9 +36852,6 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/department/engine) "mJb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron, /area/station/engineering/lobby) @@ -36957,8 +36893,6 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/lobby) "mJL" = ( @@ -37104,7 +37038,7 @@ dir = 5 }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "mLH" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/delivery, @@ -37149,7 +37083,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "mMC" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37240,7 +37174,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/door/firedoor, @@ -37259,7 +37193,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "mOI" = ( /obj/machinery/button/door/directional/south{ id = "warehouse" @@ -37342,7 +37276,7 @@ /area/station/service/chapel) "mQE" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "mQM" = ( /obj/structure/cable, /turf/open/floor/iron/dark/textured_half, @@ -37999,7 +37933,7 @@ /obj/structure/window/spawner/directional/north, /mob/living/basic/butterfly, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nck" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 4 @@ -38054,6 +37988,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/wood, /area/station/commons/lounge) "ncZ" = ( @@ -38075,7 +38010,7 @@ /obj/structure/window/spawner/directional/west, /obj/structure/window/spawner/directional/south, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "ndr" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -38201,7 +38136,7 @@ "nes" = ( /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "net" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -38225,7 +38160,7 @@ }, /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, @@ -38350,6 +38285,10 @@ /obj/machinery/atmospherics/components/binary/valve/digital/on{ dir = 4 }, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "engine" + }, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, /turf/open/floor/engine, /area/station/engineering/supermatter) "ngp" = ( @@ -38421,7 +38360,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/wood/tile, /area/station/command/corporate_showroom) @@ -38432,8 +38371,8 @@ /obj/effect/turf_decal/stripes/red/line{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/medical/morgue) "niQ" = ( @@ -38527,7 +38466,7 @@ /area/station/maintenance/department/science) "nkf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /turf/open/floor/iron/white/smooth_large, /area/station/medical/exam_room) @@ -38726,7 +38665,7 @@ /obj/structure/cable/multilayer/multiz, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "nod" = ( /obj/machinery/button/elevator/directional/east{ id = "cargo" @@ -38747,11 +38686,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/iron, /area/station/maintenance/department/medical/central) -"noi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) "nor" = ( /obj/machinery/door/airlock/command{ name = "Head of Security's Office" @@ -38814,8 +38748,9 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, +/obj/structure/sign/warning/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "npw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -38824,13 +38759,13 @@ /area/station/medical/treatment_center) "npH" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "npL" = ( @@ -38849,13 +38784,13 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nqg" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -38979,6 +38914,8 @@ "ntS" = ( /obj/structure/cable, /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) "nun" = ( @@ -39017,6 +38954,12 @@ }, /turf/open/floor/iron, /area/station/cargo/sorting) +"nuH" = ( +/obj/structure/sign/warning/directional/west, +/turf/closed/mineral/random/stationside/asteroid/porus{ + mineralChance = 20 + }, +/area/station/asteroid) "nuM" = ( /obj/machinery/door/airlock/public/glass{ name = "Courtroom" @@ -39228,7 +39171,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "nzi" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 8 @@ -39242,11 +39185,6 @@ "nzk" = ( /turf/closed/wall/r_wall, /area/station/maintenance/central/greater) -"nzn" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/openspace, -/area/station/science/lobby) "nzw" = ( /obj/machinery/computer/slot_machine, /obj/effect/turf_decal/sand/plating, @@ -39297,7 +39235,7 @@ /obj/structure/cable, /obj/effect/mapping_helpers/apc/cell_5k, /turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "nAb" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/station/maintenance/department/cargo) @@ -39308,8 +39246,6 @@ /area/station/maintenance/department/bridge) "nAi" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/rack, /obj/effect/spawner/random/techstorage/custom_shuttle, /turf/open/floor/iron/textured_large, @@ -39343,14 +39279,11 @@ }, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) -"nAx" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) "nAG" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/locker) "nAR" = ( @@ -39379,15 +39312,6 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac/directional/south, -/obj/structure/sign/directions/medical/directional/south{ - dir = 8; - pixel_y = -24 - }, -/obj/structure/sign/directions/science/directional/south{ - dir = 4; - pixel_y = -40 - }, /turf/open/floor/iron, /area/station/hallway/primary/central) "nBV" = ( @@ -39422,7 +39346,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "nCm" = ( /turf/open/openspace/xenobio, /area/station/science/xenobiology) @@ -39633,6 +39557,8 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/tile, /area/station/service/bar) "nHw" = ( @@ -39841,11 +39767,13 @@ /obj/effect/spawner/random/decoration/showcase, /obj/structure/sign/picture_frame/showroom/two{ pixel_x = 8; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/structure/sign/picture_frame/showroom/one{ pixel_x = -8; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -39861,7 +39789,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "nKx" = ( /obj/machinery/light/dim/directional/south, /turf/open/floor/glass, @@ -39912,7 +39840,6 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) "nLg" = ( @@ -39933,8 +39860,6 @@ dir = 1 }, /obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "nLz" = ( @@ -39955,6 +39880,7 @@ /obj/effect/turf_decal/tile/red{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "nLT" = ( @@ -40122,7 +40048,9 @@ /turf/open/floor/iron/dark, /area/station/medical/paramedic) "nOZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/iron/dark/textured, /area/station/science/robotics/lab) "nPf" = ( @@ -40132,7 +40060,6 @@ /turf/open/floor/engine, /area/station/engineering/atmospherics_engine) "nPm" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue, /turf/open/floor/iron, /area/station/command/bridge) @@ -40152,7 +40079,9 @@ /obj/effect/turf_decal/siding/dark_blue{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) "nPV" = ( @@ -40244,22 +40173,14 @@ /turf/open/floor/iron/large, /area/station/service/hydroponics/garden) "nSn" = ( -/obj/structure/cable, /obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/siding/wood, /obj/effect/mapping_helpers/broken_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "nSC" = ( /turf/closed/wall, /area/station/security/prison/shower) -"nSF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/medical/chemistry/minisat) "nSH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -40374,8 +40295,6 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/xenobiology) "nVm" = ( @@ -40552,7 +40471,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "nZt" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -40716,7 +40635,7 @@ c_tag = "Security Armory - Lethals" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "ocm" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -40732,10 +40651,10 @@ /turf/open/floor/iron/white/textured_large, /area/station/science/research) "ocB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/lobby) "ocF" = ( @@ -40751,10 +40670,7 @@ /turf/open/floor/iron/grimy, /area/station/maintenance/central/greater) "ocV" = ( -/obj/structure/cable, /obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/research) "odg" = ( @@ -40840,22 +40756,22 @@ /turf/open/floor/iron, /area/station/cargo/drone_bay) "oez" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/directions/science/directional/north{ - dir = 4 +/obj/structure/sign/directions/supply/directional/west{ + dir = 1; + pixel_y = 8; + pixel_x = 0 }, -/obj/structure/sign/directions/engineering/directional/north{ - dir = 4; - pixel_y = 40 +/obj/structure/sign/directions/security/directional/west{ + dir = 1; + pixel_x = 0 }, -/obj/structure/sign/directions/command/directional/north{ - dir = 4; - pixel_y = 24 +/obj/structure/sign/directions/science/directional/west{ + dir = 1; + pixel_y = -8; + pixel_x = 0 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/medical/pharmacy) "oeL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40914,7 +40830,7 @@ "ogb" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "ogH" = ( /obj/machinery/computer/atmos_alert/station_only, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ @@ -41098,7 +41014,7 @@ /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "okm" = ( /turf/open/floor/engine/hull/reinforced, /area/station/asteroid) @@ -41116,7 +41032,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "okL" = ( /obj/structure/railing{ dir = 8 @@ -41240,7 +41156,7 @@ /obj/structure/transit_tube/station/dispenser/reverse, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "onm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/textured_half{ @@ -41312,6 +41228,8 @@ codes_txt = "patrol;next_patrol=P1-Central-Primary"; location = "P15-Central-Primary" }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/central) "opN" = ( @@ -41337,6 +41255,11 @@ /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "oqj" = ( @@ -41369,13 +41292,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/service/hydroponics) -"oqt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) "oqz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41510,12 +41426,12 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/lobby) "osK" = ( @@ -41524,7 +41440,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "osX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -41563,14 +41479,14 @@ id_tag = "r2"; name = "Room B" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, /turf/open/floor/iron/white, /area/station/medical/patients_rooms/room_b) "ouk" = ( @@ -41636,7 +41552,8 @@ /obj/machinery/button/curtain{ id = "court"; pixel_x = -24; - pixel_y = -8 + pixel_y = -8; + dir = 8 }, /turf/open/floor/iron/dark, /area/station/security/courtroom) @@ -41711,7 +41628,6 @@ }, /obj/structure/sign/warning/radiation/rad_area/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) "oxe" = ( @@ -41754,12 +41670,14 @@ }, /obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/admin/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/smooth_large, /area/station/command/meeting_room) "oxU" = ( @@ -41784,7 +41702,7 @@ /obj/structure/window/spawner/directional/south, /mob/living/basic/butterfly, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "oyP" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -41806,7 +41724,7 @@ dir = 4 }, /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "ozx" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -41823,6 +41741,7 @@ "ozF" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) "ozU" = ( @@ -41922,12 +41841,12 @@ /turf/open/floor/grass, /area/station/science/genetics) "oAY" = ( -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "oBe" = ( @@ -41988,6 +41907,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "oBP" = ( @@ -42047,11 +41967,19 @@ /obj/machinery/meter, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"oDw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry/minisat) "oDC" = ( /obj/effect/turf_decal/trimline/blue/filled/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/storage) "oDH" = ( @@ -42094,6 +42022,9 @@ color = "#52B4E9" }, /obj/effect/turf_decal/tile/blue/full, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/smooth_large, /area/station/medical/storage) "oDZ" = ( @@ -42102,7 +42033,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -42128,6 +42059,8 @@ /obj/structure/sink/directional/west, /obj/structure/mirror/directional/east, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) "oEB" = ( @@ -42184,13 +42117,14 @@ /area/station/construction/mining/aux_base) "oFn" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "oFu" = ( @@ -42203,11 +42137,10 @@ name = "Cell 3 locker" }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/east{ - id = "Cell 3"; - pixel_y = 26 - }, /obj/structure/cable, +/obj/machinery/flasher/directional/north{ + id = "Cell 3" + }, /turf/open/floor/iron, /area/station/security/brig) "oFK" = ( @@ -42221,7 +42154,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "oGk" = ( /obj/effect/turf_decal/siding/purple, /obj/structure/disposalpipe/segment{ @@ -42473,7 +42406,7 @@ pixel_y = 8 }, /turf/open/floor/iron/chapel{ - dir = 1 + dir = 4 }, /area/station/service/chapel) "oJU" = ( @@ -42491,7 +42424,7 @@ pixel_y = 2 }, /turf/open/floor/glass/reinforced/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oKc" = ( /obj/machinery/door/airlock{ id_tag = "u5"; @@ -42614,6 +42547,7 @@ /area/station/hallway/primary/fore) "oMi" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "oMk" = ( @@ -42673,7 +42607,6 @@ req_access = list("ai_upload") }, /obj/machinery/turretid{ - icon_state = "control_stun"; name = "AI Chamber turret control"; pixel_x = 3; pixel_y = -23 @@ -42688,7 +42621,7 @@ }, /obj/structure/cable, /turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oOb" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -42714,7 +42647,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/floor, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "oOF" = ( /obj/item/surgery_tray/deployed, /turf/open/floor/iron, @@ -42754,7 +42687,6 @@ /turf/closed/wall/r_wall, /area/station/security/prison/garden) "oPl" = ( -/obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue{ dir = 1 }, @@ -42911,11 +42843,11 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/exam_room) "oRD" = ( @@ -42967,7 +42899,6 @@ "oSd" = ( /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /mob/living/carbon/human/species/monkey/punpun, /turf/open/floor/iron/dark, /area/station/service/bar) @@ -43033,7 +42964,7 @@ /obj/structure/cable, /obj/effect/landmark/firealarm_sanity, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "oTv" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -43062,8 +42993,6 @@ /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/purple/half/contrasted, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/science/lobby) "oUd" = ( @@ -43179,7 +43108,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "oVS" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/purple, @@ -43206,11 +43135,13 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/tile, /area/station/service/bar) "oWg" = ( /obj/machinery/door/airlock/maintenance/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/science/lobby) "oWr" = ( @@ -43236,13 +43167,13 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "oWE" = ( /obj/structure/closet/radiation{ anchored = 1 @@ -43312,7 +43243,7 @@ "oXz" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/white, /area/station/science/lobby) @@ -43371,7 +43302,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "oZb" = ( /obj/machinery/light/dim/directional/south, /obj/structure/disposalpipe/segment{ @@ -43394,7 +43325,7 @@ /obj/item/clothing/head/helmet/space/orange, /obj/item/tank/internals/oxygen, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "oZp" = ( /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark/telecomms, @@ -43414,7 +43345,7 @@ "oZK" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -43469,6 +43400,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) "pau" = ( @@ -43484,7 +43416,7 @@ }, /obj/item/storage/toolbox/mechanical, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "paS" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -43578,6 +43510,11 @@ /area/station/engineering/main) "pco" = ( /obj/machinery/biogenerator, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters"; + dir = 8 + }, /turf/closed/wall, /area/station/service/hydroponics) "pcN" = ( @@ -43598,14 +43535,14 @@ /area/station/maintenance/department/bridge) "pdg" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /turf/open/floor/iron/large, /area/station/hallway/secondary/exit/departure_lounge) "pdo" = ( /obj/structure/cable/multilayer/multiz, /turf/open/floor/glass, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "pdp" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/tile, @@ -43654,6 +43591,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/smooth_edge{ dir = 1 }, @@ -43716,7 +43656,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "pgm" = ( /obj/machinery/button/door/directional/east{ id = "Secure Storage"; @@ -43785,7 +43725,7 @@ }, /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "phi" = ( /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43811,7 +43751,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "phJ" = ( /obj/structure/closet/secure_closet{ name = "contraband locker"; @@ -43823,7 +43763,7 @@ dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "phO" = ( /obj/machinery/vending/wardrobe/chef_wardrobe, /turf/open/floor/iron/kitchen, @@ -44033,7 +43973,7 @@ /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/recharge_floor, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "pld" = ( /obj/effect/turf_decal/siding/purple{ dir = 10 @@ -44106,7 +44046,7 @@ name = "Chemistry Minisat" }, /obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/landmark/navigate_destination/chemfactory, @@ -44142,16 +44082,22 @@ "pnQ" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) "pnS" = ( /turf/closed/mineral/random/stationside/asteroid, /area/station/asteroid) +"poe" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "pof" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/firealarm/directional/north, @@ -44159,7 +44105,7 @@ /area/station/science/lobby) "pog" = ( /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "poi" = ( /turf/closed/wall, /area/station/maintenance/department/cargo) @@ -44176,6 +44122,7 @@ dir = 8 }, /obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/command/corporate_showroom) "pos" = ( @@ -44297,7 +44244,7 @@ "pqd" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pql" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden, /obj/effect/mapping_helpers/airlock/locked, @@ -44365,14 +44312,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "prz" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "prB" = ( /obj/effect/landmark/firealarm_sanity, /turf/open/openspace, @@ -44433,8 +44380,8 @@ /area/station/science/lobby) "pso" = ( /obj/machinery/door/airlock/maintenance/glass, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) "psy" = ( @@ -44524,7 +44471,6 @@ desc = "A memorial wall for pinning mementos upon."; name = "memorial board" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) "ptX" = ( @@ -44581,7 +44527,7 @@ icon_state = "catwalk-3" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "puQ" = ( /obj/effect/baseturf_helper/reinforced_plating/ceiling, /turf/open/floor/engine/vacuum, @@ -44788,7 +44734,7 @@ /area/station/maintenance/department/medical/central) "pya" = ( /turf/open/floor/glass/reinforced/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pyi" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -44859,10 +44805,8 @@ /obj/structure/table/reinforced, /obj/item/circuitboard/machine/cyborgrecharger, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pyK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/department/engine) "pyO" = ( @@ -44882,7 +44826,7 @@ "pzw" = ( /obj/machinery/door/airlock/maintenance/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/station/hallway/secondary/exit/departure_lounge) @@ -44987,7 +44931,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/turf_decal/siding/wood{ @@ -45085,7 +45029,6 @@ }, /area/station/hallway/secondary/exit/departure_lounge) "pCK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/smooth_edge{ dir = 4 @@ -45382,7 +45325,7 @@ "pHA" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "pHP" = ( /obj/effect/decal/cleanable/glass, /obj/effect/decal/cleanable/dirt, @@ -45436,7 +45379,7 @@ "pIN" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "pIV" = ( /turf/open/floor/engine/plasma, /area/station/engineering/atmos) @@ -45453,11 +45396,14 @@ /turf/open/floor/plating, /area/station/cargo/storage) "pJk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, /turf/open/floor/iron/white/smooth_large, /area/station/medical/storage) +"pJp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/engineering/atmos) "pJt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45490,7 +45436,7 @@ "pJN" = ( /obj/effect/turf_decal/tile/purple/opposingcorners, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/white, /area/station/science/lobby) @@ -45604,9 +45550,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white/smooth_large, /area/station/medical/chemistry) "pLB" = ( @@ -45806,11 +45750,17 @@ /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, /area/station/maintenance/department/cargo) +"pOQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "pPv" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -45936,7 +45886,7 @@ }, /obj/structure/plasticflaps/kitchen, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "pRq" = ( /obj/effect/turf_decal/trimline/yellow/arrow_cw{ dir = 9 @@ -46077,10 +46027,10 @@ /area/station/engineering/atmos/project) "pTC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "pTJ" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/yellow/filled/line, @@ -46091,8 +46041,8 @@ "pTO" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible/layer4, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) "pTP" = ( @@ -46281,11 +46231,6 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, -/obj/machinery/button/door/directional/south{ - id = "brigdesk"; - name = "shutter control"; - pixel_x = -24 - }, /turf/open/floor/iron, /area/station/security/brig/entrance) "pWE" = ( @@ -46390,7 +46335,6 @@ name = "Port To Turbine" }, /obj/effect/turf_decal/delivery, -/obj/machinery/camera/autoname/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) @@ -46428,7 +46372,7 @@ /obj/structure/chair/stool/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "pYE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -46503,22 +46447,10 @@ /turf/open/openspace, /area/station/science/xenobiology) "qaz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/directions/science/directional/north{ - dir = 4 - }, -/obj/structure/sign/directions/command/directional/north{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/evac/directional/north{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/brig/entrance) "qaE" = ( /obj/effect/landmark/start/janitor, /obj/effect/decal/cleanable/dirt, @@ -46726,7 +46658,7 @@ /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qeo" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/mapping_helpers/broken_floor, @@ -46799,7 +46731,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/navigate_destination/techstorage, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/machinery/door/firedoor, @@ -46837,7 +46769,7 @@ pixel_x = 4; pixel_y = -2 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 5; pixel_y = 12 }, @@ -46877,10 +46809,8 @@ /area/station/security) "qgY" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/event_spawn, /obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured_large, /area/station/engineering/storage/tech) "qhg" = ( @@ -46934,7 +46864,7 @@ "qia" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qic" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47018,7 +46948,7 @@ name = "Solar Maintenance" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -47034,7 +46964,7 @@ /obj/structure/flora/bush/flowers_yw/style_random, /obj/structure/window/spawner/directional/north, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qjw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -47057,6 +46987,12 @@ "qka" = ( /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) +"qkc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "qkv" = ( /obj/machinery/door/airlock/public{ name = "Jim Norton's Quebecois Coffee" @@ -47141,7 +47077,7 @@ "qmf" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qmg" = ( /obj/structure/table/wood, /obj/item/stock_parts/power_store/cell/crap, @@ -47268,15 +47204,16 @@ }, /obj/machinery/light_switch/directional/west, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "qod" = ( /obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/disposal) "qof" = ( @@ -47314,7 +47251,7 @@ }, /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "qoJ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -47341,11 +47278,11 @@ /area/station/engineering/atmos) "qpb" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/turf_decal/siding/wood{ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/wood, /area/station/maintenance/central/lesser) "qpc" = ( @@ -47353,7 +47290,7 @@ network = list("aicore") }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qpj" = ( /obj/machinery/turretid{ control_area = /area/station/tcommsat/server; @@ -47501,7 +47438,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/cable/layer3, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "qru" = ( /obj/structure/cable, /obj/structure/chair/sofa/bench/right, @@ -47602,7 +47539,7 @@ /obj/item/stack/spacecash/c1000, /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "qug" = ( /obj/machinery/door/airlock/mining{ name = "Mining Office" @@ -47680,8 +47617,11 @@ dir = 8 }, /obj/structure/sign/painting/library{ - pixel_x = -32 + pixel_x = -32; + dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "qvA" = ( @@ -47718,11 +47658,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) -"qvX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) "qwu" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -47866,6 +47801,14 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/commons/lounge) +"qyU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "qzr" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -47897,21 +47840,19 @@ /turf/open/floor/iron/dark, /area/station/maintenance/radshelter/civil) "qAo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/security/directional/south{ - dir = 8; - pixel_y = -24 +/obj/structure/sign/directions/science/directional/south{ + dir = 4; + pixel_y = 10 }, -/obj/structure/sign/directions/supply/directional/south{ - dir = 8 +/obj/structure/sign/directions/medical/directional/south{ + dir = 8; + pixel_y = -10 }, -/obj/structure/sign/directions/engineering/directional/south{ - pixel_y = -40 +/obj/structure/sign/directions/evac/directional/south{ + pixel_y = 0 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) "qAp" = ( /mob/living/basic/mining/goliath/ancient, /turf/open/misc/asteroid/airless, @@ -47956,7 +47897,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qBu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small/broken/directional/east, @@ -48027,6 +47968,9 @@ dir = 1 }, /obj/structure/disposalpipe/trunk/multiz, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/storage) "qCE" = ( @@ -48041,7 +47985,7 @@ }, /area/station/security/execution/transfer) "qCT" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/structure/cable, /obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron/dark, @@ -48078,7 +48022,7 @@ "qDl" = ( /obj/structure/lattice/catwalk, /turf/open/openspace/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qDH" = ( /obj/structure/chair/sofa/corner/maroon, /obj/item/toy/plush/moth{ @@ -48141,6 +48085,7 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/station/security) "qEm" = ( @@ -48232,7 +48177,7 @@ uses = 10 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "qFS" = ( /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/glass/reinforced, @@ -48248,7 +48193,7 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qGB" = ( /obj/machinery/ticket_machine/directional/north, /obj/structure/chair/sofa/bench, @@ -48297,7 +48242,7 @@ dir = 1 }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qHp" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 6 @@ -48325,7 +48270,7 @@ dir = 4 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "qHE" = ( /obj/effect/decal/cleanable/rubble, /turf/open/misc/asteroid/airless, @@ -48492,12 +48437,6 @@ dir = 1 }, /area/station/engineering/atmos) -"qKm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured, -/area/station/science/robotics/lab) "qKH" = ( /turf/open/floor/glass/reinforced, /area/station/science/research) @@ -48562,7 +48501,7 @@ /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/iron, /area/station/cargo/sorting) "qMC" = ( @@ -48690,6 +48629,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/service/chapel/funeral) "qPC" = ( @@ -48881,7 +48821,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "qTG" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 @@ -48934,7 +48874,7 @@ /area/station/science/xenobiology) "qUz" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -49074,7 +49014,7 @@ /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "qWG" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -49157,7 +49097,6 @@ "qXK" = ( /obj/effect/turf_decal/tile/red, /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) "qXN" = ( @@ -49179,7 +49118,7 @@ /turf/open/floor/iron/stairs{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qYe" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -49216,12 +49155,12 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "qYW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49337,6 +49276,8 @@ "raR" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/storage) "raT" = ( @@ -49358,11 +49299,11 @@ /area/station/command/heads_quarters/hop) "raZ" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/misc/asteroid, /area/station/science/research) "rbe" = ( @@ -49372,8 +49313,8 @@ /turf/open/floor/plating, /area/station/maintenance/department/engine) "rbg" = ( -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/stairs/medium{ dir = 1 @@ -49381,8 +49322,7 @@ /area/station/command/bridge) "rbs" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; + control_area = "/area/station/ai/upload/chamber"; name = "AI Upload Turret Control"; pixel_x = -28 }, @@ -49394,7 +49334,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "rbt" = ( /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49453,6 +49393,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/research) "rcy" = ( @@ -49680,7 +49621,7 @@ "rgp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rgs" = ( /obj/structure/holosign/barrier/atmos, /turf/open/misc/asteroid, @@ -49779,6 +49720,13 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/maintenance/port/greater) +"rhs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "rhK" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 @@ -49794,7 +49742,7 @@ /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rhS" = ( /turf/open/floor/iron, /area/station/engineering/main) @@ -49862,7 +49810,7 @@ /area/station/command/heads_quarters/cmo) "riQ" = ( /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "riS" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ dir = 4 @@ -49922,6 +49870,7 @@ /area/station/maintenance/department/science) "rjk" = ( /obj/machinery/holopad, +/obj/structure/cable, /turf/open/floor/iron/large, /area/station/service/hydroponics/garden) "rjn" = ( @@ -49960,7 +49909,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 + dir = 4 }, /turf/open/floor/iron, /area/station/security/interrogation) @@ -50008,7 +49957,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/xenobiology) @@ -50143,9 +50091,8 @@ network = list("minisat") }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "rlw" = ( /turf/closed/wall, /area/station/science/xenobiology/hallway) @@ -50153,10 +50100,11 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security) "rmi" = ( @@ -50187,7 +50135,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "rmy" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -50247,7 +50195,7 @@ }, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rnY" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/stripes/line{ @@ -50265,7 +50213,7 @@ "roB" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -50365,7 +50313,6 @@ dir = 1 }, /obj/machinery/camera/autoname/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "rqh" = ( @@ -50690,7 +50637,7 @@ /obj/item/radio/intercom/directional/north, /obj/item/piggy_bank/vault, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "rwx" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 9 @@ -50895,11 +50842,8 @@ /turf/open/floor/iron/white/herringbone, /area/station/maintenance/department/medical/central) "rzb" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/wood, /obj/machinery/camera/autoname/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "rzg" = ( @@ -50923,12 +50867,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) -"rzF" = ( -/obj/effect/turf_decal/bot_white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) "rzI" = ( /obj/machinery/camera/autoname/directional/south{ network = list("ss13","rd") @@ -50939,7 +50877,7 @@ "rzJ" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/misc/asteroid, /area/station/hallway/secondary/entry) "rzP" = ( @@ -50975,7 +50913,7 @@ /obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "rAu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/directional/east, @@ -51022,6 +50960,10 @@ }, /turf/open/floor/engine/n2o, /area/station/engineering/atmos) +"rBr" = ( +/obj/machinery/air_sensor/engine_chamber, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "rBt" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -51083,13 +51025,14 @@ "rBZ" = ( /obj/structure/cable, /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "AI Antechamber turret control"; - pixel_y = 27 + pixel_y = 27; + dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "rCd" = ( /obj/machinery/door/window/brigdoor/left/directional/east{ name = "Command Desk"; @@ -51109,7 +51052,6 @@ /area/station/engineering/storage/tech) "rCz" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "rCL" = ( @@ -51165,6 +51107,9 @@ dir = 1 }, /obj/effect/turf_decal/tile/dark_red/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) "rDs" = ( @@ -51226,12 +51171,16 @@ }, /turf/open/floor/circuit/telecomms/server, /area/station/science/server) +"rEw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/engineering/atmos) "rEK" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, @@ -51248,7 +51197,7 @@ "rFd" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, @@ -51284,6 +51233,8 @@ dir = 4 }, /obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) "rFZ" = ( @@ -51338,8 +51289,8 @@ /turf/open/space/basic, /area/station/solars/port/fore) "rGQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel{ dir = 4 }, @@ -51489,7 +51440,6 @@ /turf/open/floor/iron/textured, /area/station/security/processing) "rKb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ dir = 4 }, @@ -51513,7 +51463,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/machinery/light/cold/directional/west, /obj/machinery/firealarm/directional/west, @@ -51671,7 +51620,6 @@ /area/station/security/office) "rOL" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/miningoffice) "rPe" = ( @@ -51702,7 +51650,7 @@ /obj/structure/window/spawner/directional/west, /obj/structure/window/spawner/directional/north, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "rPk" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -51957,11 +51905,10 @@ /obj/structure/bed, /obj/item/bedsheet, /obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/east{ - id = "Cell 4"; - pixel_y = -26 - }, /obj/structure/cable, +/obj/machinery/flasher/directional/south{ + id = "Cell 4" + }, /turf/open/floor/iron, /area/station/security/brig) "rTo" = ( @@ -52082,14 +52029,6 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/service/bar) -"rVu" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) "rVv" = ( /obj/machinery/door/airlock/security{ id_tag = "IsolationCell"; @@ -52114,12 +52053,12 @@ /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) "rVD" = ( -/obj/effect/turf_decal/tile/neutral, /obj/structure/sign/directions/supply/directional/east{ - dir = 8 + dir = 8; + pixel_x = 0 }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) +/turf/closed/wall/r_wall, +/area/station/command/gateway) "rVL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52255,7 +52194,6 @@ dir = 1 }, /obj/effect/landmark/start/lawyer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/service/lawoffice) @@ -52344,7 +52282,7 @@ /turf/open/openspace, /area/station/security/prison/garden) "rXS" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, @@ -52461,7 +52399,7 @@ name = "Maintenance Bathroom" }, /obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/broken_flooring/side/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/abandoned, @@ -52536,6 +52474,7 @@ dir = 8 }, /obj/machinery/holopad, +/obj/structure/cable, /turf/open/floor/carpet/black, /area/station/command/heads_quarters/hos) "sas" = ( @@ -52644,7 +52583,7 @@ name = "Aft Port Solar Access" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -52669,14 +52608,13 @@ /turf/open/floor/plating, /area/station/maintenance/department/cargo) "sbZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "scg" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "sco" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/turf_decal/siding/wood{ @@ -52737,7 +52675,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/iron, /area/station/security/execution/transfer) "sdB" = ( @@ -52784,7 +52721,7 @@ /obj/effect/landmark/start/hangover, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/dark, /area/station/service/bar) @@ -52846,6 +52783,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, /area/station/science/robotics/lab) @@ -52857,14 +52795,14 @@ "sfT" = ( /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sfY" = ( /obj/structure/stairs/east, /obj/structure/railing{ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sgc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 4 @@ -53069,7 +53007,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sjD" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 4 @@ -53087,7 +53025,9 @@ /area/station/medical/virology) "sjJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /turf/open/floor/iron, /area/station/cargo/storage) "sjL" = ( @@ -53148,10 +53088,8 @@ /obj/machinery/door/airlock/security/glass, /obj/effect/turf_decal/tile/red/fourcorners, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/autoname, /turf/open/floor/iron, /area/station/security/office) "skw" = ( @@ -53161,7 +53099,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "skH" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -53191,6 +53129,7 @@ "skV" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/locker) "slb" = ( @@ -53218,10 +53157,10 @@ "slx" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/plating, /area/station/maintenance/central/lesser) "slG" = ( @@ -53250,7 +53189,7 @@ /area/station/medical/treatment_center) "smh" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/welded, /turf/open/floor/plating, @@ -53398,11 +53337,17 @@ /turf/open/floor/iron/grimy, /area/station/service/chapel/office) "soB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/textured_large, /area/station/engineering/storage/tech) +"soC" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit/departure_lounge) "soG" = ( /obj/structure/sink/directional/south, /obj/structure/mirror/directional/north{ @@ -53454,7 +53399,7 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/tank_holder/extinguisher, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "spr" = ( /obj/effect/turf_decal/stripes{ dir = 5 @@ -53485,7 +53430,7 @@ "spG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "spS" = ( /obj/item/mop, /obj/effect/spawner/random/trash/bucket, @@ -53578,15 +53523,15 @@ /obj/effect/turf_decal/siding/green/corner{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "srs" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "srv" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/landmark/generic_maintenance_landmark, @@ -53699,7 +53644,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "stp" = ( /obj/structure/railing{ dir = 1 @@ -53747,7 +53692,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "stP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, /turf/closed/wall/r_wall, @@ -53795,17 +53740,6 @@ /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/supply/directional/south{ - dir = 8 - }, -/obj/structure/sign/directions/engineering/directional/south{ - dir = 4; - pixel_y = -40 - }, -/obj/structure/sign/directions/security/directional/south{ - dir = 8; - pixel_y = -24 - }, /turf/open/floor/iron, /area/station/hallway/primary/central) "suw" = ( @@ -53910,7 +53844,7 @@ /turf/open/floor/iron/stairs{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "swv" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/dirt/dust, @@ -53935,7 +53869,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "swS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -54043,11 +53977,11 @@ /area/station/science/server) "szp" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/lesser) "szq" = ( @@ -54104,12 +54038,12 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "sAs" = ( @@ -54222,7 +54156,7 @@ /turf/open/floor/iron/stairs{ dir = 8 }, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sBG" = ( /obj/machinery/light/warm/directional/north, /obj/effect/turf_decal/siding/wood{ @@ -54272,8 +54206,9 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "sCO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /turf/open/floor/iron/dark, /area/station/security/lockers) "sCT" = ( @@ -54441,7 +54376,7 @@ /area/station/maintenance/port/lesser) "sGj" = ( /obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/door/airlock/maintenance{ @@ -54456,7 +54391,7 @@ "sGk" = ( /obj/effect/turf_decal/siding/white/corner, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/herringbone, /area/station/hallway/primary/central) @@ -54591,11 +54526,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/white, /area/station/medical/chemistry) -"sIm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) "sIv" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/power/apc/auto_name/directional/south, @@ -54650,7 +54580,7 @@ "sIW" = ( /obj/structure/transport/linear/public, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sIX" = ( /obj/effect/turf_decal/arrows{ dir = 4; @@ -54725,11 +54655,7 @@ /area/station/hallway/secondary/exit/departure_lounge) "sJT" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) -"sJX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/cargo/storage) +/area/station/ai/satellite/uppersouth) "sKs" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -54825,7 +54751,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "sLW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -54890,8 +54816,6 @@ "sNi" = ( /obj/machinery/light/directional/north, /obj/effect/mapping_helpers/broken_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/chair/sofa/bench/left{ dir = 4 }, @@ -54971,6 +54895,7 @@ dir = 4 }, /obj/effect/turf_decal/trimline/blue/filled/mid_joiner, +/obj/structure/cable, /turf/open/floor/iron/white/smooth_large, /area/station/medical/surgery/theatre) "sPD" = ( @@ -55019,7 +54944,7 @@ "sQd" = ( /obj/structure/cable/multilayer/connected, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sQe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55110,19 +55035,9 @@ }, /turf/open/floor/iron, /area/station/engineering/main) -"sRM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/stairs/left{ - dir = 1 - }, -/area/station/command/bridge) "sRP" = ( /obj/machinery/photocopier/prebuilt, /obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) "sRU" = ( @@ -55139,12 +55054,12 @@ /area/station/service/lawoffice) "sSm" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /turf/open/floor/iron, /area/station/commons/locker) "sSL" = ( @@ -55531,7 +55446,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "sYU" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "Air to Port" @@ -55541,7 +55456,7 @@ "sYZ" = ( /obj/machinery/duct, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 4 }, /obj/machinery/light/directional/west, /obj/machinery/firealarm/directional/west, @@ -55585,6 +55500,7 @@ /turf/open/floor/iron/white, /area/station/medical/chemistry) "sZK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/bridge) "sZS" = ( @@ -55622,7 +55538,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "tac" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -55876,18 +55792,18 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "tgW" = ( /obj/machinery/door/airlock/medical{ name = "Primary Surgical Theatre" }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) "tgZ" = ( @@ -55915,6 +55831,22 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) +"thj" = ( +/obj/structure/sign/directions/security/directional/east{ + dir = 1; + pixel_y = 8; + pixel_x = 0 + }, +/obj/structure/sign/directions/supply/directional/east{ + dir = 1; + pixel_x = 0 + }, +/obj/structure/sign/directions/engineering/directional/east{ + pixel_y = -8; + pixel_x = 0 + }, +/turf/closed/wall, +/area/station/maintenance/port/lesser) "tho" = ( /obj/machinery/power/port_gen, /obj/effect/decal/cleanable/dirt/dust, @@ -56047,8 +55979,10 @@ /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, /turf/open/floor/iron/white/smooth_edge, /area/station/medical/pharmacy) +"tjn" = ( +/turf/open/floor/iron/dark, +/area/station/medical/morgue) "tjq" = ( -/obj/structure/cable, /obj/machinery/shower/directional/south, /obj/effect/turf_decal{ icon = 'icons/obj/mining_zones/survival_pod.dmi'; @@ -56093,6 +56027,7 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/drone_bay) "tkh" = ( @@ -56136,6 +56071,10 @@ }, /obj/structure/desk_bell, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters" + }, /turf/open/floor/iron, /area/station/service/hydroponics) "tla" = ( @@ -56144,7 +56083,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tlb" = ( /obj/effect/turf_decal/tile/dark_red/opposingcorners, /turf/open/floor/iron/dark, @@ -56176,7 +56115,7 @@ "tlW" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "tmg" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -56214,6 +56153,11 @@ dir = 1 }, /area/station/medical/pharmacy) +"tmQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/medical/chemistry/minisat) "tmR" = ( /obj/structure/bed/maint, /obj/item/bedsheet/yellow{ @@ -56298,7 +56242,7 @@ }, /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "tnD" = ( /obj/item/bodypart/leg/left, /turf/open/floor/plating/airless, @@ -56357,10 +56301,10 @@ "toC" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) "toD" = ( @@ -56376,7 +56320,7 @@ /obj/machinery/newscaster/directional/north, /obj/machinery/light/warm/directional/east, /turf/open/floor/iron/chapel{ - dir = 4 + dir = 1 }, /area/station/service/chapel) "toJ" = ( @@ -56808,7 +56752,7 @@ "tww" = ( /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "twx" = ( /turf/open/openspace, /area/station/maintenance/disposal) @@ -56835,7 +56779,7 @@ /obj/effect/spawner/round_default_module, /obj/machinery/flasher/directional/north, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "txx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -56846,7 +56790,7 @@ /area/station/maintenance/department/cargo) "txy" = ( /obj/machinery/door/airlock/hatch, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -56943,8 +56887,8 @@ "tzT" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) "tzW" = ( @@ -56984,7 +56928,7 @@ /area/station/asteroid) "tAr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/large, /area/station/hallway/secondary/exit/departure_lounge) @@ -57057,7 +57001,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/item/radio/intercom/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "tBh" = ( /obj/structure/railing/corner{ dir = 4 @@ -57116,11 +57060,12 @@ /area/space/nearstation) "tBL" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/turf_decal/sand/plating, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) "tCb" = ( @@ -57325,8 +57270,6 @@ dir = 6 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/central) "tFa" = ( @@ -57340,7 +57283,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -57398,7 +57341,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tGE" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -57430,7 +57373,9 @@ /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ dir = 8 }, @@ -57518,18 +57463,14 @@ "tIH" = ( /turf/open/floor/grass, /area/station/service/hydroponics/garden) -"tIN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/corporate_showroom) "tIO" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, /area/station/medical/chemistry/minisat) "tIS" = ( @@ -57542,7 +57483,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "tIT" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -57603,7 +57544,7 @@ /obj/machinery/door/airlock/engineering, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/iron, @@ -57619,7 +57560,7 @@ "tKm" = ( /obj/machinery/firealarm/directional/west, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tKX" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical{ @@ -57658,8 +57599,8 @@ name = "Departure Lounge" }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "tLH" = ( @@ -57736,7 +57677,7 @@ /obj/effect/mapping_helpers/requests_console/supplies, /obj/effect/mapping_helpers/requests_console/assistance, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tMF" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -57749,13 +57690,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/button/door/directional/east{ - id = "cap_ext"; - name = "bolt control"; - normaldoorcontrol = 1; - pixel_y = 24; - specialfunctions = 4 - }, /turf/open/floor/engine, /area/station/command/heads_quarters/captain/private) "tMO" = ( @@ -57788,7 +57722,7 @@ dir = 1 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tNh" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -57853,14 +57787,14 @@ id_tag = "r1"; name = "Room A" }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, /turf/open/floor/iron/white, /area/station/medical/patients_rooms/room_a) "tNR" = ( @@ -58024,7 +57958,7 @@ "tRb" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58059,17 +57993,11 @@ "tRp" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/disposal/bin, -/obj/structure/cable, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) -"tRP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "tRX" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 @@ -58101,7 +58029,7 @@ c_tag = "Security Armory" }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tSn" = ( /obj/structure/chair/office/light{ dir = 4 @@ -58111,12 +58039,6 @@ }, /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) -"tSH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) "tSX" = ( /obj/item/stack/tile/iron/white/smooth_large, /obj/effect/decal/cleanable/dirt/dust, @@ -58149,7 +58071,7 @@ /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "tTE" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/showroomfloor, @@ -58262,20 +58184,20 @@ /area/station/security/processing) "tVI" = ( /obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /obj/structure/disposalpipe/sorting/mail/flip{ dir = 1 }, /obj/effect/mapping_helpers/mail_sorting/medbay/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/storage) "tVJ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "tVP" = ( /obj/item/instrument/musicalmoth, /obj/effect/spawner/random/entertainment/musical_instrument, @@ -58322,6 +58244,12 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"tWl" = ( +/obj/item/stack/tile/iron/white, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/chemistry/minisat) "tWs" = ( /obj/effect/spawner/random/structure/grille, /obj/structure/cable, @@ -58361,13 +58289,13 @@ /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "tXg" = ( -/obj/structure/sign/warning, -/turf/closed/wall/rock/porous, +/obj/structure/sign/warning/directional/north, +/turf/closed/mineral/random/stationside/asteroid/porus{ + mineralChance = 20 + }, /area/station/asteroid) "tXi" = ( /obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) @@ -58397,7 +58325,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "tXt" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/siding/white{ @@ -58461,10 +58389,13 @@ /area/station/command/heads_quarters/hos) "tYQ" = ( /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/command/bridge) "tZt" = ( /obj/machinery/airalarm/directional/north, +/obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) "tZv" = ( @@ -58594,7 +58525,7 @@ }, /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "uaY" = ( /obj/item/kirbyplants/random/dead, /obj/structure/window/reinforced/spawner/directional/north, @@ -58705,7 +58636,7 @@ dir = 5 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "udG" = ( /obj/structure/flora/bush/sparsegrass/style_random, /turf/open/floor/grass, @@ -58962,7 +58893,7 @@ pixel_y = 3 }, /turf/open/floor/iron/chapel{ - dir = 4 + dir = 1 }, /area/station/service/chapel) "uin" = ( @@ -59025,7 +58956,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uiU" = ( /obj/effect/spawner/random/structure/table, /obj/effect/decal/cleanable/dirt/dust, @@ -59087,7 +59018,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 1 }, /turf/open/floor/plating, @@ -59136,7 +59067,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "ukY" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -59243,6 +59174,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"umv" = ( +/obj/machinery/button/door/directional/south{ + id = "brigdesk"; + name = "shutter control"; + pixel_y = 0; + pixel_x = 10 + }, +/turf/closed/wall/r_wall, +/area/station/security/processing) "umA" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/window/reinforced/spawner/directional/east, @@ -59383,7 +59323,7 @@ /obj/structure/cable/layer3, /obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "upy" = ( /obj/effect/turf_decal/tile/yellow/diagonal_centre, /obj/machinery/holopad, @@ -59412,7 +59352,7 @@ }, /obj/machinery/camera/autoname/directional/north, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "upS" = ( /obj/machinery/holopad, /turf/open/floor/iron, @@ -59451,9 +59391,9 @@ /area/station/maintenance/port/greater) "uqy" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/commons/vacant_room/commissary) "uqI" = ( @@ -59619,7 +59559,7 @@ pixel_y = -3 }, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "usQ" = ( /obj/effect/turf_decal/tile/yellow, /obj/item/kirbyplants/random, @@ -59647,7 +59587,7 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /turf/open/floor/catwalk_floor/iron_dark, @@ -59659,15 +59599,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/prison/safe) -"utH" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "utM" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "utP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59766,9 +59700,7 @@ /turf/open/floor/iron/white, /area/station/science/ordnance/testlab) "uvN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) "uww" = ( @@ -59779,6 +59711,11 @@ /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/effect/spawner/random/entertainment/lighter, /obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "bar_shutters"; + name = "Bar Shutters" + }, /turf/open/floor/iron/dark, /area/station/service/bar) "uwx" = ( @@ -59887,6 +59824,11 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"uyo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "uyu" = ( /obj/structure/railing/corner{ dir = 8 @@ -59898,6 +59840,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/cargo/storage) +"uyx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/command/bridge) "uyA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/broken/directional/east, @@ -59954,7 +59903,9 @@ dir = 1 }, /obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/white/herringbone, /area/station/science/breakroom) "uzB" = ( @@ -60116,6 +60067,21 @@ }, /turf/open/floor/iron, /area/station/service/theater) +"uCl" = ( +/obj/structure/sign/directions/evac/directional/north{ + dir = 2; + pixel_y = 10 + }, +/obj/structure/sign/directions/command/directional/north{ + dir = 8; + pixel_y = -10 + }, +/obj/structure/sign/directions/science/directional/north{ + dir = 4; + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/science/lobby) "uCo" = ( /obj/machinery/power/shieldwallgen, /obj/effect/decal/cleanable/dirt/dust, @@ -60180,7 +60146,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "uCS" = ( /obj/machinery/telecomms/receiver/preset_right, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -60459,7 +60425,9 @@ /area/station/maintenance/aft/upper) "uIU" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) "uIW" = ( @@ -60542,15 +60510,13 @@ icon_state = "catwalk-14" }, /turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "uLh" = ( /obj/structure/cable, /obj/machinery/camera/autoname/directional/north, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "uLi" = ( @@ -60689,6 +60655,7 @@ "uNc" = ( /obj/structure/rack, /obj/effect/spawner/random/engineering/vending_restock, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/cargo/boutique) "uNd" = ( @@ -60741,7 +60708,7 @@ plasmatanks = 0 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "uOb" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -60760,9 +60727,6 @@ name = "Primary Surgical Theatre" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/effect/mapping_helpers/airlock/access/all/medical/surgery, /obj/structure/cable, @@ -60770,6 +60734,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) "uOo" = ( @@ -60816,10 +60783,6 @@ linked_elevator_id = "medbay1"; pixel_x = -32 }, -/obj/machinery/button/elevator/directional/south{ - id = "medbay1"; - pixel_x = -32 - }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) "uPi" = ( @@ -60923,13 +60886,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"uSd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) "uSe" = ( /obj/structure/closet/crate, /obj/effect/spawner/random/maintenance, @@ -61027,7 +60983,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "uUk" = ( /obj/structure/rack, /obj/item/storage/briefcase{ @@ -61100,7 +61056,8 @@ /obj/effect/spawner/random/trash/hobo_squat, /obj/machinery/button/curtain{ id = "neverstopgambling"; - pixel_y = 32 + pixel_y = 32; + dir = 1 }, /turf/open/floor/wood, /area/station/maintenance/central/lesser) @@ -61422,7 +61379,6 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "vbY" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/wood, /obj/structure/sign/painting/large/library{ pixel_y = -35 @@ -61553,7 +61509,7 @@ dir = 9 }, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vfy" = ( /obj/machinery/door/airlock/medical/glass{ name = "Pharmacy" @@ -61586,7 +61542,6 @@ }, /obj/structure/cable, /obj/structure/sign/warning/vacuum/external/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/station/engineering/supermatter/room) @@ -61634,7 +61589,7 @@ }, /obj/structure/cable/layer3, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vgz" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/firealarm/directional/south, @@ -61644,8 +61599,6 @@ /area/station/hallway/primary/central) "vgI" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/execution/transfer) "vgM" = ( @@ -61727,6 +61680,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/command/bridge) +"viM" = ( +/obj/structure/sign/directions/engineering/directional/south{ + pixel_y = 10 + }, +/obj/structure/sign/directions/supply/directional/south{ + dir = 8; + pixel_y = -10 + }, +/obj/structure/sign/directions/security/directional/south{ + dir = 8; + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/hallway/primary/central) "viT" = ( /obj/machinery/camera/autoname/directional/west{ network = list("ss13","rd","xeno") @@ -61742,7 +61709,6 @@ /turf/open/floor/grass, /area/station/science/research) "vja" = ( -/obj/structure/cable, /obj/effect/turf_decal/siding/white/corner{ dir = 1 }, @@ -62078,7 +62044,7 @@ /turf/open/floor/carpet/executive, /area/station/command/meeting_room) "voQ" = ( -/obj/machinery/computer/rdconsole, +/obj/machinery/computer/rdconsole/unlocked, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/white, /area/station/science/lab) @@ -62145,8 +62111,6 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "vqq" = ( @@ -62256,6 +62220,21 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/iron/grimy, /area/station/maintenance/central/greater) +"vsJ" = ( +/obj/structure/sign/directions/security/directional/south{ + dir = 8; + pixel_y = -10 + }, +/obj/structure/sign/directions/engineering/directional/south{ + dir = 4; + pixel_y = 10 + }, +/obj/structure/sign/directions/supply/directional/south{ + dir = 8; + pixel_y = 0 + }, +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) "vsO" = ( /obj/structure/cable, /obj/structure/disposalpipe/sorting/mail{ @@ -62279,7 +62258,7 @@ /obj/effect/spawner/random/aimodule/harmless, /obj/machinery/camera/autoname/directional/west, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "vtv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -62369,10 +62348,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"vwb" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) "vwd" = ( /obj/machinery/newscaster/directional/south, /turf/open/floor/engine, @@ -62644,10 +62619,10 @@ /area/station/commons/fitness/recreation) "vAs" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/misc/asteroid, /area/station/science/research) "vAu" = ( @@ -62658,7 +62633,7 @@ /area/station/security/breakroom) "vAB" = ( /turf/open/openspace/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vAD" = ( /obj/machinery/door/airlock/multi_tile/public/glass{ name = "Dormitories" @@ -62685,13 +62660,13 @@ "vBp" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vBs" = ( /obj/machinery/holopad, /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vBD" = ( /obj/structure/chair/office/light{ dir = 1 @@ -62717,7 +62692,7 @@ /obj/effect/decal/cleanable/blood/oil, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "vCw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -62741,6 +62716,11 @@ /area/station/command/corporate_showroom) "vCL" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Hydroponics Shutters"; + id = "hydroponics_shutters"; + dir = 8 + }, /turf/open/floor/plating, /area/station/service/hydroponics) "vCQ" = ( @@ -62775,7 +62755,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vEh" = ( /obj/effect/mapping_helpers/broken_floor, /obj/item/stack/sheet/iron, @@ -62918,7 +62898,7 @@ /obj/machinery/light/small/dim/directional/east, /obj/item/coin/titanium, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vFD" = ( /obj/machinery/door/window/brigdoor/security/cell/left/directional/west{ id = "Cell 4"; @@ -63086,7 +63066,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "vHI" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -63179,7 +63159,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "vKd" = ( /obj/effect/decal/cleanable/blood/oil, /obj/machinery/light/small/directional/west, @@ -63192,7 +63172,7 @@ }, /obj/effect/mapping_helpers/airlock/access/all/command/minisat, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "vKx" = ( /obj/structure/table/wood, /obj/item/storage/box/coffeepack, @@ -63373,7 +63353,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "vNB" = ( /obj/machinery/vending/tool, /obj/effect/decal/cleanable/dirt, @@ -63455,7 +63435,7 @@ }, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "vOT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -63509,10 +63489,10 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ dir = 10 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "vQa" = ( @@ -63542,7 +63522,7 @@ /area/station/command/bridge) "vQn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 + dir = 8 }, /turf/open/floor/engine, /area/station/medical/chemistry) @@ -63559,8 +63539,6 @@ /turf/closed/wall, /area/station/cargo/boutique) "vQT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/sign/poster/official/moth_hardhat/directional/north, /obj/structure/table, /obj/item/storage/toolbox/emergency, @@ -63569,6 +63547,9 @@ "vRi" = ( /mob/living/basic/bot/cleanbot/medbay, /obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/storage) "vRm" = ( @@ -63577,7 +63558,7 @@ /obj/structure/extinguisher_cabinet/directional/east, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "vRt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63812,10 +63793,9 @@ /turf/open/floor/wood/tile, /area/station/commons/dorms) "vVj" = ( -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/white, /area/station/medical/chemistry/minisat) "vVk" = ( @@ -63916,7 +63896,7 @@ "vWK" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "vWN" = ( /obj/structure/sign/warning/electric_shock/directional/north, /obj/structure/rack, @@ -63940,6 +63920,12 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/station/service/cafeteria) +"vXt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lobby) "vXS" = ( /obj/structure/broken_flooring/side, /obj/effect/decal/cleanable/dirt/dust, @@ -64002,6 +63988,12 @@ }, /turf/open/floor/plating, /area/station/service/theater) +"vZJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "vZL" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -64019,8 +64011,6 @@ /turf/open/floor/iron, /area/station/security/brig/entrance) "vZX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/side{ dir = 8 }, @@ -64095,7 +64085,7 @@ /area/station/security/interrogation) "waS" = ( /obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -64189,7 +64179,7 @@ /obj/item/multitool, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wcp" = ( /turf/open/floor/carpet, /area/station/command/corporate_showroom) @@ -64204,7 +64194,7 @@ "wdc" = ( /obj/effect/turf_decal/trimline/yellow/filled/line, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 + dir = 8 }, /turf/open/floor/iron, /area/station/engineering/gravity_generator) @@ -64327,17 +64317,21 @@ "wfl" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wfs" = ( -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "maintbridge"; - name = "Shutter Control"; - pixel_y = 24 +/obj/structure/sign/directions/security/directional/north{ + dir = 8; + pixel_y = 10 }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/obj/structure/sign/directions/engineering/directional/north{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/sign/directions/command/directional/north{ + pixel_y = -10 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/transit_tube) "wfy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64633,10 +64627,6 @@ /obj/effect/turf_decal/tile/dark_green/opposingcorners, /turf/open/floor/iron, /area/station/hallway/secondary/service) -"wli" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/cargo/miningoffice) "wlo" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ dir = 5 @@ -64791,7 +64781,7 @@ "wow" = ( /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "woz" = ( /obj/structure/sign/poster/official/random/directional/east, /obj/structure/cable, @@ -64810,7 +64800,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "woL" = ( /turf/closed/wall/rock, /area/station/maintenance/port/greater) @@ -64838,7 +64828,7 @@ dir = 4 }, /turf/open/floor/glass/reinforced/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "wps" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64852,7 +64842,7 @@ /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "wpG" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64933,12 +64923,12 @@ /turf/open/floor/plating, /area/station/engineering/atmos/project) "wqU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/junction{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/lobby) "wqW" = ( @@ -64948,7 +64938,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) +/area/station/command/vault) "wrx" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 @@ -65013,6 +65003,7 @@ "wsi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel{ dir = 8 }, @@ -65120,7 +65111,6 @@ "wtW" = ( /obj/structure/window/spawner/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) "wtZ" = ( @@ -65162,7 +65152,7 @@ "wun" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible/layer4, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, @@ -65175,9 +65165,9 @@ /turf/open/floor/iron/textured_large, /area/station/medical/treatment_center) "wus" = ( -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/carpet/black, /area/station/command/heads_quarters/hos) "wuS" = ( @@ -65201,8 +65191,6 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/sorting/mail/flip{ dir = 1 }, @@ -65226,7 +65214,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "wvs" = ( /obj/structure/chair/sofa/bench, /obj/effect/landmark/start/prisoner, @@ -65311,7 +65299,7 @@ "wwR" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/plating, @@ -65467,7 +65455,7 @@ /obj/structure/cable/layer3, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "wzX" = ( /obj/structure/flora/tree/palm/style_random, /turf/open/floor/grass, @@ -65514,7 +65502,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "wAy" = ( /obj/structure/cable, /turf/open/floor/iron/white/smooth_edge, @@ -65615,12 +65603,10 @@ /obj/structure/window/reinforced/spawner/directional/west, /obj/item/food/grown/banana, /obj/structure/sign/warning/biohazard/directional/south, -/obj/structure/sign/warning{ - pixel_x = 32 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, +/obj/structure/sign/warning/directional/east, /turf/open/misc/grass, /area/station/cargo/boutique) "wCj" = ( @@ -65712,7 +65698,7 @@ dir = 1 }, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/teleporter) +/area/station/ai/satellite/teleporter) "wDb" = ( /obj/structure/chair/office{ dir = 8 @@ -65734,8 +65720,6 @@ "wDo" = ( /obj/structure/cable, /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/interrogation) "wDr" = ( @@ -65770,6 +65754,9 @@ /obj/effect/turf_decal/siding/red{ dir = 5 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/circuit, /area/station/science/robotics/lab) "wDH" = ( @@ -66006,7 +65993,7 @@ /area/station/hallway/secondary/command) "wHJ" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "wIr" = ( /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/structure/cable, @@ -66016,12 +66003,8 @@ /area/station/service/bar/backroom) "wIB" = ( /obj/structure/railing, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/department/engine) @@ -66089,7 +66072,7 @@ /area/station/commons/lounge) "wKE" = ( /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, @@ -66105,7 +66088,7 @@ }, /obj/machinery/firealarm/directional/south, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "wKO" = ( /turf/open/floor/glass, /area/station/maintenance/department/medical) @@ -66150,7 +66133,6 @@ /area/station/maintenance/department/engine) "wLq" = ( /obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/medical/morgue) @@ -66159,6 +66141,8 @@ /obj/structure/disposalpipe/segment{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/office) "wLu" = ( @@ -66258,14 +66242,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/textured, /area/station/science/lobby) -"wME" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/research) "wMY" = ( /obj/structure/cable, /obj/structure/dresser, @@ -66354,7 +66330,7 @@ /area/station/science/ordnance) "wOo" = ( /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "wOp" = ( /obj/structure/table, /obj/machinery/reagentgrinder{ @@ -66408,7 +66384,7 @@ "wPy" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "wPE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -66435,11 +66411,6 @@ /obj/machinery/light/dim/directional/west, /turf/open/floor/iron/white, /area/station/science/research) -"wQa" = ( -/obj/effect/turf_decal/bot_white, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) "wQe" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, @@ -66698,7 +66669,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "sci-entrance" }, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/door/firedoor, @@ -66761,7 +66732,7 @@ }, /obj/machinery/light_switch/directional/north, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "wWE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66773,6 +66744,8 @@ /obj/machinery/holopad, /obj/effect/turf_decal/bot, /obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/miningoffice) "wWJ" = ( @@ -66826,7 +66799,6 @@ /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "wYc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel{ dir = 8 }, @@ -66835,7 +66807,7 @@ /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/aisat/uppersouth) +/area/station/ai/satellite/uppersouth) "wYo" = ( /obj/structure/filingcabinet/chestdrawer, /obj/item/toy/figure/cmo{ @@ -67001,13 +66973,17 @@ req_access = list("medical") }, /obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/button/elevator/directional/south{ + id = "medbay1" + }, /turf/open/floor/iron/white/textured, /area/station/medical/treatment_center) "xaH" = ( /obj/structure/filingcabinet, /obj/machinery/button/ticket_machine{ pixel_x = 24; - pixel_y = 6 + pixel_y = 6; + dir = 4 }, /obj/machinery/button/door/directional/east{ id = "hopdesk"; @@ -67101,7 +67077,6 @@ "xbB" = ( /obj/machinery/disposal/bin, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -67132,7 +67107,6 @@ /area/station/engineering/supermatter/room) "xcb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, /area/station/science/robotics/lab) "xch" = ( @@ -67171,6 +67145,7 @@ /obj/effect/spawner/random/structure/chair_comfy{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/command/bridge) "xcC" = ( @@ -67244,7 +67219,7 @@ "xeo" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -67300,7 +67275,7 @@ "xfn" = ( /obj/effect/landmark/atmospheric_sanity/ignore_area, /turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xfz" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/yellow, @@ -67452,6 +67427,10 @@ }, /turf/open/floor/iron, /area/station/security/brig/entrance) +"xiw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/medical/chemistry) "xiy" = ( /obj/effect/turf_decal/siding/white{ dir = 10 @@ -67507,7 +67486,7 @@ "xje" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 + dir = 1 }, /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -67545,9 +67524,7 @@ /obj/effect/turf_decal/trimline/yellow/filled/corner, /obj/item/radio/intercom/directional/west, /obj/effect/landmark/start/chemist, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/textured, /area/station/medical/pharmacy) "xjq" = ( @@ -67596,7 +67573,7 @@ /obj/structure/cable/layer3, /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "xkI" = ( /obj/effect/decal/cleanable/molten_object, /turf/open/misc/asteroid, @@ -67621,7 +67598,7 @@ /obj/item/ai_module/core/full/dungeon_master, /obj/structure/cable, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xlm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/frame/machine, @@ -67876,6 +67853,7 @@ /area/station/maintenance/department/science) "xqB" = ( /obj/machinery/light/dim/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/textured, /area/station/engineering/storage/tech) "xqE" = ( @@ -68025,7 +68003,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/camera/autoname/directional/west{ network = list("ss13","medbay") }, @@ -68062,7 +68039,6 @@ "xtA" = ( /obj/effect/turf_decal/tile/neutral/diagonal_centre, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) "xtB" = ( @@ -68239,8 +68215,6 @@ /turf/open/floor/iron/grimy, /area/station/maintenance/central/lesser) "xwh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) "xwm" = ( @@ -68260,7 +68234,7 @@ /obj/machinery/power/smes/full, /obj/structure/cable, /turf/open/floor/catwalk_floor/iron_dark/telecomms, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xwA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/maintenance, @@ -68326,7 +68300,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xxJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ dir = 1 @@ -68351,6 +68325,7 @@ dir = 5 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/service/chapel/funeral) "xxV" = ( @@ -68425,7 +68400,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "xzG" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron/white, @@ -68464,7 +68439,7 @@ /obj/machinery/computer/upload/ai, /obj/machinery/airalarm/directional/west, /turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xAd" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, @@ -68521,7 +68496,7 @@ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) "xAV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -68578,6 +68553,11 @@ "xBS" = ( /turf/closed/wall, /area/station/medical/surgery/theatre) +"xBU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) "xBV" = ( /obj/machinery/atmospherics/components/binary/volume_pump, /obj/effect/turf_decal/tile/yellow{ @@ -68742,6 +68722,7 @@ /obj/machinery/door/airlock/multi_tile/public/glass{ name = "Art Storage" }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/storage/art) "xEr" = ( @@ -68927,7 +68908,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) +/area/station/ai/upload/foyer) "xIm" = ( /obj/structure/broken_flooring/pile, /obj/effect/decal/cleanable/dirt/dust, @@ -68942,7 +68923,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xIN" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -68984,7 +68965,7 @@ req_access = list("captain") }, /turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) +/area/station/ai/upload/chamber) "xJK" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/door/poddoor/shutters/window/preopen{ @@ -69030,7 +69011,6 @@ department = "Mining"; name = "Mining Requests Console" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/miningoffice) "xKo" = ( @@ -69142,7 +69122,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/command/corporate_showroom) "xMY" = ( @@ -69227,7 +69206,7 @@ /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "xOg" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/spawner/random/engineering/tracking_beacon, @@ -69255,6 +69234,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, /area/station/service/bar) "xOB" = ( @@ -69272,6 +69253,7 @@ /obj/effect/turf_decal/tile/dark_blue/half/contrasted, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) "xOF" = ( @@ -69328,10 +69310,17 @@ "xPo" = ( /obj/effect/turf_decal/box/corners, /turf/open/floor/plating/elevatorshaft, -/area/station/ai_monitored/turret_protected/aisat_interior) +/area/station/ai/satellite/interior) +"xPp" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lobby) "xPH" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/prison) "xPL" = ( @@ -69489,11 +69478,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood/tile, /area/station/service/bar) -"xUf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/storage) "xUx" = ( /obj/structure/flora/rock/style_random, /turf/open/misc/asteroid, @@ -69514,6 +69498,13 @@ }, /turf/open/space/basic, /area/space/nearstation) +"xUJ" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Monkey Pen" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/turf/open/floor/grass, +/area/station/medical/chemistry) "xUR" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -69522,14 +69513,12 @@ }, /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "xUT" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /obj/item/radio/intercom/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/xenobiology) "xUW" = ( @@ -69565,6 +69554,8 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, /area/station/science/robotics/lab) "xVO" = ( @@ -69640,7 +69631,7 @@ pixel_x = 27 }, /turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "xXh" = ( /obj/machinery/power/shieldwallgen, /obj/effect/decal/cleanable/dirt/dust, @@ -69682,6 +69673,7 @@ /obj/effect/turf_decal/stripes/red/line{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/medical/morgue) "xXF" = ( @@ -69698,7 +69690,7 @@ "xYa" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/structure/disposalpipe/segment{ @@ -69722,7 +69714,7 @@ /obj/effect/landmark/navigate_destination/minisat_access_ai, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69824,7 +69816,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) +/area/station/ai/satellite/maintenance/storage) "yae" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 4 @@ -69853,7 +69845,7 @@ /area/station/science/ordnance/testlab) "yaw" = ( /obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + control_area = "/area/station/ai/satellite/interior"; name = "AI Antechamber turret control"; pixel_y = -27 }, @@ -69861,7 +69853,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/uppernorth) +/area/station/ai/satellite/uppernorth) "yaH" = ( /obj/item/radio/intercom/directional/east, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -69892,7 +69884,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) +/area/station/command/eva) "ybo" = ( /turf/open/floor/iron/white/textured_corner{ dir = 8 @@ -69942,7 +69934,7 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ +/obj/effect/mapping_helpers/airlock/unres/delayed{ dir = 8 }, /turf/open/floor/iron/white, @@ -69996,6 +69988,7 @@ "ycI" = ( /mob/living/carbon/human/species/monkey, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/grass, /area/station/medical/chemistry) "ycN" = ( @@ -70006,6 +69999,11 @@ /obj/effect/mapping_helpers/airlock/access/any/command/hop, /turf/open/floor/plating, /area/station/command/heads_quarters/hop) +"ycT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/medical/chemistry) "ycY" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 1 @@ -70108,7 +70106,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "yeS" = ( /obj/structure/closet/crate/grave, /obj/effect/landmark/start/hangover, @@ -70136,6 +70134,10 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/kitchen, /area/station/service/kitchen) +"yfL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_large, +/area/station/engineering/storage/tech) "ygb" = ( /obj/structure/table, /obj/machinery/recharger, @@ -70314,7 +70316,7 @@ /obj/structure/window/spawner/directional/south, /obj/structure/window/spawner/directional/east, /turf/open/misc/grass, -/area/station/ai_monitored/turret_protected/aisat/foyer) +/area/station/ai/satellite/foyer) "yin" = ( /turf/open/water/no_planet_atmos/deep, /area/station/service/hydroponics/garden) @@ -70462,6 +70464,16 @@ /obj/machinery/holopad, /turf/open/floor/circuit, /area/station/science/robotics/lab) +"yll" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security) "ylm" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -70527,7 +70539,7 @@ }, /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) +/area/station/security/armory) "yma" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -70543,7 +70555,7 @@ dir = 4 }, /turf/open/floor/catwalk_floor/iron_dark, -/area/station/ai_monitored/turret_protected/ai) +/area/station/ai/satellite/chamber) "ymi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -83294,8 +83306,8 @@ wsI uyL umh sjJ -rzF -bGe +umh +uyL lmL hQy icM @@ -83553,8 +83565,8 @@ icM xfN rxX raR -wQa -vwb +icM +ijg xrU fXZ sFd @@ -83572,7 +83584,7 @@ qPN xwO mHG ecy -sme +cEU rCz awj dkj @@ -83807,8 +83819,8 @@ poi ahV uyL hQu -uyL -rzF +bGe +umh nCt umh uyL @@ -84064,11 +84076,11 @@ rPA mBt xnQ hQu -sJX -rzF -noi -jea -ghU +oXc +umh +xnQ +hQu +uSA icM hoX wOU @@ -84322,7 +84334,7 @@ uyL vSt umh uyL -fFz +lmL aex umh uyL @@ -84579,10 +84591,10 @@ lAL heZ uyL uyL -ezP -ezP -ezP -ezP +uyL +uyL +uyL +uyL ijg hoX rXd @@ -84827,7 +84839,7 @@ bdu bWW poi tAL -giK +wBc lvg lBC uDB @@ -85884,7 +85896,7 @@ bfc gok rnk lpF -yfl +kdh aNR oDC meP @@ -85905,8 +85917,8 @@ cBb hAA naZ sep -naZ -naZ +qkc +qkc iuV sIv rnk @@ -86399,7 +86411,7 @@ xQN rnk rnk vWI -xUf +aNR taT wJy wJy @@ -86851,7 +86863,7 @@ dMF rrF hME lvZ -wUe +heu xPH iEO sWy @@ -87108,7 +87120,7 @@ hME hME hME kSm -wUe +heu eFK iEO oCR @@ -87958,7 +87970,7 @@ xHY rAa dgp qGB -fqF +eYv ksU tsq dgp @@ -88144,7 +88156,7 @@ jza eWC jza jkv -kkT +iHG dba qLk jza @@ -88215,7 +88227,7 @@ xHY wZI hQg sed -fqF +eYv nkf xzG hQg @@ -88448,7 +88460,7 @@ ksl nJs fXn mDr -jGK +fXn kJN unL rnk @@ -88659,7 +88671,7 @@ fod jza bSI sCO -bqV +keQ bZf jza fLv @@ -88962,7 +88974,7 @@ rWs cQm fXn fXn -aKd +cQm mju wjj rnk @@ -89182,14 +89194,14 @@ dPv mGG mGG xQW -kcA -fyA +yll +qie rRK gHr gHr gHr gHr -gHr +umv gHr ydk ghW @@ -89440,14 +89452,14 @@ sfm ecC mxv hSW -fyA +qie rRK xLR lfp tRX rjL pWC -ubd +qaz ydk xNq mtB @@ -89490,7 +89502,7 @@ qfB ujT ujT qfB -qfB +oez nIG tmn bxC @@ -89747,7 +89759,7 @@ bGD nxG nxG nxG -hpB +ciY nxG nxG tuA @@ -90235,7 +90247,7 @@ kmu dxT tCE xMk -rVD +aQS deY aQS vTx @@ -90264,7 +90276,7 @@ prW prW prW prW -dvz +prW prW tOm hDK @@ -90492,7 +90504,7 @@ kmu dxT tCE bAw -bAw +rVD bAw bAw uLj @@ -90521,7 +90533,7 @@ uZx lsC bvm lsC -uZx +hpB dbN tOm tCE @@ -90723,7 +90735,7 @@ sgW cpO mAd skr -hBD +wrx gpV kaJ obc @@ -91515,8 +91527,8 @@ hbM rjX rjX iXj -rjX -oez +aKJ +kmu tHF hqz bAw @@ -92025,7 +92037,7 @@ wGg pLW bzH bZa -bZa +giy giy ego bZa @@ -92075,8 +92087,8 @@ wdV wdV ltU jtc +jaa wdV -wfs rnk cLf cLf @@ -92283,7 +92295,7 @@ sid mOb wEc xOg -rVu +bLa qER aUo iXj @@ -93090,7 +93102,7 @@ kAg ujv kmu hGE -nxG +kmu afe kmu tOm @@ -93347,7 +93359,7 @@ kAg vNH kmu opH -knX +fBz fBz fBz pUW @@ -93603,7 +93615,7 @@ sWn kAg veW kmu -tOm +dcI tCE tCE tCE @@ -95149,7 +95161,7 @@ iEj wkf hzF xEL -qtP +deW pdg iGC iGC @@ -95336,7 +95348,7 @@ cLf cLf tyd cLf -hrM +bVA aGz ien csW @@ -95407,7 +95419,7 @@ hDK hzF vCy czW -tSH +hUS hUS hUS hUS @@ -95908,7 +95920,7 @@ pDP umo aMR ygj -qrl +ygj ncX eQi tLI @@ -96164,7 +96176,7 @@ aGA rss aGA rss -dbw +aGA aGA aGA eQi @@ -96175,7 +96187,7 @@ kmu rFV tOm sut -hzF +vsJ hzF hjo gEr @@ -96421,7 +96433,7 @@ ruP lOE mRA dlZ -ygj +qrl pQN pQN eQi @@ -96678,7 +96690,7 @@ ruP jEr qrl ffk -ygj +qrl wKo fIX eQi @@ -96881,8 +96893,8 @@ bqX ogH aeJ xcs -tYQ -tYQ +iMS +iMS tYQ fID nlQ @@ -96935,7 +96947,7 @@ ruP qrl vrR rej -ygj +qrl tQt efc xrV @@ -97138,8 +97150,8 @@ eKR pVC yhk lPz -cBh -cBh +jTd +jTd rKb dla kCD @@ -97192,7 +97204,7 @@ ruP pQN qrl aqR -ygj +qrl ffk ffk eQi @@ -97203,7 +97215,7 @@ kmu aly dxT nBA -hzF +qAo hzF eGn sIX @@ -97449,7 +97461,7 @@ ruP mSm qrl gTh -ygj +qrl qrl qrl eQi @@ -97657,13 +97669,13 @@ typ ckb jlw iRB -gkQ +uyx bGW tbH alc jZj -nAx -kaz +dhl +jZj dbJ mMH juE @@ -97706,9 +97718,9 @@ ruP ffk ohh ffk -ygj +qrl fXU -eDV +qrl eQi vxl rjn @@ -97914,7 +97926,7 @@ typ lCK aHs iRB -kZg +uyx gbM mzI cgo @@ -97977,7 +97989,7 @@ ekL hzF qDg dhO -tSH +cSb cSb cSb cSb @@ -98171,7 +98183,7 @@ rCd kNX eKR tKX -kZg +uyx nPm yjH eKR @@ -98423,10 +98435,10 @@ eKR cNQ kjs ftR -fun -fun +mrq +mrq hSi -sRM +bQc kZA gkQ dBn @@ -98940,7 +98952,7 @@ bCr kYU jTd rkz -lrc +dla eHa ktI ita @@ -98948,7 +98960,7 @@ hOb cwq cwq giv -iPS +cwq wcp juw nKt @@ -98958,8 +98970,8 @@ xDh juw pSO xYn -pSO -jaa +wfs +kmu qbA tCE mJR @@ -99462,7 +99474,7 @@ vCI mXY mXY nPQ -tIN +cwq euR juw wUM @@ -99520,7 +99532,7 @@ loU jKy iBe pOv -kUW +gaK aRt sxk azg @@ -99774,9 +99786,9 @@ nWx cRM hGo dPw -jGZ +mQy kpj -kJl +mQy wYc hGh vSn @@ -100006,11 +100018,11 @@ xQH mcA kqD jpn -vOT -oqt -oqt -aFw -oLH +uzH +sgq +sgq +pUj +wWZ wWZ wWZ utY @@ -100030,10 +100042,10 @@ tCE bTm jKy oeL -dPw +cXn rGQ muf -pOv +lqM lCO umO uhD @@ -100264,9 +100276,9 @@ gLp dNh gGs skV -uzH +vOT nAG -pUj +ekF oLH gUs wWZ @@ -100289,9 +100301,9 @@ hAV hGo tki iEK -wsi +peA bfD -wsi +peA bJQ peA srj @@ -100544,8 +100556,8 @@ tCE bTm gho tGZ -ccZ -rGQ +dPw +jKy naO pOv gaK @@ -101798,7 +101810,7 @@ usF ufr kZw uIU -ufr +kZw kZw rhP fQm @@ -102066,7 +102078,7 @@ qdt akl clG tXi -utH +cmB sYZ cmB pWR @@ -102598,8 +102610,8 @@ prW anT prW sOA -bVA -aKJ +prW +prW jqj dxT aQS @@ -102855,8 +102867,8 @@ crU crU crU crU -crU -crU +dvz +thj iEn eZn emy @@ -103327,11 +103339,11 @@ iMk bDy irx gyl -gvF -qaz +uCl +kmu tHF -qAo -uZx +tCE +viM fDa eMG xBz @@ -103581,10 +103593,10 @@ goB txy tGE cUk -cUk +vXt cUk hFY -wEA +fHI nxG sGs nTT @@ -103837,9 +103849,9 @@ eRu eRu vfJ vSv -grl -dko qXy +dko +hBQ mJG oTX tEW @@ -104100,7 +104112,7 @@ iKc rSL jbL lFE -cBr +aQS deY xMk aQS @@ -104357,7 +104369,7 @@ iKc hle gvF rIb -iAw +wEA swi swi swi @@ -104869,9 +104881,9 @@ rvg vuq hPH iKc -gtB -uSd -gQN +iKc +bsw +wxa vks yhV oYu @@ -104883,8 +104895,8 @@ xOU kBt wdz nOZ -xcb -eqQ +tld +tld dyb qdo exQ @@ -105123,9 +105135,9 @@ kju wMB jrd rvg -slL -slL -slL +xPp +xPp +xPp oXz bsw wxa @@ -105396,7 +105408,7 @@ uig xOU kcY prg -qKm +tld rDl ylj esP @@ -105653,7 +105665,7 @@ mwW xOU xOU xOU -qKm +tld wDD vRZ oQe @@ -105910,7 +105922,7 @@ exk faX cya vpq -qKm +tld xVK ryy ryy @@ -105938,7 +105950,7 @@ xAy pEf sbd soB -sbd +yfL bcm lHm dct @@ -106452,7 +106464,7 @@ xAy rdI byj jvN -sbd +kgO xqB lHm nWu @@ -107187,7 +107199,7 @@ pdz tZF wPX mlV -cpw +dfM cpw jIm xOU @@ -107702,7 +107714,7 @@ pBn cPo qii owp -iQZ +lxX ocV thf qlG @@ -107960,7 +107972,7 @@ tNR oUW mnd peo -bWi +dfM thf dmM pld @@ -109028,8 +109040,8 @@ eyg dUi myg dyv -jxd -jxd +clx +clx svf svf pTJ @@ -109045,7 +109057,7 @@ vPT fIW mqH wCv -oMi +vZJ wgk jKu saJ @@ -109283,9 +109295,9 @@ vME gTV eyg wpn -cFc -svf -svf +lUY +jxd +jxd clx mJb fQO @@ -109794,7 +109806,7 @@ dpU bnK wqU ocB -ocB +mIC xot xot xtY @@ -111102,8 +111114,8 @@ btl qmn ryC mnU -lpe -lpe +qOY +qOY jKp wMt ryC @@ -111361,7 +111373,7 @@ kjI vdZ rgI kyh -qOY +lpe vAj ryC cLf @@ -111576,7 +111588,7 @@ nkA com cnS mSN -tnp +pJp fCG krJ oWr @@ -111833,7 +111845,7 @@ qKj jSu cnS rwF -fCG +rEw mBb atv fTX @@ -111856,7 +111868,7 @@ fTX eSm rhS rhS -mVi +bhG rhS rhS rhS @@ -114176,7 +114188,7 @@ neE uXw bhv qaZ -vUh +rBr hoM rGq vUh @@ -117004,7 +117016,7 @@ kEu fsQ aGC vpn -qvX +iXR uvN wQz kiW @@ -117261,9 +117273,9 @@ kEu kEu aQo aQo -sIm -sIm -sIm +aQo +aQo +aQo kEu uFC vaU @@ -121338,12 +121350,12 @@ cCI hbV hbV qRJ -rka +rhs nVj rka xUT -tRP -tRP +hbV +hbV tVV jQS ucG @@ -121595,10 +121607,10 @@ bKQ hBF rYZ xay -xay -hBF -hBF -hBF +kQa +pOQ +pOQ +kQa ulA kQa baP @@ -121855,7 +121867,7 @@ cnt hbV hbV hbV -hbV +uyo kQa pJt uhz @@ -142421,15 +142433,15 @@ hhX urC jrm pJF -bcg -bcg -bcg -bcg -bcg -nSF +qyq +qyq +qyq +qyq +qyq +wUH vVj -mua -wJk +iAQ +oDw wnw fYe fYe @@ -142679,18 +142691,18 @@ urC jrm qyq bDN -sRq -wqq -qyq -wUH -sRq +tWl +iyg +bcg +tmQ +duf lSI gSJ tIO wnw fYe fYe -hhX +cLf hhX hhX hhX @@ -147794,7 +147806,7 @@ pEH pEH vxX iaN -wli +iaN aJP iaN sdc @@ -149625,7 +149637,7 @@ mqc mfw bGk bGk -ncR +xUJ ncR bGk ahq @@ -149890,7 +149902,7 @@ vUo laf kuy bVY -lgA +tqV eXW fnh mhc @@ -150649,7 +150661,7 @@ taj kYT ogL cPZ -rVL +auB rVL bGk qAU @@ -150906,8 +150918,8 @@ wWJ kYT auB waT -rVL -auB +xiw +ycT aPC jql sTj @@ -151164,7 +151176,7 @@ kYT xtb fwJ ipZ -auB +mjj aPC jql sTj @@ -151420,7 +151432,7 @@ wWJ kYT auB auB -rVL +auB vQn aPC eeQ @@ -151443,7 +151455,7 @@ cNG vtv lVD iom -dpj +tjn aRZ iMq vxX @@ -151699,7 +151711,7 @@ apk cNG hce wLq -hce +dpj cUm tve iMq @@ -152188,7 +152200,7 @@ nGv bgY bgY bgY -bgY +dog qoN fnh wnL @@ -152445,7 +152457,7 @@ fnh qoN rNJ koX -bgY +dog qoN fnh igq @@ -153688,7 +153700,7 @@ mIW mIW mIW hED -bme +hED hnJ hED hED @@ -155548,8 +155560,8 @@ vxX vxX vxX vxX -vxX -tXg +dGk +unk hhX hhX hhX @@ -156069,11 +156081,11 @@ hhX hhX hhX hhX +unk tXg vxX vxX vxX -vxX hhX hhX hhX @@ -156836,9 +156848,9 @@ vxX vxX unk unk -tXg +unk vxX -tXg +unk unk unk vxX @@ -157093,13 +157105,13 @@ azk azk azk unk -gMk -vxX -vxX +dra vxX +nuH vxX vxX vxX +bme vxX hhX hhX @@ -157356,7 +157368,7 @@ uet vxX gMk mGM -tXg +unk unk hhX hhX @@ -160413,7 +160425,7 @@ lIr gcN xTZ igS -aEY +pdp jGB nRA tqJ @@ -160669,7 +160681,7 @@ pco lIr mGo vqt -vqt +mic nSn jGB vyL @@ -160686,8 +160698,8 @@ lgp hzF lSM gcV -iGC -tkD +swU +aCk uxt uxt uxt @@ -160926,7 +160938,7 @@ oxG hCs jnm jKD -vqt +mic rzb jGB jGB @@ -160944,7 +160956,7 @@ hzF sNi bOi iGC -tkD +qyU uxt uxt uxt @@ -161201,7 +161213,7 @@ hzF vQT clM caP -tkD +aCk uxt uxt uxt @@ -161438,7 +161450,7 @@ mnP mnP dAS kdW -gOG +gcN ffA wvc gEm @@ -161713,9 +161725,9 @@ mGW iZz hzF kCu -jbq -jbq -jbq +poe +poe +soC jbq vnj jCr @@ -169890,7 +169902,7 @@ oAs gOc gOc gOc -nzn +oAs jqf oWg gMk @@ -172467,7 +172479,7 @@ dpp gKt dVp dRh -fdN +xBU xje ipx vxX @@ -172716,7 +172728,7 @@ vRP bWi bWi iHH -nmj +dfM wPX dfM xtZ @@ -173743,7 +173755,7 @@ raz obA gbR omL -wME +omL acY aqa vRA @@ -176614,8 +176626,8 @@ iZa nUb jaH anN -gjJ -gjJ +ktL +asd uIj qVV gNZ @@ -176871,7 +176883,7 @@ elk lde xtL anN -ktL +kWC gjJ qpT aYG @@ -179440,7 +179452,7 @@ urI rAP rAP rAP -odk +urI kdE xjL grz diff --git a/_maps/minigame/CTF/cruiser.dmm b/_maps/minigame/CTF/cruiser.dmm index 1ed48e3e8d33d4..897ea48c860ef5 100644 --- a/_maps/minigame/CTF/cruiser.dmm +++ b/_maps/minigame/CTF/cruiser.dmm @@ -479,7 +479,7 @@ "CA" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional, /turf/template_noop, -/area/template_noop) +/area/centcom/ctf) "CU" = ( /obj/structure/window/reinforced/spawner/directional/east{ resistance_flags = 64 diff --git a/_maps/minigame/deathmatch/OSHA_Violator.dmm b/_maps/minigame/deathmatch/OSHA_Violator.dmm index 114bb695c47816..92702187f29ec6 100644 --- a/_maps/minigame/deathmatch/OSHA_Violator.dmm +++ b/_maps/minigame/deathmatch/OSHA_Violator.dmm @@ -2,11 +2,11 @@ "ac" = ( /obj/structure/closet/crate/medical, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "ae" = ( /obj/effect/mob_spawn/corpse/human/cargo_tech, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "ai" = ( /turf/closed/indestructible/reinforced, /area/deathmatch) @@ -1096,15 +1096,15 @@ "Zr" = ( /obj/item/storage/backpack/duffelbag/syndie/med/medicalbundle, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "Zz" = ( /obj/machinery/power/singularity_beacon/syndicate, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "ZD" = ( /obj/item/storage/toolbox/syndicate, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) (1,1,1) = {" je diff --git a/_maps/minigame/deathmatch/arena_station.dmm b/_maps/minigame/deathmatch/arena_station.dmm index c3fb3ed39034d6..0cca2ac3d9d7e6 100644 --- a/_maps/minigame/deathmatch/arena_station.dmm +++ b/_maps/minigame/deathmatch/arena_station.dmm @@ -22,7 +22,7 @@ "bE" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "bR" = ( /obj/machinery/computer{ dir = 4 @@ -930,7 +930,7 @@ /area/deathmatch) "LY" = ( /obj/structure/closet/secure_closet, -/obj/item/gun/energy/xray, +/obj/item/gun/energy/laser/xray, /turf/open/indestructible/vault, /area/deathmatch) "Mc" = ( @@ -1078,7 +1078,7 @@ /obj/structure/closet, /obj/item/toy/plush/lizard_plushie/green, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "QS" = ( /obj/effect/turf_decal/bot_red, /turf/open/indestructible/plating, diff --git a/_maps/minigame/deathmatch/maint_mania.dmm b/_maps/minigame/deathmatch/maint_mania.dmm index 2433686e673e87..984da1f698cf70 100644 --- a/_maps/minigame/deathmatch/maint_mania.dmm +++ b/_maps/minigame/deathmatch/maint_mania.dmm @@ -34,7 +34,7 @@ "ga" = ( /obj/structure/lattice, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "gJ" = ( /obj/item/ammo_casing/shotgun/stunslug, /turf/open/indestructible, @@ -170,7 +170,7 @@ "ur" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "vB" = ( /obj/machinery/light/small/directional/east, /turf/open/indestructible, @@ -202,7 +202,7 @@ desc = "An old, blue toolbox, it looks soulful." }, /turf/open/space/basic, -/area/template_noop) +/area/space/nearstation) "Bs" = ( /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, @@ -220,7 +220,7 @@ /obj/structure/lattice/catwalk, /obj/effect/mob_spawn/corpse/human/engineer/mod, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Dt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/loading_area{ @@ -298,7 +298,7 @@ /obj/structure/lattice/catwalk, /obj/structure/statue/sandstone/assistant, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Ij" = ( /turf/open/space/basic, /area/template_noop) @@ -335,7 +335,7 @@ "MC" = ( /obj/effect/mob_spawn/corpse/human/assistant, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "Na" = ( /obj/structure/rack, /obj/item/reagent_containers/cup/soda_cans/starkist, @@ -396,7 +396,7 @@ "Qr" = ( /obj/structure/closet/wardrobe, /turf/open/floor/plating/airless, -/area/template_noop) +/area/space/nearstation) "QN" = ( /obj/item/razor, /obj/structure/table/reinforced, diff --git a/_maps/minigame/deathmatch/meta_brig.dmm b/_maps/minigame/deathmatch/meta_brig.dmm index 1cdd33982bbce4..d076e0fec276b0 100644 --- a/_maps/minigame/deathmatch/meta_brig.dmm +++ b/_maps/minigame/deathmatch/meta_brig.dmm @@ -20,11 +20,7 @@ /obj/structure/marker_beacon/burgundy, /obj/structure/lattice/catwalk, /turf/template_noop, -/area/template_noop) -"an" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space) +/area/space/nearstation) "aw" = ( /obj/structure/extinguisher_cabinet/directional/east, /turf/closed/indestructible/reinforced, @@ -1444,7 +1440,7 @@ "vC" = ( /obj/structure/lattice, /turf/template_noop, -/area/template_noop) +/area/space/nearstation) "vD" = ( /obj/structure/table, /obj/structure/cable, @@ -2626,10 +2622,8 @@ /turf/open/indestructible, /area/deathmatch) "Mb" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/indestructible, /area/deathmatch) "Mk" = ( @@ -3307,12 +3301,10 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 }, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/indestructible, /area/deathmatch) "WD" = ( @@ -4492,7 +4484,7 @@ IJ IJ "} (32,1,1) = {" -an +vC Fi Fi Fi diff --git a/_maps/minigame/deathmatch/species_warfare.dmm b/_maps/minigame/deathmatch/species_warfare.dmm index d452a28d41d810..af11eaf15c355d 100644 --- a/_maps/minigame/deathmatch/species_warfare.dmm +++ b/_maps/minigame/deathmatch/species_warfare.dmm @@ -34,7 +34,7 @@ /area/deathmatch) "cd" = ( /obj/effect/turf_decal/tile/dark_blue/full, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /obj/machinery/computer{ dir = 4 }, @@ -574,7 +574,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /turf/open/indestructible, /area/deathmatch) "wb" = ( @@ -700,7 +700,7 @@ /area/deathmatch) "zt" = ( /obj/effect/turf_decal/tile/dark_blue/full, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /obj/machinery/computer{ dir = 8 }, @@ -867,7 +867,7 @@ /obj/item/ammo_casing/rebar, /obj/item/ammo_casing/rebar, /obj/item/ammo_casing/rebar, -/obj/machinery/light/built/directional/north, +/obj/machinery/light/empty/directional/north, /turf/open/indestructible, /area/deathmatch) "EC" = ( @@ -963,7 +963,7 @@ /obj/effect/turf_decal/tile/dark_blue/full, /obj/structure/rack, /obj/item/gun/energy/e_gun/mini/practice_phaser, -/obj/machinery/light/built/directional/north, +/obj/machinery/light/empty/directional/north, /turf/open/indestructible/dark/smooth_large, /area/deathmatch) "Iu" = ( @@ -1164,7 +1164,7 @@ /obj/structure/rack, /obj/item/cane, /obj/structure/fireaxecabinet/directional/south, -/obj/machinery/light/built/directional/south, +/obj/machinery/light/empty/directional/south, /turf/open/indestructible/dark/smooth_large, /area/deathmatch) "ON" = ( diff --git a/_maps/safehouses/README.md b/_maps/safehouses/README.md index 8d64502343ba81..e68470d6d0b841 100644 --- a/_maps/safehouses/README.md +++ b/_maps/safehouses/README.md @@ -3,7 +3,7 @@ ## Creating a new safe house 1. Create a new map inside the `_maps\safe_houses` folder using the TGM format. -2. Create a new dm file inside `modules\bitrunning\virtual_domain\safe_houses` folder.. +2. Update `safehouse.toml` with your new file 3. Place exit and goal landmarks (obj/effect/landmark/bitrunning/..). Generally, 3 exits and 2 goals are ok. 4. Ideally, leave 3 spaces for gear. This has usually been xy [1x1] [1x2] [1x3] 5. Place the modular map connector at the bottom left tile. diff --git a/_maps/safehouses/maintsafe.dmm b/_maps/safehouses/maintsafe.dmm new file mode 100644 index 00000000000000..c3579c43c9cd55 --- /dev/null +++ b/_maps/safehouses/maintsafe.dmm @@ -0,0 +1,131 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"g" = ( +/obj/structure/broken_flooring/corner/directional/north, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"i" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"j" = ( +/turf/closed/wall, +/area/virtual_domain/safehouse) +"l" = ( +/obj/effect/landmark/bitrunning/hololadder_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/virtual_domain/safehouse) +"q" = ( +/obj/effect/landmark/bitrunning/hololadder_spawn, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/virtual_domain/safehouse) +"t" = ( +/obj/effect/landmark/bitrunning/cache_goal_turf, +/turf/open/indestructible/bitrunning_transport, +/area/virtual_domain/safehouse) +"v" = ( +/obj/structure/broken_flooring/side/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"y" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"C" = ( +/obj/structure/broken_flooring/singular/directional/north, +/obj/structure/railing/corner/end/flip, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"E" = ( +/obj/machinery/light/red/dim/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"I" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"M" = ( +/obj/effect/landmark/bitrunning/hololadder_spawn, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/virtual_domain/safehouse) +"N" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"O" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) +"Y" = ( +/obj/machinery/light/red/dim/directional/east, +/turf/open/floor/plating, +/area/virtual_domain/safehouse) + +(1,1,1) = {" +j +j +j +j +j +j +"} +(2,1,1) = {" +j +i +E +g +M +j +"} +(3,1,1) = {" +j +y +N +v +l +j +"} +(4,1,1) = {" +I +N +a +C +q +j +"} +(5,1,1) = {" +j +a +y +N +t +j +"} +(6,1,1) = {" +j +O +Y +N +t +j +"} +(7,1,1) = {" +j +j +j +j +j +j +"} diff --git a/_maps/shuttles/arrival_catwalk.dmm b/_maps/shuttles/arrival_catwalk.dmm index e50d54a186a912..0da64ca06a5386 100644 --- a/_maps/shuttles/arrival_catwalk.dmm +++ b/_maps/shuttles/arrival_catwalk.dmm @@ -116,9 +116,7 @@ "qf" = ( /obj/item/kirbyplants/organic/plant21, /obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/shuttle/arrival) "qt" = ( @@ -466,9 +464,7 @@ "Tw" = ( /obj/item/kirbyplants/organic/plant21, /obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/shuttle/arrival) "TZ" = ( diff --git a/_maps/shuttles/arrival_delta.dmm b/_maps/shuttles/arrival_delta.dmm index 8fab834772511f..475208cf59e5de 100644 --- a/_maps/shuttles/arrival_delta.dmm +++ b/_maps/shuttles/arrival_delta.dmm @@ -201,10 +201,6 @@ /obj/structure/window/reinforced/shuttle, /turf/open/floor/grass, /area/shuttle/arrival) -"az" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) "aC" = ( /obj/machinery/computer{ dir = 1; @@ -337,6 +333,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/shuttle/arrival) "DV" = ( @@ -357,6 +354,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/shuttle/arrival) "Nn" = ( @@ -395,7 +393,7 @@ ah ah ah ah -az +ag an ag ag @@ -547,7 +545,7 @@ ah ah ah ah -az +ag an ag ag diff --git a/_maps/shuttles/arrival_kilo.dmm b/_maps/shuttles/arrival_kilo.dmm index 2776589602e43d..45cf4d898ef6d9 100644 --- a/_maps/shuttles/arrival_kilo.dmm +++ b/_maps/shuttles/arrival_kilo.dmm @@ -20,8 +20,12 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "ae" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "af" = ( /obj/effect/spawner/structure/window/reinforced/shuttle, @@ -73,6 +77,7 @@ /obj/effect/turf_decal/bot, /obj/structure/chair/comfy/shuttle, /obj/machinery/light/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "ak" = ( @@ -118,6 +123,7 @@ }, /obj/structure/chair/comfy/shuttle, /obj/machinery/light/small/directional/west, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "au" = ( @@ -203,6 +209,7 @@ dir = 1 }, /obj/machinery/light/small/directional/west, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "aN" = ( @@ -359,13 +366,13 @@ aY lA "} (5,1,1) = {" -ae +ac aj rV aT aV -aN ae +ac "} (6,1,1) = {" af @@ -423,11 +430,11 @@ ab "} (12,1,1) = {" ac -ae +ac at aW aM -ae +ac ac "} (13,1,1) = {" diff --git a/_maps/shuttles/emergency_birdshot.dmm b/_maps/shuttles/emergency_birdshot.dmm index e6839a408333a7..fb685d3c804fc8 100644 --- a/_maps/shuttles/emergency_birdshot.dmm +++ b/_maps/shuttles/emergency_birdshot.dmm @@ -214,7 +214,7 @@ anchored = 1; dir = 8 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/plating/airless, /area/shuttle/escape) "kZ" = ( diff --git a/_maps/shuttles/emergency_cere.dmm b/_maps/shuttles/emergency_cere.dmm index 72de7bc50d4ab5..9369eb115a1894 100644 --- a/_maps/shuttles/emergency_cere.dmm +++ b/_maps/shuttles/emergency_cere.dmm @@ -352,10 +352,10 @@ /turf/open/floor/iron, /area/shuttle/escape) "bL" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = 32 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron, /area/shuttle/escape) "bM" = ( @@ -1541,7 +1541,7 @@ bn bn ac ad -aZ +bL bc bc ba @@ -1585,7 +1585,7 @@ aZ aZ aZ ME -bL +bc bc bT bW diff --git a/_maps/shuttles/emergency_cruise.dmm b/_maps/shuttles/emergency_cruise.dmm index a5dd675aa0ec86..6b9fb38b134fb6 100644 --- a/_maps/shuttles/emergency_cruise.dmm +++ b/_maps/shuttles/emergency_cruise.dmm @@ -2327,10 +2327,7 @@ /turf/open/floor/iron/dark/herringbone, /area/shuttle/escape/brig) "Fq" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/carpet/red, /area/shuttle/escape) "FC" = ( @@ -4348,7 +4345,7 @@ bP bj QI hp -Fq +La nk gv Ks @@ -4395,7 +4392,7 @@ jt jt jt uV -La +Fq nk fI uu diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm index da90701ec5aa25..94807e385b655e 100644 --- a/_maps/shuttles/emergency_delta.dmm +++ b/_maps/shuttles/emergency_delta.dmm @@ -352,13 +352,10 @@ }, /turf/open/floor/iron/white, /area/shuttle/escape) -"aT" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) "aU" = ( /obj/effect/turf_decal/bot, /obj/machinery/light/directional/west, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron, /area/shuttle/escape) "aV" = ( @@ -408,6 +405,7 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/shuttle/escape) "ba" = ( @@ -690,6 +688,7 @@ /obj/structure/table/reinforced, /obj/item/storage/box/zipties, /obj/item/radio/intercom/directional/south, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape/brig) "bX" = ( @@ -718,6 +717,7 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/shuttle/escape) "ci" = ( @@ -727,6 +727,7 @@ /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark, /area/shuttle/escape) "cj" = ( @@ -1004,6 +1005,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron, /area/shuttle/escape) "Jl" = ( @@ -1107,7 +1109,7 @@ hB af af aO -aT +af aW af hB @@ -1246,7 +1248,7 @@ bN bU af af -aT +af hB af af @@ -1305,7 +1307,7 @@ af af bt hB -aT +af af WG jU @@ -1457,7 +1459,7 @@ aE dY ah af -aT +af af af bY @@ -1525,7 +1527,7 @@ ae af af af -aT +af hB af af @@ -1634,7 +1636,7 @@ hB hB af af -aT +af af hB hB diff --git a/_maps/shuttles/emergency_fame.dmm b/_maps/shuttles/emergency_fame.dmm index 088944a2a28892..32354e7398968d 100644 --- a/_maps/shuttles/emergency_fame.dmm +++ b/_maps/shuttles/emergency_fame.dmm @@ -115,6 +115,7 @@ "fm" = ( /obj/effect/spawner/random/vending/snackvend, /obj/effect/turf_decal/box, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark, /area/shuttle/escape) "fS" = ( @@ -428,8 +429,9 @@ /turf/open/floor/mineral/silver, /area/shuttle/escape) "qM" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/nodiagonal, +/obj/structure/chair/comfy/shuttle, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/mineral/titanium, /area/shuttle/escape) "qW" = ( /obj/effect/turf_decal/siding{ @@ -532,6 +534,16 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/shuttle/escape) +"wX" = ( +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/wood, +/area/shuttle/escape) +"wY" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/bot, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "xc" = ( /obj/structure/table, /obj/machinery/microwave, @@ -697,6 +709,7 @@ /area/shuttle/escape) "EF" = ( /obj/item/kirbyplants/organic/plant16, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/wood, /area/shuttle/escape) "Fi" = ( @@ -976,6 +989,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating, /area/shuttle/escape) +"UW" = ( +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) "Vl" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/decal/cleanable/dirt, @@ -1271,7 +1288,7 @@ iN Cz "} (9,1,1) = {" -qM +Oa Oa aX Uu @@ -1293,7 +1310,7 @@ Oa mc Oa Oa -qM +Oa "} (10,1,1) = {" mz @@ -1317,7 +1334,7 @@ cu cu Yp Ty -PP +qM mz "} (11,1,1) = {" @@ -1349,8 +1366,8 @@ mz mz NN eW -RZ -qM +wX +Oa mz mz Ws @@ -1364,14 +1381,14 @@ Oa Ws mz mz -qM -Yp +Oa +UW Yp PP mz "} (13,1,1) = {" -qM +Oa Oa FJ RZ @@ -1392,8 +1409,8 @@ Bj mz Yp Yp -oc -qM +wY +Oa "} (14,1,1) = {" Oa diff --git a/_maps/shuttles/emergency_fish.dmm b/_maps/shuttles/emergency_fish.dmm index 2ed11465b3a379..19395c99589e06 100644 --- a/_maps/shuttles/emergency_fish.dmm +++ b/_maps/shuttles/emergency_fish.dmm @@ -45,6 +45,7 @@ dir = 4 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/titanium/tiled/white, /area/shuttle/escape) "cZ" = ( @@ -146,6 +147,14 @@ /obj/effect/turf_decal/tile/dark_red/opposingcorners, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) +"hP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/wood/tile, +/area/shuttle/escape) "iA" = ( /obj/structure/chair/pew/right{ dir = 1 @@ -228,10 +237,6 @@ }, /turf/open/floor/wood/tile, /area/shuttle/escape) -"oA" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) "oB" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 1 @@ -780,6 +785,7 @@ dir = 8 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/titanium/tiled/white, /area/shuttle/escape) "Tn" = ( @@ -869,8 +875,11 @@ /turf/open/floor/mineral/titanium/tiled/blue, /area/shuttle/escape) "WX" = ( -/obj/structure/sign/warning, -/turf/closed/wall/mineral/titanium/nodiagonal, +/obj/effect/turf_decal/tile/dark/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/warning/directional/east, +/turf/open/floor/wood/tile, /area/shuttle/escape) "Xx" = ( /obj/structure/chair/comfy/shuttle{ @@ -1047,7 +1056,7 @@ Kg "} (5,1,1) = {" Me -oA +jL SS qA aa @@ -1145,9 +1154,9 @@ Ih Ih Ou pQ -BA -bB +hP bB +WX bB BA bB @@ -1163,7 +1172,7 @@ Kg "} (9,1,1) = {" Me -oA +jL cf qA aa @@ -1174,9 +1183,9 @@ qO AV EC jL -WX +jL QN -WX +jL jL aa XZ diff --git a/_maps/shuttles/emergency_kilo.dmm b/_maps/shuttles/emergency_kilo.dmm index 43f92baecdf260..1454cbee007c24 100644 --- a/_maps/shuttles/emergency_kilo.dmm +++ b/_maps/shuttles/emergency_kilo.dmm @@ -41,8 +41,8 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "ai" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/structure/sign/nanotrasen/directional/north, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/escape) "ao" = ( /obj/effect/turf_decal/delivery, @@ -150,6 +150,7 @@ /obj/machinery/camera/autoname{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "bb" = ( @@ -169,10 +170,6 @@ /obj/machinery/status_display/evac, /turf/closed/wall/mineral/titanium, /area/shuttle/escape) -"bh" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) "bi" = ( /obj/effect/turf_decal/bot, /obj/machinery/suit_storage_unit/standard_unit, @@ -217,6 +214,7 @@ pixel_y = 4 }, /obj/item/clothing/mask/breath, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "bp" = ( @@ -288,6 +286,7 @@ /obj/machinery/camera/autoname{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/titanium/tiled/yellow, /area/shuttle/escape) "bO" = ( @@ -555,6 +554,7 @@ /obj/machinery/camera/autoname{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium/tiled/yellow, /area/shuttle/escape) "hE" = ( @@ -1254,6 +1254,7 @@ dir = 4 }, /obj/machinery/light/directional/west, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape/brig) "VD" = ( @@ -1326,7 +1327,7 @@ ab ac ab ac -ai +ab bb ab bq @@ -1338,7 +1339,7 @@ ab bX ab bX -ai +ab ab as cS @@ -1430,8 +1431,8 @@ cS (5,1,1) = {" ab ac +ab ai -as cw IX Mo @@ -1543,7 +1544,7 @@ bY kh dZ Uc -bh +ab bo Em Wu @@ -1592,9 +1593,9 @@ cT (11,1,1) = {" ab ac +ab ai as -as aO aX bi @@ -1704,7 +1705,7 @@ ab ab ab ac -ai +ab ac ab ac @@ -1716,7 +1717,7 @@ ab ac ab ab -ai +ab ab as cS diff --git a/_maps/shuttles/emergency_lance.dmm b/_maps/shuttles/emergency_lance.dmm index 3b8dbea2cc7993..c7690ad3832a50 100644 --- a/_maps/shuttles/emergency_lance.dmm +++ b/_maps/shuttles/emergency_lance.dmm @@ -617,9 +617,7 @@ /area/shuttle/escape) "ry" = ( /obj/structure/chair/comfy/shuttle, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark/textured, /area/shuttle/escape) "sn" = ( @@ -935,7 +933,6 @@ /obj/machinery/turretid{ control_area = "/area/shuttle/escape"; desc = "Used to control the Lance's automated defenses."; - icon_state = "control_kill"; lethal = 1; pixel_y = -26; req_access = list("command") @@ -1340,9 +1337,6 @@ }, /area/shuttle/escape) "Pe" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/button/door/directional/south{ id = "lance_psych"; name = "Panic Room Bolt Control"; @@ -1350,6 +1344,7 @@ specialfunctions = 4 }, /obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/white/textured_large, /area/shuttle/escape) "Px" = ( diff --git a/_maps/shuttles/emergency_luxury.dmm b/_maps/shuttles/emergency_luxury.dmm index 9ca9ab021dc6b2..cdb6ce920ccda0 100644 --- a/_maps/shuttles/emergency_luxury.dmm +++ b/_maps/shuttles/emergency_luxury.dmm @@ -504,7 +504,7 @@ /turf/open/floor/iron, /area/shuttle/escape) "ul" = ( -/obj/item/food/sandwich/cheese/grilled{ +/obj/item/food/sandwich/grilled_cheese{ pixel_y = 11 }, /obj/structure/table/wood/fancy/black, diff --git a/_maps/shuttles/emergency_monastery.dmm b/_maps/shuttles/emergency_monastery.dmm index e1c8d5a97b575d..10ff3ff1801168 100644 --- a/_maps/shuttles/emergency_monastery.dmm +++ b/_maps/shuttles/emergency_monastery.dmm @@ -543,8 +543,8 @@ /turf/open/floor/carpet, /area/shuttle/escape) "jk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/plating, /area/shuttle/escape) "jn" = ( @@ -637,9 +637,9 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "kv" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/structure/cable, +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/iron/dark, /area/shuttle/escape) "kw" = ( /obj/structure/chair/wood, @@ -1340,10 +1340,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/camera/directional/west{ - c_tag = "Monastery Archives Access Tunnel"; - network = list("ss13","monastery") - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -3242,6 +3238,10 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/camera/directional/west{ + c_tag = "Monastery Archives Access Tunnel"; + network = list("ss13","monastery") + }, /turf/open/floor/iron/dark, /area/shuttle/escape) "TJ" = ( @@ -5606,8 +5606,8 @@ JG (24,1,1) = {" zE zE -jk -Am +zE +kv rQ XI Am @@ -6444,7 +6444,7 @@ zE zE Pe jc -kv +zE lc zE jc @@ -6527,7 +6527,7 @@ zE zE zE zE -lE +jk zE jc jc diff --git a/_maps/shuttles/emergency_nebula.dmm b/_maps/shuttles/emergency_nebula.dmm index 4a8fb7ecd9787d..267454ee5ebff6 100644 --- a/_maps/shuttles/emergency_nebula.dmm +++ b/_maps/shuttles/emergency_nebula.dmm @@ -117,8 +117,12 @@ /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape) "ej" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark, /area/shuttle/escape) "eU" = ( /obj/structure/chair/comfy/shuttle{ @@ -215,6 +219,15 @@ }, /turf/open/floor/iron/dark, /area/shuttle/escape) +"ii" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/sign/nanotrasen/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/shuttle/escape) "is" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/wood, @@ -1594,10 +1607,8 @@ /area/shuttle/escape) "GE" = ( /obj/effect/turf_decal/bot, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "GM" = ( @@ -1678,9 +1689,7 @@ }, /obj/structure/closet/crate/internals, /obj/effect/turf_decal/bot, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "GW" = ( @@ -1944,6 +1953,11 @@ }, /turf/open/floor/iron/dark, /area/shuttle/escape) +"Od" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark/corner, +/area/shuttle/escape) "OB" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 @@ -2221,9 +2235,7 @@ /area/shuttle/escape) "SH" = ( /obj/structure/hedge, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "Tc" = ( @@ -2283,10 +2295,8 @@ /area/shuttle/escape) "UK" = ( /obj/effect/turf_decal/bot, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "UQ" = ( @@ -2322,6 +2332,7 @@ /obj/effect/turf_decal/trimline/neutral/end{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/iron/dark/small, /area/shuttle/escape) "VZ" = ( @@ -2671,13 +2682,13 @@ kZ kZ kZ kZ -ej +kZ kZ kZ UU UU UU -ej +kZ kZ kZ kZ @@ -2700,14 +2711,14 @@ Ra kZ GM rF -wP +ej fD Kv qJ wP fD Kv -Am +Od Jy kZ Bu @@ -3157,7 +3168,7 @@ Gh wP fD Kv -CZ +ii fm kZ mw @@ -3181,13 +3192,13 @@ kZ kZ kZ vk -ej +kZ YB kZ UU UU UU -ej +kZ sU kZ CH diff --git a/_maps/shuttles/emergency_omega.dmm b/_maps/shuttles/emergency_omega.dmm index dcd1f6e46438ca..fb87813c4a92ff 100644 --- a/_maps/shuttles/emergency_omega.dmm +++ b/_maps/shuttles/emergency_omega.dmm @@ -7,10 +7,6 @@ /obj/structure/grille, /turf/open/floor/plating, /area/shuttle/escape) -"ac" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) "ae" = ( /obj/structure/chair/comfy/shuttle, /turf/open/floor/mineral/plastitanium/red, @@ -20,6 +16,7 @@ dir = 8 }, /obj/item/radio/intercom/directional/north, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape/brig) "al" = ( @@ -587,6 +584,7 @@ /area/shuttle/escape) "Am" = ( /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/escape/brig) "Dh" = ( @@ -608,6 +606,7 @@ }, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/iron/dark, /area/shuttle/escape) "Ge" = ( @@ -682,7 +681,7 @@ aa aa aa qX -ac +aa ay aa sY @@ -690,7 +689,7 @@ sY sY aa aP -ac +aa aP aa aa @@ -783,7 +782,7 @@ bt bv "} (6,1,1) = {" -ac +aa ab IX sY @@ -892,7 +891,7 @@ aa sY sY aa -ac +aa aa sY sY @@ -900,7 +899,7 @@ sY sY sY aa -ac +aa aa aa aa diff --git a/_maps/shuttles/emergency_raven.dmm b/_maps/shuttles/emergency_raven.dmm index 7eb255fc2d42dc..7b96165e0142d6 100644 --- a/_maps/shuttles/emergency_raven.dmm +++ b/_maps/shuttles/emergency_raven.dmm @@ -759,8 +759,12 @@ /turf/open/floor/plating, /area/shuttle/escape) "cg" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/west, +/turf/open/floor/iron/dark, /area/shuttle/escape) "ch" = ( /obj/effect/turf_decal/stripes/white/corner{ @@ -939,8 +943,9 @@ /turf/open/floor/iron/dark, /area/shuttle/escape) "cP" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/departments/cargo/directional/south, +/turf/open/floor/iron/dark, /area/shuttle/escape) "cQ" = ( /obj/effect/turf_decal/delivery/white, @@ -1466,7 +1471,6 @@ "ep" = ( /obj/machinery/turretid{ desc = "Used to the Raven's automated defenses."; - icon_state = "control_kill"; lethal = 1; pixel_x = 5; pixel_y = 32; @@ -1488,6 +1492,13 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/plating/airless, /area/shuttle/escape) +"fB" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/east, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "fD" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/bot, @@ -1528,6 +1539,14 @@ /obj/structure/table/reinforced, /turf/open/floor/plating, /area/shuttle/escape) +"ri" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/east, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "vw" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/decal/cleanable/dirt, @@ -1545,6 +1564,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/shuttle/escape) +"Cz" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/vacuum/external/directional/west, +/turf/open/floor/iron/dark, +/area/shuttle/escape) "Ds" = ( /obj/machinery/button/door{ id = "escape_cockpit_blast"; @@ -1772,7 +1799,7 @@ bt bC ax ax -cg +ax cd ax ax @@ -1782,7 +1809,7 @@ SA ax ax cd -cg +ax ax ax dH @@ -1806,7 +1833,7 @@ aZ bD br bW -ch +Cz cr cz cF @@ -1816,7 +1843,7 @@ bP cU br dg -cr +cg dv ax dI @@ -1913,11 +1940,11 @@ bP bP bP bP -bP cP ax ax ax +ax dr ax ax @@ -2117,11 +2144,11 @@ bP bP bP bP -bP cP ax ax ax +ax dr ax ax @@ -2214,7 +2241,7 @@ bA bL br ca -cl +fB cs cC cG @@ -2224,7 +2251,7 @@ bP cU br do -cs +ri dy ax dQ @@ -2248,7 +2275,7 @@ bB bM ax ax -cg +ax ct ax ax @@ -2258,7 +2285,7 @@ Pd ax ax cd -cg +ax ax ax dR diff --git a/_maps/shuttles/emergency_supermatter.dmm b/_maps/shuttles/emergency_supermatter.dmm index ca1b7ea0d272ce..0dca7d46d3ac2b 100644 --- a/_maps/shuttles/emergency_supermatter.dmm +++ b/_maps/shuttles/emergency_supermatter.dmm @@ -3,8 +3,11 @@ /turf/template_noop, /area/template_noop) "ac" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/mineral/titanium, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/structure/sign/warning/radiation/directional/south, +/turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "ad" = ( /obj/effect/spawner/structure/window/reinforced/shuttle, @@ -111,10 +114,12 @@ pixel_x = 4; pixel_y = -4 }, +/obj/structure/sign/warning/radiation/directional/west, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "aE" = ( /obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/warning/radiation/directional/east, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "aF" = ( @@ -127,8 +132,11 @@ /turf/open/floor/plating, /area/shuttle/escape) "aI" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/mineral/titanium/nodiagonal, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/structure/sign/warning/radiation/directional/south, +/turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "aL" = ( /obj/machinery/door/airlock/external/ruin{ @@ -265,6 +273,7 @@ }, /obj/item/clothing/glasses/meson/engine, /obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/radiation/directional/north, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "bj" = ( @@ -273,6 +282,7 @@ }, /obj/item/clothing/glasses/meson/engine, /obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/radiation/directional/north, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "bk" = ( @@ -303,6 +313,14 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) +"yI" = ( +/obj/structure/closet/radiation{ + anchored = 1 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) "Bi" = ( /obj/structure/closet/radiation{ anchored = 1 @@ -313,6 +331,14 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) +"Op" = ( +/obj/structure/closet/radiation{ + anchored = 1 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/sign/warning/radiation/directional/east, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) "UA" = ( /obj/machinery/status_display/evac{ pixel_y = -32 @@ -329,7 +355,7 @@ aa aa aw aA -ac +ae aF aw aa @@ -348,7 +374,7 @@ aa aw ae ad -ac +ae ae ad aw @@ -369,10 +395,10 @@ bc be "} (3,1,1) = {" -ac +ae bj ag -ag +yI Bi ag ag @@ -402,9 +428,9 @@ ar ar ar ar -ar aI aw +aw aa aM aa @@ -498,8 +524,8 @@ av av av av -av -aI +ac +aw aw aa aM @@ -513,10 +539,10 @@ aa aa "} (9,1,1) = {" -ac +ae bi ag -ag +Op pb ag ag @@ -540,7 +566,7 @@ be aw ae ad -ac +ae ae ad aw @@ -569,7 +595,7 @@ aa aa aw aA -ac +ae aA aw aa diff --git a/_maps/shuttles/emergency_tranquility.dmm b/_maps/shuttles/emergency_tranquility.dmm index 8498e51bbf1010..7e53a0ebce08bd 100644 --- a/_maps/shuttles/emergency_tranquility.dmm +++ b/_maps/shuttles/emergency_tranquility.dmm @@ -790,10 +790,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 5 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/wood, /area/shuttle/escape) "oV" = ( @@ -1127,10 +1125,8 @@ /obj/effect/turf_decal/siding/wood{ dir = 9 }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, /obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen/directional/south, /turf/open/floor/wood, /area/shuttle/escape) "wm" = ( @@ -1416,10 +1412,8 @@ dir = 10 }, /obj/machinery/vending/coffee, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/wood, /area/shuttle/escape) "AQ" = ( @@ -1609,7 +1603,7 @@ /obj/item/pen/fourcolor{ pixel_x = -4 }, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 8; pixel_y = 5 }, @@ -2460,10 +2454,8 @@ dir = 6 }, /obj/machinery/vending/coffee, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, /obj/machinery/light/directional/north, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/wood, /area/shuttle/escape) "UF" = ( diff --git a/_maps/shuttles/ferry_kilo.dmm b/_maps/shuttles/ferry_kilo.dmm index 6b727bfc81b93b..a283c5bd044812 100644 --- a/_maps/shuttles/ferry_kilo.dmm +++ b/_maps/shuttles/ferry_kilo.dmm @@ -27,8 +27,12 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "g" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "h" = ( /obj/machinery/power/shuttle_engine/propulsion/left{ @@ -78,6 +82,7 @@ "n" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, +/obj/structure/sign/nanotrasen/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "o" = ( @@ -227,8 +232,8 @@ e d o r -w g +d "} (7,1,1) = {" f @@ -238,7 +243,7 @@ m f "} (8,1,1) = {" -g +d n r H diff --git a/_maps/shuttles/ferry_nebula.dmm b/_maps/shuttles/ferry_nebula.dmm index cc15e6ab66d786..baec8ed6e25d09 100644 --- a/_maps/shuttles/ferry_nebula.dmm +++ b/_maps/shuttles/ferry_nebula.dmm @@ -171,6 +171,12 @@ }, /turf/open/floor/iron/dark/textured, /area/shuttle/transport) +"I" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/obj/structure/sign/nanotrasen/directional/north, +/turf/open/floor/iron/dark/small, +/area/shuttle/transport) "J" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -200,8 +206,12 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/transport) "M" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/structure/sign/nanotrasen/directional/south, +/turf/open/floor/iron/dark/small, /area/shuttle/transport) "N" = ( /obj/structure/hedge, @@ -318,8 +328,8 @@ j i c a -b M +i "} (6,1,1) = {" q @@ -329,8 +339,8 @@ Z q "} (7,1,1) = {" -M -h +i +I a K i diff --git a/_maps/shuttles/hunter_bounty.dmm b/_maps/shuttles/hunter_bounty.dmm index ba752de932b9ba..2932196835c0b1 100644 --- a/_maps/shuttles/hunter_bounty.dmm +++ b/_maps/shuttles/hunter_bounty.dmm @@ -9,6 +9,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/plating, /area/shuttle/hunter) "e" = ( @@ -17,10 +18,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/hunter) -"g" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/hunter) "h" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -34,6 +31,7 @@ /area/shuttle/hunter) "j" = ( /obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/plating, /area/shuttle/hunter) "k" = ( @@ -345,7 +343,7 @@ b (6,1,1) = {" b b -g +b b T s @@ -353,7 +351,7 @@ s s G b -g +b b b "} diff --git a/_maps/shuttles/infiltrator_advanced.dmm b/_maps/shuttles/infiltrator_advanced.dmm index cc6f55f20eadea..296a65fe8bf8d4 100644 --- a/_maps/shuttles/infiltrator_advanced.dmm +++ b/_maps/shuttles/infiltrator_advanced.dmm @@ -240,10 +240,6 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) -"aJ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/plastitanium/syndicate, -/area/shuttle/syndicate/airlock) "aK" = ( /obj/structure/chair/comfy/shuttle{ name = "tactical chair" @@ -257,10 +253,6 @@ /obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) -"aL" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall/plastitanium/syndicate, -/area/shuttle/syndicate/airlock) "aM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -289,6 +281,7 @@ dir = 9 }, /obj/structure/cable, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "aQ" = ( @@ -586,6 +579,7 @@ dir = 10 }, /obj/structure/cable, +/obj/structure/sign/warning/vacuum/external/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "by" = ( @@ -919,10 +913,6 @@ /obj/item/storage/medkit/fire, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) -"ck" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/plastitanium/syndicate, -/area/shuttle/syndicate/hallway) "cl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -1233,6 +1223,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/vacuum/external/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "dd" = ( @@ -1368,6 +1359,7 @@ dir = 6 }, /obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/vacuum/external/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "dr" = ( @@ -1693,6 +1685,7 @@ }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/pod/dark, /area/shuttle/syndicate/hallway) "ed" = ( @@ -1775,6 +1768,7 @@ }, /obj/structure/cable, /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/pod/dark, /area/shuttle/syndicate/hallway) "el" = ( @@ -2075,6 +2069,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "Xl" = ( @@ -2084,6 +2079,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "YW" = ( @@ -2143,7 +2139,7 @@ ad ad aO bp -aL +aO aO bD bD @@ -2210,9 +2206,9 @@ ad ad aB aO -aL +aO bZ -aJ +aO aO bf ep @@ -2312,7 +2308,7 @@ dP dR bQ ec -ck +aF cM cz cD @@ -2404,7 +2400,7 @@ cg dR bQ ek -ck +aF cM cY cJ @@ -2486,9 +2482,9 @@ ad ad aD aO -aL +aO bZ -aJ +aO aO cF tB @@ -2557,7 +2553,7 @@ ad ad aO cW -aL +aO aO bE bE diff --git a/_maps/shuttles/infiltrator_basic.dmm b/_maps/shuttles/infiltrator_basic.dmm index a69cbb71e0785b..394fb3b91afeac 100644 --- a/_maps/shuttles/infiltrator_basic.dmm +++ b/_maps/shuttles/infiltrator_basic.dmm @@ -586,8 +586,12 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/shuttle/syndicate/medical) "fB" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall/plastitanium/syndicate/nodiagonal, +/obj/structure/chair/comfy/shuttle/tactical{ + dir = 8 + }, +/obj/effect/turf_decal/bot_red, +/obj/structure/sign/warning/vacuum/external/directional/east, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) "gt" = ( /obj/item/storage/box/handcuffs{ @@ -1481,7 +1485,7 @@ aB aQ iE RO -nN +fB nN bn bA @@ -1506,7 +1510,7 @@ bO aB Xy aY -fB +Xy aB bn bB diff --git a/_maps/shuttles/mining_common_kilo.dmm b/_maps/shuttles/mining_common_kilo.dmm index 751974a4ad55f7..26e16830b804cc 100644 --- a/_maps/shuttles/mining_common_kilo.dmm +++ b/_maps/shuttles/mining_common_kilo.dmm @@ -46,15 +46,12 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) -"i" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) "j" = ( /obj/machinery/light/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "k" = ( @@ -127,7 +124,7 @@ a a b -i +a b a a diff --git a/_maps/shuttles/mining_common_northstar.dmm b/_maps/shuttles/mining_common_northstar.dmm index 5e24739c363d54..f746f90c0abb05 100644 --- a/_maps/shuttles/mining_common_northstar.dmm +++ b/_maps/shuttles/mining_common_northstar.dmm @@ -9,6 +9,7 @@ /obj/effect/turf_decal/trimline/neutral/line{ dir = 8 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/pod/light, /area/shuttle/mining) "e" = ( @@ -82,10 +83,6 @@ /obj/item/storage/toolbox/emergency, /turf/open/floor/pod/light, /area/shuttle/mining) -"E" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/survival, -/area/shuttle/mining) "G" = ( /obj/structure/ore_box, /obj/effect/turf_decal/trimline/brown, @@ -156,7 +153,7 @@ v v l l -E +v l v a diff --git a/_maps/shuttles/mining_freight.dmm b/_maps/shuttles/mining_freight.dmm index ead08ff80ac315..8282d22d3ede32 100644 --- a/_maps/shuttles/mining_freight.dmm +++ b/_maps/shuttles/mining_freight.dmm @@ -43,10 +43,6 @@ }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) -"i" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) "j" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/stripes/line{ @@ -55,6 +51,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) "k" = ( @@ -125,7 +122,7 @@ a a b -i +a b a a diff --git a/_maps/shuttles/mining_kilo.dmm b/_maps/shuttles/mining_kilo.dmm index f52a5c947f3e68..a6fdf02c6db75f 100644 --- a/_maps/shuttles/mining_kilo.dmm +++ b/_maps/shuttles/mining_kilo.dmm @@ -112,10 +112,7 @@ /area/shuttle/mining/large) "q" = ( /obj/machinery/status_display/evac, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/mining/large) -"r" = ( -/obj/structure/sign/departments/cargo, +/obj/structure/sign/departments/cargo/directional/west, /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/mining/large) "s" = ( @@ -340,7 +337,7 @@ b b f l -r +k t x G diff --git a/_maps/shuttles/mining_northstar.dmm b/_maps/shuttles/mining_northstar.dmm index 48c194b6d45824..4a557937d778f0 100644 --- a/_maps/shuttles/mining_northstar.dmm +++ b/_maps/shuttles/mining_northstar.dmm @@ -198,10 +198,6 @@ /obj/structure/ore_box, /turf/open/floor/pod/dark, /area/shuttle/mining) -"X" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/survival, -/area/shuttle/mining) "Z" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 @@ -212,6 +208,7 @@ /obj/effect/turf_decal/trimline/purple/line{ dir = 4 }, +/obj/structure/sign/nanotrasen/directional/east, /turf/open/floor/pod/light, /area/shuttle/mining) @@ -264,7 +261,7 @@ I P I R -X +I R I P diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm index 432e3e93129147..9b6f60d16a76ba 100644 --- a/_maps/shuttles/pirate_default.dmm +++ b/_maps/shuttles/pirate_default.dmm @@ -14,11 +14,11 @@ /obj/structure/table, /obj/effect/decal/cleanable/dirt, /obj/machinery/recharger, -/obj/item/gun/energy/laser{ +/obj/item/gun/energy/laser/soul{ pixel_x = -3; pixel_y = 6 }, -/obj/item/gun/energy/laser{ +/obj/item/gun/energy/laser/soul{ pixel_y = 3 }, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ @@ -407,7 +407,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = -24; diff --git a/_maps/shuttles/pirate_dutchman.dmm b/_maps/shuttles/pirate_dutchman.dmm index a00fff6e7e9fb9..0b50a136b414b8 100644 --- a/_maps/shuttles/pirate_dutchman.dmm +++ b/_maps/shuttles/pirate_dutchman.dmm @@ -931,7 +931,7 @@ /obj/item/restraints/legcuffs/bola, /obj/item/restraints/legcuffs/bola, /obj/item/restraints/legcuffs/bola, -/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser/soul, /obj/item/megaphone, /obj/item/melee/chainofcommand/tailwhip/kitty, /obj/item/claymore/cutlass, diff --git a/_maps/shuttles/pirate_ex_interdyne.dmm b/_maps/shuttles/pirate_ex_interdyne.dmm index 4dd64e4cdbe044..c2bfc4f4d0e337 100644 --- a/_maps/shuttles/pirate_ex_interdyne.dmm +++ b/_maps/shuttles/pirate_ex_interdyne.dmm @@ -12,7 +12,6 @@ dir = 8 }, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = -24; @@ -803,13 +802,6 @@ /obj/effect/mapping_helpers/airlock/access/all/syndicate/general, /turf/open/floor/iron/dark, /area/shuttle/pirate) -"Tr" = ( -/obj/machinery/porta_turret/syndicate/energy/heavy{ - faction = list("pirate","Syndicate"); - max_integrity = 10000 - }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/shuttle/pirate) "Ur" = ( /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 8 @@ -968,7 +960,7 @@ aj aj aa aj -Tr +aO "} (8,1,1) = {" vz @@ -1040,7 +1032,7 @@ aj aj DD aj -Tr +aO "} (12,1,1) = {" af diff --git a/_maps/shuttles/pirate_geode.dmm b/_maps/shuttles/pirate_geode.dmm index 2f6a573aae0509..68266a96cffd62 100644 --- a/_maps/shuttles/pirate_geode.dmm +++ b/_maps/shuttles/pirate_geode.dmm @@ -258,7 +258,6 @@ dir = 4 }, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = -24; diff --git a/_maps/shuttles/pirate_irs.dmm b/_maps/shuttles/pirate_irs.dmm index 2bc11decda8ca9..5ad360f2f48f4b 100644 --- a/_maps/shuttles/pirate_irs.dmm +++ b/_maps/shuttles/pirate_irs.dmm @@ -1379,7 +1379,6 @@ dir = 4 }, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; pixel_y = -24; req_access = list("syndicate") @@ -1509,7 +1508,7 @@ /area/shuttle/pirate) "NW" = ( /obj/structure/table/reinforced, -/obj/item/stamp{ +/obj/item/stamp/granted{ pixel_x = 7; pixel_y = 10 }, diff --git a/_maps/shuttles/ruin_pirate_cutter.dmm b/_maps/shuttles/ruin_pirate_cutter.dmm index 422d5bfb2cdd58..6422f2159b6065 100644 --- a/_maps/shuttles/ruin_pirate_cutter.dmm +++ b/_maps/shuttles/ruin_pirate_cutter.dmm @@ -133,7 +133,6 @@ dir = 4 }, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = -30; @@ -554,7 +553,7 @@ /obj/machinery/door/window/right/directional/south{ name = "Weapon Storage" }, -/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser/soul, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/shuttle/ruin/caravan/pirate) diff --git a/_maps/shuttles/ruin_syndicate_dropship.dmm b/_maps/shuttles/ruin_syndicate_dropship.dmm index dc3e7b68a7b269..3bbec26239197e 100644 --- a/_maps/shuttles/ruin_syndicate_dropship.dmm +++ b/_maps/shuttles/ruin_syndicate_dropship.dmm @@ -439,7 +439,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Shuttle turret control"; pixel_y = 34; diff --git a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm index f91d0260d66fca..08a0585dc9de8e 100644 --- a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm +++ b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm @@ -12,7 +12,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Shuttle turret control"; pixel_x = 32; diff --git a/_maps/shuttles/starfury_corvette.dmm b/_maps/shuttles/starfury_corvette.dmm index 877375fa4e7850..8e944289466955 100644 --- a/_maps/shuttles/starfury_corvette.dmm +++ b/_maps/shuttles/starfury_corvette.dmm @@ -16,7 +16,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Ship Turret Control"; pixel_x = 32; diff --git a/_maps/shuttles/starfury_fighter1.dmm b/_maps/shuttles/starfury_fighter1.dmm index ae37e35c23b00a..68c1aa7d141e16 100644 --- a/_maps/shuttles/starfury_fighter1.dmm +++ b/_maps/shuttles/starfury_fighter1.dmm @@ -82,7 +82,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Ship Turret Control"; pixel_x = -32; diff --git a/_maps/shuttles/starfury_fighter2.dmm b/_maps/shuttles/starfury_fighter2.dmm index de55ea6c127cae..6613bd1154b53a 100644 --- a/_maps/shuttles/starfury_fighter2.dmm +++ b/_maps/shuttles/starfury_fighter2.dmm @@ -50,7 +50,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Ship Turret Control"; pixel_x = -32; diff --git a/_maps/shuttles/starfury_fighter3.dmm b/_maps/shuttles/starfury_fighter3.dmm index e078e7b0bfda58..be6d810384f329 100644 --- a/_maps/shuttles/starfury_fighter3.dmm +++ b/_maps/shuttles/starfury_fighter3.dmm @@ -49,7 +49,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_kill"; lethal = 1; name = "Ship Turret Control"; pixel_x = -32; diff --git a/_maps/shuttles/whiteship_birdshot.dmm b/_maps/shuttles/whiteship_birdshot.dmm index 8b2c99d9de1f44..8f64e40dbecd02 100644 --- a/_maps/shuttles/whiteship_birdshot.dmm +++ b/_maps/shuttles/whiteship_birdshot.dmm @@ -201,12 +201,12 @@ amount = 10 }, /obj/structure/cable, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/catwalk_floor, /area/shuttle/abandoned/engine) "gv" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron/textured, /area/shuttle/abandoned/cargo) @@ -240,7 +240,7 @@ /obj/machinery/atmospherics/components/tank/air{ dir = 1 }, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/catwalk_floor, /area/shuttle/abandoned/engine) "iB" = ( @@ -286,7 +286,7 @@ "jY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/iron/smooth, /area/shuttle/abandoned/crew) "ku" = ( @@ -847,7 +847,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/medbay) "Cz" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, @@ -1376,7 +1376,6 @@ "UK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = 28; @@ -1425,7 +1424,7 @@ pixel_y = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/carpet/green, /area/shuttle/abandoned/bar) "WW" = ( diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm index 81c72c3e8638df..b0be5fc47f61df 100644 --- a/_maps/shuttles/whiteship_box.dmm +++ b/_maps/shuttles/whiteship_box.dmm @@ -190,7 +190,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -280,7 +280,7 @@ /area/shuttle/abandoned/medbay) "aJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/firealarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -396,7 +396,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/south, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aW" = ( @@ -497,7 +497,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bh" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bi" = ( @@ -553,7 +553,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -656,7 +656,7 @@ /area/shuttle/abandoned/medbay) "bA" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/closet/secure_closet/medical2{ anchored = 1 }, @@ -670,7 +670,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/sleeper, /obj/effect/turf_decal/delivery, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, /area/shuttle/abandoned/medbay) @@ -705,7 +705,7 @@ /area/shuttle/abandoned/medbay) "bF" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/blood/old, /obj/structure/cable, /turf/open/floor/iron/white/side{ @@ -930,7 +930,7 @@ "ce" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/closet/secure_closet/medical3{ anchored = 1 }, @@ -979,7 +979,7 @@ /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 1 }, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/iron/white/side{ dir = 6 }, @@ -995,7 +995,7 @@ /area/shuttle/abandoned/medbay) "cl" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, /obj/effect/turf_decal/tile/blue{ @@ -1009,7 +1009,7 @@ /obj/structure/rack, /obj/item/storage/toolbox/emergency, /obj/item/wrench, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/firealarm/directional/west, /obj/machinery/button/door/directional/south{ id = "whiteship_windows"; @@ -1190,7 +1190,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/bed/medical/emergency, /obj/machinery/iv_drip, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/white/side{ dir = 1 @@ -1245,7 +1245,7 @@ /obj/machinery/shower/directional/south, /obj/item/soap, /obj/structure/curtain, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /turf/open/floor/iron/freezer, /area/shuttle/abandoned/medbay) "cL" = ( @@ -1372,7 +1372,7 @@ "cX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/structure/table, /obj/machinery/door/window/left/directional/west{ name = "Medical Equipment Storage" @@ -1554,7 +1554,7 @@ /area/shuttle/abandoned/medbay) "dn" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/iron/white/side{ dir = 4 }, @@ -1599,7 +1599,7 @@ "ds" = ( /obj/structure/sign/warning/vacuum/external/directional/east, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/plating, /area/shuttle/abandoned/medbay) "dt" = ( @@ -1615,7 +1615,7 @@ /obj/item/storage/box/zipties, /obj/item/assembly/flash/handheld, /obj/item/melee/baton/telescopic, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/airalarm/directional/west, /obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/power/apc/auto_name/directional/north, @@ -1680,7 +1680,7 @@ pixel_y = 3 }, /obj/item/storage/box/donkpockets, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/shuttle/abandoned/crew) @@ -1733,7 +1733,7 @@ "Pz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/bed{ dir = 4 }, @@ -1755,7 +1755,7 @@ "Uq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/bed, /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/all_access, diff --git a/_maps/shuttles/whiteship_delta.dmm b/_maps/shuttles/whiteship_delta.dmm index a83cd9c28b6024..7c99b731c7ac23 100644 --- a/_maps/shuttles/whiteship_delta.dmm +++ b/_maps/shuttles/whiteship_delta.dmm @@ -52,7 +52,7 @@ /obj/machinery/shower/directional/south, /obj/item/soap, /obj/structure/curtain, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/freezer, /area/shuttle/abandoned/crew) @@ -67,7 +67,7 @@ /turf/open/floor/iron/freezer, /area/shuttle/abandoned/crew) "al" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ dir = 4 @@ -97,7 +97,7 @@ /area/shuttle/abandoned/crew) "ao" = ( /obj/structure/sign/warning/vacuum/external/directional/east, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "ap" = ( @@ -122,7 +122,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/bar) "at" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/spider/stickyweb, @@ -296,7 +296,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/bar) "aL" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ dir = 5 @@ -371,7 +371,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/crew) "aV" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, @@ -399,7 +399,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 6 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -424,7 +424,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 10 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 @@ -505,7 +505,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bl" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -521,7 +521,7 @@ "bn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/structure/spider/stickyweb, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, @@ -619,7 +619,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/bar) "bx" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ dir = 6 @@ -781,7 +781,6 @@ /area/shuttle/abandoned/engine) "bR" = ( /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_x = -28; @@ -824,14 +823,14 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/east, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/shuttle/abandoned/crew) "bV" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/turf_decal/stripes/corner{ dir = 1 }, @@ -978,7 +977,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/crew) "ck" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, @@ -1117,7 +1116,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/east, /obj/structure/spider/stickyweb, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, /obj/effect/turf_decal/tile/blue{ @@ -1241,7 +1240,7 @@ /area/shuttle/abandoned/engine) "cP" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, /obj/effect/turf_decal/tile/blue/half/contrasted{ @@ -1296,14 +1295,11 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron/dark, /area/shuttle/abandoned/medbay) -"cW" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned/cargo) "cX" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/spider/stickyweb, +/obj/structure/sign/departments/cargo/directional/west, /turf/open/floor/iron, /area/shuttle/abandoned/cargo) "db" = ( @@ -1378,7 +1374,7 @@ /turf/open/floor/iron/white, /area/shuttle/abandoned/medbay) "dj" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/spider/stickyweb, /obj/machinery/firealarm/directional/north, @@ -1423,7 +1419,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 5 }, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -1565,7 +1561,7 @@ /area/shuttle/abandoned/medbay) "dE" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/airalarm/directional/east, /obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/spider/stickyweb, @@ -1592,14 +1588,14 @@ /turf/open/floor/plating, /area/shuttle/abandoned/medbay) "dJ" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/shuttle/abandoned/cargo) "dM" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ dir = 6 @@ -1667,7 +1663,7 @@ /area/shuttle/abandoned/medbay) "dT" = ( /obj/structure/sign/warning/vacuum/external/directional/east, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/shuttle/abandoned/medbay) @@ -2282,7 +2278,7 @@ aa aa cx cy -cW +cx dr cy bv diff --git a/_maps/shuttles/whiteship_kilo.dmm b/_maps/shuttles/whiteship_kilo.dmm index 590c18e7868ba3..a7a1940b5c2235 100644 --- a/_maps/shuttles/whiteship_kilo.dmm +++ b/_maps/shuttles/whiteship_kilo.dmm @@ -539,7 +539,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; name = "NTMS-037 Mining Turret control panel"; diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm index 91e83d3e272ff4..3952fb62464615 100644 --- a/_maps/shuttles/whiteship_meta.dmm +++ b/_maps/shuttles/whiteship_meta.dmm @@ -142,7 +142,7 @@ "at" = ( /obj/structure/sign/warning/vacuum/external/directional/west, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "ax" = ( @@ -295,7 +295,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "ba" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -317,7 +317,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/crew) "be" = ( -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -454,7 +454,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bz" = ( -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/west, /obj/structure/closet/crate/internals, @@ -480,7 +480,7 @@ /area/shuttle/abandoned/bar) "bF" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/structure/curtain, /obj/machinery/shower/directional/south, /obj/item/soap, @@ -529,7 +529,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/bar) "bM" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/structure/table, /obj/machinery/microwave, @@ -647,7 +647,7 @@ /area/shuttle/abandoned/bar) "cd" = ( /obj/structure/table, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/item/paper_bin{ pixel_x = -4 @@ -676,7 +676,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/turretid{ - icon_state = "control_kill"; lethal = 1; locked = 0; pixel_y = 28; @@ -708,7 +707,7 @@ /area/shuttle/abandoned/engine) "ci" = ( /obj/structure/sign/warning/vacuum/external/directional/north, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -833,7 +832,7 @@ /area/shuttle/abandoned/bar) "cD" = ( /obj/structure/table, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/machinery/cell_charger, /obj/item/stock_parts/power_store/cell/high, @@ -889,7 +888,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/engine) "cI" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -969,7 +968,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/cargo) "cS" = ( -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/firealarm/directional/east, @@ -1072,7 +1071,7 @@ "dk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron/cafeteria, /area/shuttle/abandoned/bar) @@ -1339,7 +1338,7 @@ /area/shuttle/abandoned/bar) "ec" = ( /obj/structure/sign/warning/vacuum/external/directional/west, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/plating, /area/shuttle/abandoned/bar) "ed" = ( @@ -1375,12 +1374,12 @@ pixel_x = -3; pixel_y = 6 }, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /turf/open/floor/iron, /area/shuttle/abandoned/bar) "ef" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/machinery/hydroponics/constructable, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/green/half/contrasted{ @@ -1464,7 +1463,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/bar) "he" = ( -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/west, @@ -1619,7 +1618,7 @@ /turf/open/floor/iron, /area/shuttle/abandoned/bar) "uS" = ( -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/east, /obj/effect/mapping_helpers/airalarm/all_access, @@ -1632,7 +1631,7 @@ }, /obj/machinery/airalarm/directional/south, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -1672,7 +1671,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/crew) "Aa" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/cigarette, /obj/effect/decal/cleanable/dirt, @@ -1821,7 +1820,7 @@ }, /obj/machinery/airalarm/directional/north, /obj/effect/mapping_helpers/airalarm/all_access, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) @@ -1853,7 +1852,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/bridge) "HJ" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/coffee, /obj/effect/decal/cleanable/dirt, @@ -1986,7 +1985,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned/bar) "RV" = ( -/obj/machinery/light/small/built/directional/south, +/obj/machinery/light/small/empty/directional/south, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/south, /obj/effect/mapping_helpers/airalarm/all_access, @@ -2019,7 +2018,7 @@ /obj/structure/bed{ dir = 4 }, -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/item/bedsheet/brown{ dir = 4 }, diff --git a/_maps/shuttles/whiteship_pubby.dmm b/_maps/shuttles/whiteship_pubby.dmm index 2486da85094b11..c351bbdd41b086 100644 --- a/_maps/shuttles/whiteship_pubby.dmm +++ b/_maps/shuttles/whiteship_pubby.dmm @@ -26,7 +26,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 }, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/shuttle/abandoned) @@ -207,7 +207,7 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/structure/table, /obj/effect/spawner/random/food_or_drink/donkpockets{ pixel_y = 5 @@ -303,7 +303,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned) "na" = ( -/obj/machinery/light/small/built/directional/east, +/obj/machinery/light/small/empty/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable, @@ -532,7 +532,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/iron/dark, /area/shuttle/abandoned) "vB" = ( @@ -850,7 +850,7 @@ "JI" = ( /obj/structure/sign/warning/vacuum/external/directional/west, /obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light/small/built/directional/north, +/obj/machinery/light/small/empty/directional/north, /obj/effect/turf_decal/delivery/white, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -991,7 +991,7 @@ /turf/open/floor/iron/dark, /area/shuttle/abandoned) "Pu" = ( -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /obj/effect/turf_decal/siding/purple{ dir = 10 }, @@ -1214,7 +1214,7 @@ pixel_x = -4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built/directional/west, +/obj/machinery/light/small/empty/directional/west, /turf/open/floor/pod/light, /area/shuttle/abandoned) "ZT" = ( diff --git a/_maps/shuttles/whiteship_tram.dmm b/_maps/shuttles/whiteship_tram.dmm index 9e2e244343ed80..27391955c3fd3a 100644 --- a/_maps/shuttles/whiteship_tram.dmm +++ b/_maps/shuttles/whiteship_tram.dmm @@ -207,7 +207,6 @@ /turf/open/floor/pod, /area/shuttle/abandoned/cargo) "aT" = ( -/obj/structure/sign/warning/secure_area, /turf/closed/wall/mineral/titanium/survival/nodiagonal, /area/shuttle/abandoned/cargo) "aU" = ( @@ -226,6 +225,7 @@ "aW" = ( /obj/effect/spawner/random/trash/hobo_squat, /obj/effect/mob_spawn/corpse/human/assistant, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/pod, /area/shuttle/abandoned/cargo) "aX" = ( @@ -802,10 +802,6 @@ }, /turf/open/floor/iron/dark/textured_large, /area/shuttle/abandoned/bridge) -"dv" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/abandoned/bridge) "dw" = ( /obj/structure/bed/pod{ dir = 1 @@ -814,6 +810,7 @@ dir = 1 }, /obj/effect/turf_decal/bot_white, +/obj/structure/sign/nanotrasen/directional/west, /turf/open/floor/iron/dark/textured_large, /area/shuttle/abandoned/crew) "dx" = ( @@ -926,9 +923,11 @@ /turf/open/floor/iron/smooth_large, /area/shuttle/abandoned/bridge) "pm" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/abandoned/crew) +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/nanotrasen/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/abandoned/bridge) "qd" = ( /obj/machinery/power/shuttle_engine/heater{ dir = 1 @@ -1230,6 +1229,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/shuttle/abandoned/crew) +"KQ" = ( +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/pod, +/area/shuttle/abandoned/cargo) "LM" = ( /obj/structure/cable, /obj/effect/decal/cleanable/blood/tracks{ @@ -1594,7 +1597,7 @@ by cP da dy -dv +dy do ds dy @@ -1623,7 +1626,7 @@ cY cY cY dx -iz +pm dp dt dx @@ -1712,7 +1715,7 @@ de aq dl dq -pm +aq aq aq de @@ -1791,7 +1794,7 @@ cA aS bn cA -cA +KQ cH ez cV diff --git a/_maps/templates/battlecruiser_starfury.dmm b/_maps/templates/battlecruiser_starfury.dmm index 5dd8929572b429..bb32515c5a1fb8 100644 --- a/_maps/templates/battlecruiser_starfury.dmm +++ b/_maps/templates/battlecruiser_starfury.dmm @@ -415,8 +415,11 @@ /turf/open/floor/plating, /area/shuttle/sbc_starfury) "by" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/iron/dark/smooth_large, /area/shuttle/sbc_starfury) "bB" = ( /obj/effect/turf_decal/tile/red, @@ -474,6 +477,13 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/shuttle/sbc_starfury) +"bQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/iron/dark/smooth_large, +/area/shuttle/sbc_starfury) "bR" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/dark_red{ @@ -2663,8 +2673,12 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/sbc_starfury) "ja" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/radiation/directional/east, +/turf/open/floor/mineral/plastitanium, /area/shuttle/sbc_starfury) "jb" = ( /obj/effect/turf_decal/stripes/line{ @@ -3844,6 +3858,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, +/obj/structure/sign/warning/secure_area/directional/west, /turf/open/floor/pod/dark, /area/shuttle/sbc_starfury) "rr" = ( @@ -4129,6 +4144,7 @@ dir = 5 }, /obj/machinery/light/directional/east, +/obj/structure/sign/warning/secure_area/directional/east, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/sbc_starfury) "wo" = ( @@ -4774,6 +4790,14 @@ temperature = 80 }, /area/shuttle/sbc_starfury) +"HC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/sbc_starfury) "HF" = ( /obj/machinery/suit_storage_unit/syndicate, /obj/machinery/light/small/directional/west, @@ -4957,7 +4981,6 @@ /obj/machinery/turretid{ ailock = 1; desc = "A specially designed set of turret controls. Looks to be covered in protective casing to prevent AI interfacing."; - icon_state = "control_stun"; name = "Ship Turret Control"; pixel_y = -28; req_access = list("syndicate") @@ -5108,6 +5131,13 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/shuttle/sbc_starfury) +"Or" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/warning/radiation/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/sbc_starfury) "Ou" = ( /obj/structure/lattice, /turf/template_noop, @@ -5452,6 +5482,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/sbc_starfury) +"UG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sign/warning/radiation/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/sbc_starfury) "UH" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -6626,7 +6663,7 @@ ad ad ad ae -by +ae Sb Yg ae @@ -6694,7 +6731,7 @@ aU bj eJ ev -PF +bQ ay vk ae @@ -6733,12 +6770,12 @@ ay zm iD iQ -iZ +Or kt MR kt kg -kg +ja kt kR lk @@ -6801,11 +6838,11 @@ ae ae ae ae -ja +ae ae wd jv -ja +ae ae kG kU @@ -7345,11 +7382,11 @@ ae xG ae ae -ja +ae ae jN Xg -ja +ae ae xH kU @@ -7374,7 +7411,7 @@ be bt FC eM -NX +by bZ cV ae @@ -7413,11 +7450,11 @@ gO Rv iI kb -jb +UG kH yM Lb -kj +HC kj kH la @@ -7442,7 +7479,7 @@ ad ad ad ae -by +ae po ES ae @@ -7609,12 +7646,12 @@ nD Qw ae ae -by +ae ae ZK hX ae -by +ae ae ae xG diff --git a/_maps/templates/holodeck_fitness.dmm b/_maps/templates/holodeck_fitness.dmm new file mode 100644 index 00000000000000..3430be521a4b93 --- /dev/null +++ b/_maps/templates/holodeck_fitness.dmm @@ -0,0 +1,273 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/structure/weightmachine, +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"d" = ( +/obj/item/kirbyplants/organic/plant17, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"g" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 2 + }, +/turf/open/floor/holofloor/white, +/area/template_noop) +"j" = ( +/obj/structure/window/reinforced/tinted/frosted/spawner/directional/north, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"k" = ( +/obj/item/clothing/under/color/yellow, +/obj/structure/rack, +/obj/item/clothing/under/color/yellow, +/turf/open/floor/holofloor, +/area/template_noop) +"l" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"m" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"n" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"p" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"s" = ( +/obj/item/clothing/under/color/blue, +/obj/structure/rack, +/obj/item/clothing/under/color/blue, +/turf/open/floor/holofloor, +/area/template_noop) +"t" = ( +/obj/item/kirbyplants/organic/plant2, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"u" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/holofloor/white, +/area/template_noop) +"v" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/holofloor, +/area/template_noop) +"w" = ( +/obj/item/clothing/under/color/darkgreen, +/obj/structure/rack, +/obj/item/clothing/under/color/darkgreen, +/turf/open/floor/holofloor, +/area/template_noop) +"x" = ( +/obj/item/instrument/piano_synth/headphones{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/structure/table, +/obj/item/instrument/piano_synth/headphones{ + pixel_y = -1; + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"A" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"H" = ( +/obj/structure/curtain, +/obj/machinery/shower/directional/south, +/turf/open/floor/holofloor/white, +/area/template_noop) +"I" = ( +/turf/open/floor/holofloor/dark, +/area/template_noop) +"J" = ( +/obj/item/kirbyplants/organic/plant1, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"K" = ( +/obj/structure/table, +/obj/item/radio/entertainment/speakers/physical, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"N" = ( +/turf/open/floor/holofloor, +/area/template_noop) +"O" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"P" = ( +/obj/item/kirbyplants/organic/plant13, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"R" = ( +/turf/open/floor/holofloor/white, +/area/template_noop) +"S" = ( +/obj/item/clothing/under/color/red, +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/turf/open/floor/holofloor, +/area/template_noop) +"U" = ( +/obj/item/training_toolbox, +/obj/structure/table, +/obj/item/training_toolbox{ + pixel_y = 3; + pixel_x = 2 + }, +/turf/open/floor/holofloor, +/area/template_noop) +"V" = ( +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/holofloor/dark, +/area/template_noop) +"W" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/holofloor/white, +/area/template_noop) +"Y" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/holofloor/dark, +/area/template_noop) + +(1,1,1) = {" +R +R +O +I +d +P +I +p +N +U +"} +(2,1,1) = {" +R +g +O +Y +V +V +b +p +N +S +"} +(3,1,1) = {" +H +u +j +V +V +V +V +p +N +k +"} +(4,1,1) = {" +R +u +j +Y +V +V +b +p +N +w +"} +(5,1,1) = {" +H +u +j +V +V +V +V +p +N +s +"} +(6,1,1) = {" +R +u +j +Y +V +V +b +p +m +x +"} +(7,1,1) = {" +H +u +j +V +V +V +V +p +v +n +"} +(8,1,1) = {" +R +W +O +l +V +V +l +p +v +n +"} +(9,1,1) = {" +R +R +O +I +J +t +I +p +A +K +"} diff --git a/_maps/templates/lazy_templates/heretic_sacrifice.dmm b/_maps/templates/lazy_templates/heretic_sacrifice.dmm index 7a752a33e73849..b938a35278b947 100644 --- a/_maps/templates/lazy_templates/heretic_sacrifice.dmm +++ b/_maps/templates/lazy_templates/heretic_sacrifice.dmm @@ -19,7 +19,7 @@ /turf/open/floor/stone, /area/centcom/heretic_sacrifice/flesh) "cW" = ( -/obj/structure/no_effect_signpost/void, +/obj/structure/signpost/void, /turf/open/misc/asteroid, /area/centcom/heretic_sacrifice/void) "dX" = ( diff --git a/_maps/virtual_domains/beach_bar.dmm b/_maps/virtual_domains/beach_bar.dmm index b81ec5224f4552..e3e4a09e96b8e5 100644 --- a/_maps/virtual_domains/beach_bar.dmm +++ b/_maps/virtual_domains/beach_bar.dmm @@ -806,8 +806,9 @@ /turf/open/misc/beach/sand, /area/virtual_domain/fullbright) "Kd" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/mineral/sandstone, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/warning/secure_area/directional/west, +/turf/open/floor/plating, /area/virtual_domain/fullbright) "KH" = ( /obj/structure/mineral_door/wood{ @@ -1609,7 +1610,7 @@ LD LD Fn Fn -Kd +Fn Fn Fn bQ @@ -1652,7 +1653,7 @@ pT LD EC LD -pT +Kd PM wD wD diff --git a/_maps/virtual_domains/fredingtonfastingbear.dmm b/_maps/virtual_domains/fredingtonfastingbear.dmm index 67b3965ba9610b..e2c7be33fe3d88 100644 --- a/_maps/virtual_domains/fredingtonfastingbear.dmm +++ b/_maps/virtual_domains/fredingtonfastingbear.dmm @@ -131,7 +131,7 @@ /obj/effect/decal/cleanable/blood/tracks{ dir = 4 }, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron/kitchen, /area/virtual_domain) "hq" = ( @@ -187,7 +187,7 @@ /turf/open/floor/iron/kitchen, /area/virtual_domain) "kL" = ( -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/item/light/tube/broken, /turf/open/floor/iron/kitchen, /area/virtual_domain) @@ -279,7 +279,7 @@ /turf/open/floor/iron/kitchen, /area/virtual_domain) "pr" = ( -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron/kitchen, /area/virtual_domain) "pK" = ( @@ -481,7 +481,7 @@ /area/virtual_domain) "wM" = ( /obj/item/toy/balloon/heart, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/structure/fake_stairs/wood{ dir = 1 }, @@ -585,7 +585,7 @@ "Ct" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /turf/open/floor/iron/kitchen, /area/virtual_domain) "Dx" = ( @@ -622,7 +622,7 @@ /area/virtual_domain/protected_space/fullbright) "Fy" = ( /obj/effect/decal/cleanable/confetti, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/structure/fake_stairs/wood, /turf/open/floor/iron/kitchen, /area/virtual_domain) @@ -635,7 +635,7 @@ /turf/open/floor/iron/kitchen, /area/virtual_domain) "Gn" = ( -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /obj/effect/decal/cleanable/food/tomato_smudge, /obj/effect/landmark/bitrunning/cache_spawn, /turf/open/floor/iron/kitchen/small, @@ -851,13 +851,13 @@ /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/item/toy/balloon/heart, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/iron/kitchen, /area/virtual_domain) "RB" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /obj/effect/decal/cleanable/glass/plastitanium, /turf/open/floor/iron/kitchen, /area/virtual_domain) @@ -874,7 +874,7 @@ "SE" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/machinery/light/built/directional/east, +/obj/machinery/light/empty/directional/east, /obj/effect/decal/cleanable/glass/plastitanium, /turf/open/floor/iron/kitchen, /area/virtual_domain) @@ -947,7 +947,7 @@ /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/effect/turf_decal/tile/dark_red/opposingcorners, /obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/light/built/directional/west, +/obj/machinery/light/empty/directional/west, /turf/open/floor/iron/kitchen, /area/virtual_domain) "VS" = ( diff --git a/_maps/virtual_domains/heretic_hunt.dmm b/_maps/virtual_domains/heretic_hunt.dmm new file mode 100644 index 00000000000000..33101a823a7980 --- /dev/null +++ b/_maps/virtual_domains/heretic_hunt.dmm @@ -0,0 +1,2373 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"am" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/virtual_domain) +"aR" = ( +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/virtual_domain) +"aY" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"br" = ( +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"bC" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"bV" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/iron, +/area/virtual_domain) +"ck" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain) +"cz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/exotic/antag_gear_weak, +/obj/effect/spawner/random/exotic/syndie, +/turf/open/floor/iron, +/area/virtual_domain) +"cS" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/mob/living/basic/pet/cat/_proc{ + faction = list("neutral", "vdom_fake_crew") + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"dh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"di" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"ey" = ( +/obj/modular_map_root/safehouse{ + key = "maintsafe" + }, +/turf/template_noop, +/area/virtual_domain/safehouse) +"eT" = ( +/obj/effect/baseturf_helper/virtual_domain, +/turf/closed/indestructible/binary, +/area/virtual_domain) +"eV" = ( +/obj/machinery/stasis{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"fd" = ( +/obj/structure/frame/computer{ + dir = 1; + anchored = 1 + }, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"fl" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box{ + pixel_y = 10; + pixel_x = 2 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"fn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/visible_heretic_influence, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"fq" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"fA" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/shard/titanium, +/obj/item/melee/rune_carver, +/obj/item/melee/rune_carver{ + pixel_y = 4; + pixel_x = -4 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"fL" = ( +/obj/structure/table, +/obj/item/storage/medkit/emergency, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"ge" = ( +/obj/structure/table, +/obj/structure/chem_separator{ + pixel_y = 11 + }, +/obj/item/reagent_containers/applicator/pill/psicodine, +/obj/item/reagent_containers/applicator/pill/stimulant{ + pixel_y = -2; + pixel_x = -3 + }, +/obj/item/reagent_containers/applicator/pill/probital{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/virtual_domain) +"gp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/iron, +/area/virtual_domain) +"gz" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"hp" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plastic, +/area/virtual_domain) +"hy" = ( +/obj/machinery/light/small/broken/directional/west, +/mob/living/basic/heretic_summon/raw_prophet, +/turf/open/floor/plating, +/area/virtual_domain) +"hK" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/obj/item/pickaxe/rusted, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"hP" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/spawner/random/medical/patient_stretcher, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"hS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/flashlight/flare{ + icon_state = "flare-on"; + light_on = 1 + }, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"hV" = ( +/obj/structure/frame/computer{ + dir = 1; + anchored = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"hY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"iu" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"iw" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/sign/warning/electric_shock/directional/north, +/turf/open/floor/iron, +/area/virtual_domain) +"iy" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/virtual_domain) +"iH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plating, +/area/virtual_domain) +"iL" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/storage/medkit{ + pixel_y = -3 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"iN" = ( +/turf/template_noop, +/area/virtual_domain/safehouse) +"iQ" = ( +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"iV" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/multitool{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"jR" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/iron, +/area/virtual_domain) +"ki" = ( +/mob/living/basic/fake_crewman/engi/mod, +/turf/open/floor/iron, +/area/virtual_domain) +"kw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"kQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/structure/electrified_grille, +/turf/open/floor/plating, +/area/virtual_domain) +"lG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/plastic, +/area/virtual_domain) +"mn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/syringe/contraband/bath_salts, +/obj/item/reagent_containers/syringe/contraband/methamphetamine{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/reagent_containers/syringe/contraband/morphine{ + pixel_y = -3; + pixel_x = -2 + }, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"mu" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/folder/red, +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"mW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"mX" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"nf" = ( +/obj/structure/cable, +/turf/closed/indestructible/reinforced, +/area/virtual_domain) +"nh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"nM" = ( +/obj/effect/visible_heretic_influence, +/turf/open/floor/iron, +/area/virtual_domain) +"nU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain) +"oa" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/storage/medkit{ + pixel_y = 10; + pixel_x = 5 + }, +/obj/effect/spawner/random/medical/supplies, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"oc" = ( +/obj/effect/visible_heretic_influence, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"ok" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/item/storage/belt/unfathomable_curio, +/turf/open/floor/iron, +/area/virtual_domain) +"oD" = ( +/mob/living/basic/fake_crewman/assistant, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/restraints/handcuffs/cable/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/medical/gauze/improvised{ + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/virtual_domain) +"oL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"oQ" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/storage/medkit/regular{ + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"pd" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/virtual_domain) +"pe" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"pm" = ( +/obj/effect/spawner/random/clothing/costume, +/obj/structure/rack, +/turf/open/floor/plating, +/area/virtual_domain) +"pv" = ( +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/iron, +/area/virtual_domain) +"pM" = ( +/mob/living/basic/fake_crewman/assistant/alt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain) +"pQ" = ( +/obj/effect/spawner/random/engineering/canister, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/virtual_domain) +"rq" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/suit_storage_unit, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"rt" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/reagent_containers/syringe/epinephrine, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"rC" = ( +/turf/closed/wall/heretic_rust, +/area/virtual_domain) +"rP" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/plating, +/area/virtual_domain) +"sb" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"sd" = ( +/obj/item/storage/test_tube_rack, +/obj/structure/table, +/turf/open/floor/plating, +/area/virtual_domain) +"sl" = ( +/obj/structure/steam_vent, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/virtual_domain) +"sy" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/virtual_domain) +"sL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"sT" = ( +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"sY" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"ta" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/virtual_domain) +"tg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/mopbucket, +/turf/open/floor/plating, +/area/virtual_domain) +"ts" = ( +/obj/effect/spawner/random/bureaucracy/briefcase, +/obj/effect/spawner/random/trash/box, +/turf/open/floor/plating, +/area/virtual_domain) +"uh" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"uj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plastic, +/area/virtual_domain) +"uz" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"uS" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/virtual_domain) +"vh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"vn" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/virtual_domain) +"vt" = ( +/obj/machinery/medical_kiosk, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"vG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/virtual_domain) +"vO" = ( +/obj/machinery/defibrillator_mount/directional/west, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/stack/medical/gauze/improvised, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"vP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"vR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/virtual_domain) +"wK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"wM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/wall_healer/free/directional/west, +/turf/open/floor/plastic, +/area/virtual_domain) +"wQ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/obj/item/flashlight/flare{ + icon_state = "flare-on"; + light_on = 1 + }, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"xa" = ( +/obj/machinery/stasis{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"xg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"xz" = ( +/obj/effect/baseturf_helper/virtual_domain, +/turf/template_noop, +/area/virtual_domain/safehouse) +"xA" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"xC" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"xK" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"xQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/iron, +/area/virtual_domain) +"yR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"yW" = ( +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/plastic, +/area/virtual_domain) +"zd" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/virtual_domain) +"zp" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"zN" = ( +/mob/living/basic/fake_crewman/boss/ce, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"AA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"AE" = ( +/obj/structure/closet/emcloset, +/obj/item/storage/medkit/emergency, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"AO" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/item/melee/baton/security/loaded, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"AV" = ( +/turf/open/floor/iron, +/area/virtual_domain) +"Bz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"BW" = ( +/obj/effect/decal/cleanable/ash/large, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Cu" = ( +/obj/structure/frame/computer{ + pixel_y = 0; + dir = 4; + anchored = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"CT" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/virtual_domain) +"Dh" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 1 + }, +/obj/item/storage/belt/security/webbing{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/pen/fountain{ + pixel_x = 15; + pixel_y = 2 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"DC" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/dark_red/half/contrasted, +/obj/item/ammo_box/speedloader/c38/flare, +/obj/item/ammo_box/speedloader/c38, +/obj/item/gun/ballistic/revolver/c38, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"El" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"EB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain) +"EI" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/fire{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"EL" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"EV" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"Fj" = ( +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Fl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"Fv" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/reagent_containers/cup/beaker/eldritch, +/turf/open/floor/plating, +/area/virtual_domain) +"FH" = ( +/obj/machinery/defibrillator_mount/directional/west, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"FR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plastic, +/area/virtual_domain) +"Gj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Gt" = ( +/obj/structure/table/glass, +/obj/item/folder/yellow, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Gv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron, +/area/virtual_domain) +"GO" = ( +/obj/structure/frame/computer{ + pixel_y = 0; + dir = 4; + anchored = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"GQ" = ( +/obj/effect/spawner/random/trash/bin, +/obj/item/shard/plasma, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/spawner/random/trash/cigpack, +/turf/open/floor/plating, +/area/virtual_domain) +"GZ" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Ho" = ( +/obj/structure/sign/warning/electric_shock/directional/east, +/turf/open/floor/plating, +/area/virtual_domain) +"Hy" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plastic, +/area/virtual_domain) +"If" = ( +/mob/living/basic/fake_crewman/boss/cmo, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Ih" = ( +/obj/structure/closet/firecloset, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"Iu" = ( +/mob/living/basic/fake_crewman/boss/hos, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"IH" = ( +/obj/item/flashlight/flare/candle/infinite{ + icon_state = "candle2_lit"; + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"IJ" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plastic, +/area/virtual_domain) +"IS" = ( +/mob/living/basic/fake_crewman/engi, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"IX" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Jj" = ( +/obj/effect/heretic_rune/big, +/obj/effect/landmark/bitrunning/loot_signal, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Jo" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Jp" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Jt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/iron, +/area/virtual_domain) +"JA" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue/end, +/obj/item/healthanalyzer, +/turf/open/floor/plastic, +/area/virtual_domain) +"JD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/gun/ballistic/rifle/lionhunter, +/obj/item/ammo_box/speedloader/strilka310/lionhunter, +/turf/open/floor/iron, +/area/virtual_domain) +"JG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/virtual_domain) +"JP" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Kd" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/eldritch_potion/wounded, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/item/eldritch_potion/wounded, +/obj/item/eldritch_potion/wounded, +/turf/open/floor/plastic, +/area/virtual_domain) +"Km" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"KR" = ( +/turf/open/floor/plastic, +/area/virtual_domain) +"KS" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/plating, +/area/virtual_domain) +"KT" = ( +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"La" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/virtual_domain) +"Lc" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Lj" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/virtual_domain) +"Lp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/iv_drip, +/turf/open/floor/plastic, +/area/virtual_domain) +"LB" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/virtual_domain) +"LZ" = ( +/obj/effect/visible_heretic_influence, +/turf/open/floor/plastic, +/area/virtual_domain) +"Mg" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"MF" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain) +"MN" = ( +/obj/item/flashlight/flare/candle/infinite{ + icon_state = "candle2_lit"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/virtual_domain) +"Ni" = ( +/obj/item/flashlight/flare/candle/infinite{ + icon_state = "candle2_lit"; + pixel_x = 10; + pixel_y = 14 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/virtual_domain) +"Nm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/warning/electric_shock/directional/north, +/turf/open/floor/iron, +/area/virtual_domain) +"Np" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron, +/area/virtual_domain) +"Nz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/virtual_domain) +"NE" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"NN" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"NO" = ( +/mob/living/basic/fake_crewman/md, +/turf/open/floor/plastic, +/area/virtual_domain) +"Ot" = ( +/obj/machinery/light/small/broken/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"OX" = ( +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Po" = ( +/turf/closed/indestructible/fakedoor/engineering, +/area/virtual_domain) +"Pr" = ( +/turf/closed/indestructible/binary, +/area/virtual_domain) +"PB" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue/end{ + dir = 1 + }, +/obj/item/stack/medical/gauze/improvised, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"PJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Qj" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/virtual_domain) +"Qk" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"QP" = ( +/obj/item/flashlight/flare/torch, +/obj/item/flashlight/flare/torch, +/obj/item/clothing/suit/hooded/cultrobes/eldritch/rust, +/obj/item/melee/sickly_blade, +/obj/structure/rack, +/turf/template_noop, +/area/virtual_domain/safehouse) +"Rd" = ( +/obj/item/flashlight/flare{ + icon_state = "flare-on"; + light_on = 1 + }, +/turf/open/floor/plating, +/area/virtual_domain) +"Rg" = ( +/obj/item/flashlight/flare/candle/infinite{ + icon_state = "candle2_lit"; + pixel_x = 4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/virtual_domain) +"Rl" = ( +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Ro" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"Rx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"RO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/mess, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/virtual_domain) +"RQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"RY" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"RZ" = ( +/obj/structure/closet/firecloset, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/virtual_domain) +"Sb" = ( +/mob/living/basic/fake_crewman/md, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"Sf" = ( +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/virtual_domain) +"Sn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Ss" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/virtual_domain) +"SJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/sign/warning/electric_shock/directional/west, +/turf/open/floor/iron, +/area/virtual_domain) +"Tv" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Ua" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron, +/area/virtual_domain) +"Ul" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/virtual_domain) +"Va" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/virtual_domain) +"Vh" = ( +/turf/open/floor/plating, +/area/virtual_domain) +"Vj" = ( +/obj/structure/table/reinforced, +/turf/open/floor/iron, +/area/virtual_domain) +"Vr" = ( +/turf/closed/indestructible/fakedoor/glass_airlock, +/area/virtual_domain) +"Vs" = ( +/obj/machinery/light/small/broken/directional/east, +/mob/living/basic/heretic_summon/raw_prophet, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"Vx" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/reagent_containers/hypospray{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"VS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/red/dim/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"VW" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/structure/tank_dispenser, +/obj/structure/fireaxecabinet/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/virtual_domain) +"VX" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/bottle/salglu_solution, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"Wk" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron, +/area/virtual_domain) +"Wo" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/closet/crate/bin, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"Wv" = ( +/obj/effect/spawner/random/trash/caution_sign, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"WI" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/virtual_domain) +"WL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/clothing/backpack, +/obj/effect/spawner/random/exotic/antag_gear, +/turf/open/floor/iron, +/area/virtual_domain) +"Xl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plastic, +/area/virtual_domain) +"Xv" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"XD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/plastic, +/turf/open/floor/plating/heretic_rust, +/area/virtual_domain) +"XK" = ( +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/plating, +/area/virtual_domain) +"Yj" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/virtual_domain) +"Yy" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/glass, +/obj/item/storage/medkit/brute{ + pixel_y = -8 + }, +/obj/item/reagent_containers/cup/bottle/salglu_solution{ + pixel_y = 11; + pixel_x = -3 + }, +/obj/item/reagent_containers/cup/bottle{ + pixel_y = 13; + pixel_x = 3 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/virtual_domain) +"YL" = ( +/mob/living/basic/fake_crewman/sec, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Zb" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/blastoff_ampoule{ + pixel_x = -3 + }, +/turf/open/floor/plating, +/area/virtual_domain) +"Zj" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/virtual_domain) +"Zt" = ( +/turf/closed/indestructible/reinforced, +/area/virtual_domain) +"Zu" = ( +/turf/closed/wall, +/area/virtual_domain) +"ZM" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/virtual_domain) +"ZN" = ( +/turf/closed/indestructible/fakedoor, +/area/virtual_domain) +"ZT" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/reagent_containers/cup/bottle/atropine{ + pixel_y = 3; + pixel_x = -13 + }, +/obj/item/reagent_containers/applicator/patch/synthflesh, +/obj/item/reagent_containers/applicator/patch/synthflesh{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plastic, +/area/virtual_domain) + +(1,1,1) = {" +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +eT +"} +(2,1,1) = {" +Pr +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Pr +"} +(3,1,1) = {" +Pr +Zt +Zt +Zt +Lj +Vr +Vr +Lj +Zu +Zu +rC +rC +rC +Zu +Zt +Zt +Zt +Zt +Zt +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Zt +Zt +Zt +Pr +"} +(4,1,1) = {" +Pr +Zt +Zt +Zt +vP +yR +yR +Bz +Zu +pQ +BW +nU +GQ +Zu +Zu +rC +rC +Zu +rC +Zu +iN +iN +iN +iN +iN +ey +Zu +Zt +Zt +Zt +Pr +"} +(5,1,1) = {" +Pr +Zt +Zt +Zt +iw +ki +sb +Gv +Zu +pm +wK +KT +tg +rC +hK +hy +nU +br +Vh +Zu +iN +iN +QP +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(6,1,1) = {" +Pr +Zt +sb +Lj +Va +Vj +fl +Km +Zu +Zu +La +rC +rC +Zu +EB +IH +KT +MN +vn +Qj +iN +iN +QP +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(7,1,1) = {" +Pr +Zt +sb +Po +sb +aY +Qk +vR +uS +sl +am +dh +Wv +uS +NE +bC +Jj +MF +Sn +Vh +iN +iN +QP +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(8,1,1) = {" +Pr +Zt +sb +Lj +AA +Vj +uh +iy +Zu +Zu +Zu +LB +Zu +rC +sy +Ni +xC +Rg +Vh +pd +iN +iN +iN +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(9,1,1) = {" +Pr +Zt +nf +Zt +Nm +AV +IS +iy +rq +Zu +Sf +Ss +Zb +rC +JG +Ot +sy +Vs +Vh +rC +iN +iN +iN +iN +iN +iN +Zu +Zt +Zt +Zt +Pr +"} +(10,1,1) = {" +Pr +Zt +fq +Zt +Np +nM +sb +iy +VW +Zu +JP +wQ +Zu +Zu +rC +Zu +uS +WI +rC +Zu +iN +iN +iN +iN +iN +xz +Zu +Zt +Zt +Zt +Pr +"} +(11,1,1) = {" +Pr +Zt +Zt +Zt +gp +Ih +sb +oL +rq +Zu +ge +Vh +rC +rt +oD +Zu +JG +MF +KS +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Zt +Zt +Zt +Pr +"} +(12,1,1) = {" +Pr +Zt +Zt +Zt +Zu +vG +pv +vG +Zu +Zu +sd +nh +Yj +XD +mn +rC +NE +RO +IX +Zu +GO +Cu +Tv +Zu +Zu +Zu +Zt +Zt +Zt +Zt +Pr +"} +(13,1,1) = {" +Pr +Zt +Zt +Zt +Zu +mW +iu +Km +iV +Zu +pM +KT +Zu +rC +Zu +Zu +JG +hS +Jp +Zu +pe +If +cS +wM +Kd +Zu +Zt +Zt +Zt +Zt +Pr +"} +(14,1,1) = {" +Pr +Zt +Zt +Zu +Zu +Gt +Jo +AV +EI +Zu +ts +EB +Yj +wK +rP +Zu +Gj +KT +iH +Zu +RY +Xv +Rl +hp +Vx +Zu +Zt +Zt +Zt +Zt +Pr +"} +(15,1,1) = {" +Pr +Zt +Zt +Zu +iQ +Fj +zN +AV +fA +Zu +Zu +Zu +Zu +Nz +Fv +rC +dh +fn +ZM +Zu +Rx +Ro +Ro +hp +ZT +Zu +Zt +Zt +Zt +Zt +Pr +"} +(16,1,1) = {" +Pr +Zt +Zt +Zu +OX +Zj +sY +bV +Zu +Zu +ok +Ua +Zu +Zu +Zu +rC +sy +Ho +zd +Zu +Rx +KR +KR +hp +xA +Zu +Zt +Zt +Zt +Zt +Pr +"} +(17,1,1) = {" +Pr +Zt +Zt +Zu +Zu +Zu +Zu +Zu +Zu +Zu +Fl +Dh +EL +fd +Zu +rC +kQ +rC +Zu +Zu +vG +yW +vG +Zu +Zu +Zu +Zu +Zu +Zu +Zt +Pr +"} +(18,1,1) = {" +Pr +Zt +Zt +Zu +Jt +JD +cz +WL +xg +vG +di +mu +Iu +hV +Zu +AE +JG +Zu +Zu +FH +eV +sT +xa +vO +Zu +iL +oa +oQ +Zu +Zt +Pr +"} +(19,1,1) = {" +Pr +Zt +Zt +Zu +AV +YL +Lc +Lc +xg +pv +AV +xK +Fj +DC +Zu +RZ +dh +Zu +FR +vh +vh +Xl +vh +vh +Zu +vh +vh +vh +Zu +Zt +Pr +"} +(20,1,1) = {" +Pr +Zt +Zt +Zu +AV +mX +AO +uz +xg +vG +kw +GZ +Mg +hY +Zu +Zu +aR +Zu +KR +KR +NO +sT +KR +KR +Hy +KR +LZ +KR +Zu +Zt +Pr +"} +(21,1,1) = {" +Pr +Zt +Zt +Zu +ta +mX +fL +uz +gz +Zu +Zu +vG +Zu +Zu +Zu +Zu +dh +uS +uj +uj +PB +vt +JA +KR +Ul +KR +KR +IJ +Zu +Zt +Pr +"} +(22,1,1) = {" +Pr +Zt +Zt +Zu +AV +mX +zp +uz +xg +sL +SJ +xg +xQ +Zu +ck +Vh +NE +Zu +KR +KR +KR +Sb +KR +KR +Hy +KR +KR +KR +Zu +Zt +Pr +"} +(23,1,1) = {" +Pr +Zt +Zt +Zu +AV +Lc +Lc +YL +sb +sb +sb +oc +vR +uS +JG +PJ +VS +Zu +Lp +hp +hp +RQ +hp +hp +Zu +hp +hp +lG +Zu +Zt +Pr +"} +(24,1,1) = {" +Pr +Zt +Zt +Zu +Wk +jR +CT +Wk +EV +Wk +EV +Wk +EV +Zu +rC +Rd +XK +Zu +Zu +hP +El +El +El +Wo +Zu +VX +Yy +NN +Zu +Zt +Pr +"} +(25,1,1) = {" +Pr +Zt +Zt +Zu +Zu +Zu +Zu +Zu +Lj +ZN +Lj +ZN +Lj +Zu +Zu +rC +rC +Zu +Zu +Lj +ZN +Lj +ZN +Lj +Zu +Zu +Zu +Zu +Zu +Zt +Pr +"} +(26,1,1) = {" +Pr +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Pr +"} +(27,1,1) = {" +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +"} diff --git a/_maps/virtual_domains/island_brawl.dmm b/_maps/virtual_domains/island_brawl.dmm index afb11be05eddc2..07003db1aa579c 100644 --- a/_maps/virtual_domains/island_brawl.dmm +++ b/_maps/virtual_domains/island_brawl.dmm @@ -2551,7 +2551,7 @@ /turf/open/floor/wood, /area/virtual_domain) "Gp" = ( -/obj/structure/no_effect_signpost{ +/obj/structure/signpost{ pixel_y = 6; desc = "Northwest: Hotel. South: Seaside Bar. East: Dressing Rooms." }, diff --git a/_maps/virtual_domains/meta_central.dmm b/_maps/virtual_domains/meta_central.dmm index 83bf0966d15666..e7f6e003b3549b 100644 --- a/_maps/virtual_domains/meta_central.dmm +++ b/_maps/virtual_domains/meta_central.dmm @@ -677,6 +677,7 @@ dir = 1 }, /obj/machinery/light/directional/north, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron, /area/virtual_domain) "fz" = ( @@ -2377,6 +2378,7 @@ dir = 8 }, /obj/item/trash/can/food/pine_nuts, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron, /area/virtual_domain) "tM" = ( @@ -3779,8 +3781,11 @@ /turf/open/floor/iron, /area/virtual_domain) "FF" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/turf/open/floor/iron, /area/virtual_domain) "FG" = ( /obj/effect/turf_decal/trimline/green/filled/corner, @@ -3859,6 +3864,7 @@ /obj/structure/fluff/paper/stack{ dir = 6 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron, /area/virtual_domain) "Gk" = ( @@ -3928,6 +3934,7 @@ /obj/structure/closet/crate/cardboard/mothic{ pixel_y = 8 }, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron, /area/virtual_domain) "GQ" = ( @@ -5165,6 +5172,7 @@ dir = 8 }, /obj/item/trash/energybar, +/obj/structure/sign/warning/secure_area/directional/south, /turf/open/floor/iron, /area/virtual_domain) "RB" = ( @@ -5173,6 +5181,7 @@ }, /obj/structure/holosign/barrier, /obj/structure/marker_beacon/burgundy, +/obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/iron, /area/virtual_domain) "RD" = ( @@ -5659,7 +5668,7 @@ /obj/machinery/door/airlock{ name = "Central Emergency Storage" }, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/unres/delayed, /turf/open/floor/plating, /area/virtual_domain) "VP" = ( @@ -6683,7 +6692,7 @@ dX XK tq tI -FF +uS mq oA wj @@ -7019,7 +7028,7 @@ JP ul tq Rz -FF +uS iI MM Vr @@ -7171,7 +7180,7 @@ Yo pH pK ep -FF +uS GJ FR Hd @@ -7208,8 +7217,8 @@ ps Nl YG iH +uS FF -dd FK Of qu @@ -7496,7 +7505,7 @@ ps Ht rJ VG -FF +uS RB qL jd @@ -7555,7 +7564,7 @@ oH Mj gE xI -FF +uS Gi Hd aC @@ -8083,7 +8092,7 @@ uS uS oo uS -FF +uS fr DV MN diff --git a/_maps/virtual_domains/syndicate_assault.dmm b/_maps/virtual_domains/syndicate_assault.dmm index e1258edf041859..e20438e1c412ab 100644 --- a/_maps/virtual_domains/syndicate_assault.dmm +++ b/_maps/virtual_domains/syndicate_assault.dmm @@ -115,6 +115,7 @@ /obj/structure/table/reinforced, /obj/item/gun/ballistic/automatic/l6_saw/unrestricted, /obj/item/ammo_box/magazine/m7mm, +/obj/structure/sign/departments/cargo/directional/north, /turf/open/floor/mineral/plastitanium, /area/virtual_domain/protected_space) "da" = ( @@ -122,8 +123,8 @@ /turf/open/floor/plastic, /area/virtual_domain) "dd" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall/plastitanium/syndicate, +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/mineral/plastitanium, /area/virtual_domain) "di" = ( /obj/machinery/power/terminal{ @@ -222,10 +223,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/mineral/plastitanium/red, /area/virtual_domain) -"iL" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/r_wall/plastitanium/syndicate, -/area/virtual_domain/protected_space) "iU" = ( /obj/structure/closet/crate/secure/gear{ req_access = list("syndicate") @@ -318,7 +315,6 @@ /obj/machinery/turretid{ control_area = "/area/ruin/space/has_grav/syndicate_forgotten_ship"; enabled = 0; - icon_state = "control_kill"; lethal = 1; name = "Ship turret control panel"; pixel_y = 32; @@ -1006,6 +1002,10 @@ /obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/virtual_domain) +"PQ" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/virtual_domain) "PR" = ( /obj/machinery/door/password/voice/sfc{ password = null @@ -2971,17 +2971,17 @@ qx ru uP uP +ru dd uP uP -uP Ox aw uP uP uP -uP -dd +PQ +ru uP Qg ru @@ -2992,7 +2992,7 @@ qx qx qx qx -iL +zN cZ dp dp diff --git a/_maps/virtual_domains/xeno_nest.dmm b/_maps/virtual_domains/xeno_nest.dmm index 895ba5e84c37c7..0e6cf4a740f14b 100644 --- a/_maps/virtual_domains/xeno_nest.dmm +++ b/_maps/virtual_domains/xeno_nest.dmm @@ -141,7 +141,7 @@ /area/virtual_domain/fullbright) "F" = ( /obj/structure/table/greyscale, -/obj/item/gun/energy/xray, +/obj/item/gun/energy/laser/xray, /obj/item/gun/energy/laser{ pixel_x = 4; pixel_y = -6 diff --git a/biome.json b/biome.json index 8f792f2b57b054..73718decc5b2fe 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/2.1.2/schema.json", + "$schema": "https://biomejs.dev/schemas/2.3.10/schema.json", "assist": { "actions": { "source": { @@ -20,7 +20,8 @@ "!**/node_modules", "!tgui/public", "tgui/public/tgui.html", - "!tgui/packages/tgui-setup/helpers.js" + "!tgui/packages/tgui-setup/helpers.js", + "!**/bun.lock" ] }, "formatter": { @@ -39,15 +40,18 @@ "rules": { "recommended": true, "a11y": "off", + "complexity": { + "useArrowFunction": "error" + }, "correctness": { - "noUnusedImports": "warn", + "noUnusedImports": "error", "noUnusedVariables": "off", "useExhaustiveDependencies": "off", "noUnusedFunctionParameters": "off", "useHookAtTopLevel": "off" }, "security": { - "noDangerouslySetInnerHtml": "warn" + "noDangerouslySetInnerHtml": "off" }, "style": { "noNonNullAssertion": "off", @@ -56,7 +60,8 @@ "suspicious": { "noArrayIndexKey": "off", "noExplicitAny": "off", - "noImplicitAnyLet": "off" + "noImplicitAnyLet": "off", + "noVar": "error" } } }, diff --git a/bun.lock b/bun.lock index d234ff9912a02b..fde39f4c0a0882 100644 --- a/bun.lock +++ b/bun.lock @@ -1,32 +1,33 @@ { "lockfileVersion": 1, + "configVersion": 0, "workspaces": { "": { "devDependencies": { - "@biomejs/biome": "^2.1.2", - "prettier": "^3.6.2", + "@biomejs/biome": "^2.3.10", + "prettier": "^3.7.4", }, }, }, "packages": { - "@biomejs/biome": ["@biomejs/biome@2.1.2", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.1.2", "@biomejs/cli-darwin-x64": "2.1.2", "@biomejs/cli-linux-arm64": "2.1.2", "@biomejs/cli-linux-arm64-musl": "2.1.2", "@biomejs/cli-linux-x64": "2.1.2", "@biomejs/cli-linux-x64-musl": "2.1.2", "@biomejs/cli-win32-arm64": "2.1.2", "@biomejs/cli-win32-x64": "2.1.2" }, "bin": { "biome": "bin/biome" } }, "sha512-yq8ZZuKuBVDgAS76LWCfFKHSYIAgqkxVB3mGVVpOe2vSkUTs7xG46zXZeNPRNVjiJuw0SZ3+J2rXiYx0RUpfGg=="], + "@biomejs/biome": ["@biomejs/biome@2.3.10", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.3.10", "@biomejs/cli-darwin-x64": "2.3.10", "@biomejs/cli-linux-arm64": "2.3.10", "@biomejs/cli-linux-arm64-musl": "2.3.10", "@biomejs/cli-linux-x64": "2.3.10", "@biomejs/cli-linux-x64-musl": "2.3.10", "@biomejs/cli-win32-arm64": "2.3.10", "@biomejs/cli-win32-x64": "2.3.10" }, "bin": { "biome": "bin/biome" } }, "sha512-/uWSUd1MHX2fjqNLHNL6zLYWBbrJeG412/8H7ESuK8ewoRoMPUgHDebqKrPTx/5n6f17Xzqc9hdg3MEqA5hXnQ=="], - "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.1.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-leFAks64PEIjc7MY/cLjE8u5OcfBKkcDB0szxsWUB4aDfemBep1WVKt0qrEyqZBOW8LPHzrFMyDl3FhuuA0E7g=="], + "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.3.10", "", { "os": "darwin", "cpu": "arm64" }, "sha512-M6xUjtCVnNGFfK7HMNKa593nb7fwNm43fq1Mt71kpLpb+4mE7odO8W/oWVDyBVO4ackhresy1ZYO7OJcVo/B7w=="], - "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.1.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-Nmmv7wRX5Nj7lGmz0FjnWdflJg4zii8Ivruas6PBKzw5SJX/q+Zh2RfnO+bBnuKLXpj8kiI2x2X12otpH6a32A=="], + "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.3.10", "", { "os": "darwin", "cpu": "x64" }, "sha512-Vae7+V6t/Avr8tVbFNjnFSTKZogZHFYl7MMH62P/J1kZtr0tyRQ9Fe0onjqjS2Ek9lmNLmZc/VR5uSekh+p1fg=="], - "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.1.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-NWNy2Diocav61HZiv2enTQykbPP/KrA/baS7JsLSojC7Xxh2nl9IczuvE5UID7+ksRy2e7yH7klm/WkA72G1dw=="], + "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.3.10", "", { "os": "linux", "cpu": "arm64" }, "sha512-hhPw2V3/EpHKsileVOFynuWiKRgFEV48cLe0eA+G2wO4SzlwEhLEB9LhlSrVeu2mtSn205W283LkX7Fh48CaxA=="], - "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.1.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-qgHvafhjH7Oca114FdOScmIKf1DlXT1LqbOrrbR30kQDLFPEOpBG0uzx6MhmsrmhGiCFCr2obDamu+czk+X0HQ=="], + "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.3.10", "", { "os": "linux", "cpu": "arm64" }, "sha512-B9DszIHkuKtOH2IFeeVkQmSMVUjss9KtHaNXquYYWCjH8IstNgXgx5B0aSBQNr6mn4RcKKRQZXn9Zu1rM3O0/A=="], - "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.1.2", "", { "os": "linux", "cpu": "x64" }, "sha512-Km/UYeVowygTjpX6sGBzlizjakLoMQkxWbruVZSNE6osuSI63i4uCeIL+6q2AJlD3dxoiBJX70dn1enjQnQqwA=="], + "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.3.10", "", { "os": "linux", "cpu": "x64" }, "sha512-wwAkWD1MR95u+J4LkWP74/vGz+tRrIQvr8kfMMJY8KOQ8+HMVleREOcPYsQX82S7uueco60L58Wc6M1I9WA9Dw=="], - "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.1.2", "", { "os": "linux", "cpu": "x64" }, "sha512-xlB3mU14ZUa3wzLtXfmk2IMOGL+S0aHFhSix/nssWS/2XlD27q+S6f0dlQ8WOCbYoXcuz8BCM7rCn2lxdTrlQA=="], + "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.3.10", "", { "os": "linux", "cpu": "x64" }, "sha512-QTfHZQh62SDFdYc2nfmZFuTm5yYb4eO1zwfB+90YxUumRCR171tS1GoTX5OD0wrv4UsziMPmrePMtkTnNyYG3g=="], - "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.1.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-G8KWZli5ASOXA3yUQgx+M4pZRv3ND16h77UsdunUL17uYpcL/UC7RkWTdkfvMQvogVsAuz5JUcBDjgZHXxlKoA=="], + "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.3.10", "", { "os": "win32", "cpu": "arm64" }, "sha512-o7lYc9n+CfRbHvkjPhm8s9FgbKdYZu5HCcGVMItLjz93EhgJ8AM44W+QckDqLA9MKDNFrR8nPbO4b73VC5kGGQ=="], - "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.1.2", "", { "os": "win32", "cpu": "x64" }, "sha512-9zajnk59PMpjBkty3bK2IrjUsUHvqe9HWwyAWQBjGLE7MIBjbX2vwv1XPEhmO2RRuGoTkVx3WCanHrjAytICLA=="], + "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.3.10", "", { "os": "win32", "cpu": "x64" }, "sha512-pHEFgq7dUEsKnqG9mx9bXihxGI49X+ar+UBrEIj3Wqj3UCZp1rNgV+OoyjFgcXsjCWpuEAF4VJdkZr3TrWdCbQ=="], - "prettier": ["prettier@3.6.2", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ=="], + "prettier": ["prettier@3.7.4", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA=="], } } diff --git a/code/__DEFINES/DNA.dm b/code/__DEFINES/DNA.dm index cc51f9d3e87352..2fc2da70abfa7d 100644 --- a/code/__DEFINES/DNA.dm +++ b/code/__DEFINES/DNA.dm @@ -124,7 +124,7 @@ // Other #define FEATURE_WINGS "wings" -#define FEATURE_WINGS_OPEN "[FEATURE_WINGS]_open" +#define FEATURE_WINGS_OPEN "wingsopen" #define FEATURE_TAIL_MONKEY "tail_monkey" #define FEATURE_TAIL_XENO "tail_xeno" #define FEATURE_TAILSPINES "tailspines" // Different from regular spines, these appear on tails @@ -142,8 +142,12 @@ #define ORGAN_SLOT_ADAMANTINE_RESONATOR "adamantine_resonator" #define ORGAN_SLOT_APPENDIX "appendix" #define ORGAN_SLOT_BRAIN "brain" -#define ORGAN_SLOT_BRAIN_CEREBELLUM "brain_antidrop" -#define ORGAN_SLOT_BRAIN_CNS "brain_antistun" +/// Brain implants that affect the mob's motor control (grabbing, moving, attacking) +#define ORGAN_SLOT_BRAIN_CEREBELLUM "brain_motorcontrol" +/// Brain implants that affect the mob's sensory systems (pain, vision, hearing, etc) +#define ORGAN_SLOT_BRAIN_CNS "brain_cns" +/// Brain implants that affect the mob's memory and cognition (skills, knowledge, etc) +#define ORGAN_SLOT_BRAIN_HIPPOCAMPUS "brain_memory" #define ORGAN_SLOT_BREATHING_TUBE "breathing_tube" #define ORGAN_SLOT_EARS "ears" #define ORGAN_SLOT_EYES "eye_sight" diff --git a/code/__DEFINES/__globals.dm b/code/__DEFINES/__globals.dm index 3639d5592553c6..9f3ea839e76e3b 100644 --- a/code/__DEFINES/__globals.dm +++ b/code/__DEFINES/__globals.dm @@ -49,6 +49,12 @@ /// Create a typed list global that is initialized as an empty list #define GLOBAL_LIST_EMPTY_TYPED(X, Typepath) GLOBAL_LIST_INIT_TYPED(X, Typepath, list()) +/// Create an alist global with an initializer expression +#define GLOBAL_ALIST_INIT(X, InitValue) GLOBAL_RAW(/alist/##X); GLOBAL_MANAGED(X, InitValue) + +// Create an alist global that is initialized as an empty list +#define GLOBAL_ALIST_EMPTY(X) GLOBAL_ALIST_INIT(X, alist()) + /// Create a typed global with an initializer expression #define GLOBAL_DATUM_INIT(X, Typepath, InitValue) GLOBAL_RAW(Typepath/##X); GLOBAL_MANAGED(X, InitValue) diff --git a/code/__DEFINES/_flags.dm b/code/__DEFINES/_flags.dm index ca65bcaf9dd247..53b1514ed6af03 100644 --- a/code/__DEFINES/_flags.dm +++ b/code/__DEFINES/_flags.dm @@ -100,52 +100,55 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204 /// This atom is a pseudo-floor that blocks map generation's checkPlaceAtom() from placing things like trees ontop of it. #define TURF_BLOCKS_POPULATE_TERRAIN_FLORAFEATURES (1<<8) - ////////////////Area flags\\\\\\\\\\\\\\ /// If it's a valid territory for cult summoning or the CRAB-17 phone to spawn #define VALID_TERRITORY (1<<0) /// If blobs can spawn there and if it counts towards their score. #define BLOBS_ALLOWED (1<<1) -/// If mining tunnel generation is allowed in this area -#define CAVES_ALLOWED (1<<2) -/// If flora are allowed to spawn in this area randomly through tunnel generation -#define FLORA_ALLOWED (1<<3) -/// If mobs can be spawned by natural random generation -#define MOB_SPAWN_ALLOWED (1<<4) -/// If megafauna can be spawned by natural random generation -#define MEGAFAUNA_SPAWN_ALLOWED (1<<5) /// Are you forbidden from teleporting to the area? (centcom, mobs, wizard, hand teleporter) -#define NOTELEPORT (1<<6) +#define NOTELEPORT (1<<2) /// Hides area from player Teleport function. -#define HIDDEN_AREA (1<<7) -/// If false, loading multiple maps with this area type will create multiple instances. -#define UNIQUE_AREA (1<<8) +#define HIDDEN_AREA (1<<3) /// If people are allowed to suicide in it. Mostly for OOC stuff like minigames -#define BLOCK_SUICIDE (1<<9) +#define BLOCK_SUICIDE (1<<5) /// If set, this area will be innately traversable by Xenobiology camera consoles. -#define XENOBIOLOGY_COMPATIBLE (1<<10) +#define XENOBIOLOGY_COMPATIBLE (1<<6) /// If blood cultists can draw runes or build structures on this AREA. -#define CULT_PERMITTED (1<<11) -/// If engravings are persistent in this area -#define PERSISTENT_ENGRAVINGS (1<<12) +#define CULT_PERMITTED (1<<7) /// Mobs that die in this area don't produce a dead chat message -#define NO_DEATH_MESSAGE (1<<13) +#define NO_DEATH_MESSAGE (1<<8) /// This area should have extra shielding from certain event effects -#define EVENT_PROTECTED (1<<14) +#define EVENT_PROTECTED (1<<9) /// This Area Doesn't have Flood or Bomb Admin Messages, but will still log -#define QUIET_LOGS (1<<15) -/// This area does not allow virtual entities to enter. -#define VIRTUAL_SAFE_AREA (1<<16) +#define QUIET_LOGS (1<<10) /// This area does not allow the Binary channel -#define BINARY_JAMMING (1<<17) +#define BINARY_JAMMING (1<<11) /// This area prevents Bag of Holding rifts from being opened. -#define NO_BOH (1<<18) +#define NO_BOH (1<<12) /// This area prevents fishing from removing unique/limited loot from sources that're also used outside of it. -#define UNLIMITED_FISHING (1<<19) +#define UNLIMITED_FISHING (1<<13) /// This area is prevented from having gravity (ie. space, nearstation, or outside solars) -#define NO_GRAVITY (1<<20) +#define NO_GRAVITY (1<<14) /// This area can be teleported in, but -only- to locations within that same area. -#define LOCAL_TELEPORT (1<<21) +#define LOCAL_TELEPORT (1<<15) + +////////////////Area Mapping Flags\\\\\\\\\\\\\\ +/// If false, loading multiple maps with this area type will create multiple instances. +#define UNIQUE_AREA (1<<0) +/// If mining tunnel generation is allowed in this area +#define CAVES_ALLOWED (1<<1) +/// If flora are allowed to spawn in this area randomly through tunnel generation +#define FLORA_ALLOWED (1<<2) +/// If mobs can be spawned by natural random generation +#define MOB_SPAWN_ALLOWED (1<<3) +/// If megafauna can be spawned by natural random generation +#define MEGAFAUNA_SPAWN_ALLOWED (1<<4) +/// If engravings are persistent in this area +#define PERSISTENT_ENGRAVINGS (1<<5) +/// This is a virtual/bitrunning area +#define VIRTUAL_AREA (1<<6) +/// This area does not allow virtual entities to enter. +#define VIRTUAL_SAFE_AREA (1<<7) /* These defines are used specifically with the atom/pass_flags bitmask @@ -336,3 +339,23 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204 #define EMOTE_IMPORTANT (1<<2) /// Emote only prints to runechat, not to the chat window #define EMOTE_RUNECHAT (1<<3) + +// Flags for the empath component +/// Can the empath see if a living mob has combat mode on +#define EMPATH_SEE_COMBAT (1<<0) +/// Can the empath see if living mob has over 10 oxyloss +#define EMPATH_SEE_OXY (1<<1) +/// Can the empath see if living mob has over 10 toxloss +#define EMPATH_SEE_TOX (1<<2) +/// Can the empath see if living mob's sanity is at distressed or below +#define EMPATH_SEE_SANITY (1<<3) +/// Can the empath see if living mob is blind +#define EMPATH_SEE_BLIND (1<<4) +/// Can the empath see if living mob is deaf +#define EMPATH_SEE_DEAF (1<<5) +/// Can the empath see if living mob's body temperature is too hot for their species +#define EMPATH_SEE_HOT (1<<6) +/// Can the empath see if living mob's body temperature is too low for their species +#define EMPATH_SEE_COLD (1<<7) +/// Can the empath see if living mob has the fundamentally evil trait +#define EMPATH_SEE_EVIL (1<<8) diff --git a/code/__DEFINES/access.dm b/code/__DEFINES/access.dm index 956f1d9c448417..b139ef6713b2af 100644 --- a/code/__DEFINES/access.dm +++ b/code/__DEFINES/access.dm @@ -28,6 +28,8 @@ #define ACCESS_ALL_PERSONAL_LOCKERS "all_personal_lockers" /// Access used for Access-Changing Programs, this one will unlock all options that can be ever given via that program. #define ACCESS_CHANGE_IDS "change_ids" +/// Access the PDA shopping app checks for to see if you can only request or place orders immediately +#define ACCESS_BUDGET "department_budget" /// Access used for the Captain's personal quarters in mapping, as well as what allows one to order emergency shuttles. #define ACCESS_CAPTAIN "captain" /// Access used for the Head of Personnel's personal quarters in mapping, as well as the security console and other HoP-related things. @@ -184,6 +186,7 @@ #define ACCESS_CENT_TELEPORTER "cent_teleporter" #define ACCESS_CENT_CAPTAIN "cent_captain" #define ACCESS_CENT_BAR "cent_bar" +#define ACCESS_CENT_OFFICER "cent_officer" /// Special Ops. Captain's display case, Marauder and Seraph mechs. #define ACCESS_CENT_SPECOPS "cent_specops" @@ -295,6 +298,7 @@ ACCESS_BIT_DEN, \ ACCESS_BRIG, \ ACCESS_BRIG_ENTRANCE, \ + ACCESS_BUDGET, \ ACCESS_CARGO, \ ACCESS_CHAPEL_OFFICE, \ ACCESS_CONSTRUCTION, \ @@ -338,6 +342,7 @@ ACCESS_SERVICE, \ ACCESS_SHIPPING, \ ACCESS_SURGERY, \ + ACCESS_TECH_STORAGE, \ ACCESS_THEATRE, \ ACCESS_VIROLOGY, \ ACCESS_WEAPONS, \ @@ -349,6 +354,7 @@ ACCESS_AI_UPLOAD, \ ACCESS_ALL_PERSONAL_LOCKERS, \ ACCESS_ARMORY, \ + ACCESS_BUDGET, \ ACCESS_CHANGE_IDS, \ ACCESS_COMMAND, \ ACCESS_EVA, \ @@ -356,7 +362,6 @@ ACCESS_MINISAT, \ ACCESS_RC_ANNOUNCE, \ ACCESS_TCOMMS, \ - ACCESS_TECH_STORAGE, \ ACCESS_TELEPORTER, \ ACCESS_VAULT, \ ) @@ -386,6 +391,7 @@ ACCESS_CENT_STORAGE, \ ACCESS_CENT_TELEPORTER, \ ACCESS_CENT_THUNDER, \ + ACCESS_CENT_OFFICER, \ ) /// Syndicate areas off station. Do not use direct, access via SSid_access.get_flag_access_list(ACCESS_FLAG_SYNDICATE) @@ -428,6 +434,7 @@ /// Used to seed the accesses_by_region list in SSid_access. A list of general service accesses that are overseen by the HoP. #define REGION_ACCESS_GENERAL list( \ ACCESS_BAR, \ + ACCESS_BUDGET, \ ACCESS_CHAPEL_OFFICE, \ ACCESS_CREMATORIUM, \ ACCESS_HYDROPONICS, \ @@ -445,6 +452,7 @@ ACCESS_ARMORY, \ ACCESS_BRIG, \ ACCESS_BRIG_ENTRANCE, \ + ACCESS_BUDGET, \ ACCESS_COURT, \ ACCESS_DETECTIVE, \ ACCESS_HOS, \ @@ -456,6 +464,7 @@ #define REGION_MEDBAY "Medbay" /// Used to seed the accesses_by_region list in SSid_access. A list of all medbay regional accesses that are overseen by the CMO. #define REGION_ACCESS_MEDBAY list( \ + ACCESS_BUDGET, \ ACCESS_CMO, \ ACCESS_MECH_MEDICAL, \ ACCESS_MEDICAL, \ @@ -473,6 +482,7 @@ /// Used to seed the accesses_by_region list in SSid_access. A list of all research regional accesses that are overseen by the RD. #define REGION_ACCESS_RESEARCH list( \ ACCESS_AI_UPLOAD, \ + ACCESS_BUDGET, \ ACCESS_GENETICS, \ ACCESS_MECH_SCIENCE, \ ACCESS_MINISAT, \ @@ -491,6 +501,7 @@ #define REGION_ACCESS_ENGINEERING list( \ ACCESS_ATMOSPHERICS, \ ACCESS_AUX_BASE, \ + ACCESS_BUDGET, \ ACCESS_CE, \ ACCESS_CONSTRUCTION, \ ACCESS_ENGINEERING, \ @@ -507,6 +518,7 @@ /// Used to seed the accesses_by_region list in SSid_access. A list of all cargo regional accesses that are overseen by the HoP. #define REGION_ACCESS_SUPPLY list( \ ACCESS_BIT_DEN, \ + ACCESS_BUDGET, \ ACCESS_CARGO, \ ACCESS_MECH_MINING, \ ACCESS_MINERAL_STOREROOM, \ @@ -522,6 +534,7 @@ #define REGION_ACCESS_COMMAND list( \ ACCESS_AI_UPLOAD, \ ACCESS_ALL_PERSONAL_LOCKERS, \ + ACCESS_BUDGET, \ ACCESS_CAPTAIN, \ ACCESS_CHANGE_IDS, \ ACCESS_COMMAND, \ diff --git a/code/__DEFINES/achievements.dm b/code/__DEFINES/achievements.dm index 47ba741764b212..d026e2f795e9b3 100644 --- a/code/__DEFINES/achievements.dm +++ b/code/__DEFINES/achievements.dm @@ -14,6 +14,7 @@ //Misc Medal hub IDs #define MEDAL_METEOR "Your Life Before Your Eyes" +#define MEDAL_METEOR_PUNCH "Your Life In Your Hands" #define MEDAL_PULSE "Jackpot" #define MEDAL_TIMEWASTE "Overextended The Joke" #define MEDAL_RODSUPLEX "Feat of Strength" diff --git a/code/__DEFINES/ai/ai.dm b/code/__DEFINES/ai/ai.dm index 7266ad449909f2..aafd3feb203d5e 100644 --- a/code/__DEFINES/ai/ai.dm +++ b/code/__DEFINES/ai/ai.dm @@ -76,6 +76,8 @@ //Generic subtree defines +/// default search range (tiles, passed to oview) when using find_and_set +#define SEARCH_TACTIC_DEFAULT_RANGE 7 /// probability that the pawn should try resisting out of restraints #define RESIST_SUBTREE_PROB 50 ///macro for whether it's appropriate to resist right now, used by resist subtree diff --git a/code/__DEFINES/ai/ai_blackboard.dm b/code/__DEFINES/ai/ai_blackboard.dm index ebcd71345ee7f6..3e9a65027af5a3 100644 --- a/code/__DEFINES/ai/ai_blackboard.dm +++ b/code/__DEFINES/ai/ai_blackboard.dm @@ -4,6 +4,8 @@ #define BB_CURRENT_MIN_MOVE_DISTANCE "min_move_distance" ///time until we should next eat, set by the generic hunger subtree #define BB_NEXT_HUNGRY "BB_NEXT_HUNGRY" +///When looking for food, ignore drinks +#define BB_IGNORE_DRINKS "bb_ignore_drinks" ///what we're going to eat next #define BB_FOOD_TARGET "bb_food_target" ///How close a mob must be for us to select it as a target, if that is less than how far we can maintain it as a target @@ -81,6 +83,7 @@ #define BB_BASIC_MOB_CURRENT_TARGET "BB_basic_current_target" #define BB_BASIC_MOB_CURRENT_TARGET_HIDING_LOCATION "BB_basic_current_target_hiding_location" #define BB_TARGETING_STRATEGY "targeting_strategy" +#define BB_HUNT_TARGETING_STRATEGY "hunt_targeting_strategy" ///some behaviors that check current_target also set this on deep crit mobs #define BB_BASIC_MOB_EXECUTION_TARGET "BB_basic_execution_target" ///Blackboard key for a whitelist typecache of "things we can target while trying to move" @@ -173,8 +176,6 @@ #define BB_MOD_TARGET "BB_mod_target" ///The module the AI was created from #define BB_MOD_MODULE "BB_mod_module" -///Range for a MOD AI controller. -#define MOD_AI_RANGE 200 ///Only target mobs with these traits #define BB_TARGET_ONLY_WITH_TRAITS "BB_target_only_with_traits" @@ -236,5 +237,3 @@ // Used to hold state without making bigass lists /// For /datum/ai_behavior/find_potential_targets, what if any field are we using currently #define BB_FIND_TARGETS_FIELD(type) "bb_find_targets_field_[type]" - - diff --git a/code/__DEFINES/ai/monkey.dm b/code/__DEFINES/ai/monkey.dm index 833514e2f0fdaf..f11ac96fefe2d9 100644 --- a/code/__DEFINES/ai/monkey.dm +++ b/code/__DEFINES/ai/monkey.dm @@ -15,3 +15,11 @@ #define BB_MONKEY_DISPOSING "BB_monkey_disposing" #define BB_MONKEY_RECRUIT_COOLDOWN "BB_monkey_recruit_cooldown" #define BB_RESISTING "BB_resisting" +/// Monkey is not necessarily a wild animal so it won't resort to fighting over food and such +#define BB_MONKEY_TAMED "BB_monkey_tamed" +/// Chance to give our held item to a nearby mob +#define BB_MONKEY_GIVE_CHANCE "BB_monkey_give_chance" +/// If set, the monkey will prefer this type of object when pressing things +#define BB_MONKEY_PRESS_TYPEPATH "BB_monkey_press_typepath" +/// The item the monkey is currently serving to someone +#define BB_MONKEY_CURRENT_SERVED_ITEM "BB_monkey_current_served_item" diff --git a/code/__DEFINES/atmospherics/atmos_piping.dm b/code/__DEFINES/atmospherics/atmos_piping.dm index 188798f95d2058..54d29ffa59d0cd 100644 --- a/code/__DEFINES/atmospherics/atmos_piping.dm +++ b/code/__DEFINES/atmospherics/atmos_piping.dm @@ -68,9 +68,9 @@ #define TANK_MERGE_OVERPRESSURE "tank_overpressure" // Indices for the reaction_results returned by explosion_information() /// Reactions that have happened in the tank. -#define TANK_RESULTS_REACTION 1 +#define TANK_RESULTS_REACTION "results_reaction" /// Additional information of the tank. -#define TANK_RESULTS_MISC 2 +#define TANK_RESULTS_MISC "results_misc" /// Color used by omni-color pipes #define ATMOS_COLOR_OMNI COLOR_VERY_LIGHT_GRAY diff --git a/code/__DEFINES/atom_hud.dm b/code/__DEFINES/atom_hud.dm index e28bf7ac9e5f66..a0f6e78ad050fd 100644 --- a/code/__DEFINES/atom_hud.dm +++ b/code/__DEFINES/atom_hud.dm @@ -79,6 +79,7 @@ #define SECHUD_SYNDICATE "hudsyndicate" #define SECHUD_SYNDICATE_INTERDYNE "hudsyndicateinterdyne" #define SECHUD_SYNDICATE_INTERDYNE_HEAD "hudsyndicateinterdynehead" +#define SECHUD_CLOWNOPS "hudclownop" #define SECHUD_ASSISTANT "hudassistant" #define SECHUD_ATMOSPHERIC_TECHNICIAN "hudatmospherictechnician" diff --git a/code/__DEFINES/basic_mobs.dm b/code/__DEFINES/basic_mobs.dm index a07997d40d2078..5b1d0283c5648e 100644 --- a/code/__DEFINES/basic_mobs.dm +++ b/code/__DEFINES/basic_mobs.dm @@ -39,40 +39,83 @@ #define MOOK_ATTACK_ACTIVE 2 #define MOOK_ATTACK_STRIKE 3 -///keeps track of how many gutlunches are born +/// Keeps track of how many gutlunches are born GLOBAL_VAR_INIT(gutlunch_count, 0) -///Pet customization settings saved for every client +/// Pet customization settings saved for every client GLOBAL_LIST_EMPTY(customized_pets) -//raptor defines +// Raptor defines +/// Raptor chick, tiny and very frail +#define RAPTOR_BABY "baby" +/// Raptor youngling, cannot be ridden and has reduced stats, but can hunt by itself just fine +#define RAPTOR_YOUNG "young" +/// Fully grown adult raptor +#define RAPTOR_ADULT "adult" -#define RAPTOR_RED "Red" -#define RAPTOR_GREEN "Green" -#define RAPTOR_PURPLE "Purple" -#define RAPTOR_WHITE "White" -#define RAPTOR_YELLOW "Yellow" -#define RAPTOR_BLACK "Black" -#define RAPTOR_BLUE "Blue" +/// Innate raptor offsets +#define RAPTOR_INNATE_SOURCE "raptor_innate" +// Growth values +/// How much does meal complexity affect our growth? +#define RAPTOR_MEAL_COMPLEXITY_GROWTH_FACTOR 5 +/// Base value for raptor growth from meat +#define RAPTOR_GROWTH_BASE_MEAT 10 +/// Base value for raptor growth from ash flora +#define RAPTOR_GROWTH_BASE_PLANT 5 +/// How much growth progress raptors need to accumulate to fully grow into an adult +#define RAPTOR_GROWTH_REQUIRED 100 +/// Minimum random growth value a baby raptor can gain per second +#define RAPTOR_BABY_GROWTH_LOWER 0.5 +/// Maximum random growth value a baby raptor can gain per second +#define RAPTOR_BABY_GROWTH_UPPER 0.8 +/// How long it takes for a raptor egg to grow up, in seconds +#define RAPTOR_EGG_GROWTH_PROGRESS 100 +/// How much happiness percentage affects our growth speed +#define RAPTOR_GROWTH_HAPPINESS_MULTIPLIER 0.005 // Full happiness increases growth rate by 50% + +/// Damage boost per happiness percent +#define RAPTOR_HAPPINESS_DAMAGE_BOOST 0.05 + +// Raptor inheritance stats +/// Maximum amount of traits a raptor can inherit +#define RAPTOR_TRAIT_INHERIT_AMOUNT 2 +/// Minimum modifier to base attack values a raptor can get +#define RAPTOR_INHERIT_MIN_ATTACK -5 +/// Maximum modifier to base attack values a raptor can get #define RAPTOR_INHERIT_MAX_ATTACK 5 +/// Minimum modifier to the base health value a raptor can get +#define RAPTOR_INHERIT_MIN_HEALTH -30 +/// Maximum modifier to the base health value a raptor can get #define RAPTOR_INHERIT_MAX_HEALTH 30 +/// Minimum modifier to base speed values a raptor can get +#define RAPTOR_INHERIT_MIN_SPEED -0.66 +/// Maximum modifier to base speed values a raptor can get +#define RAPTOR_INHERIT_MAX_SPEED 0.66 +/// Minimum modifier a raptor can get to their modifiers, such as ability effect and growth speed +#define RAPTOR_INHERIT_MIN_MODIFIER -0.25 +/// Maximum modifier a raptor can get to their modifiers, such as ability effect and growth speed +#define RAPTOR_INHERIT_MAX_MODIFIER 0.25 +/// Genetic drift for raptors, aka min/max value from the cap that stats can receive when breeding +#define RAPTOR_GENETIC_DRIFT 0.2 -///this mob suffers depression +/// This mob suffers depression #define BB_BASIC_DEPRESSED "basic_depressed" -///this mob will care for its young +/// This mob will care for its young #define BB_RAPTOR_MOTHERLY "raptor_motherly" -///this mob will be playful around their owners +/// This mob will be playful around their owners #define BB_RAPTOR_PLAYFUL "raptor_playful" -///this mob will flee combat when it feels threatened +/// This mob will flee combat when it feels threatened #define BB_RAPTOR_COWARD "raptor_coward" -///our raptor baby target we will take care of +/// Our raptor baby target we will take care of #define BB_RAPTOR_BABY "raptor_baby" -///the raptor we will heal up +/// The raptor we will heal up #define BB_INJURED_RAPTOR "injured_raptor" -///the cooldown for next time we eat +/// The cooldown for next time we eat #define BB_RAPTOR_EAT_COOLDOWN "raptor_eat_cooldown" -///our trough target +/// Our trough target #define BB_RAPTOR_TROUGH_TARGET "raptor_trough_target" +/// HP level at which we'll flee from attackers +#define BB_RAPTOR_FLEE_THRESHOLD "raptor_flee_threshold" #define MAX_RAPTOR_POP 64 diff --git a/code/__DEFINES/bitrunning.dm b/code/__DEFINES/bitrunning.dm index 639ae26c3fc5b1..900182eb43d787 100644 --- a/code/__DEFINES/bitrunning.dm +++ b/code/__DEFINES/bitrunning.dm @@ -27,13 +27,14 @@ /// Camera network bitrunner bodycams are on #define BITRUNNER_CAMERA_NET "bitrunner" -/** - * Bitrunner Domain External Load Restriction Bitflags - */ /// Domain forbids external sources from loading items onto avatars #define DOMAIN_FORBIDS_ITEMS (1<<0) /// Domain forbids external sources from loading abilities onto avatars #define DOMAIN_FORBIDS_ABILITIES (1<<1) +/// Block nohit bonus from applying +#define DOMAIN_NO_NOHIT_BONUS (1<<2) +/// Test domain, don't let it be loaded normally +#define DOMAIN_TEST_ONLY (1<<3) /// Combination flag for blocking anything from being loaded onto avatars by external sources #define DOMAIN_FORBIDS_ALL ALL diff --git a/code/__DEFINES/bodyparts.dm b/code/__DEFINES/bodyparts.dm index 5c6bb1b496059d..ffeff072f457a0 100644 --- a/code/__DEFINES/bodyparts.dm +++ b/code/__DEFINES/bodyparts.dm @@ -66,3 +66,119 @@ #define BODYPART_OVERLAY_CARP_INFUSION 2 #define BODYPART_OVERLAY_CSS_SUICIDE 3 #define BODYPART_OVERLAY_VOIDWALKER_CURSE 4 + +/// This limb cannot be disabled via damage thresholds +#define LIMB_NO_DISABLE -1 + +// Bodypart surgery state +/// An incision has been made into the skin +#define SURGERY_SKIN_CUT (1<<0) +/// Skin has been pulled back - 99% of surgeries require this +#define SURGERY_SKIN_OPEN (1<<1) +/// Blood vessels are accessible, cut, and bleeding +#define SURGERY_VESSELS_UNCLAMPED (1<<2) +/// Blood vessels are accessible but clamped +#define SURGERY_VESSELS_CLAMPED (1<<3) +/// Indicates either an incision has been made into the organs present in the limb or organs have been incised from the limb +#define SURGERY_ORGANS_CUT (1<<4) +/// Holes have been drilled in our bones, exclusive with sawed +#define SURGERY_BONE_DRILLED (1<<5) +/// Bones have been sawed apart +#define SURGERY_BONE_SAWED (1<<6) +/// Used in advanced plastic surgery: Has plastic been applied +#define SURGERY_PLASTIC_APPLIED (1<<7) +/// Used in prosthetic surgery: Is the prosthetic unsecured +#define SURGERY_PROSTHETIC_UNSECURED (1<<8) +/// Used for cavity implants +#define SURGERY_CAVITY_WIDENED (1<<9) + +DEFINE_BITFIELD(surgery_state, list( + "SKIN CUT" = SURGERY_SKIN_CUT, + "SKIN OPEN" = SURGERY_SKIN_OPEN, + "VESSELS UNCLAMPED" = SURGERY_VESSELS_UNCLAMPED, + "VESSELS CLAMPED" = SURGERY_VESSELS_CLAMPED, + "ORGANS CUT" = SURGERY_ORGANS_CUT, + "BONE DRILLED" = SURGERY_BONE_DRILLED, + "BONE SAWED" = SURGERY_BONE_SAWED, + "PLASTIC APPLIED" = SURGERY_PLASTIC_APPLIED, + "PROSTHETIC UNSECURED" = SURGERY_PROSTHETIC_UNSECURED, + "CAVITY OPENED" = SURGERY_CAVITY_WIDENED, +)) + +/// For use in translating bitfield to human readable strings. Keep in the correct order! +#define SURGERY_STATE_READABLE list(\ + "Skin is cut" = SURGERY_SKIN_CUT, \ + "Skin is open" = SURGERY_SKIN_OPEN, \ + "Blood vessels are unclamped" = SURGERY_VESSELS_UNCLAMPED, \ + "Blood vessels are clamped" = SURGERY_VESSELS_CLAMPED, \ + "Organs are cut" = SURGERY_ORGANS_CUT, \ + "Bone is drilled" = SURGERY_BONE_DRILLED, \ + "Bone is sawed" = SURGERY_BONE_SAWED, \ + "Plastic is applied" = SURGERY_PLASTIC_APPLIED, \ + "Prosthetic is unsecured" = SURGERY_PROSTHETIC_UNSECURED, \ + "Cavity is opened wide" = SURGERY_CAVITY_WIDENED, \ +) + +/// For use in translating bitfield to steps required for surgery. Keep in the correct order! +#define SURGERY_STATE_GUIDES(must_must_not) list(\ + "the skin [must_must_not] be cut" = SURGERY_SKIN_CUT, \ + "the skin [must_must_not] be open" = SURGERY_SKIN_OPEN, \ + "the blood vessels [must_must_not] be unclamped" = SURGERY_VESSELS_UNCLAMPED, \ + "the blood vessels [must_must_not] be clamped" = SURGERY_VESSELS_CLAMPED, \ + "the organs [must_must_not] be cut" = SURGERY_ORGANS_CUT, \ + "the bone [must_must_not] be drilled" = SURGERY_BONE_DRILLED, \ + "the bone [must_must_not] be sawed" = SURGERY_BONE_SAWED, \ + "plastic [must_must_not] be applied" = SURGERY_PLASTIC_APPLIED, \ + "the prosthetic [must_must_not] be unsecured" = SURGERY_PROSTHETIC_UNSECURED, \ + "the chest cavity [must_must_not] be opened wide" = SURGERY_CAVITY_WIDENED, \ +) + +// Yes these are glorified bitflag manipulation macros, they're meant to make reading surgical operations a bit easier +/// Checks if the input surgery state has all of the bitflags passed +#define HAS_SURGERY_STATE(input_state, check_state) ((input_state & (check_state)) == (check_state)) +/// Checks if the input surgery state has any of the bitflags passed +#define HAS_ANY_SURGERY_STATE(input_state, check_state) ((input_state & (check_state))) +/// Checks if the limb has all of the bitflags passed +#define LIMB_HAS_SURGERY_STATE(limb, check_state) HAS_SURGERY_STATE(limb?.surgery_state, check_state) +/// Checks if the limb has any of the bitflags passed +#define LIMB_HAS_ANY_SURGERY_STATE(limb, check_state) HAS_ANY_SURGERY_STATE(limb?.surgery_state, check_state) + +/// All states that concern itself with the skin +#define ALL_SURGERY_SKIN_STATES (SURGERY_SKIN_CUT|SURGERY_SKIN_OPEN) +/// All states that concern itself with the blood vessels +#define ALL_SURGERY_VESSEL_STATES (SURGERY_VESSELS_UNCLAMPED|SURGERY_VESSELS_CLAMPED) +/// All states that concern itself with the bones +#define ALL_SURGERY_BONE_STATES (SURGERY_BONE_DRILLED|SURGERY_BONE_SAWED) +/// All states that concern itself with internal organs +#define ALL_SURGERY_ORGAN_STATES (SURGERY_ORGANS_CUT) + +/// These states are automatically cleared when the surgery is closed for ease of use +#define ALL_SURGERY_STATES_UNSET_ON_CLOSE (ALL_SURGERY_SKIN_STATES|ALL_SURGERY_VESSEL_STATES|ALL_SURGERY_BONE_STATES|ALL_SURGERY_ORGAN_STATES|SURGERY_CAVITY_WIDENED) +/// Surgery state required for a limb with a certain zone to... be... fished... in... +#define ALL_SURGERY_FISH_STATES(for_zone) (SURGERY_SKIN_OPEN|SURGERY_ORGANS_CUT|(for_zone == BODY_ZONE_CHEST ? SURGERY_BONE_SAWED : NONE)) + +/// Surgery states flipped on automatically if the bodypart lacks a form of skin +#define SKINLESS_SURGERY_STATES (SURGERY_SKIN_OPEN) +// (These are normally mutually exclusive, but as a bonus for lacking bones, you can do drill and saw operations simultaneously!) +/// Surgery states flipped on automatically if the bodypart lacks bones +#define BONELESS_SURGERY_STATES (SURGERY_BONE_DRILLED|SURGERY_BONE_SAWED) +/// Surgery states flipped on automatically if the bodypart lacks vessels +#define VESSELLESS_SURGERY_STATES (SURGERY_VESSELS_CLAMPED|SURGERY_ORGANS_CUT) + +/// Biological state that has some kind of skin that can be cut. +#define BIOSTATE_HAS_SKIN (BIO_FLESH|BIO_METAL|BIO_CHITIN) +/// Checks if a bodypart lacks both flesh and metal, meaning it has no skin to cut. +#define LIMB_HAS_SKIN(limb) (limb?.biological_state & BIOSTATE_HAS_SKIN) +/// Biological state that has some kind of bones that can be sawed. +#define BIOSTATE_HAS_BONES (BIO_BONE|BIO_METAL) +/// Checks if a bodypart lacks both bone and metal, meaning it has no bones to saw. +#define LIMB_HAS_BONES(limb) (limb?.biological_state & BIOSTATE_HAS_BONES) +/// Biological state that has some kind of vessels that can be clamped. +#define BIOSTATE_HAS_VESSELS (BIO_BLOODED|BIO_WIRED) +/// Checks if a bodypart lacks both blood and wires, meaning it has no vessels to manipulate. +#define LIMB_HAS_VESSELS(limb) (limb?.biological_state & BIOSTATE_HAS_VESSELS) + +/// How much blood is lost from unclamped vessels? +#define UNCLAMPED_VESSELS_BLEEDING 1.5 +/// How much blood is lost from clamped vessels or cut organs? +#define CLAMPED_VESSELS_BLEEDING 0.2 diff --git a/code/__DEFINES/cameranets.dm b/code/__DEFINES/cameranets.dm index 7b00ebe52ebb56..75cdb072ea9ad7 100644 --- a/code/__DEFINES/cameranets.dm +++ b/code/__DEFINES/cameranets.dm @@ -32,6 +32,7 @@ #define OPERATIVE_CAMERA_NET "operative" #define CAMERANET_NETWORK_CURATOR "curator" #define CAMERANET_NETWORK_FILMSTUDIO "filmstudio" +#define CAMERANET_NETWORK_MONASTERY "monastery" // Ruins/Away missiosn/Misc camera nets #define CAMERANET_NETWORK_MOON19_XENO "mo19x" diff --git a/code/__DEFINES/cargo.dm b/code/__DEFINES/cargo.dm index f17c56482ecbae..f81b5d08b9401c 100644 --- a/code/__DEFINES/cargo.dm +++ b/code/__DEFINES/cargo.dm @@ -41,6 +41,28 @@ ///Used by coupons to define that they're cursed #define COUPON_OMEN "omen" +// Supply pack flags determining ordering properties +/// Order is literally never visible, presumably it's an abstract type or something +#define ORDER_INVISIBLE (1 << 0) +/// Only orderable on emagged consoles +#define ORDER_EMAG_ONLY (1 << 1) +/// Only orderable on consoles with doctored boards +#define ORDER_CONTRABAND (1 << 2) +/// Can only be ordered privately, can use discount coupons, and arrives in a bag instead of a crate +#define ORDER_GOODY (1 << 3) +/// Can only be ordered via the express order console +#define ORDER_POD_ONLY (1 << 4) +/// Can only be ordered if the following flag is also enabled, for conditionally provided options +#define ORDER_SPECIAL (1 << 5) +/// If present then a special order can be ordered +#define ORDER_SPECIAL_ENABLED (1 << 6) +/// Unavailable to departmental order consoles even if it is in an appropriate category +#define ORDER_NOT_DEPARTMENTAL (1 << 7) +/// This will notify admins when it is purchased +#define ORDER_DANGEROUS (1 << 8) +/// This is set when something is created by an admin to make sure its contents is also marked as such +#define ORDER_ADMIN_SPAWNED (1 << 9) + ///Discount categories for coupons. This one is for anything that isn't discountable. #define SUPPLY_PACK_NOT_DISCOUNTABLE null ///Discount category for the standard stuff, mostly goodies. diff --git a/code/__DEFINES/chat.dm b/code/__DEFINES/chat.dm index 21901a9344564f..b3df6e3585c1c5 100644 --- a/code/__DEFINES/chat.dm +++ b/code/__DEFINES/chat.dm @@ -31,19 +31,19 @@ //debug printing macros (for development and testing) /// Used for debug messages to the world -#define debug_world(msg) if (GLOB.Debug2) to_chat(world, \ +#define debug_world(msg) if (GLOB.debugging_enabled) to_chat(world, \ type = MESSAGE_TYPE_DEBUG, \ text = "DEBUG: [msg]") /// Used for debug messages to the player -#define debug_usr(msg) if (GLOB.Debug2 && usr) to_chat(usr, \ +#define debug_usr(msg) if (GLOB.debugging_enabled && usr) to_chat(usr, \ type = MESSAGE_TYPE_DEBUG, \ text = "DEBUG: [msg]") /// Used for debug messages to the admins -#define debug_admins(msg) if (GLOB.Debug2) to_chat(GLOB.admins, \ +#define debug_admins(msg) if (GLOB.debugging_enabled) to_chat(GLOB.admins, \ type = MESSAGE_TYPE_DEBUG, \ text = "DEBUG: [msg]") /// Used for debug messages to the server -#define debug_world_log(msg) if (GLOB.Debug2) log_world("DEBUG: [msg]") +#define debug_world_log(msg) if (GLOB.debugging_enabled) log_world("DEBUG: [msg]") /// Adds a generic box around whatever message you're sending in chat. Really makes things stand out. #define boxed_message(str) ("
") /// Adds a box around whatever message you're sending in chat. Can apply color and/or additional classes. Available colors: red, green, blue, purple. Use it like red_box diff --git a/code/__DEFINES/colors.dm b/code/__DEFINES/colors.dm index 82bb005670a926..d4db41fdbe87d7 100644 --- a/code/__DEFINES/colors.dm +++ b/code/__DEFINES/colors.dm @@ -125,6 +125,7 @@ #define COLOR_MOSTLY_PURE_PINK "#E4005B" #define COLOR_ADMIN_PINK "#D100D1" #define COLOR_TONGUE_PINK "#ff6ea0" +#define COLOR_PUCE "#cc8899" #define COLOR_BLUSH_PINK "#DE5D83" #define COLOR_FADED_PINK "#ff80d5" #define COLOR_MAGENTA "#FF00FF" diff --git a/code/__DEFINES/combat.dm b/code/__DEFINES/combat.dm index 7d9276b08c7ec3..4a483268e8180d 100644 --- a/code/__DEFINES/combat.dm +++ b/code/__DEFINES/combat.dm @@ -285,11 +285,6 @@ DEFINE_BITFIELD(ammo_box_multiload, list( #define BODY_ZONE_L_LEG "l_leg" #define BODY_ZONE_R_LEG "r_leg" -GLOBAL_LIST_INIT(all_body_zones, list(BODY_ZONE_HEAD, BODY_ZONE_CHEST, BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) -GLOBAL_LIST_INIT(limb_zones, list(BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) -GLOBAL_LIST_INIT(arm_zones, list(BODY_ZONE_L_ARM, BODY_ZONE_R_ARM)) -GLOBAL_LIST_INIT(leg_zones, list(BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) - #define BODY_ZONE_PRECISE_EYES "eyes" #define BODY_ZONE_PRECISE_MOUTH "mouth" #define BODY_ZONE_PRECISE_GROIN "groin" @@ -298,6 +293,12 @@ GLOBAL_LIST_INIT(leg_zones, list(BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) #define BODY_ZONE_PRECISE_L_FOOT "l_foot" #define BODY_ZONE_PRECISE_R_FOOT "r_foot" +GLOBAL_LIST_INIT(all_body_zones, list(BODY_ZONE_HEAD, BODY_ZONE_CHEST, BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) +GLOBAL_LIST_INIT(limb_zones, list(BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) +GLOBAL_LIST_INIT(arm_zones, list(BODY_ZONE_L_ARM, BODY_ZONE_R_ARM)) +GLOBAL_LIST_INIT(leg_zones, list(BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) +GLOBAL_LIST_INIT(all_precise_body_zones, list(BODY_ZONE_PRECISE_EYES, BODY_ZONE_PRECISE_MOUTH, BODY_ZONE_PRECISE_GROIN, BODY_ZONE_PRECISE_L_HAND, BODY_ZONE_PRECISE_R_HAND, BODY_ZONE_PRECISE_L_FOOT, BODY_ZONE_PRECISE_R_FOOT)) + //We will round to this value in damage calculations. #define DAMAGE_PRECISION 0.1 @@ -354,7 +355,7 @@ GLOBAL_LIST_INIT(leg_zones, list(BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) /// Armor can't block more than this as a percentage #define ARMOR_MAX_BLOCK 90 /// Calculates the new armour value after armour penetration. Can return negative values, and those must be caught. -#define PENETRATE_ARMOUR(armour, penetration) (penetration == 100 ? 0 : 100 * (armour - penetration) / (100 - penetration)) +#define PENETRATE_ARMOUR(armour, penetration) (penetration >= 100 ? 0 : 100 * (armour - penetration) / (100 - penetration)) // Defines for combo attack component /// LMB Attack diff --git a/code/__DEFINES/construction/material.dm b/code/__DEFINES/construction/material.dm index f01ea621183c72..462e69334ae391 100644 --- a/code/__DEFINES/construction/material.dm +++ b/code/__DEFINES/construction/material.dm @@ -68,7 +68,7 @@ */ #define MATERIAL_NO_EDIBILITY (1<<6) -//Special return values of [/datum/component/material_container/insert_item] +//Special return values of [/datum/material_container/insert_item] /// No material was found inside them item #define MATERIAL_INSERT_ITEM_NO_MATS -1 /// The container does not have the space for the item diff --git a/code/__DEFINES/construction/structures.dm b/code/__DEFINES/construction/structures.dm index e48dc078ca4bc9..874978a8cc9e1a 100644 --- a/code/__DEFINES/construction/structures.dm +++ b/code/__DEFINES/construction/structures.dm @@ -1,12 +1,12 @@ //Defines for construction states //ai core defines -#define EMPTY_CORE 0 -#define CIRCUIT_CORE 1 -#define SCREWED_CORE 2 -#define CABLED_CORE 3 -#define GLASS_CORE 4 -#define AI_READY_CORE 5 +#define CORE_STATE_EMPTY 0 +#define CORE_STATE_CIRCUIT 1 +#define CORE_STATE_SCREWED 2 +#define CORE_STATE_CABLED 3 +#define CORE_STATE_GLASSED 4 +#define CORE_STATE_FINISHED 5 //girder construction states #define GIRDER_NORMAL 0 diff --git a/code/__DEFINES/crafting.dm b/code/__DEFINES/crafting.dm index b4bbff71ce93f3..a5e217ae2b4036 100644 --- a/code/__DEFINES/crafting.dm +++ b/code/__DEFINES/crafting.dm @@ -26,16 +26,24 @@ #define CRAFT_ON_SOLID_GROUND (1<<4) /// If the craft checks that there are objects with density in the same turf when being built #define CRAFT_CHECK_DENSITY (1<<5) -/// If the created atom will gain custom mat datums -#define CRAFT_APPLIES_MATS (1<<6) /// Crafting passes reagents of components to the finished product -#define CRAFT_TRANSFERS_REAGENTS (1<<7) +#define CRAFT_TRANSFERS_REAGENTS (1<<6) /// Crafting clears all reagents present in the finished product -#define CRAFT_CLEARS_REAGENTS (1<<8) -/// For the crafting unit test, ensures that the custom materials of an item are the same when crafted and spawned. -#define CRAFT_ENFORCE_MATERIALS_PARITY (1<<9) +#define CRAFT_CLEARS_REAGENTS (1<<7) +/// For the crafting unit test, we don't check if the custom materials of an item are the same when crafted and spawned should its recipe have this flag. +#define CRAFT_SKIP_MATERIALS_PARITY (1<<8) /// Exclusive to the personal_crafting component, skips the time spent crafting the recipe. -#define CRAFT_IGNORE_DO_AFTER (1<<10) +#define CRAFT_IGNORE_DO_AFTER (1<<9) +/// This craft won't change the materials of the resulting item to match that of the combined components +#define CRAFT_NO_MATERIALS (1<<10) + +//Crafting blacklist behaviors +/// By default, blacklist the result if it's not in reqs +#define BLACKLIST_RESULT_IF_NOT_IN_REQS null +/// Always blacklist - override default behavior +#define ALWAYS_BLACKLIST_RESULT TRUE +/// Never blacklist - override default behavior +#define NEVER_BLACKLIST_RESULT FALSE //food/drink crafting defines //When adding new defines, please make sure to also add them to the encompassing list diff --git a/code/__DEFINES/dcs/signals/signals_action.dm b/code/__DEFINES/dcs/signals/signals_action.dm index 514a88b2beadbd..fe57adae363a57 100644 --- a/code/__DEFINES/dcs/signals/signals_action.dm +++ b/code/__DEFINES/dcs/signals/signals_action.dm @@ -57,3 +57,6 @@ /// From /datum/action/vehicle/ridden/wheelchair/bell/Trigger(): #define COMSIG_WHEELCHAIR_BELL_RANG "wheelchair_bell_rang" + +/// From /datum/action/cooldown/spell/touch/lay_on_hands/proc/determine_if_this_hurts_instead(), sent to the /mob/living/carbon/hurtguy: (/mob/living/carbon/mendicant) +#define COMSIG_ON_LAY_ON_HANDS "mob_ability_lay_on_hands" diff --git a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_attack.dm b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_attack.dm index 0219f795c320b3..16c3fb9eb12ffb 100644 --- a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_attack.dm +++ b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_attack.dm @@ -14,7 +14,7 @@ #define COMPONENT_NO_AFTERATTACK (1<<0) ///from base of atom/attack_hulk(): (/mob/living/carbon/human) #define COMSIG_ATOM_HULK_ATTACK "hulk_attack" -///from base of atom/animal_attack(): (/mob/user) +///from base of atom/animal_attack(): (/mob/user, list/modifiers) #define COMSIG_ATOM_ATTACK_ANIMAL "attack_animal" //from base of atom/attack_basic_mob(): (/mob/user) #define COMSIG_ATOM_ATTACK_BASIC_MOB "attack_basic_mob" @@ -43,16 +43,18 @@ #define COMSIG_ATOM_ATTACK_GHOST "atom_attack_ghost" ///from base of atom/attack_hand(): (mob/user, list/modifiers) #define COMSIG_ATOM_ATTACK_HAND "atom_attack_hand" -///from base of atom/attack_paw(): (mob/user) +///from base of atom/attack_paw(): (mob/user, list/modifiers) #define COMSIG_ATOM_ATTACK_PAW "atom_attack_paw" ///from base of atom/mech_melee_attack(): (obj/vehicle/sealed/mecha/mecha_attacker, mob/living/user) #define COMSIG_ATOM_ATTACK_MECH "atom_attack_mech" -/// from base of atom/attack_robot(): (mob/user) +/// from base of atom/attack_robot(): (mob/user, list/modifiers) #define COMSIG_ATOM_ATTACK_ROBOT "atom_attack_robot" /// from base of atom/attack_robot_secondary(): (mob/user) #define COMSIG_ATOM_ATTACK_ROBOT_SECONDARY "atom_attack_robot_secondary" /// from base of atom/attack_ai(): (mob/user, params) #define COMSIG_ATOM_ATTACK_AI "atom_attack_ai" +/// from base of atom/attack_larva(): (mob/user, list/modifiers) +#define COMSIG_ATOM_ATTACK_LARVA "atom_attack_larva" ///from relay_attackers element: (atom/attacker, attack_flags) #define COMSIG_ATOM_WAS_ATTACKED "atom_was_attacked" ///Called before a atom gets something tilted on them. If [COMPONENT_IMMUNE_TO_TILT_AND_CRUSH] is returned in a signal, the atom will be unaffected: (atom/target, atom/source) diff --git a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_main.dm b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_main.dm index 9a8f4002a44de1..b6cc94584beb2e 100644 --- a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_main.dm +++ b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_main.dm @@ -9,6 +9,8 @@ #define COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZED_ON "atom_init_success_on" ///from base of atom/examine(): (/mob, list/examine_text) #define COMSIG_ATOM_EXAMINE "atom_examine" +/// from base of atom/examine(): (/mob, list/examine_text) +#define COMSIG_CARBON_MID_EXAMINE "carbon_mid_examine" ///from base of atom/examine_tags(): (/mob, list/examine_tags) #define COMSIG_ATOM_EXAMINE_TAGS "atom_examine_tags" ///from base of atom/get_examine_name(): (/mob, list/overrides) diff --git a/code/__DEFINES/dcs/signals/signals_bitrunning.dm b/code/__DEFINES/dcs/signals/signals_bitrunning.dm index fcce7ea68d0ca5..ccf47c22604401 100644 --- a/code/__DEFINES/dcs/signals/signals_bitrunning.dm +++ b/code/__DEFINES/dcs/signals/signals_bitrunning.dm @@ -41,7 +41,7 @@ /// from /obj/machienry/quantum_server/station_spawn() #define COMSIG_BITRUNNER_STATION_SPAWN "bitrunner_station_spawn" -/// from /obj/machinery/quantum_server/stock_gear(): (mob/living/carbon/human/avatar, external_load_flags) +/// from /obj/machinery/quantum_server/stock_gear(): (mob/living/carbon/human/avatar, domain_flags) #define COMSIG_BITRUNNER_STOCKING_GEAR "bitrunner_stocking_gear" // Ladder diff --git a/code/__DEFINES/dcs/signals/signals_fish.dm b/code/__DEFINES/dcs/signals/signals_fish.dm index 3dda733df1c73a..079db4a92cc6ef 100644 --- a/code/__DEFINES/dcs/signals/signals_fish.dm +++ b/code/__DEFINES/dcs/signals/signals_fish.dm @@ -52,8 +52,6 @@ /// Rolling a reward path for a fishing challenge #define COMSIG_FISHING_CHALLENGE_ROLL_REWARD "fishing_roll_reward" -/// Adjusting the difficulty of a rishing challenge, often based on the reward path -#define COMSIG_FISHING_CHALLENGE_GET_DIFFICULTY "fishing_get_difficulty" /// From /datum/fishing_challenge/start_minigame_phase, called after the fish movement datum is spawned: (datum/fish_movement/mover) #define COMSIG_FISHING_CHALLENGE_MOVER_INITIALIZED "fishing_mover_initialized" /// Fishing challenge completed diff --git a/code/__DEFINES/dcs/signals/signals_food.dm b/code/__DEFINES/dcs/signals/signals_food.dm index 0041076802c56b..9dca9d304d08ac 100644 --- a/code/__DEFINES/dcs/signals/signals_food.dm +++ b/code/__DEFINES/dcs/signals/signals_food.dm @@ -7,6 +7,9 @@ /// From datum/component/edible/proc/TakeBite: (mob/living/eater, mob/feeder, bitecount, bitesize) #define COMSIG_FOOD_EATEN "food_eaten" #define DESTROY_FOOD (1<<0) +/// From datum/component/edible/proc/AttemptEat: (mob/living/eater, mob/feeder) +#define COMSIG_FOOD_ATTEMPT_EAT "food_attempt_eat" + // #define BLOCK_EAT_ATTEMPT (1<<0) /// From base of datum/component/edible/on_entered: (mob/crosser, bitecount) #define COMSIG_FOOD_CROSSED "food_crossed" /// From base of Component/edible/On_Consume: (mob/living/eater, mob/living/feeder) @@ -74,6 +77,9 @@ ///Sent to the newly spawned object when it's baked in an oven. #define COMSIG_ITEM_BAKED_RESULT "item_baked_result" +/// From /datum/element/basic_eating/finish_eating() : (mob/living/eater, mob/living/feeder) +#define COMSIG_ITEM_EATEN_BY_BASIC_MOB "item_eaten_by_basic_mob" + ///Called on the result spawned during decomposition: (obj/decomposed) #define COMSIG_OBJ_DECOMPOSITION_RESULT "obj_decomposition_result" diff --git a/code/__DEFINES/dcs/signals/signals_lasertag.dm b/code/__DEFINES/dcs/signals/signals_lasertag.dm new file mode 100644 index 00000000000000..ac7fd7c05b5209 --- /dev/null +++ b/code/__DEFINES/dcs/signals/signals_lasertag.dm @@ -0,0 +1,13 @@ +///Sending this signal will return either BLOCK_FIRE bitflag or ALLOW_FIRE bitflag +#define COMSIG_LIVING_FIRING_PIN_CHECK "lasertag_firing_pin_check" + ///blocks the lasertag firing pin from authorizing the shot + #define BLOCK_FIRE (1 << 0) + ///allows the lasertag firing pin to authorize the shot + #define ALLOW_FIRE (1 << 1) + +///Neutral Lasertag team +#define LASERTAG_TEAM_NEUTRAL "neutral" +///Red Lasertag team +#define LASERTAG_TEAM_RED "red" +///Blue Lasertag team +#define LASERTAG_TEAM_BLUE "blue" diff --git a/code/__DEFINES/dcs/signals/signals_material_container.dm b/code/__DEFINES/dcs/signals/signals_material_container.dm index 86056976bce69f..f5faf4b9a67792 100644 --- a/code/__DEFINES/dcs/signals/signals_material_container.dm +++ b/code/__DEFINES/dcs/signals/signals_material_container.dm @@ -1,13 +1,13 @@ //Material Container Signals -/// Called from datum/component/material_container/proc/can_hold_material() : (mat) +/// Called from datum/material_container/proc/can_hold_material() : (mat) #define COMSIG_MATCONTAINER_MAT_CHECK "matcontainer_mat_check" #define MATCONTAINER_ALLOW_MAT (1<<0) -/// Called from datum/component/material_container/proc/user_insert() : (target_item, user) +/// Called from datum/material_container/proc/user_insert() : (target_item, user) #define COMSIG_MATCONTAINER_PRE_USER_INSERT "matcontainer_pre_user_insert" #define MATCONTAINER_BLOCK_INSERT (1<<1) -/// Called from datum/component/material_container/proc/insert_item() : (item, primary_mat, mats_consumed, material_amount, context) +/// Called from datum/material_container/proc/insert_item() : (item, primary_mat, mats_consumed, material_amount, context) #define COMSIG_MATCONTAINER_ITEM_CONSUMED "matcontainer_item_consumed" -/// Called from datum/component/material_container/proc/retrieve_stack() : (new_stack, context) +/// Called from datum/material_container/proc/retrieve_stack() : (new_stack, context) #define COMSIG_MATCONTAINER_STACK_RETRIEVED "matcontainer_stack_retrieved" //mat container signals but from the ore silo's perspective diff --git a/code/__DEFINES/dcs/signals/signals_medical.dm b/code/__DEFINES/dcs/signals/signals_medical.dm index 39bcb1d7cdde25..4f79b79ddd770e 100644 --- a/code/__DEFINES/dcs/signals/signals_medical.dm +++ b/code/__DEFINES/dcs/signals/signals_medical.dm @@ -1,11 +1,11 @@ -/// From /datum/surgery/New(): (datum/surgery/surgery, surgery_location (body zone), obj/item/bodypart/targeted_limb) -#define COMSIG_MOB_SURGERY_STARTED "mob_surgery_started" - -/// From /datum/surgery/Destroy(): (surgery_type, surgery_location, obj/item/bodypart/targeted_limb) -#define COMSIG_MOB_SURGERY_FINISHED "mob_surgery_finished" - -/// From /datum/surgery_step/success(): (datum/surgery_step/step, mob/living/target, target_zone, obj/item/tool, datum/surgery/surgery, default_display_results) -#define COMSIG_MOB_SURGERY_STEP_SUCCESS "mob_surgery_step_success" +/// From /datum/surgery_operation/try_perform(): (datum/surgery_operation/operation, atom/movable/operating_on, tool) +#define COMSIG_ATOM_SURGERY_STARTED "atom_surgery_started" +/// From /datum/surgery_operation/try_perform(): (datum/surgery_operation/operation, atom/movable/operating_on, tool) +#define COMSIG_ATOM_SURGERY_FINISHED "atom_surgery_finished" +/// From /datum/surgery_operation/success(): (datum/surgery_operation/operation, atom/movable/operating_on, tool) +#define COMSIG_ATOM_SURGERY_SUCCESS "atom_surgery_step_success" +/// From /datum/surgery_operation/failure(): (datum/surgery_operation/operation, atom/movable/operating_on, tool) +#define COMSIG_ATOM_SURGERY_FAILED "atom_surgery_step_failed" /// From /obj/item/shockpaddles/do_help, after the defib do_after is complete, but before any effects are applied: (mob/living/defibber, obj/item/shockpaddles/source) #define COMSIG_DEFIBRILLATOR_PRE_HELP_ZAP "carbon_being_defibbed" @@ -19,7 +19,7 @@ /// From /obj/item/shockpaddles/proc/do_disarm(), sent to the shock-ee in non-revival scenarios: (obj/item/shockpaddles/source) #define COMSIG_HEARTATTACK_DEFIB "heartattack_defib" -/// From /datum/surgery/can_start(): (mob/source, datum/surgery/surgery, mob/living/patient) -#define COMSIG_SURGERY_STARTING "surgery_starting" - #define COMPONENT_CANCEL_SURGERY (1<<0) - #define COMPONENT_FORCE_SURGERY (1<<1) +/// Sent from /mob/living/perform_surgery: (atom/movable/operating_on, list/possible_operations) +#define COMSIG_LIVING_OPERATING_ON "living_operating_on" +/// Sent from /mob/living/perform_surgery: (mob/living/surgeon, list/possible_operations) +#define COMSIG_ATOM_BEING_OPERATED_ON "atom_being_operated_on" diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_basic.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_basic.dm index 01df92ebcc25f5..83084005dd51ed 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_basic.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_basic.dm @@ -28,3 +28,8 @@ #define COMSIG_BASICMOB_MUTATED "basicmob_mutated" ///cancel further mutation modifications to the mob such as shiny mutation. #define MUTATED_NO_FURTHER_MUTATIONS (1 << 0) + +/// from /mob/living/basic/raptor/proc/change_growth_stage() : (new_stage, prev_stage) +#define COMSIG_RAPTOR_GROWTH_STAGE_CHANGE "raptor_growth_stage_change" + /// Cancel raptor growth + #define COMPONENT_CANCEL_RAPTOR_GROWTH (1<<0) diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm index 67d69dc5b05ed4..a463510a438c71 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm @@ -19,7 +19,7 @@ #define COMSIG_CARBON_GAIN_WOUND "carbon_gain_wound" //from /datum/wound/proc/apply_wound() (/mob/living/carbon/C, /datum/wound/W, /obj/item/bodypart/L) #define COMSIG_CARBON_LOSE_WOUND "carbon_lose_wound" //from /datum/wound/proc/remove_wound() (/mob/living/carbon/C, /datum/wound/W, /obj/item/bodypart/L) /// Called after limb AND victim has been unset -#define COMSIG_CARBON_POST_LOSE_WOUND "carbon_post_lose_wound" //from /datum/wound/proc/remove_wound() (/datum/wound/lost_wound, /obj/item/bodypart/part, ignore_limb, replaced) +#define COMSIG_CARBON_POST_LOSE_WOUND "carbon_post_lose_wound" //from /datum/wound/proc/remove_wound() (/datum/wound/lost_wound, /obj/item/bodypart/part, ignore_limb, replaced, destroying) ///from base of /obj/item/bodypart/proc/can_attach_limb(): (new_limb, special) allows you to fail limb attachment #define COMSIG_ATTEMPT_CARBON_ATTACH_LIMB "attempt_carbon_attach_limb" #define COMPONENT_NO_ATTACH (1<<0) @@ -60,8 +60,9 @@ /// Called from bodypart being removed /obj/item/bodypart/proc/drop_limb(mob/living/carbon/old_owner, special, dismembered) #define COMSIG_BODYPART_REMOVED "bodypart_removed" -///from base of mob/living/carbon/soundbang_act(): (list(intensity)) -#define COMSIG_CARBON_SOUNDBANG "carbon_soundbang" +/// Sent to a limb when something *attempts* to change its surgery state (old_state, new_state, changed_states) +#define COMSIG_BODYPART_UPDATING_SURGERY_STATE "bodypart_updating_surgery_state" + ///from /item/organ/proc/Insert() (/obj/item/organ/) #define COMSIG_CARBON_GAIN_ORGAN "carbon_gain_organ" ///from /item/organ/proc/Remove() (/obj/item/organ/) @@ -99,8 +100,8 @@ #define COMSIG_CARBON_MOOD_UPDATE "carbon_mood_update" ///Called when a carbon attempts to eat (eating) #define COMSIG_CARBON_ATTEMPT_EAT "carbon_attempt_eat" - // Prevents the breath - #define COMSIG_CARBON_BLOCK_EAT (1 << 0) + // Prevents eating the food + #define BLOCK_EAT_ATTEMPT (1 << 0) ///Called when a carbon vomits : (distance, force) #define COMSIG_CARBON_VOMITED "carbon_vomited" ///Called from apply_overlay(cache_index, overlay) @@ -146,7 +147,7 @@ ///from base of /mob/living/carbon/regenerate_limbs(): (excluded_limbs) #define COMSIG_CARBON_REGENERATE_LIMBS "living_regen_limbs" -/// Sent from /mob/living/carbon/human/handle_blood(): (seconds_per_tick, times_fired) +/// Sent from /mob/living/carbon/human/handle_blood(): (seconds_per_tick) #define COMSIG_HUMAN_ON_HANDLE_BLOOD "human_on_handle_blood" /// Return to prevent all default blood handling #define HANDLE_BLOOD_HANDLED (1<<0) @@ -182,3 +183,19 @@ //from base of [/obj/effect/particle_effect/fluid/smoke/proc/smoke_mob]: (seconds_per_tick) #define COMSIG_CARBON_EXPOSED_TO_SMOKE "carbon_exposed_to_smoke" + +/// From /mob/living/carbon/human/proc/update_mob_height() : (old_height) +#define COMSIG_HUMAN_HEIGHT_UPDATED "human_height_updated" + +/// From /mob/living/carbon/proc/can_defib() : () +/// Return a defib result flag to override default defib brain check +#define COMSIG_CARBON_DEFIB_BRAIN_CHECK "carbon_defib_brain_check" + +/// From /mob/living/carbon/human/proc/defib_check() : () +/// Return a defib result flag to override default defib heart check +#define COMSIG_CARBON_DEFIB_HEART_CHECK "carbon_defib_heart_check" + +/// From /mob/living/carbon/human/proc/smart_equip_targeted(): (mob/living/carbon/human/user, obj/item/possible_container) +#define COMSIG_HUMAN_NON_STORAGE_HOTKEY "human_storage_hotkey" + /// Return to prevent the storage fail message + #define COMPONENT_STORAGE_HOTKEY_HANDLED (1<<0) diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_living.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_living.dm index e57699a34a96b6..e6d71fefae7e71 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_living.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_living.dm @@ -60,7 +60,7 @@ #define COMSIG_LIVING_TRY_SYRINGE_WITHDRAW "living_try_syringe_withdraw" ///from base of mob/living/set_usable_legs() #define COMSIG_LIVING_LIMBLESS_SLOWDOWN "living_limbless_slowdown" -///From living/Life(). (deltatime, times_fired) +///From living/Life(). (deltatime) #define COMSIG_LIVING_LIFE "living_life" /// Block the Life() proc from proceeding... this should really only be done in some really wacky situations. #define COMPONENT_LIVING_CANCEL_LIFE_PROCESSING (1<<0) @@ -146,7 +146,7 @@ #define COMPONENT_CANT_TRACK (1<<0) ///from end of fully_heal(): (heal_flags) #define COMSIG_LIVING_POST_FULLY_HEAL "living_post_fully_heal" -/// from start of /mob/living/handle_breathing(): (seconds_per_tick, times_fired) +/// from start of /mob/living/handle_breathing(): (seconds_per_tick) #define COMSIG_LIVING_HANDLE_BREATHING "living_handle_breathing" ///from /obj/item/hand_item/slapper/attack_atom(): (source=mob/living/slammer, obj/structure/table/slammed_table) #define COMSIG_LIVING_SLAM_TABLE "living_slam_table" @@ -197,6 +197,9 @@ #define TREAT_TTS_FILTER_ARG 3 #define TREAT_CAPITALIZE_MESSAGE 4 +/// From mob/living/send_speech(): (atom/source, list/listeners) +#define COMSIG_LIVING_SEND_SPEECH "living_send_speech" + ///From obj/item/toy/crayon/spraycan #define COMSIG_LIVING_MOB_PAINTED "living_mob_painted" @@ -315,9 +318,13 @@ /// From /obj/item/melee/baton/baton_effect(): (datum/source, mob/living/user, /obj/item/melee/baton) #define COMSIG_MOB_BATONED "mob_batoned" -/// From /obj/machinery/gibber/startgibbing(): (mob/living/user, /obj/machinery/gibber, list/results) +/// From /obj/machinery/gibber/start_gibbing(): (mob/living/user, /obj/machinery/gibber, list/results) #define COMSIG_LIVING_GIBBER_ACT "living_gibber_act" +/// From /mob/living/get_eye_protection() (list/reflist) +#define COMSIG_LIVING_GET_EAR_PROTECTION "living_get_ear_protection" + #define EAR_PROTECTION_ARG 1 + /// Sent to the mob when their mind is slaved #define COMSIG_MOB_ENSLAVED_TO "mob_enslaved_to" /// From /obj/item/proc/attack_atom: (mob/living/attacker, atom/attacked, list/modifiers) @@ -338,14 +345,6 @@ /// From /obj/item/book/bible/attack() : (mob/living/user, obj/item/book/bible/bible, bless_result) #define COMSIG_LIVING_BLESSED "living_blessed" -/// From /datum/surgery_step/initiate() : (mob/living/user, mob/living/target, target_zone, obj/item/tool, datum/surgery/surgery, datum/surgery_step/step, list/modifiers) -#define COMSIG_LIVING_INITIATE_SURGERY_STEP "living_initiate_surgery_step" -#define COMSIG_LIVING_SURGERY_STEP_INITIATED_ON "living_surgery_step_initiated_on" - /// Index in modifiers containing the modifier to failure chance - #define FAIL_PROB_INDEX 1 - /// Index in modifiers containing the modifer to surgery speed - #define SPEED_MOD_INDEX 2 - /// From /datum/status_effect/proc/on_creation() : (datum/status_effect/effect) #define COMSIG_LIVING_STATUS_APPLIED "living_status_applied" @@ -365,3 +364,17 @@ #define COMSIG_LIVING_DROP_LOOT "living_drop_loot" /// Prevent loot from being dropped #define COMPONENT_NO_LOOT_DROP (1<<0) +/// From /datum/element/death_drops/on_death(mob/living/target, gibbed) : (list/loot, gibbed) +#define COMSIG_LIVING_DROPPED_LOOT "living_dropped_loot" + +/// From /mob/living/proc/mob_pickup() : (mob/living/user, obj/item/mob_holder/holder) +#define COMSIG_LIVING_SCOOPED_UP "living_scooped_up" + +/// From /mob/living/proc/update_blood_status(), sent when the return value of /mob/living/proc/can_have_blood() changes : (had_blood, has_blood, old_blood_volume, new_blood_volume) +#define COMSIG_LIVING_UPDATE_BLOOD_STATUS "living_update_blood_status" + +/// From /mob/living/proc/update_nutrition() +#define COMSIG_LIVING_UPDATE_NUTRITION "living_update_nutrition" + +/// Sent to a mob when one of their bodypart's surgery state changes, OR sent from the basic_surgery_state holder when its surgery state changes (old_state, new_state, changed_states) +#define COMSIG_LIVING_UPDATING_SURGERY_STATE "carbon_updating_surgery_state" diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm index 2db139bceedfb4..8b710d030f3710 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm @@ -8,7 +8,7 @@ #define COMSIG_MOB_MIND_INITIALIZED "mob_mind_inited" ///from base of mob/set_stat(): (new_stat, old_stat) #define COMSIG_MOB_STATCHANGE "mob_statchange" -///from base of mob/reagent_tick(): (datum/reagent/chem, seconds_per_tick, times_fired) +///from base of mob/reagent_tick(): (datum/reagent/chem, seconds_per_tick) #define COMSIG_MOB_REAGENT_TICK "mob_reagent_tick" ///stops the reagent check call #define COMSIG_MOB_STOP_REAGENT_TICK (1<<0) diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_silicon.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_silicon.dm index 564465dfcf2bbf..f68b084020599a 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_silicon.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_silicon.dm @@ -8,10 +8,6 @@ #define COMSIG_BORG_HUG_HANDLED 1 ///called from /mob/living/silicon/attack_hand proc #define COMSIG_MOB_PAT_BORG "mob_pat_borg" -///called when someone is inquiring about an AI's linked core -#define COMSIG_SILICON_AI_CORE_STATUS "AI_core_status" - #define COMPONENT_CORE_ALL_GOOD (1<<0) - #define COMPONENT_CORE_DISCONNECTED (1<<1) ///called when an AI (malf or perhaps combat upgraded or some other circumstance that has them inhabit ///an APC) enters an APC #define COMSIG_SILICON_AI_OCCUPY_APC "AI_occupy_apc" diff --git a/code/__DEFINES/dcs/signals/signals_object.dm b/code/__DEFINES/dcs/signals/signals_object.dm index 8c221d28d1de8f..487872df053693 100644 --- a/code/__DEFINES/dcs/signals/signals_object.dm +++ b/code/__DEFINES/dcs/signals/signals_object.dm @@ -226,6 +226,8 @@ #define COMSIG_MULTITOOL_REMOVE_BUFFER "multitool_remove_buffer" ///from [/obj/effect/mine/proc/triggermine]: #define COMSIG_MINE_TRIGGERED "minegoboom" +///from [/obj/structure/closet/supplypod/proc/handleReturnAfterDeparting]: +#define COMSIG_SUPPLYPOD_RETURNING "supplypodgohome" ///from [/obj/structure/closet/supplypod/proc/preOpen]: #define COMSIG_SUPPLYPOD_LANDED "supplypodgoboom" @@ -377,7 +379,7 @@ #define COMPONENT_CANCEL_SAWING_OFF (1<<0) #define COMSIG_GUN_SAWN_OFF "gun_sawn_off" -///called in /obj/item/firing_pin/proc/gun_insert(mob/living/user, obj/item/gun/new_gun): (obj/item/firing_pin/pin, mob/living/user) +///called in /obj/item/firing_pin/proc/gun_insert(mob/living/user, obj/item/gun/new_gun, starting): (obj/item/firing_pin/pin, mob/living/user, starting) #define COMSIG_GUN_PIN_INSERTED "gun_pin_inserted" ///called in /obj/item/firing_pin/proc/gun_remove(mob/living/user): (obj/item/firing_pin/pin, mob/living/user) @@ -637,3 +639,9 @@ /// Sent from /obj/machinert/console/camera_advanced/attack_hand() : (mob/eye/camera/remote/new_camera) #define COMSIG_ADVANCED_CAMERA_EYE_CREATED "advanced_camera_eye_created" + +/// Sent from /obj/item/mob_holder/purple_raptor/proc/toggle_wings() : (mob/living/carbon/human/user) +#define COMSIG_RAPTOR_WINGS_OPENED "raptor_wings_opened" + +/// Sent from /obj/item/mob_holder/purple_raptor/proc/toggle_wings() : (mob/living/carbon/human/user) +#define COMSIG_RAPTOR_WINGS_CLOSED "raptor_wings_closed" diff --git a/code/__DEFINES/dcs/signals/signals_shuttle.dm b/code/__DEFINES/dcs/signals/signals_shuttle.dm index 69aa13c39003ed..1f4f596fc74d6c 100644 --- a/code/__DEFINES/dcs/signals/signals_shuttle.dm +++ b/code/__DEFINES/dcs/signals/signals_shuttle.dm @@ -9,3 +9,9 @@ //from base of /proc/expand_shuttle() : (list/turfs) #define COMSIG_SHUTTLE_EXPANDED "shuttle_expanded" + +//from base of /turf/fromShuttleMove() : (turf/new_turf, move_mode) +#define COMSIG_SHUTTLE_TURF_SHOULD_MOVE_SPECIAL "shuttle_turf_should_move_special" + +//from base of /obj/docking_port/mobile/proc/takeoff() : (turf/new_turf, movement_force, movement_direction, /obj/docking_port/stationary/old_dock, /obj/docking_port/mobile/shuttle) +#define COMSIG_SHUTTLE_TURF_ON_MOVE_SPECIAL "shuttle_turf_on_move_special" diff --git a/code/__DEFINES/dcs/signals/signals_techweb.dm b/code/__DEFINES/dcs/signals/signals_techweb.dm index 7765bfe5a3a6ab..ce0b5bc3f45fa9 100644 --- a/code/__DEFINES/dcs/signals/signals_techweb.dm +++ b/code/__DEFINES/dcs/signals/signals_techweb.dm @@ -3,3 +3,6 @@ /// Called when a techweb design is removed (datum/design/removed_design, custom) #define COMSIG_TECHWEB_REMOVE_DESIGN "techweb_remove_design" + +/// Called when an experiment is completed (datum/experiment/completed_experiment,) +#define COMSIG_TECHWEB_EXPERIMENT_COMPLETED "techweb_experiment_completed" diff --git a/code/__DEFINES/directional.dm b/code/__DEFINES/directional.dm index 83d8ce01d0a873..37ec9abd49d97c 100644 --- a/code/__DEFINES/directional.dm +++ b/code/__DEFINES/directional.dm @@ -45,3 +45,25 @@ dir = WEST; \ pixel_x = -offset; \ } + +/// Create diagonal subtypes for a path to simplify mapping. +#define MAPPING_DIAGONAL_HELPERS(path, offset) ##path/directional/northeast {\ + dir = NORTHEAST; \ + pixel_x = offset; \ + pixel_y = offset; \ +} \ +##path/directional/northwest {\ + dir = NORTHWEST; \ + pixel_x = -offset; \ + pixel_y = offset; \ +} \ +##path/directional/southeast {\ + dir = SOUTHEAST; \ + pixel_x = offset; \ + pixel_y = -offset; \ +} \ +##path/directional/southwest {\ + dir = SOUTHWEST; \ + pixel_x = -offset; \ + pixel_y = -offset; \ +} diff --git a/code/__DEFINES/economy.dm b/code/__DEFINES/economy.dm index a1108ba7fb0fbe..a44bc26079ec76 100644 --- a/code/__DEFINES/economy.dm +++ b/code/__DEFINES/economy.dm @@ -81,3 +81,18 @@ #define MARKET_TREND_STABLE 0 #define MARKET_EVENT_PROBABILITY 8 //Probability of a market event firing, in percent. Fires once per material, every stock market tick. + +// Fair warning that these defines at present are not used in all tgui, static descriptions, or any varible names or comments +/// The symbol for the default type of money used in the code. +#define MONEY_SYMBOL "cr" +/// The name for the default type of money used in the code. +#define MONEY_NAME "credits" +#define MONEY_NAME_SINGULAR "credit" +#define MONEY_NAME_CAPITALIZED "Credits" +// Due to the ways macros work, I cant just directly use credit\s. +// You will need to verify there is no loose use cases of credit\s. +// As of present there is none left floating around. +#define MONEY_NAME_AUTOPURAL(amount) "credit[##amount == 1 ? "" : "s"]" + +#define MONEY_MINING_SYMBOL "mp" +#define MONEY_BITRUNNING_SYMBOL "np" diff --git a/code/__DEFINES/experisci.dm b/code/__DEFINES/experisci.dm index c74290ff5f7512..a1ffbc0b4b84dd 100644 --- a/code/__DEFINES/experisci.dm +++ b/code/__DEFINES/experisci.dm @@ -39,3 +39,5 @@ #define EXPERIMENT_CONFIG_SILENT_FAIL (1 << 2) /// Experiment handlers with this flag will bypass any delay when trying to scan something #define EXPERIMENT_CONFIG_IMMEDIATE_ACTION (1 << 3) +/// Experiment handlers with this flag will announce when an experiment is completed even if it isn't compatible with them. +#define EXPERIMENT_CONFIG_ALWAYS_ANNOUNCE (1 << 4) diff --git a/code/__DEFINES/files.dm b/code/__DEFINES/files.dm new file mode 100644 index 00000000000000..6f0d36727a386d --- /dev/null +++ b/code/__DEFINES/files.dm @@ -0,0 +1,11 @@ +// None of these should be trusted for the purpose of user input +// They do not check the actual type of the file, a user could just rename it + +/// File types we can sniff the duration from using rustg. +#define IS_SOUND_FILE_SAFE(file) is_file_type_in_list(##file, SSsounds.safe_formats) + +#define IS_SOUND_FILE(file) is_file_type_in_list(##file, SSsounds.byond_sound_formats) + +#define IS_OGG_FILE(file) is_file_type(##file, "ogg") +#define IS_WAV_FILE(file) is_file_type(##file, "wav") +#define IS_MP3_FILE(file) is_file_type(##file, "mp3") diff --git a/code/__DEFINES/fish.dm b/code/__DEFINES/fish.dm index 48a914482fc324..e3ab4ba5bd1039 100644 --- a/code/__DEFINES/fish.dm +++ b/code/__DEFINES/fish.dm @@ -61,6 +61,8 @@ #define FISHING_LINE_STIFF (1 << 2) ///Skip the biting phase and go straight to the fishing phase. #define FISHING_LINE_AUTOREEL (1 << 3) +///Allow the fishing line to be cast through dense objects and walls +#define FISHING_LINE_PHASE (1 << 4) ///Keeps the bait from falling from gravity, instead allowing the player to move the bait down with right click. #define FISHING_MINIGAME_RULE_BIDIRECTIONAL (1 << 0) diff --git a/code/__DEFINES/food.dm b/code/__DEFINES/food.dm index 1e6df2fdb9af72..d8022408841a55 100644 --- a/code/__DEFINES/food.dm +++ b/code/__DEFINES/food.dm @@ -126,7 +126,7 @@ DEFINE_BITFIELD(foodtypes, list( #define FOOD_COMPLEXITY_5 5 /// Labels for food quality -GLOBAL_LIST_INIT(food_quality_description, list( +GLOBAL_ALIST_INIT(food_quality_description, alist( FOOD_QUALITY_NORMAL = "okay", FOOD_QUALITY_NICE = "nice", FOOD_QUALITY_GOOD = "good", @@ -137,7 +137,7 @@ GLOBAL_LIST_INIT(food_quality_description, list( )) /// Weighted lists of crafted food buffs randomly given according to crafting_complexity unless the food has a specific buff -GLOBAL_LIST_INIT(food_buffs, list( +GLOBAL_ALIST_INIT(food_buffs, alist( FOOD_COMPLEXITY_1 = list( /datum/status_effect/food/haste = 1, ), diff --git a/code/__DEFINES/ghost.dm b/code/__DEFINES/ghost.dm index 526c08e790c57d..40deb225da2891 100644 --- a/code/__DEFINES/ghost.dm +++ b/code/__DEFINES/ghost.dm @@ -65,6 +65,10 @@ #define GHOST_HEALTH (1<<2) #define GHOST_CHEM (1<<3) #define GHOST_GAS (1<<4) +/// Represents tray view. Not a real view flag, as tray is not persistent, but used as an identifier for one. +#define GHOST_TRAY (1<<5) +/// Repesents darkness level setting. Not a real view flag, as darkness level cycles through values, but used as an identifier for one. +#define GHOST_DARKNESS_LEVEL (1<<6) #define ALL_GHOST_FLAGS list( \ GHOST_DATA_HUDS, \ diff --git a/code/__DEFINES/inventory.dm b/code/__DEFINES/inventory.dm index d7ef9e846bdd04..e7964919d21775 100644 --- a/code/__DEFINES/inventory.dm +++ b/code/__DEFINES/inventory.dm @@ -220,7 +220,7 @@ GLOBAL_LIST_INIT(any_suit_storage, typecacheof(list( /obj/item/radio, /obj/item/storage/bag/books, /obj/item/storage/fancy/cigarettes, - /obj/item/tank/jetpack/oxygen/captain, + /obj/item/tank/jetpack/captain, /obj/item/stack/spacecash, /obj/item/storage/wallet, /obj/item/folder, diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm index 35724f263f227b..08e0c1539a30cc 100644 --- a/code/__DEFINES/is_helpers.dm +++ b/code/__DEFINES/is_helpers.dm @@ -350,3 +350,4 @@ GLOBAL_LIST_INIT(book_types, typecacheof(list( #define is_multi_tile_object(atom) (atom.bound_width > ICON_SIZE_X || atom.bound_height > ICON_SIZE_Y) #define is_area_nearby_station(checked_area) (istype(checked_area, /area/space) || istype(checked_area, /area/space/nearstation) || istype(checked_area, /area/station/asteroid)) +#define is_area_virtual(checked_area) (GLOB.virtual_areas && GLOB.virtual_areas[(checked_area).type]) diff --git a/code/__DEFINES/jobs.dm b/code/__DEFINES/jobs.dm index d5c47bbecce484..b62ee0545f0aae 100644 --- a/code/__DEFINES/jobs.dm +++ b/code/__DEFINES/jobs.dm @@ -291,3 +291,7 @@ DEFINE_BITFIELD(job_flags, list( #define HEAD_OF_STAFF_MIND_TRAITS TRAIT_FAST_TYING, TRAIT_HIGH_VALUE_RANSOM #define MEDICAL_MIND_TRAITS TRAIT_DESENSITIZED #define SECURITY_MIND_TRAITS TRAIT_DESENSITIZED + +/// Statistically average probability of a random cop or cop-adjacent person consisting of meat of sus domesticus of suidae family, +/// also known as swine or hogs, calculated by the university of random numbers +#define PIG_COP_PROBABILITY 40 diff --git a/code/__DEFINES/jukebox.dm b/code/__DEFINES/jukebox.dm new file mode 100644 index 00000000000000..29b4cdea7c9f19 --- /dev/null +++ b/code/__DEFINES/jukebox.dm @@ -0,0 +1,4 @@ +#define CONFIG_JUKEBOX_SOUNDS "[global.config.directory]/jukebox_music/sounds/" + +#define JUKEBOX_NAME 1 +#define JUKEBOX_BEATS 2 diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index fd6369f9d72f98..a32e2907d83127 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -159,6 +159,9 @@ // NOTICE: we break from the pattern of increasing in steps of like 0.01 here // Because TOPDOWN_LAYER is 10000 and that's enough to floating point our modifications away +/// Used to shift all topdown layer emissives to a the game plane equivalent layers, as otherwise they render above everything else due to being KEEP_APART +#define TOPDOWN_TO_EMISSIVE_LAYER(layer) LERP(FLOOR_EMISSIVE_START_LAYER, FLOOR_EMISSIVE_END_LAYER, (layer - (TOPDOWN_LAYER + 1)) / TOPDOWN_LAYER_COUNT) + // Must be equal to the offset of the highest topdown layer #define TOPDOWN_LAYER_COUNT 18 diff --git a/code/__DEFINES/living.dm b/code/__DEFINES/living.dm index 920b80544452bc..ac2cb64efaeeae 100644 --- a/code/__DEFINES/living.dm +++ b/code/__DEFINES/living.dm @@ -12,9 +12,15 @@ #define STOP_OVERLAY_UPDATE_BODY_PARTS (1<<2) /// Nutrition changed last life tick, so we should bulk update this tick #define QUEUE_NUTRITION_UPDATE (1<<3) +/// Blood volume has changed since the last [proc/update_blood_effects] call +#define QUEUE_BLOOD_UPDATE (1<<4) +/// This mob can have blood, cached value of [proc/can_have_blood] +#define LIVING_CAN_HAVE_BLOOD (1<<5) /// Getter for a mob/living's lying angle, otherwise protected #define GET_LYING_ANGLE(mob) (UNLINT(mob.lying_angle)) +/// Checks if the mob can have blood +#define CAN_HAVE_BLOOD(mob) (mob.living_flags & LIVING_CAN_HAVE_BLOOD) // Used in living mob offset list for determining pixel offsets #define PIXEL_W_OFFSET "w" diff --git a/code/__DEFINES/map_switch.dm b/code/__DEFINES/map_switch.dm index dbb0059786ee1a..90ac0b78a98644 100644 --- a/code/__DEFINES/map_switch.dm +++ b/code/__DEFINES/map_switch.dm @@ -3,6 +3,10 @@ // or if map tools ever agree on a standard, this should switch to use that. #ifdef CBT #define MAP_SWITCH(compile_time, map_time) ##compile_time +#define WHEN_MAP(map_time) // Not mapping, nothing here +#define WHEN_COMPILE(compile_time) ##compile_time #else #define MAP_SWITCH(compile_time, map_time) ##map_time +#define WHEN_MAP(map_time) ##map_time +#define WHEN_COMPILE(compile_time) // Not compiling, nothing here #endif diff --git a/code/__DEFINES/maps.dm b/code/__DEFINES/maps.dm index 080f3a379a3857..23e9f5cc0f518a 100644 --- a/code/__DEFINES/maps.dm +++ b/code/__DEFINES/maps.dm @@ -253,6 +253,7 @@ Always compile, always use that verb, and always make sure that it works for wha #define AWAYSTART_SNOWCABIN "AWAYSTART_SNOWCABIN" #define AWAYSTART_SNOWDIN "AWAYSTART_SNOWDIN" #define AWAYSTART_UNDERGROUND "AWAYSTART_UNDERGROUND" +#define AWAYSTART_HERETIC "AWAYSTART_HERETIC" // Minetypes for maps #define MINETYPE_NONE "none" diff --git a/code/__DEFINES/melee.dm b/code/__DEFINES/melee.dm index 6cfffb7dcd6372..8ce90cc36d64cb 100644 --- a/code/__DEFINES/melee.dm +++ b/code/__DEFINES/melee.dm @@ -4,7 +4,7 @@ #define MARTIALART_CQC "CQC" #define MARTIALART_EVIL_BOXING "evil boxing" #define MARTIALART_HUNTER_BOXING "hunter boxing" -#define MARTIALART_KRAVMAGA "krav maga" +#define MARTIALART_KAZA_RUK "Kaza Ruk" #define MARTIALART_MUSHPUNCH "mushroom punch" #define MARTIALART_PLASMAFIST "plasma fist" #define MARTIALART_PSYCHOBRAWL "psychotic brawling" diff --git a/code/__DEFINES/mob_spawn.dm b/code/__DEFINES/mob_spawn.dm index 6e9fec3bed0553..a54ca799307548 100644 --- a/code/__DEFINES/mob_spawn.dm +++ b/code/__DEFINES/mob_spawn.dm @@ -2,3 +2,12 @@ #define CORPSE_INSTANT 1 ///this mob spawn creates the corpse during GAME_STATE_PLAYING #define CORPSE_ROUNDSTART 2 + +// Flags for using your static for a ghost role +/// Ghost role will take on the player's species +#define GHOSTROLE_TAKE_PREFS_SPECIES (1<<0) +/// Ghost role will take on the player's apperance (though exlcuding name) +#define GHOSTROLE_TAKE_PREFS_APPEARANCE (1<<1) + +/// Return from create to stop the spawn process. Falsy value so one can just check !create() +#define CANCEL_SPAWN FALSE diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm index c26926d5af457e..987090f09d8a57 100644 --- a/code/__DEFINES/mobs.dm +++ b/code/__DEFINES/mobs.dm @@ -3,8 +3,8 @@ //Misc mob defines //Ready states at roundstart for mob/dead/new_player -#define PLAYER_NOT_READY 0 -#define PLAYER_READY_TO_PLAY 1 +#define PLAYER_NOT_READY "Not Ready" +#define PLAYER_READY_TO_PLAY "Ready" //movement intent defines for the move_intent var #define MOVE_INTENT_WALK "walk" @@ -130,6 +130,8 @@ #define MOB_MINING (1 << 13) ///The mob is a crustacean. Like crabs. Or lobsters. #define MOB_CRUSTACEAN (1 << 14) +///The mob is all boney +#define MOB_SKELETAL (1 << 15) //Lung respiration type flags #define RESPIRATION_OXYGEN (1 << 0) @@ -166,6 +168,8 @@ #define BODYSHAPE_DIGITIGRADE (1<<2) ///The limb is snouted. #define BODYSHAPE_SNOUTED (1<<3) +/// Golem's wacky rocky limbs +#define BODYSHAPE_GOLEM (1<<4) /// DOPPLER SHIFT ADDITION BEGIN // This is where our custom bodyshapes are going to go. Keeping these in one place is critical for readability. @@ -239,6 +243,7 @@ #define BODYPART_ID_PSYKER "psyker" #define BODYPART_ID_MEAT "meat" #define BODYPART_ID_PEG "peg" +#define BODYPART_ID_BONE "bone" //See: datum/species/var/digitigrade_customization @@ -515,7 +520,7 @@ #define REM REAGENTS_EFFECT_MULTIPLIER //! Shorthand for the above define for ease of use in equations and the like // Eye protection -// THese values are additive to determine your overall flash protection. +// These values are additive to determine your overall flash protection. #define FLASH_PROTECTION_HYPER_SENSITIVE -2 #define FLASH_PROTECTION_SENSITIVE -1 #define FLASH_PROTECTION_NONE 0 @@ -524,6 +529,29 @@ #define FLASH_PROTECTION_WELDER_SENSITIVE 3 #define FLASH_PROTECTION_WELDER_HYPER_SENSITIVE 4 +/** + * Ear protection + * These values are additive to determine your overall ear/soundbang protection + */ +#define EAR_PROTECTION_NONE 0 +#define EAR_PROTECTION_NORMAL 1 +#define EAR_PROTECTION_HEAVY 2 +#define EAR_PROTECTION_VACUUM 3 +#define EAR_PROTECTION_FULL INFINITY + +/** + * Soundbang defines + * These values are used as argument to determine the strength of the soundbang_act call + */ +///Soundbang strength for most things like flashbangs, honkblasts and harm control modules +#define SOUNDBANG_NORMAL 1 +///Soundbang strength for things like flashbangs in proximity and emagged harm alarm megaphones, cannot be countered by standard ear protection equipment +#define SOUNDBANG_STRONG 2 +///Soundbang strength for things like changeling shrieks, which can affect robots and aliens as well. +#define SOUNDBANG_MASSIVE 3 +///Soundbang strength for anything that cannot be stopped unless you're stacked on multiple effects and equipment to counter it (or are simply deaf) +#define SOUNDBANG_OVERWHELMING 4 + // AI Toggles #define AI_CAMERA_LUMINOSITY 5 #define AI_VOX // Comment out if you don't want VOX to be enabled and have players download the voice sounds. @@ -589,9 +617,10 @@ #define DEFIB_FAIL_NO_INTELLIGENCE (1<<8) #define DEFIB_FAIL_BLACKLISTED (1<<9) #define DEFIB_NOGRAB_AGHOST (1<<10) +#define DEFIB_FAIL_GOLEM (1<<11) // Bit mask of possible return values by can_defib that would result in a revivable patient -#define DEFIB_REVIVABLE_STATES (DEFIB_FAIL_NO_HEART | DEFIB_FAIL_FAILING_HEART | DEFIB_FAIL_HUSK | DEFIB_FAIL_TISSUE_DAMAGE | DEFIB_FAIL_FAILING_BRAIN | DEFIB_POSSIBLE) +#define DEFIB_REVIVABLE_STATES (DEFIB_FAIL_NO_HEART | DEFIB_FAIL_FAILING_HEART | DEFIB_FAIL_HUSK | DEFIB_FAIL_TISSUE_DAMAGE | DEFIB_FAIL_FAILING_BRAIN | DEFIB_FAIL_GOLEM | DEFIB_POSSIBLE) #define SLEEP_CHECK_DEATH(X, A) \ sleep(X); \ @@ -658,7 +687,7 @@ #define AI_EMOTION_UNSURE "Unsure" #define AI_EMOTION_CONFUSED "Confused" #define AI_EMOTION_SAD "Sad" -#define AI_EMOTION_BSOD "BSOD" +#define AI_EMOTION_BSOD "BSOD" //It is used only on EMP pulse displays. #define AI_EMOTION_BLANK "Blank" #define AI_EMOTION_PROBLEMS "Problems?" #define AI_EMOTION_AWESOME "Awesome" @@ -668,6 +697,8 @@ #define AI_EMOTION_DORFY "Dorfy" #define AI_EMOTION_BLUE_GLOW "Blue Glow" #define AI_EMOTION_RED_GLOW "Red Glow" +#define AI_EMOTION_DEAD "Dead" //This one is used when deactivating the AI +#define AI_EMOTION_DOWNLOAD "Download" // Defines for AI holograms #define AI_HOLOGRAM_CATEGORY_ANIMAL "Animal" @@ -703,8 +734,8 @@ #define GET_TARGETS_FROM(who) (who.targets_from ? who.get_targets_from() : who) //defines for grad_color and grad_styles list access keys -#define GRADIENT_HAIR_KEY 1 -#define GRADIENT_FACIAL_HAIR_KEY 2 +#define GRADIENT_HAIR_KEY "1" +#define GRADIENT_FACIAL_HAIR_KEY "2" // /datum/sprite_accessory/gradient defines #define GRADIENT_APPLIES_TO_HAIR (1<<0) @@ -1091,7 +1122,7 @@ GLOBAL_LIST_INIT(layers_to_offset, list( #define MINING_MOB_PROJECTILE_VULNERABILITY list(BRUTE) /// Helper macro that determines if the mob is at the threshold to start vomitting due to high toxin levels -#define AT_TOXIN_VOMIT_THRESHOLD(mob) (mob.getToxLoss() > 45 && mob.nutrition > 20) +#define AT_TOXIN_VOMIT_THRESHOLD(mob) (mob.get_tox_loss() > 45 && mob.nutrition > 20) /// The duration of the flip emote animation #define FLIP_EMOTE_DURATION 0.7 SECONDS diff --git a/code/__DEFINES/mod.dm b/code/__DEFINES/mod.dm index 07077970e2ba14..86b913cc0fcd14 100644 --- a/code/__DEFINES/mod.dm +++ b/code/__DEFINES/mod.dm @@ -60,6 +60,10 @@ #define GAUNTLET_SEAL_MESSAGE "tighten around your fingers and wrists" #define BOOT_UNSEAL_MESSAGE "relax their grip on your legs" #define BOOT_SEAL_MESSAGE "seal around your feet" +#define GLASSES_UNSEAL_MESSAGE "moves away from your eyes" +#define GLASSES_SEAL_MESSAGE "settle onto your eyes" +#define NECKWEAR_UNSEAL_MESSAGE "looses around your neck" +#define NECKWEAR_SEAL_MESSAGE "tightens around your neck" /// Global list of all /datum/mod_theme GLOBAL_LIST_INIT(mod_themes, setup_mod_themes()) diff --git a/code/__DEFINES/monkeys.dm b/code/__DEFINES/monkeys.dm index f487f805d508bb..a4929bb84dcb42 100644 --- a/code/__DEFINES/monkeys.dm +++ b/code/__DEFINES/monkeys.dm @@ -30,6 +30,8 @@ #define MONKEY_HATRED_AMOUNT 4 /// amount of aggro to add to an enemy when a monkey is recruited #define MONKEY_RECRUIT_HATED_AMOUNT 2 +/// amount of aggro to add if someone stole the food we wanted +#define MONKEY_FOOD_HATRED_AMOUNT 2 /// probability of reducing aggro by one when the monkey attacks #define MONKEY_HATRED_REDUCTION_PROB 20 diff --git a/code/__DEFINES/mood.dm b/code/__DEFINES/mood.dm index 5ed6b32e834d78..0dcdc9340d6baf 100644 --- a/code/__DEFINES/mood.dm +++ b/code/__DEFINES/mood.dm @@ -51,7 +51,7 @@ #define TERROR_HANDLER_EFFECT "effect" // Default cooldown for terror messages, to not get spammy -#define TERROR_MESSAGE_CD 30 SECONDS +#define TERROR_MESSAGE_CD 15 SECONDS // Values for terror buildup effects /// Initial value for effects that apply the component from spooking you @@ -76,6 +76,20 @@ /// How much terror being hugged reduces, or increases if its done by a nightmare or someone you're afraid of #define HUG_TERROR_AMOUNT 90 +/// Cooldown for phobia checks, to avoid constantly refreshing views +#define PHOBIA_CHECK_DELAY 5 SECONDS +/// Delay between phobia freakouts, also the time it takes for the buildup effect to fade away +#define PHOBIA_FREAKOUT_DELAY 12 SECONDS +/// Amount of terror granted whenever we hear a word we're afraid of +#define PHOBIA_WORD_TERROR_BUILDUP 40 +/// Amount of terror granted by each phobia trigger +#define PHOBIA_FREAKOUT_TERROR_BUILDUP 120 + +/// Cooldown for fear screams +#define TERROR_STARTLE_COOLDOWN 12 SECONDS +/// Minimum difference in fear per tick for screams to actually trigger, so we don't proc from minor fears +#define TERROR_STARTLE_MINIMUM_DIFFERENCE 40 + /// Relates to fear or resisting fear #define MOOD_EVENT_FEAR (1<<0) /// Relates to art diff --git a/code/__DEFINES/obj_flags.dm b/code/__DEFINES/obj_flags.dm index 4ea38724cd3bde..b01406bf631bdf 100644 --- a/code/__DEFINES/obj_flags.dm +++ b/code/__DEFINES/obj_flags.dm @@ -1,21 +1,35 @@ // Flags for the obj_flags var on /obj - +/// Object has been affected by a cryptographic sequencer (EMAG) disabling it or causing other malicious effects #define EMAGGED (1<<0) -#define CAN_BE_HIT (1<<1) //can this be bludgeoned by items? -#define DANGEROUS_POSSESSION (1<<2) //Admin possession yes/no -#define UNIQUE_RENAME (1<<3) // can you customize the description/name of the thing? -#define RENAME_NO_DESC (1<<4) // if it can be renamed, is its description excluded? -#define BLOCK_Z_OUT_DOWN (1<<5) // Should this object block z falling from loc? -#define BLOCK_Z_OUT_UP (1<<6) // Should this object block z uprise from loc? -#define BLOCK_Z_IN_DOWN (1<<7) // Should this object block z falling from above? -#define BLOCK_Z_IN_UP (1<<8) // Should this object block z uprise from below? -#define BLOCKS_CONSTRUCTION (1<<9) //! Does this object prevent things from being built on it? -#define BLOCKS_CONSTRUCTION_DIR (1<<10) //! Does this object prevent same-direction things from being built on it? -#define IGNORE_DENSITY (1<<11) //! Can we ignore density when building on this object? (for example, directional windows and grilles) -#define INFINITE_RESKIN (1<<12) // We can reskin this item infinitely -#define CONDUCTS_ELECTRICITY (1<<13) //! Can this object conduct electricity? -#define NO_DEBRIS_AFTER_DECONSTRUCTION (1<<14) //! Atoms don't spawn anything when deconstructed. They just vanish +/// Can this be bludgeoned by items +#define CAN_BE_HIT (1<<1) +/// Admin possession yes/no +#define DANGEROUS_POSSESSION (1<<2) +/// Can you customize the description/name of the thing +#define UNIQUE_RENAME (1<<3) +/// If it can be renamed, is its description excluded +#define RENAME_NO_DESC (1<<4) +/// Should this object block z falling from loc +#define BLOCK_Z_OUT_DOWN (1<<5) +/// Should this object block z uprise from loc +#define BLOCK_Z_OUT_UP (1<<6) +/// Should this object block z falling from above +#define BLOCK_Z_IN_DOWN (1<<7) +/// Should this object block z uprise from below +#define BLOCK_Z_IN_UP (1<<8) +/// Does this object prevent things from being built on it +#define BLOCKS_CONSTRUCTION (1<<9) +/// Does this object prevent same-direction things from being built on it +#define BLOCKS_CONSTRUCTION_DIR (1<<10) +/// Can we ignore density when building on this object (for example, directional windows and grilles) +#define IGNORE_DENSITY (1<<11) +/// Can this object conduct electricity +#define CONDUCTS_ELECTRICITY (1<<12) +/// Atoms don't spawn anything when deconstructed (they just vanish) +#define NO_DEBRIS_AFTER_DECONSTRUCTION (1<<13) +/// Flag which tells an object to hang onto an support atom on late initialize. Usefull only during mapload and supported by some atoms only +#define MOUNT_ON_LATE_INITIALIZE (1<<14) // If you add new ones, be sure to add them to /obj/Initialize as well for complete mapping support @@ -95,6 +109,10 @@ #define HEADINTERNALS (1<<16) /// Prevents masks from getting adjusted from enabling internals #define INTERNALS_ADJUST_EXEMPT (1<<17) +/// Indicates that the piece of clothing contributes towards Sleeping Carp's style factor, which determines evasion probabilities. See /datums/martial/sleeping_carp/carp_style_check(). +#define CARP_STYLE_FACTOR (1<<18) +/// Prevents clothing from losing bodyparts coverage when shredded +#define NO_ZONE_DISABLING (1<<19) /// Integrity defines for clothing (not flags but close enough) #define CLOTHING_PRISTINE 0 // We have no damage on the clothing diff --git a/code/__DEFINES/plumbing.dm b/code/__DEFINES/plumbing.dm index 432f8ca4357c67..0a701246014889 100644 --- a/code/__DEFINES/plumbing.dm +++ b/code/__DEFINES/plumbing.dm @@ -8,5 +8,7 @@ #define MACHINE_REAGENT_TRANSFER 10 //the default max plumbing machinery transfers -/// Name of omni color -#define DUCT_COLOR_OMNI "omni" +///IV drip operation mode when it sucks blood from the object +#define IV_TAKING 0 +///IV drip operation mode when it injects reagents into the object +#define IV_INJECTING 1 diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm index 42e4d3869d2bff..1ae8403c644fad 100644 --- a/code/__DEFINES/preferences.dm +++ b/code/__DEFINES/preferences.dm @@ -164,8 +164,6 @@ #define LOADOUT_FLAG_GREYSCALING_ALLOWED (1<<2) /// Allows the item to be renamed by the player. #define LOADOUT_FLAG_ALLOW_NAMING (1<<3) -/// Allows the item to be reskinned by the player. Only applicable to items with unique_reskin defined. -#define LOADOUT_FLAG_ALLOW_RESKIN (1<<4) // Loadout item info keys // Changing these will break existing loadouts diff --git a/code/__DEFINES/reagents.dm b/code/__DEFINES/reagents.dm index 0bd3d59a5e7812..8faa0aeae93c22 100644 --- a/code/__DEFINES/reagents.dm +++ b/code/__DEFINES/reagents.dm @@ -206,6 +206,48 @@ #define REACTION_TAG_PLANT (1<<19) /// This reaction is produces a product that affects plants #define REACTION_TAG_COMPETITIVE (1<<20) +/// Reaction produces a reagent that is a common component for other reactions +#define REACTION_TAG_COMPONENT (1<<21) +/// Denotes reactions that will immediately do something on reaction, like an explosion, smoke, etc. +#define REACTION_TAG_ACTIVE (1<<22) + +/// Readable list of reagent reaction tags (in the same order as they are defined!) +#define REACTION_TAG_READABLE list(\ + "BRUTE" = REACTION_TAG_BRUTE,\ + "BURN" = REACTION_TAG_BURN,\ + "TOXIN" = REACTION_TAG_TOXIN,\ + "OXY" = REACTION_TAG_OXY,\ + "HEALING" = REACTION_TAG_HEALING,\ + "DAMAGING" = REACTION_TAG_DAMAGING,\ + "EXPLOSIVE" = REACTION_TAG_EXPLOSIVE,\ + "OTHER" = REACTION_TAG_OTHER,\ + "DANGEROUS" = REACTION_TAG_DANGEROUS,\ + "EASY" = REACTION_TAG_EASY,\ + "MODERATE" = REACTION_TAG_MODERATE,\ + "HARD" = REACTION_TAG_HARD,\ + "ORGAN" = REACTION_TAG_ORGAN,\ + "DRINK" = REACTION_TAG_DRINK,\ + "FOOD" = REACTION_TAG_FOOD,\ + "SLIME" = REACTION_TAG_SLIME,\ + "DRUG" = REACTION_TAG_DRUG,\ + "UNIQUE" = REACTION_TAG_UNIQUE,\ + "CHEMICAL" = REACTION_TAG_CHEMICAL,\ + "PLANT" = REACTION_TAG_PLANT,\ + "COMPETITIVE" = REACTION_TAG_COMPETITIVE,\ + "COMPONENT" = REACTION_TAG_COMPONENT,\ + "ACTIVE" = REACTION_TAG_ACTIVE,\ +) + +/// Reaction tags for basic damgae types +#define DAMAGE_HEALING_REACTION_TAGS (REACTION_TAG_BRUTE | REACTION_TAG_BURN | REACTION_TAG_TOXIN | REACTION_TAG_OXY) +/// Reaction tags for medication +#define MEDICATION_REACTION_TAGS (REACTION_TAG_HEALING | REACTION_TAG_DAMAGING | REACTION_TAG_ORGAN | REACTION_TAG_DRUG) +/// Reaction tags for things the chemist would make +#define CHEMIST_REACTION_TAGS (REACTION_TAG_EXPLOSIVE | REACTION_TAG_CHEMICAL | REACTION_TAG_COMPETITIVE | REACTION_TAG_EXPLOSIVE | REACTION_TAG_COMPONENT) +/// Reaction tags for botanist stuff +#define BOTANIST_REACTION_TAGS (REACTION_TAG_PLANT | REACTION_TAG_COMPONENT) +/// Reaction tags for food and drink mainly +#define KITCHEN_REACTION_TAGS (REACTION_TAG_FOOD | REACTION_TAG_DRINK | REACTION_TAG_COMPONENT) //flags used by holder.dm to locate an reagent ///Direct type diff --git a/code/__DEFINES/research.dm b/code/__DEFINES/research.dm index f3b2cf81948950..96a2c74ef8b3c6 100644 --- a/code/__DEFINES/research.dm +++ b/code/__DEFINES/research.dm @@ -74,11 +74,12 @@ //Defines how many percent of vat grown atoms come out as hue shifted color mutants. A flat chance for now, maybe in the future dependant on the cell line. #define CYTO_SHINY_CHANCE 15 -#define SCIPAPER_COOPERATION_INDEX 1 -#define SCIPAPER_FUNDING_INDEX 2 +#define SCIPAPER_COOPERATION_INDEX "cooperation" +#define SCIPAPER_FUNDING_INDEX "funding" #define SCIENTIFIC_COOPERATION_PURCHASE_MULTIPLIER 0.01 /// How much money is one point of gain worth. #define SCIPAPER_GAIN_TO_MONEY 125 +#define SCIPAPER_ALREADY_BOUGHT 2 ///Connects the 'server_var' to a valid research server on your Z level. ///Used for machines in LateInitialize, to ensure that RND servers are loaded first. diff --git a/code/__DEFINES/research/anomalies.dm b/code/__DEFINES/research/anomalies.dm index f0dabae02509af..b2b39d4d08cef6 100644 --- a/code/__DEFINES/research/anomalies.dm +++ b/code/__DEFINES/research/anomalies.dm @@ -8,6 +8,7 @@ #define MAX_CORES_BIOSCRAMBLER 8 #define MAX_CORES_DIMENSIONAL 8 #define MAX_CORES_ECTOPLASMIC 8 +#define MAX_CORES_WEATHER 8 ///Defines for the different types of explosion a flux anomaly can have #define FLUX_NO_EMP 0 diff --git a/code/__DEFINES/research/techweb_nodes.dm b/code/__DEFINES/research/techweb_nodes.dm index 8fcd954e1a66ff..baf220fda68884 100644 --- a/code/__DEFINES/research/techweb_nodes.dm +++ b/code/__DEFINES/research/techweb_nodes.dm @@ -83,6 +83,7 @@ #define TECHWEB_NODE_MOD_ENGI_ADV "mod_engi_adv" #define TECHWEB_NODE_MOD_ENTERTAINMENT "mod_entertainment" #define TECHWEB_NODE_MOD_EQUIP "mod_equip" +#define TECHWEB_NODE_MOD_SERVICE "mod_service" #define TECHWEB_NODE_MOD_EXPERIMENTAL "mod_experimental" #define TECHWEB_NODE_MOD_MEDICAL "mod_medical" #define TECHWEB_NODE_MOD_MEDICAL_ADV "mod_medical_adv" diff --git a/code/__DEFINES/reskin.dm b/code/__DEFINES/reskin.dm new file mode 100644 index 00000000000000..250b3959fe22c3 --- /dev/null +++ b/code/__DEFINES/reskin.dm @@ -0,0 +1,18 @@ +/// Global list of available atom skins +GLOBAL_LIST_INIT_TYPED(atom_skins, /datum/atom_skin, init_subtypes_w_path_keys(/datum/atom_skin)) + +/// Sets the atom's varname to newvalue if newvalue is not null, otherwise resets it to its initial value if resetcondition is true +#define APPLY_VAR_OR_RESET_INITIAL(atom, varname, newvalue, resetcondition) \ + if(newvalue) {atom.##varname = (##newvalue) } else if(resetcondition) { atom.##varname = initial(atom.##varname) } + +/// Sets the atom's varname to newvalue if newvalue is not null, otherwise sets it to resetvalue if resetcondition is true +#define APPLY_VAR_OR_RESET_TO(atom, varname, newvalue, resetcondition, resetvalue) \ + if(newvalue) {atom.##varname = (##newvalue) } else if(resetcondition) { atom.##varname = (resetvalue) } + +/// Resets the atom's varname to its initial value if oldvalue is not null +#define RESET_INITIAL_IF_SET(atom, varname, oldvalue) \ + if(oldvalue) { atom.##varname = initial(atom.##varname) } + +/// Sets the atom's varname to resetvalue if oldvalue is not null +#define RESET_TO_IF_SET(atom, varname, oldvalue, resetvalue) \ + if(oldvalue) { atom.##varname = (resetvalue) } diff --git a/code/__DEFINES/rust_g.dm b/code/__DEFINES/rust_g.dm index 048ea0bd0b752c..877d06ed19f6f9 100644 --- a/code/__DEFINES/rust_g.dm +++ b/code/__DEFINES/rust_g.dm @@ -168,6 +168,9 @@ */ #define rustg_dmi_inject_metadata(path, metadata) RUSTG_CALL(RUST_G, "dmi_inject_metadata")(path, metadata) +#define rustg_create_qr_code_png(path, data) RUSTG_CALL(RUST_G, "create_qr_code_png")(path, data) +#define rustg_create_qr_code_svg(data) RUSTG_CALL(RUST_G, "create_qr_code_svg")(data) + #define rustg_file_read(fname) RUSTG_CALL(RUST_G, "file_read")(fname) #define rustg_file_exists(fname) (RUSTG_CALL(RUST_G, "file_exists")(fname) == "true") #define rustg_file_write(text, fname) RUSTG_CALL(RUST_G, "file_write")(text, fname) @@ -280,6 +283,21 @@ #define rustg_iconforge_generate(file_path, spritesheet_name, sprites, hash_icons, generate_dmi, flatten) RUSTG_CALL(RUST_G, "iconforge_generate")(file_path, spritesheet_name, sprites, "[hash_icons]", "[generate_dmi]", "[flatten]") /// Returns a job_id for use with rustg_iconforge_check() #define rustg_iconforge_generate_async(file_path, spritesheet_name, sprites, hash_icons, generate_dmi, flatten) RUSTG_CALL(RUST_G, "iconforge_generate_async")(file_path, spritesheet_name, sprites, "[hash_icons]", "[generate_dmi]", "[flatten]") +/// Creates a single DMI or PNG using 'sprites' as a list of icon states / images. +/// This function is intended for generating icons with only a few states that have little in common with each other, and only one size. +/// For icons with a large number of states, potentially variable sizes, that re-use sets of transforms more than once, or that benefit from caching, use rustg_iconforge_generate. +/// sprites - follows the same format as rustg_iconforge_generate. +/// file_path - the full relative path at which the PNG or DMI will be written. It must be a full filepath such as tmp/my_icon.dmi or my_icon.png +/// flatten - boolean (0 or 1) determines if the DMI output will be flattened to a single frame/dir if unscoped (null/0 dir or frame values). +/// +/// Returns a HeadlessResult, decoded to a BYOND list (always, it's not possible for this to panic unless rustg itself has an issue) containing the following fields: +/// list( +/// "file_path" = "tmp/my_icon.dmi" // [whatever you input returned back to you, null if there was a fatal error] +/// "width" = 32 // the width, which is determined by the first entry of 'sprites', null if there was a fatal error +/// "height" = 32 // the height, which is determined by the first entry of 'sprites', null if there was a fatal error +/// "error" = "[A string, null if there were no errors.]" +/// ) +#define rustg_iconforge_generate_headless(file_path, sprites, flatten) json_decode(RUSTG_CALL(RUST_G, "iconforge_generate_headless")(file_path, sprites, "[flatten]")) /// Returns the status of an async job_id, or its result if it is completed. See RUSTG_JOB DEFINEs. #define rustg_iconforge_check(job_id) RUSTG_CALL(RUST_G, "iconforge_check")("[job_id]") /// Clears all cached DMIs and images, freeing up memory. diff --git a/code/__DEFINES/say.dm b/code/__DEFINES/say.dm index b78637778dccc0..c83815755a2a8b 100644 --- a/code/__DEFINES/say.dm +++ b/code/__DEFINES/say.dm @@ -117,7 +117,8 @@ #define MAX_CHARTER_LEN 80 #define MAX_PLAQUE_LEN 144 #define MAX_LABEL_LEN 64 -#define MAX_DESC_LEN 560 // DOPPLER EDIT CHANGE - orig: #define MAX_DESC_LEN 560 +#define MAX_DESC_LEN 560 // DOPPLER EDIT - Longer descriptions - ORIGINAL: #define MAX_DESC_LEN 280 +#define MAX_AAS_LENGTH 168 // Audio/Visual Flags. Used to determine what sense are required to notice a message. #define MSG_VISUAL (1<<0) diff --git a/code/__DEFINES/shuttles.dm b/code/__DEFINES/shuttles.dm index fb7b57e4184484..34b0bf4242a5cc 100644 --- a/code/__DEFINES/shuttles.dm +++ b/code/__DEFINES/shuttles.dm @@ -14,7 +14,7 @@ #define EMERGENCY_IDLE_OR_RECALLED (SSshuttle.emergency && ((SSshuttle.emergency.mode == SHUTTLE_IDLE) || (SSshuttle.emergency.mode == SHUTTLE_RECALL))) #define EMERGENCY_ESCAPED_OR_ENDGAMED (SSshuttle.emergency && ((SSshuttle.emergency.mode == SHUTTLE_ESCAPE) || (SSshuttle.emergency.mode == SHUTTLE_ENDGAME))) #define EMERGENCY_AT_LEAST_DOCKED (SSshuttle.emergency && SSshuttle.emergency.mode != SHUTTLE_IDLE && SSshuttle.emergency.mode != SHUTTLE_RECALL && SSshuttle.emergency.mode != SHUTTLE_CALL) -#define EMERGENCY_PAST_POINT_OF_NO_RETURN ((SSshuttle.emergency && SSshuttle.emergency.mode == SHUTTLE_CALL && !SSshuttle.canRecall()) || EMERGENCY_AT_LEAST_DOCKED) +#define EMERGENCY_PAST_POINT_OF_NO_RETURN ((SSshuttle.emergency && SSshuttle.emergency.mode == SHUTTLE_CALL && !SSshuttle.past_restriction_point()) || EMERGENCY_AT_LEAST_DOCKED) // Shuttle return values #define SHUTTLE_CAN_DOCK "can_dock" @@ -81,9 +81,10 @@ #define DOCKING_NULL_SOURCE (1<<4) //Docking turf movements -#define MOVE_TURF 1 -#define MOVE_AREA 2 -#define MOVE_CONTENTS 4 +#define MOVE_TURF (1<<0) +#define MOVE_AREA (1<<1) +#define MOVE_CONTENTS (1<<2) +#define MOVE_SPECIAL (1<<3) //Rotation params #define ROTATE_DIR 1 diff --git a/code/__DEFINES/sound.dm b/code/__DEFINES/sound.dm index 474e8523aa1e99..23fc91dca3b666 100644 --- a/code/__DEFINES/sound.dm +++ b/code/__DEFINES/sound.dm @@ -44,7 +44,7 @@ /* Calculates the volume of a sound based on distance * - * https://www.desmos.com/calculator/sqdfl8ipgf + * https://www.desmos.com/calculator/shjpmz3ck7 * * Arguments: * * volume: The initial volume of the sound being played diff --git a/code/__DEFINES/species_clothing_paths.dm b/code/__DEFINES/species_clothing_paths.dm index 99fe7baab1ddfc..828510bf7cb394 100644 --- a/code/__DEFINES/species_clothing_paths.dm +++ b/code/__DEFINES/species_clothing_paths.dm @@ -9,7 +9,3 @@ //DIGITIGRADE PATHS ///The dmi containing digitigrade uniforms #define DIGITIGRADE_UNIFORM_FILE 'icons/mob/human/species/misc/digitigrade.dmi' -///The dmi containing digitigrade shoes -#define DIGITIGRADE_SHOES_FILE 'icons/mob/human/species/misc/digitigrade_shoes.dmi' -///The dmi containing digitigrade oversuits -#define DIGITIGRADE_SUIT_FILE 'icons/mob/human/species/misc/digitigrade_suits.dmi' diff --git a/code/__DEFINES/stat_tracking.dm b/code/__DEFINES/stat_tracking.dm index 9bd697440406c6..e71a073daafd0d 100644 --- a/code/__DEFINES/stat_tracking.dm +++ b/code/__DEFINES/stat_tracking.dm @@ -15,7 +15,8 @@ #define INIT_COST(costs, counting) \ var/list/_costs = costs; \ var/list/_counting = counting; \ - var/_usage = TICK_USAGE; + var/_usage = TICK_USAGE; \ + var/_cost = 0; // STATIC cost tracking macro. Uses static lists instead of the normal global ones // Good for debug stuff, and for running before globals init @@ -33,10 +34,22 @@ } \ _usage = TICK_USAGE; +#define SET_COST_BOUNDS(category) \ + do { \ + _cost = TICK_USAGE; \ + var/_tmp_delta = TICK_DELTA_TO_MS(_cost - _usage);\ + _costs[category] += _tmp_delta;\ + _counting[category] += 1;\ + _costs["[category]_min"] = min(_tmp_delta, _costs["[category]_min"] || INFINITY);\ + _counting["[category]_min"] += 1;\ + _costs["[category]_max"] = max(_tmp_delta, _costs["[category]_max"] || 0);\ + _counting["[category]_max"] += 1;\ + } while(FALSE); \ + _usage = TICK_USAGE; #define SET_COST(category) \ do { \ - var/_cost = TICK_USAGE; \ + _cost = TICK_USAGE; \ _costs[category] += TICK_DELTA_TO_MS(_cost - _usage);\ _counting[category] += 1; \ } while(FALSE); \ diff --git a/code/__DEFINES/status_effects.dm b/code/__DEFINES/status_effects.dm index ceecdb729da25c..4b0767091b93f5 100644 --- a/code/__DEFINES/status_effects.dm +++ b/code/__DEFINES/status_effects.dm @@ -57,7 +57,6 @@ // Grouped effect sources, see also code/__DEFINES/traits.dm #define STASIS_MACHINE_EFFECT "stasis_machine" -#define STASIS_CHEMICAL_EFFECT "stasis_chemical" #define STASIS_SHAPECHANGE_EFFECT "stasis_shapechange" #define STASIS_ADMIN "stasis_admin" #define STASIS_LEGION_EATEN "stasis_eaten" diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm index a002b4bef93364..9521983acd8fbb 100644 --- a/code/__DEFINES/subsystems.dm +++ b/code/__DEFINES/subsystems.dm @@ -158,6 +158,7 @@ #define FIRE_PRIORITY_PARALLAX 65 #define FIRE_PRIORITY_INSTRUMENTS 80 #define FIRE_PRIORITY_FLUIDS 80 +#define FIRE_PRIORITY_CAMERAS 85 #define FIRE_PRIORITY_PRIORITY_EFFECTS 90 #define FIRE_PRIORITY_MOBS 100 #define FIRE_PRIORITY_TGUI 110 diff --git a/code/__DEFINES/surgery.dm b/code/__DEFINES/surgery.dm index 9d73f12a980e95..1a7945b2bf7cd6 100644 --- a/code/__DEFINES/surgery.dm +++ b/code/__DEFINES/surgery.dm @@ -36,6 +36,11 @@ #define ORGAN_GHOST (1<<14) /// This is a mutant organ, having this makes you a -derived mutant to health analyzers. #define ORGAN_MUTANT (1<<15) +/// The organ has been chomped or otherwise rendered unusable. +#define ORGAN_UNUSABLE (1<<16) + +/// Organ flags that correspond to bodytypes +#define ORGAN_TYPE_FLAGS (ORGAN_ORGANIC | ORGAN_ROBOTIC | ORGAN_MINERAL | ORGAN_GHOST) /// Scarring on the right eye #define RIGHT_EYE_SCAR (1<<0) @@ -85,28 +90,90 @@ /// Default for most heads #define HEAD_DEFAULT_FEATURES (HEAD_HAIR|HEAD_FACIAL_HAIR|HEAD_LIPS|HEAD_EYESPRITES|HEAD_EYECOLOR|HEAD_EYEHOLES|HEAD_DEBRAIN) -/// Return value when the surgery step fails :( -#define SURGERY_STEP_FAIL -1 - -// Flags for surgery_flags on surgery datums -///Will allow the surgery to bypass clothes -#define SURGERY_IGNORE_CLOTHES (1<<0) -///Will allow the surgery to be performed by the user on themselves. -#define SURGERY_SELF_OPERABLE (1<<1) -///Will allow the surgery to work on mobs that aren't lying down. -#define SURGERY_REQUIRE_RESTING (1<<2) -///Will allow the surgery to work only if there's a limb. -#define SURGERY_REQUIRE_LIMB (1<<3) -///Will allow the surgery to work only if there's a real (eg. not pseudopart) limb. -#define SURGERY_REQUIRES_REAL_LIMB (1<<4) -///Will grant a bonus during surgery steps to users with TRAIT_MORBID while they're using tools with CRUEL_IMPLEMENT -#define SURGERY_MORBID_CURIOSITY (1<<5) -/** - * Instead of checking if the tool used is an actual surgery tool to avoid accidentally whacking patients with the wrong tool, - * it'll check if it has a defined tool behaviour instead. Useful for surgeries that use mechanical tools instead of medical ones, - * like hardware manipulation. - */ -#define SURGERY_CHECK_TOOL_BEHAVIOUR (1<<6) - -///Return true if target is not in a valid body position for the surgery -#define IS_IN_INVALID_SURGICAL_POSITION(target, surgery) ((surgery.surgery_flags & SURGERY_REQUIRE_RESTING) && (target.mobility_flags & MOBILITY_LIEDOWN && target.body_position != LYING_DOWN)) +/// Checks if the mob is lying down if they can lie down, otherwise always passes +#define IS_LYING_OR_CANNOT_LIE(mob) ((mob.mobility_flags & MOBILITY_LIEDOWN) ? (mob.body_position == LYING_DOWN) : TRUE) + +/// Applies moodlets after the surgical operation is complete +#define OPERATION_AFFECTS_MOOD (1<<0) +/// Notable operations are specially logged and also leave memories +#define OPERATION_NOTABLE (1<<1) +/// Operation will automatically repeat until it can no longer be performed +#define OPERATION_LOOPING (1<<2) +/// Grants a speed bonus if the user is morbid and their tool is morbid +#define OPERATION_MORBID (1<<3) +/// Not innately available to doctors, must be added via COMSIG_MOB_ATTEMPT_SURGERY to show up +#define OPERATION_LOCKED (1<<4) +/// A surgeon can perform this operation on themselves +#define OPERATION_SELF_OPERABLE (1<<5) +/// Operation can be performed on standing patients - note: mobs that cannot lie down are *always* considered lying down for surgery +#define OPERATION_STANDING_ALLOWED (1<<6) +/// Some traits may cause operations to be infalliable - this flag disables that behavior, always allowing it to be failed +#define OPERATION_ALWAYS_FAILABLE (1<<7) +/// If set, the operation will ignore clothing when checking for access to the target body part. +#define OPERATION_IGNORE_CLOTHES (1<<8) +/// This operation should be prioritized as the next step in a surgery sequence. (In the operating computer it will flash red) +#define OPERATION_PRIORITY_NEXT_STEP (1<<9) +/// Operation is a mechanic / robotic surgery +#define OPERATION_MECHANIC (1<<10) +/// Hides the operation from autowiki generation +#define OPERATION_NO_WIKI (1<<11) +/// This operation can be performed on a detached limb +#define OPERATION_NO_PATIENT_REQUIRED (1<<12) + +DEFINE_BITFIELD(operation_flags, list( + "AFFECTS MOOD" = OPERATION_AFFECTS_MOOD, + "NOTABLE" = OPERATION_NOTABLE, + "LOOPING" = OPERATION_LOOPING, + "MORBID" = OPERATION_MORBID, + "LOCKED" = OPERATION_LOCKED, + "SELF OPERABLE" = OPERATION_SELF_OPERABLE, + "STANDING ALLOWED" = OPERATION_STANDING_ALLOWED, + "ALWAYS FAILABLE" = OPERATION_ALWAYS_FAILABLE, + "IGNORE CLOTHES" = OPERATION_IGNORE_CLOTHES, + "PRIORITY NEXT STEP" = OPERATION_PRIORITY_NEXT_STEP, + "MECHANIC" = OPERATION_MECHANIC, +)) + +/// All of these equipment slots are ignored when checking for clothing coverage during surgery +#define IGNORED_OPERATION_CLOTHING_SLOTS (ITEM_SLOT_NECK) + +// Surgery related mood defines +#define SURGERY_STATE_STARTED "surgery_started" +#define SURGERY_STATE_FAILURE "surgery_failed" +#define SURGERY_STATE_SUCCESS "surgery_success" +#define SURGERY_MOOD_CATEGORY "surgery" + +/// Dummy "tool" for surgeries which use hands +#define IMPLEMENT_HAND "hands" + +/// Surgery speed modifiers are soft-capped at this value +/// The actual modifier can exceed this but it gets +#define SURGERY_MODIFIER_FAILURE_THRESHOLD 2.5 +/// There is an x percent chance of failure per second beyond 2.5x the base surgery time +#define FAILURE_CHANCE_PER_SECOND 10 +/// Calculates failure chance of an operation based on the base time and the effective speed modifier +/// This may look something like: Base time 1 second and 4x effective multiplier -> 4 seconds - 2.5 seconds = 1.5 seconds * 10 = 15% failure chance +/// Or: Base time 2 seconds and 1x effective multiplier -> 2 seconds - 5 seconds = -3 seconds * 10 = -30% failure chance (clamped to 0%) +#define GET_FAILURE_CHANCE(base_time, speed_mod) (FAILURE_CHANCE_PER_SECOND * (((speed_mod * (base_time)) - (SURGERY_MODIFIER_FAILURE_THRESHOLD * (base_time))) / (1 SECONDS))) + +// Operation argument indexes +/// Total speed/failure modifier applied to the operation +#define OPERATION_SPEED "speed_modifier" +/// The action being performed, simply "default" for 95% of surgeries +#define OPERATION_ACTION "action" +/// Whether the operation should automatically fail +#define OPERATION_FORCE_FAIL "force_fail" +/// The body zone being targeted by the operation +#define OPERATION_TARGET_ZONE "target_zone" +/// The specific target of the operation, usually a bodypart or organ, generally redundant +#define OPERATION_TARGET "target" +// For tend wounds - only reason these aren't local is we use them in unit testing +#define OPERATION_BRUTE_HEAL "brute_heal" +#define OPERATION_BURN_HEAL "burn_heal" +#define OPERATION_BRUTE_MULTIPLIER "brute_multiplier" +#define OPERATION_BURN_MULTIPLIER "burn_multiplier" + +/// Used in string formatting to print a limb as "John's right arm" or "the human right arm" +#define FORMAT_LIMB_OWNER(limb) (limb.owner ? "[limb.owner]'s [limb.plaintext_zone]" : limb) +/// Used in string formatting to print an organ's location as "John" or "the human chest" +#define FORMAT_ORGAN_OWNER(organ) (organ.owner || organ.loc) diff --git a/code/__DEFINES/tgs.config.dm b/code/__DEFINES/tgs.config.dm index 0dc0e64f9a14f8..116539fb6e15e2 100644 --- a/code/__DEFINES/tgs.config.dm +++ b/code/__DEFINES/tgs.config.dm @@ -2,7 +2,7 @@ #define TGS_DEFINE_AND_SET_GLOBAL(Name, Value) GLOBAL_VAR_INIT(##Name, ##Value); GLOBAL_PROTECT(##Name) #define TGS_READ_GLOBAL(Name) GLOB.##Name #define TGS_WRITE_GLOBAL(Name, Value) GLOB.##Name = ##Value -#define TGS_WORLD_ANNOUNCE(message) to_chat(world, span_boldannounce("[html_encode(##message)]")) +#define TGS_WORLD_ANNOUNCE(message) to_chat(world, span_boldannounce("SYSTEM MESSAGE: [html_encode(##message)]")) #define TGS_INFO_LOG(message) log_world("TGS Info: [##message]") #define TGS_WARNING_LOG(message) log_world("TGS Warn: [##message]") #define TGS_ERROR_LOG(message) stack_trace("TGS Error: [##message]") diff --git a/code/__DEFINES/traits/declarations.dm b/code/__DEFINES/traits/declarations.dm index 4d2eab10640ff7..33510904c754e7 100644 --- a/code/__DEFINES/traits/declarations.dm +++ b/code/__DEFINES/traits/declarations.dm @@ -103,6 +103,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_HUSK "husk" ///Blacklisted from being revived via defibrillator #define TRAIT_DEFIB_BLACKLISTED "defib_blacklisted" +/// This carbon doesn't need a brain to be revived, though some revival methods like defibbing will still check for a functional brain +#define TRAIT_BRAINLESS_CARBON "brainless_carbon" #define TRAIT_BADDNA "baddna" #define TRAIT_CLUMSY "clumsy" /// Trait that means you are capable of holding items in some form @@ -220,7 +222,7 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_NO_AUGMENTS "no_augments" /// This carbon doesn't get hungry #define TRAIT_NOHUNGER "no_hunger" -/// This carbon doesn't bleed +/// This carbon doesn't have blood #define TRAIT_NOBLOOD "noblood" /// This just means that the carbon will always have functional liverless metabolism #define TRAIT_LIVERLESS_METABOLISM "liverless_metabolism" @@ -330,6 +332,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_WOUND_LICKER "wound_licker" /// Mobs with this trait are allowed to use silicon emotes #define TRAIT_SILICON_EMOTES_ALLOWED "silicon_emotes_allowed" +/// Mobs with this trait can tell when other mobs whisper even if their mouth is covered. They still can't tell what was whispered though. +#define TRAIT_SEE_MASK_WHISPER "see_mask_whisper" /// This trait designate that the mob was originally a monkey #define TRAIT_BORN_MONKEY "born_as_a_monkey" @@ -359,6 +363,7 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_NODEATH "nodeath" #define TRAIT_NOHARDCRIT "nohardcrit" #define TRAIT_NOSOFTCRIT "nosoftcrit" +#define TRAIT_NO_OXYLOSS_PASSOUT "nooxylosspassout" /// Makes someone show up as mindshielded on sechuds. Does NOT actually make them unconvertable - See TRAIT_UNCONVERTABLE for that #define TRAIT_MINDSHIELD "mindshield" /// Makes it impossible for someone to be converted by cult/revs/etc. @@ -419,7 +424,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_SPINNING_WEB_TURF "spinning_web_turf" #define TRAIT_ABDUCTOR_TRAINING "abductor-training" #define TRAIT_ABDUCTOR_SCIENTIST_TRAINING "abductor-scientist-training" -#define TRAIT_SURGEON "surgeon" #define TRAIT_STRONG_GRABBER "strong_grabber" #define TRAIT_SOOTHED_THROAT "soothed-throat" #define TRAIT_SOOTHED_HEADACHE "soothed-headache" @@ -466,8 +470,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_PERCEPTUAL_TRAUMA_BYPASS "trauma_bypass" /// mob is immune to hallucinations #define TRAIT_HALLUCINATION_IMMUNE "hallucination_immune" -/// Increases chance of getting special traumas, makes them harder to cure -#define TRAIT_SPECIAL_TRAUMA_BOOST "special_trauma_boost" //---- Brain trauma resists /// Unable to gain any brain trauma whatsoever @@ -973,6 +975,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_DUCT_TAPE_UNREPAIRABLE "duct_tape_unrepairable" /// An item is ALWAYS considered baseline reachable and will pipe into CanBeReached(). #define TRAIT_SKIP_BASIC_REACH_CHECK "skip_basic_reach_check" +/// Increases chance of this brain getting special traumas, makes them harder to cure +#define TRAIT_SPECIAL_TRAUMA_BOOST "special_trauma_boost" //---- Heretic Traits /// Hides the heretic overlay that outs them as the heretic @@ -1009,7 +1013,6 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_PHOTOGRAPHER "photographer" #define TRAIT_MUSICIAN "musician" #define TRAIT_LIGHT_DRINKER "light_drinker" -#define TRAIT_EMPATH "empath" #define TRAIT_EVIL "evil" #define TRAIT_FRIENDLY "friendly" #define TRAIT_GRABWEAKNESS "grab_weakness" @@ -1189,6 +1192,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define TRAIT_FISH_SURVIVE_COOKING "fish_survive_cooking" ///This fish is healed by milk and hurt by bone hurting juice #define TRAIT_FISH_MADE_OF_BONE "fish_made_of_bone" +///The traits of this fish have been edited by a fish gene-gun at least once. It'll die the next time the fish genegun is used on them. +#define TRAIT_FISH_GENEGUNNED "fish_genegunned" /** * This fish has been fed teslium without the electrogenesis having trait. * Gives the electrogenesis, but at halved output, and it hurts the fish over time. @@ -1583,8 +1588,13 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai ///Attached to objects currently on tables and such, allowing them to walk on other objects without the climbing delay #define TRAIT_ON_CLIMBABLE "on_climbable" -/// Trait that allows mobs to perform surgery on themselves +/// Allows a mob to perform any operation on themselves (with a penalty), where normally only specific operations allow self-surgery. #define TRAIT_SELF_SURGERY "self_surgery" +/// This mob's surgical operations ignore ALL speed modifiers (even positive ones!) besides tool quality. +/// The mob can also no longer fail their operations, unless the operation says otherwise +#define TRAIT_IGNORE_SURGERY_MODIFIERS "ignore_surgery_modifiers" +/// Trait applied to mobs or bodyparts which allows for them to be operated on +#define TRAIT_READY_TO_OPERATE "ready_to_operate" /// Trait that makes mobs with it immune to mining gear AOE attacks #define TRAIT_MINING_AOE_IMMUNE "mining_aoe_immune" @@ -1598,7 +1608,17 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai /// Trait specifying that an AI has a remote connection to an integrated circuit #define TRAIT_CONNECTED_TO_CIRCUIT "connected_to_circuit" +/// Applied to an organ that has been operated on - some organs can't be operated on multiple times +#define TRAIT_ORGAN_OPERATED_ON "organ_operated_on" + /// Mob is artificially spawned rather than being created through more natural means - applied to monkey cubes and such #define TRAIT_SPAWNED_MOB "spawned_mob" +/// Turf is one that ai mobs will generally avoid pathing through +/// Doesn't need to be applied to any turfs that override can_cross_safely +#define TRAIT_AI_AVOID_TURF "warning_turf" + +/// Object is dangerous to mobs buckled to it +#define TRAIT_DANGEROUS_BUCKLE "dangerous_buckle" + // END TRAIT DEFINES diff --git a/code/__DEFINES/traits/sources.dm b/code/__DEFINES/traits/sources.dm index 14bf919dc62cea..153e7c389f02c4 100644 --- a/code/__DEFINES/traits/sources.dm +++ b/code/__DEFINES/traits/sources.dm @@ -30,6 +30,8 @@ #define PERSONALITY_TRAIT "personality_trait" /// (B)admins only. #define ADMIN_TRAIT "admin" +/// Traits that were granted via modify_traits in vv or the mass_modify_traits verb +#define TRAIT_ADMIN_GRANTED "adminabuse" /// Any traits given through a smite. #define SMITE_TRAIT "smite" #define CHANGELING_TRAIT "changeling" @@ -327,3 +329,9 @@ /// Permanent trait from an overdose effect #define OVERDOSE_TRAIT "overdose" + +/// Trait gained from bioware surgeries +#define BIOWARE_TRAIT "bioware" + +/// Trait gained from skeleton "limbs", such as husking from a butchered chest +#define SKELETON_TRAIT "skeleton" diff --git a/code/__DEFINES/transport.dm b/code/__DEFINES/transport.dm index 09d4f39280a8d8..0a36c27979dab7 100644 --- a/code/__DEFINES/transport.dm +++ b/code/__DEFINES/transport.dm @@ -19,6 +19,7 @@ #define HILBERT_LINE_1 "hilb_1" #define BIRDSHOT_LINE_1 "bird_1" #define BIRDSHOT_LINE_2 "bird_2" +#define HERETIC_LINE_1 "heretic_1" // Destinations/platforms #define TRAMSTATION_WEST 1 @@ -32,6 +33,10 @@ #define BIRDSHOT_PRISON_WING 1 #define BIRDSHOT_SECURITY_WING 2 +#define HERETIC_PORT 1 +#define HERETIC_CENTRAL 2 +#define HERETIC_STARBOARD 3 + #define BIRDSHOT_MAINTENANCE_LEFT 1 #define BRIDSHOT_MAINTENANCE_RIGHT 2 diff --git a/code/__DEFINES/weather.dm b/code/__DEFINES/weather.dm index 7cc84cc8a4ea8c..0bd041a497c736 100644 --- a/code/__DEFINES/weather.dm +++ b/code/__DEFINES/weather.dm @@ -35,7 +35,7 @@ GLOBAL_LIST_INIT(thunder_chance_options, list( "Regular - Standard Storm Activity" = THUNDER_CHANCE_AVERAGE, "Occasional - A polite amount of thunder" = THUNDER_CHANCE_RARE, "Rare - Like finding a four-leaf clover, but in the sky" = THUNDER_CHANCE_VERY_RARE, - "None - Admin Safe Space (Thunder Disabled)" = NONE, + "None - Admin Safe Space (Thunder Disabled)" = 0, )) //WEATHER FLAGS @@ -53,6 +53,17 @@ GLOBAL_LIST_INIT(thunder_chance_options, list( #define WEATHER_BAROMETER (1<<5) /// If weather temperature ignores clothing insulation when adjusting bodytemperature #define WEATHER_TEMPERATURE_BYPASS_CLOTHING (1<<6) +/// Alerts are only sent to people within affected area rather than on affected z-levels +#define WEATHER_STRICT_ALERT (1<<7) /// Does weather have any type of processing related to mobs, turfs, or thunder? #define FUNCTIONAL_WEATHER (WEATHER_TURFS|WEATHER_MOBS|WEATHER_THUNDER) + +// Indexes for weather_data list to override behaviors +#define WEATHER_FORCED_AREAS "Areas" +#define WEATHER_FORCED_FLAGS "Flags" +#define WEATHER_FORCED_REAGENT "Reagent" +#define WEATHER_FORCED_THUNDER "Thunder Chance" +#define WEATHER_FORCED_TELEGRAPH "Telegraph Duration" +#define WEATHER_FORCED_END "End Duration" +#define WEATHER_FORCED_DURATION "Weather Duration" diff --git a/code/__DEFINES/wounds.dm b/code/__DEFINES/wounds.dm index 47801d69aaa932..63c7fafec81188 100644 --- a/code/__DEFINES/wounds.dm +++ b/code/__DEFINES/wounds.dm @@ -80,12 +80,16 @@ GLOBAL_LIST_INIT(wound_severities_chronological, list( #define BIO_FLESH (1<<1) /// Has metal - allows the victim to suffer robotic blunt and burn wounds #define BIO_METAL (1<<2) +/// Has wood - should probably be able to catch on fire, or something +#define BIO_WOOD (1<<3) /// Is wired internally - allows the victim to suffer electrical wounds (robotic T1-T3 slash/pierce) -#define BIO_WIRED (1<<3) +#define BIO_WIRED (1<<4) /// Has bloodflow - can suffer bleeding wounds and can bleed -#define BIO_BLOODED (1<<4) +#define BIO_BLOODED (1<<5) /// Is connected by a joint - can suffer T1 bone blunt wounds (dislocation) -#define BIO_JOINTED (1<<5) +#define BIO_JOINTED (1<<6) +/// Skin is covered in thick chitin and is resistant to cutting +#define BIO_CHITIN (1<<7) /// Robotic - can suffer all metal/wired wounds, such as: UNIMPLEMENTED PLEASE UPDATE ONCE SYNTH WOUNDS 9/5/2023 ~Niko #define BIO_ROBOTIC (BIO_METAL|BIO_WIRED) /// Has flesh and bone - See BIO_BONE and BIO_FLESH @@ -94,6 +98,8 @@ GLOBAL_LIST_INIT(wound_severities_chronological, list( #define BIO_STANDARD_UNJOINTED (BIO_FLESH_BONE|BIO_BLOODED) /// Standard humanoid limbs - can bleed and suffer all flesh/bone wounds, such as: T1-3 slash/pierce/burn/blunt. Can also bleed, and be dislocated. Think human arms and legs #define BIO_STANDARD_JOINTED (BIO_STANDARD_UNJOINTED|BIO_JOINTED) +/// Xenomorph limbs (xenos are immune to wounds anyhow) +#define BIO_STANDARD_ALIEN (BIO_CHITIN|BIO_BONE|BIO_BLOODED|BIO_JOINTED) // "Where" a specific biostate is within a given limb // Interior is hard shit, the last line, shit like bones @@ -115,6 +121,7 @@ GLOBAL_LIST_INIT(bio_state_anatomy, list( "[BIO_METAL]" = ANATOMY_INTERIOR, "[BIO_FLESH]" = ANATOMY_EXTERIOR, "[BIO_BONE]" = ANATOMY_INTERIOR, + "[BIO_CHITIN]" = ANATOMY_EXTERIOR, )) // Wound series diff --git a/code/__HELPERS/_lists.dm b/code/__HELPERS/_lists.dm index 97ca579156e8b3..26dee9a5f22f70 100644 --- a/code/__HELPERS/_lists.dm +++ b/code/__HELPERS/_lists.dm @@ -541,6 +541,27 @@ . = pick_weight(list_to_pick) list_to_pick[.]-- +/** +* Picks n items from a list. The same index will not be chosen more than once. +* e.g. pick_n(list_of_stuff, 10) would return a list of 10 items from the list, chosen randomly. +*/ +/proc/pick_n(list/list_to_pick, n) + var/list_to_pick_length + if(islist(list_to_pick)) + list_to_pick_length = length(list_to_pick) + + if(!list_to_pick_length || n <= 0) + return list() + + /// length of our list_to_pick + n = min(n, list_to_pick_length) + + // Shuffle and slice the first n indices + var/list/copy_to_shuffle = list_to_pick.Copy() + shuffle_inplace(copy_to_shuffle) + + return copy_to_shuffle.Copy(1, n + 1) + /** * Given a list, return a copy where values without defined weights are given weight 1. * For example, fill_with_ones(list(A, B=2, C)) = list(A=1, B=2, C=1) @@ -657,7 +678,7 @@ return inserted_list -///same as shuffle, but returns nothing and acts on list in place +///same as shuffle, but acts on list in place, and returns same list /proc/shuffle_inplace(list/inserted_list) if(!inserted_list) return @@ -665,6 +686,8 @@ for(var/i in 1 to inserted_list.len - 1) inserted_list.Swap(i, rand(i, inserted_list.len)) + return inserted_list + ///Return a list with no duplicate entries /proc/unique_list(list/inserted_list) . = list() diff --git a/code/__HELPERS/abstract_types.dm b/code/__HELPERS/abstract_types.dm index 796f5d294e477e..5a1f800b5111a6 100644 --- a/code/__HELPERS/abstract_types.dm +++ b/code/__HELPERS/abstract_types.dm @@ -12,3 +12,7 @@ /// Like subtypesof, but automatically excludes abstract typepaths /proc/valid_subtypesof(datum/sometype) return subtypesof(sometype) - get_abstract_types() + +/// Like typesof, but automatically excludes abstract typepaths +/proc/valid_typesof(datum/sometype) + return typesof(sometype) - get_abstract_types() diff --git a/code/__HELPERS/ai.dm b/code/__HELPERS/ai.dm index 7e7179c39891d4..81595c3f8a72ab 100644 --- a/code/__HELPERS/ai.dm +++ b/code/__HELPERS/ai.dm @@ -28,15 +28,3 @@ top_force = item.force return top_force_item - -///returns if something can be consumed, drink or food -/proc/IsEdible(obj/item/thing) - if(!istype(thing)) - return FALSE - if(IS_EDIBLE(thing)) - return TRUE - if(istype(thing, /obj/item/reagent_containers/cup/glass/drinkingglass)) - var/obj/item/reagent_containers/cup/glass/drinkingglass/glass = thing - if(glass.reagents.total_volume) // The glass has something in it, time to drink the mystery liquid! - return TRUE - return FALSE diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm index 11548f468bdde5..ce482645ef76f7 100644 --- a/code/__HELPERS/areas.dm +++ b/code/__HELPERS/areas.dm @@ -6,7 +6,7 @@ GLOBAL_LIST_INIT(typecache_powerfailure_safe_areas, typecacheof(list( /area/station/engineering/main, /area/station/engineering/supermatter, /area/station/engineering/atmospherics_engine, - /area/station/ai_monitored/turret_protected/ai, + /area/station/ai/satellite/chamber, /area/ruin/comms_agent //fixes icemoon comms station being affected ))) diff --git a/code/__HELPERS/atmospherics.dm b/code/__HELPERS/atmospherics.dm index 9ebafd5fbb528e..6264823b7f2e22 100644 --- a/code/__HELPERS/atmospherics.dm +++ b/code/__HELPERS/atmospherics.dm @@ -173,16 +173,20 @@ GLOBAL_LIST_EMPTY(gas_handbook) return null /** - * A simple helped proc that checks if the contents of a list of gases are within acceptable terms. + * A simple helper proc that checks if the contents of a list of gases are within acceptable terms. * * Arguments: * * gases: The list of gases which contents are being checked - * * gases to check: An associated list of gas types and acceptable boundaries in moles. e.g. /datum/gas/oxygen = list(16, 30) + * * acceptable_gas_bounds: An associated list of gas types and acceptable boundaries in moles. e.g. /datum/gas/oxygen = list(16, 30) * * * if the assoc list is null, then it'll be considered a safe gas and won't return FALSE. * * extraneous_gas_limit: If a gas not in gases is found, this is the limit above which the proc will return FALSE. + * + * Returns TRUE if the list of gases is acceptable, FALSE otherwise. */ -/proc/check_gases(list/gases, list/gases_to_check, extraneous_gas_limit = 0.1) - gases_to_check = gases_to_check.Copy() +/proc/check_gases(list/gases, list/acceptable_gas_bounds, extraneous_gas_limit = 0.1) + SHOULD_BE_PURE(TRUE) + + var/list/gases_to_check = acceptable_gas_bounds.Copy() // thank you spaceman for(var/id in gases) var/gas_moles = gases[id][MOLES] if(!(id in gases_to_check)) diff --git a/code/__HELPERS/atoms.dm b/code/__HELPERS/atoms.dm index dfe731eddfed69..bf304813b24dca 100644 --- a/code/__HELPERS/atoms.dm +++ b/code/__HELPERS/atoms.dm @@ -370,14 +370,14 @@ rough example of the "cone" made by the 3 dirs checked /// Returns an x and y value require to reverse the transformations made to center an oversized icon /atom/proc/get_oversized_icon_offsets() - if (pixel_x == 0 && pixel_y == 0) + if (!base_pixel_x && !base_pixel_y && !base_pixel_w && !base_pixel_z) return list("x" = 0, "y" = 0) var/list/icon_dimensions = get_icon_dimensions(icon) var/icon_width = icon_dimensions["width"] var/icon_height = icon_dimensions["height"] return list( - "x" = icon_width > ICON_SIZE_X && pixel_x != 0 ? (icon_width - ICON_SIZE_X) * 0.5 : 0, - "y" = icon_height > ICON_SIZE_Y && pixel_y != 0 ? (icon_height - ICON_SIZE_Y) * 0.5 : 0, + "x" = icon_width > ICON_SIZE_X && (base_pixel_x || base_pixel_w) ? (icon_width - ICON_SIZE_X) * 0.5 : 0, + "y" = icon_height > ICON_SIZE_Y && (base_pixel_y || base_pixel_z) ? (icon_height - ICON_SIZE_Y) * 0.5 : 0, ) /// Helper for easily adding blood from INSIDE a mob to an atom (NOT blood ON the mob) diff --git a/code/__HELPERS/construction.dm b/code/__HELPERS/construction.dm index b2766952e1cbb5..49a048c01607c3 100644 --- a/code/__HELPERS/construction.dm +++ b/code/__HELPERS/construction.dm @@ -1,5 +1,5 @@ /// Makes sure only integer values are used when consuming, removing & checking for mats -#define OPTIMAL_COST(cost)(max(1, round(cost))) +#define OPTIMAL_COST(cost)(max(1, floor(cost))) /// Wrapper for fetching material references. Exists exclusively so that people don't need to wrap everything in a list every time. #define GET_MATERIAL_REF(arguments...) SSmaterials._GetMaterialRef(list(##arguments)) @@ -31,7 +31,7 @@ */ /proc/amount2sheet(amt) if(amt >= SHEET_MATERIAL_AMOUNT) - return round(amt / SHEET_MATERIAL_AMOUNT) + return floor(amt / SHEET_MATERIAL_AMOUNT) return 0 /** diff --git a/code/__HELPERS/fade_into_nothing.dm b/code/__HELPERS/fade_into_nothing.dm index d8df8ced78eb4e..eb84ababf528b0 100644 --- a/code/__HELPERS/fade_into_nothing.dm +++ b/code/__HELPERS/fade_into_nothing.dm @@ -1,8 +1,13 @@ /// Deletes the atom with a little fading out animation after a specified time /atom/proc/fade_into_nothing(life_time = 5 SECONDS, fade_time = 3 SECONDS) QDEL_IN(src, life_time) - if (life_time > fade_time && fade_time > 0) + if (fade_time <= 0) + return + + if (life_time > fade_time) addtimer(CALLBACK(src, PROC_REF(fade_into_nothing_animate), fade_time), life_time - fade_time, TIMER_DELETE_ME) + else + fade_into_nothing_animate(fade_time) /// Actually does the fade out, used by fade_into_nothing() /atom/proc/fade_into_nothing_animate(fade_time) diff --git a/code/__HELPERS/files.dm b/code/__HELPERS/files.dm index 6f28592b7fc805..fc2fca91a2d9ae 100644 --- a/code/__HELPERS/files.dm +++ b/code/__HELPERS/files.dm @@ -136,3 +136,46 @@ GLOBAL_VAR_INIT(fileaccess_timer, 0) if(.) . += delimiter // Add the delimiter before each successive node. . += SANITIZE_FILENAME(node) + +/** + * Verifys wether a string or file ends with a given file type. + * + * this does not at all check the actual type of the file, a user could just rename it + * + * Arguments: + * * file - A string or file. No checks for if this file ACCTALLY exists + * * file_types - A list of strings to check against [e.g. list("ogg" = TRUE, "mp3" = TRUE)] + */ +/proc/is_file_type_in_list(file, file_types = list()) + var/extstart = findlasttext("[file]", ".") + if(!extstart) + return FALSE + var/ext = copytext("[file]", extstart + 1) + if(file_types[ext]) + return TRUE + +/** + * Verifys wether a string or file ends with a given file type + * + * this does not at all check the actual type of the file, a user could just rename it + * + * Arguments: + * * file - A string or file. No checks for if this file ACCTALLY exists + * * file_type - A string to check against [e.g. "ogg"] + */ +/proc/is_file_type(file, file_type) + var/extstart = findlasttext("[file]", ".") + if(!extstart) + return FALSE + var/ext = copytext("[file]", extstart + 1) + if(ext == file_type) + return TRUE + +/proc/strip_filepath_extension(file, file_types) + var/extstart = findlasttext("[file]", ".") + if(!extstart) + return "[file]" + var/ext = copytext("[file]", extstart + 1) + if(ext in file_types) + return copytext("[file]", 1, extstart) + return "[file]" diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm index d0b871d41a04bc..46d8b7f4693b6b 100644 --- a/code/__HELPERS/global_lists.dm +++ b/code/__HELPERS/global_lists.dm @@ -2,14 +2,6 @@ /////Initial Building///// ////////////////////////// -/// Inits GLOB.surgeries -/proc/init_surgeries() - var/surgeries = list() - for(var/path in subtypesof(/datum/surgery)) - surgeries += new path() - sort_list(surgeries, GLOBAL_PROC_REF(cmp_typepaths_asc)) - return surgeries - /// Legacy procs that really should be replaced with proper _INIT macros /proc/make_datum_reference_lists() // I tried to eliminate this proc but I couldn't untangle their init-order interdependencies -Dominion/Cyberboss @@ -20,11 +12,9 @@ init_crafting_recipes_atoms() /// Inits crafting recipe lists -/proc/init_crafting_recipes(list/crafting_recipes) - for(var/path in subtypesof(/datum/crafting_recipe)) - if(ispath(path, /datum/crafting_recipe/stack)) - continue - var/datum/crafting_recipe/recipe = new path() +/proc/init_crafting_recipes() + for(var/datum/crafting_recipe_path as anything in valid_subtypesof(/datum/crafting_recipe)) + var/datum/crafting_recipe/recipe = new crafting_recipe_path() var/is_cooking = (recipe.category in GLOB.crafting_category_food) recipe.reqs = sort_list(recipe.reqs, GLOBAL_PROC_REF(cmp_crafting_req_priority)) if(recipe.name != "" && recipe.result) @@ -138,29 +128,21 @@ for(var/atom/req_atom as anything in recipe.structures) atom_list |= req_atom -//creates every subtype of prototype (excluding prototype) and adds it to list L. -//if no list/L is provided, one is created. +/// Creates every subtype of prototype (excluding prototype and abstract types) and adds it to list L. +/// If no list/L is provided, one is created. /proc/init_subtypes(prototype, list/L) if(!istype(L)) L = list() - for(var/path in subtypesof(prototype)) + for(var/path in valid_subtypesof(prototype)) L += new path() return L -//returns a list of paths to every subtype of prototype (excluding prototype) -//if no list/L is provided, one is created. -/proc/init_paths(prototype, list/L) - if(!istype(L)) - L = list() - for(var/path in subtypesof(prototype)) - L+= path - return L - /// Functions like init_subtypes, but uses the subtype's path as a key for easy access +/// If no list/L is provided, one is created. /proc/init_subtypes_w_path_keys(prototype, list/L) if(!istype(L)) L = list() - for(var/path in subtypesof(prototype)) + for(var/path in valid_subtypesof(prototype)) L[path] = new path() return L diff --git a/code/__HELPERS/hallucinations.dm b/code/__HELPERS/hallucinations.dm index 110a94e862d155..006497b4aa582c 100644 --- a/code/__HELPERS/hallucinations.dm +++ b/code/__HELPERS/hallucinations.dm @@ -41,8 +41,8 @@ GLOBAL_LIST_EMPTY(all_ongoing_hallucinations) CRASH("cause_hallucination called with no arguments.") var/datum/hallucination/hallucination_type = raw_args[HALLUCINATION_ARG_TYPE] // first arg is the type always - if(!ispath(hallucination_type)) - CRASH("cause_hallucination was given a non-hallucination type.") + if(!ispath(hallucination_type, /datum/hallucination)) + CRASH("cause_hallucination was given a non-hallucination type. (Got: [hallucination_type || "null"])") var/hallucination_source = raw_args[HALLUCINATION_ARG_SOURCE] // and second arg, the source var/datum/hallucination/new_hallucination diff --git a/code/__HELPERS/lighting.dm b/code/__HELPERS/lighting.dm index 086b0e99c4a474..4f1b29d436ade2 100644 --- a/code/__HELPERS/lighting.dm +++ b/code/__HELPERS/lighting.dm @@ -1,5 +1,3 @@ -#define TOPDOWN_TO_EMISSIVE_LAYER(layer) LERP(FLOOR_EMISSIVE_START_LAYER, FLOOR_EMISSIVE_END_LAYER, (layer - (TOPDOWN_LAYER + 1)) / TOPDOWN_LAYER_COUNT) - /// Produces a mutable appearance glued to the [EMISSIVE_PLANE] dyed to be the [EMISSIVE_COLOR]. /proc/emissive_appearance(icon, icon_state = "", atom/offset_spokesman, layer, alpha = 255, appearance_flags = NONE, offset_const, effect_type = EMISSIVE_BLOOM) if((isnull(layer) || layer == FLOAT_LAYER) && IS_TOPDOWN_PLANE(offset_spokesman.plane)) @@ -99,5 +97,3 @@ var/atom/movable/vis_cast = make_blocker vis_cast.vis_contents += hand_back return hand_back - -#undef TOPDOWN_TO_EMISSIVE_LAYER diff --git a/code/__HELPERS/logging/virus.dm b/code/__HELPERS/logging/virus.dm index 050ae9434e4793..b2ee4789107b8b 100644 --- a/code/__HELPERS/logging/virus.dm +++ b/code/__HELPERS/logging/virus.dm @@ -11,4 +11,4 @@ var/list/name_symptoms = list() for(var/datum/symptom/S in symptoms) name_symptoms += S.name - return "[name] - sym: [english_list(name_symptoms)] re:[totalResistance()] st:[totalStealth()] ss:[totalStageSpeed()] tr:[totalTransmittable()]" + return "[name] - sym: [english_list(name_symptoms)] re:[totalResistance()] st:[totalStealth()] ss:[totalStageSpeed()] tr:[totalTransmittable()] se:[totalSeverity()]" diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index b1210932f47ffc..a93f3d7402a1aa 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -205,8 +205,10 @@ GLOBAL_LIST_INIT(skin_tone_names, list( * @param {icon} icon - The icon file of the cog. Default: 'icons/effects/progressbar.dmi' * * @param {iconstate} iconstate - The icon state of the cog. Default: "Cog" + * + * @param {mob} bar_override - Mob which should see the bar instead of the user */ -/proc/do_after(mob/user, delay, atom/target, timed_action_flags = NONE, progress = TRUE, datum/callback/extra_checks, interaction_key, max_interact_count = 1, hidden = FALSE, icon = 'icons/effects/progressbar.dmi', iconstate = "cog") +/proc/do_after(mob/user, delay, atom/target, timed_action_flags = NONE, progress = TRUE, datum/callback/extra_checks, interaction_key, max_interact_count = 1, hidden = FALSE, icon = 'icons/effects/progressbar.dmi', iconstate = "cog", mob/bar_override = null) if(!user) return FALSE if(!isnum(delay)) @@ -240,11 +242,11 @@ GLOBAL_LIST_INIT(skin_tone_names, list( var/datum/cogbar/cog if(progress) - if(user.client) - progbar = new(user, delay, target || user) + if(user.client || bar_override?.client) + progbar = new(bar_override || user, delay, target || user) if(!hidden && delay >= 1 SECONDS) - cog = new(user, icon, iconstate) + cog = new(bar_override || user, icon, iconstate) SEND_SIGNAL(user, COMSIG_DO_AFTER_BEGAN) diff --git a/code/__HELPERS/names.dm b/code/__HELPERS/names.dm index 98693c646fe815..adfe9a54ca222d 100644 --- a/code/__HELPERS/names.dm +++ b/code/__HELPERS/names.dm @@ -397,10 +397,10 @@ GLOBAL_DATUM(syndicate_code_response_regex, /regex) return FALSE return TRUE -/// Build a list of strings containing the numbers 1-99 as both arabic and roman numerals +/// Generates and returns a list of both arabic and roman numerals for 1 through 99 /proc/generate_number_strings() - var/list/L[198] + var/list/numbers = list() for(var/i in 1 to 99) - L += "[i]" - L += "\Roman[i]" - return L + numbers += "[i]" + numbers += "\Roman[i]" + return numbers diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm index 9f7c95d42ea4f9..8e21e78b1b2554 100644 --- a/code/__HELPERS/roundend.dm +++ b/code/__HELPERS/roundend.dm @@ -289,12 +289,15 @@ GLOBAL_LIST_INIT(achievements_unlocked, list()) //stop collecting feedback during grifftime SSblackbox.Seal() - world.TgsTriggerEvent("tg-Roundend", wait_for_completion = TRUE) + TriggerRoundEndTgsEvent() sleep(5 SECONDS) ready_for_reboot = TRUE standard_reboot() +/datum/controller/subsystem/ticker/proc/TriggerRoundEndTgsEvent() + world.TgsTriggerEvent("tg-Roundend", wait_for_completion = TRUE) + /datum/controller/subsystem/ticker/proc/standard_reboot() if(ready_for_reboot) if(GLOB.station_was_nuked) @@ -523,9 +526,9 @@ GLOBAL_LIST_INIT(achievements_unlocked, list()) for(var/venue_path in SSrestaurant.all_venues) var/datum/venue/venue = SSrestaurant.all_venues[venue_path] tourist_income += venue.total_income - parts += "The [venue] served [venue.customers_served] customer\s and made [venue.total_income] credits.| ↳ Physical trauma: Dismembered | |||||
| [capitalize(limb.name)]: | " @@ -187,31 +187,34 @@ // Blood Info if(HAS_TRAIT(scanned, TRAIT_HUSK)) - autopsy_information += "Blood can't be found, subject is husked by: " - if(HAS_TRAIT_FROM(scanned, TRAIT_HUSK, BURN)) - autopsy_information += "Severe burns." - else if (HAS_TRAIT_FROM(scanned, TRAIT_HUSK, CHANGELING_DRAIN)) + autopsy_information += "Subject is husked by: " + if(HAS_TRAIT_FROM(scanned, TRAIT_HUSK, CHANGELING_DRAIN)) autopsy_information += "Desiccation, commonly caused by Changelings." - else + else if(HAS_TRAIT_FROM(scanned, TRAIT_HUSK, SKELETON_TRAIT)) + autopsy_information += "Stripped flesh." + else if(!HAS_TRAIT_FROM(scanned, TRAIT_HUSK, BURN)) // prioritize showing unknown causes over burns autopsy_information += "Unknown causes." - else - var/datum/blood_type/blood_type = scanned.get_bloodtype() - if(blood_type) - var/blood_percent = round((scanned.blood_volume / BLOOD_VOLUME_NORMAL) * 100) - var/blood_type_format - var/level_format - if(scanned.blood_volume <= BLOOD_VOLUME_SAFE && scanned.blood_volume > BLOOD_VOLUME_OKAY) - level_format = "LOW [blood_percent]%, [scanned.blood_volume] cl" - else if(scanned.blood_volume <= BLOOD_VOLUME_OKAY) - level_format = "CRITICAL [blood_percent]%, [scanned.blood_volume] cl" - else - level_format = "[blood_percent]%, [scanned.blood_volume] cl" - if(blood_type.get_type()) - blood_type_format = "type: [blood_type.get_type()]" - autopsy_information += "[blood_type.get_blood_name()] level: [level_format], [blood_type_format]" - var/blood_alcohol_content = scanned.get_blood_alcohol_content() - if(blood_alcohol_content > 0) - autopsy_information += "↳ [blood_type?.get_blood_name() || "Blood"] alcohol content: [blood_alcohol_content]%" + else + autopsy_information += "Severe burns." + + var/datum/blood_type/blood_type = scanned.get_bloodtype() + if(blood_type) + var/cached_blood_volume = scanned.get_blood_volume(apply_modifiers = TRUE) + var/blood_percent = round((cached_blood_volume / BLOOD_VOLUME_NORMAL) * 100) + var/blood_type_format + var/level_format + if(cached_blood_volume <= BLOOD_VOLUME_SAFE && cached_blood_volume > BLOOD_VOLUME_OKAY) + level_format = "LOW [blood_percent]%, [cached_blood_volume] cl" + else if(cached_blood_volume <= BLOOD_VOLUME_OKAY) + level_format = "CRITICAL [blood_percent]%, [cached_blood_volume] cl" + else + level_format = "[blood_percent]%, [cached_blood_volume] cl" + if(blood_type.get_type()) + blood_type_format = "type: [blood_type.get_type()]" + autopsy_information += "[blood_type.get_blood_name()] level: [level_format], [blood_type_format]" + var/blood_alcohol_content = scanned.get_blood_alcohol_content() + if(blood_alcohol_content > 0) + autopsy_information += "↳ [blood_type?.get_blood_name() || "Blood"] alcohol content: [blood_alcohol_content]%" autopsy_information += "|||||
| ↳ Physical trauma: [conditional_tooltip("Dismembered", "Reattach or replace surgically.", tochat)] | |||||