diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index cdd04e32c364..41cd2923af08 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -146,6 +146,28 @@ The previous code made compliant: code ``` +### Do not compare boolean values to TRUE or FALSE + +Do not compare boolean values to TRUE or FALSE. For TRUE you should just check if there's a value in that address. For FALSE you should use the ! operator. An exception is made to this when working with JS or other external languages. If a function/variable can contain more values beyond null/0 or TRUE, use numbers and defines instead of true/false comparisons. + +```dm +// Bad +var/thing = pick(list(TRUE, FALSE)) +if(thing == TRUE) + return "bleh" +var/other_thing = pick(list(TRUE, FALSE)) +if(other_thing == FALSE) + return "meh" + +// Good +var/thing = pick(list(TRUE, FALSE)) +if(thing) + return "bleh" +var/other_thing = pick(list(TRUE, FALSE)) +if(!other_thing) + return "meh" +``` + ### User Interfaces All new user interfaces in the game must be created using the TGUI framework. Documentation can be found inside the [`tgui/docs`](../tgui/docs) folder, and the [`README.md`](../tgui/README.md) file. This is to ensure all ingame UIs are snappy and respond well. An exception is made for user interfaces which are purely for OOC actions (Such as character creation, or anything admin related) @@ -154,6 +176,19 @@ All new user interfaces in the game must be created using the TGUI framework. Do The use of the `:` operator to override type safety checks is not allowed. You must cast the variable to the proper type. +### Do not access return value vars directly from functions + +The use of the pointer operator, `.`, should not be used to access the return values of functions directly. This can cause unintended behavior and is difficult to read. + +```dm +//Bad +var/our_x = get_turf(thing).x + +//Good +var/turf/our_turf = get_turf(thing) +var/our_x = our_turf.x +``` + ### Type paths must begin with a / eg: `/datum/thing`, not `datum/thing` @@ -354,7 +389,7 @@ This is clearer and enhances readability of your code! Get used to doing it! ### Player Output -Due to the use of "Goonchat", Paradise requires a special syntax for outputting text messages to players. Instead of `mob << "message"`, you must use `to_chat(mob, "message")`. Failure to do so will lead to your code not working. +Due to the use of "TGchat", Paradise requires a special syntax for outputting text messages to players. Instead of `mob << "message"`, you must use `to_chat(mob, "message")`. Failure to do so will lead to your code not working. ### Use early returns @@ -753,7 +788,7 @@ Each role inherits the lower role's responsibilities (IE: Headcoders also have c `Headcoders` are the overarching "administrators" of the repository. People included in this role are: * [farie82](https://github.com/farie82) -* [Fox P McCloud](https://github.com/Fox-McCloud) +* [Charliminator](https://github.com/hal9000PR) * [SteelSlayer](https://github.com/SteelSlayer) --- @@ -762,7 +797,6 @@ Each role inherits the lower role's responsibilities (IE: Headcoders also have c * [AffectedArc07](https://github.com/AffectedArc07) -* [Charliminator](https://github.com/hal9000PR) * [lewcc](https://github.com/lewcc) * [S34N](https://github.com/S34NW) @@ -776,6 +810,8 @@ Each role inherits the lower role's responsibilities (IE: Headcoders also have c * [Contrabang](https://github.com/Contrabang) * [Burzah](https://github.com/Burzah) * [DGamerL](https://github.com/DGamerL) +* [Warriorstar](https://github.com/warriorstar-orion) +* [Henri215](https://github.com/Henri215) --- diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 2d17e96659c2..56aff08b4fbb 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -4,8 +4,8 @@ blank_issues_enabled: false contact_links: - name: Feature Request - url: https://www.paradisestation.org/forum/60-suggestions/ - about: Please place all feature requests at the following link. (Paradise Station Forums) + url: https://discord.com/channels/1097181193939730453/1181261198096875670 + about: Запросы новых фич следует оставлять на форуме ss13-трекер в дискорде. - name: Exploit Reports - url: https://www.paradisestation.org/forum/179-exploit-reports/ - about: If your issue is an ingame exploit that allows players to gain an unfair advantage, or an issue which could affect server stability or security, please file it here so that it is safe from prying eyes. (Paradise Station Forums) + url: https://github.com/ss220club/Paradise-SS220/security + about: Критические баги, которые могут быть использованы со злыми намерениями следует оставлять по ссылке. diff --git a/.github/ISSUE_TEMPLATE/issue_report.yml b/.github/ISSUE_TEMPLATE/issue_report.yml index fd271a6f14b6..5374a25322e7 100644 --- a/.github/ISSUE_TEMPLATE/issue_report.yml +++ b/.github/ISSUE_TEMPLATE/issue_report.yml @@ -12,65 +12,55 @@ # name: "Issue Report" #title: "[Bug]: " | if you want to have a have it automatically say [Bug] when they start the form -description: "File an issue report to make us aware of a bug or issue." -#labels: [Bug] | Auto labels the post, as we do not use this, commenting out, purely as reference +description: "Доложите о проблемах или багах, что бы мы могли их исправить." +#labels: "Баг" body: - type: markdown attributes: - value: Thanks for taking the time to fill out this issue report! Don't forget to give it a meaningful title so users can find the report easily. - - type: checkboxes - id: not_an_exploit - attributes: - label: Exploit Reports - description: "[If your issue is an ingame exploit that allows players to gain an unfair advantage, or an issue which could affect server stability or security, please file it at this link so that it is safe from prying eyes.](https://www.paradisestation.org/forum/179-exploit-reports/)" - options: - - label: I confirm this issue is not an exploit. (Required) - required: true + value: Спасибо за оставленный отчёт! Не забудьте дать ему соответствующее проблеме название для упрощения работы другим. - type: input id: version attributes: label: BYOND Version - description: "What BYOND version were you using when the issue occured? (Find this by pressing the cog in the top-right of the main BYOND menu, then 'About BYOND...') (Required)" - validations: - required: true + description: "На какой версии BYOND встретился баг. (Если уверены, что не связано - можно пропустить.)" - type: textarea id: description attributes: - label: Issue Description - description: What is the problem? (Required) - placeholder: I tried buckling myself to a chair but ended up on lavaland! + label: Описание проблемы + description: В чем состоит суть проблемы? (Обязательное поле) + placeholder: Я сел на стул, от чего взорвался, а мой мозг оказался в душе на ЦК! validations: required: true - type: textarea id: what-expected attributes: - label: What did you expect to happen? - description: Why do you think this is an issue? - placeholder: I expected to be strapped to a chair. + label: Что должно было произойти? + description: Почему вы считаете это проблемой? + placeholder: Я ожидал, что я просто сяду на стул и буду сидеть. - type: textarea id: what-happened attributes: - label: What happened instead? - description: How is what happened different from what you expected? - placeholder: I got sent to lavaland and died. + label: Что случилось вместо этого? + description: Как произошедшее отличается от ваших ожиданий? + placeholder: Я умер и оказался на ЦК. - type: textarea id: why-bad attributes: - label: Why is this bad/What are the consequences? - description: Why do you think this is an important issue? - placeholder: People sitting in chairs on the station should not end up being devoured by drakes. + label: Почему это плохо/Какие последствия? + description: Почему вы считаете эту проблему значительной? + placeholder: Игроки должны иметь возможность сидеть на стульях, не взрываясь. - type: textarea id: how-to-reproduce attributes: - label: Steps to reproduce the issue. - description: The most important section. Review everything you did leading up to causing the issue. (Required) + label: Шаги для повторения проблемы. + description: Самая важная часть. Опишите ВСЁ, что вы делали, что бы встретиться с проблемой. (Обязательное поле) placeholder: Find a chair, buckle yourself into it, be eaten by dragon. validations: required: true @@ -78,22 +68,22 @@ body: - type: textarea id: when-problem-start attributes: - label: When did the problem start happening? - description: If your report is about something that used to work but no longer does, when was the last time you remember it working? (Required) - placeholder: I could sit fine last week, so sometime around then. + label: Когда проблема началась? + description: Если отчет связан с тем, что раньше работало иначе, опишите последний раз, когда механика работала корректно. (Обязательное поле) + placeholder: Я мог садиться на стулья без проблем неделю назад, так что примерно тогда. validations: required: true - type: textarea id: extra-information attributes: - label: Extra information - description: Anything else you can tell us. - placeholder: "I think this issue was introduced in the following PR https://github.com/ParadiseSS13/Paradise/pull/18477" + label: Дополнительная информация + description: Всё, что вы считаете важным/относящимся к проблеме. + placeholder: "Я думаю, что проблема начала появляться после этого PR https://github.com/ss220club/Paradise-SS220/pull/583" - type: textarea id: logs attributes: - label: Relevant log output/runtime error - description: Please copy and paste any relevant log output or runtime if you have access to this. Please censor any ckeys or IP addresses. + label: Связанные логи + description: Пожалуйста, предоставьте связанные логи или рантаймы, если имеете к ним доступ(Лучше цензурить IP адреса). render: DM diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index c853b70ade8d..031ba9f6b122 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -5,16 +5,18 @@ - + ## Почему это хорошо для игры ## Изображения изменений + ## Тестирование + ## Changelog diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5652bd39f35f..a294c4b493c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: $HOME/SpacemanDMM key: ${{ runner.os }}-spacemandmm @@ -38,10 +38,13 @@ jobs: python tools/ci/illegal_dme_files.py ${GITHUB_WORKSPACE} python -m tools.ci.check_icon_conflicts python -m tools.maplint.source --github - ~/dreamchecker > ${GITHUB_WORKSPACE}/output-annotations.txt 2>&1 + DREAMCHECKER_EXIT_CODE=0 + ~/dreamchecker > ${GITHUB_WORKSPACE}/output-annotations.txt 2>&1 || DREAMCHECKER_EXIT_CODE=$? + echo 'DREAMCHECKER_ANNOTATED=1' >> "$GITHUB_ENV" + exit $DREAMCHECKER_EXIT_CODE - name: Annotate Lints uses: yogstation13/DreamAnnotate@v2 - if: always() + if: ${{ always() && env.DREAMCHECKER_ANNOTATED == '1' }} with: outputFile: output-annotations.txt @@ -63,7 +66,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: $HOME/BYOND key: ${{ runner.os }}-byond @@ -72,7 +75,7 @@ jobs: tools/ci/install_byond.sh source $HOME/BYOND/byond/bin/byondsetup tools/ci/generate_maplist.sh - tools/ci/dm.sh -DCIMAP paradise.dme + DreamMaker -DMULTIINSTANCE -DCIMAP paradise.dme unit_tests_and_sql: name: Unit Tests + SQL Validation @@ -93,7 +96,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: $HOME/BYOND key: ${{ runner.os }}-byond @@ -112,7 +115,7 @@ jobs: run: | tools/ci/install_byond.sh '${{ matrix.byondtype }}' source $HOME/BYOND/byond/bin/byondsetup - tools/ci/dm.sh -DCIBUILDING paradise.dme + DreamMaker -DMULTIINSTANCE -DCIBUILDING paradise.dme echo '${{ matrix.maptype }}' > data/next_map.txt tools/ci/run_server.sh diff --git a/.vscode/extensions.json b/.vscode/extensions.json index b5147f210dd7..8046f3196652 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -7,6 +7,7 @@ "eamodio.gitlens", "usernamehw.errorlens", "anturk.dmi-editor", - "esbenp.prettier-vscode" + "esbenp.prettier-vscode", + "arcanis.vscode-zipfs" ] } diff --git a/.vscode/settings.json b/.vscode/settings.json index 9c4c5f94ab1f..e6261aec1a1a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,8 +4,16 @@ ], // ESLint settings: "eslint.workingDirectories": [ - "tgui/" + "./tgui" ], + "search.exclude": { + "**/.yarn": true, + "**/.pnp.*": true + }, + "eslint.nodePath": "tgui/.yarn/sdks", + "prettier.prettierPath": "tgui/.yarn/sdks/prettier/index.cjs", + "typescript.tsdk": "tgui/.yarn/sdks/typescript/lib", + "typescript.enablePromptUseWorkspaceTsdk": true, "eslint.rules.customizations": [ // We really want to fail the CI builds on styling errors, // but it's better to show them as yellow squigglies in IDE @@ -22,5 +30,6 @@ }, "[scss]": { "editor.rulers": [80] - } + }, + "editor.formatOnSave": true } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index dca695c03ccc..47c848d24001 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -14,7 +14,7 @@ "type": "shell", "command": "tgui/bin/tgui-build", "windows": { - "command": ".\\tgui\\bin\\tgui-build.bat" + "command": ".\\tgui\\bin\\tgui.bat" }, "problemMatcher": [ "$tsc", @@ -37,18 +37,5 @@ "label": "tgui: run dev server" } , - { - "type": "shell", - "command": "tgui/bin/tgui-formatting", - "windows": { - "command": ".\\tgui\\bin\\tgui-formatting.bat" - }, - "problemMatcher": [ - "$tsc", - "$eslint-stylish" - ], - "group": "build", - "label": "tgui: run prettier formatting" - } ] } diff --git a/README.md b/README.md index 8e91c5e0afc9..dd18e2cb1885 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # Paradise WyccStation SS220 -[![CI](https://github.com/ParadiseSS13/Paradise/workflows/CI/badge.svg)](https://github.com/ParadiseSS13/Paradise/actions?query=workflow%3ACI) -[![Render Nanomaps](https://github.com/ParadiseSS13/Paradise/workflows/Render%20Nanomaps/badge.svg)](https://github.com/ParadiseSS13/Paradise/actions?query=workflow%3A%22Render+Nanomaps%22) -[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/paradisess13/paradise.svg)](http://isitmaintained.com/project/paradisess13/paradise "Average time to resolve an issue") -[![Percentage of issues still open](http://isitmaintained.com/badge/open/paradisess13/paradise.svg)](http://isitmaintained.com/project/paradisess13/paradise "Percentage of issues still open") +[![CI](https://github.com/ss220club/Paradise-SS220/workflows/CI/badge.svg)](https://github.com/ss220club/Paradise-SS220/actions?query=workflow%3ACI) +[![Render Nanomaps](https://github.com/ss220club/Paradise-SS220/workflows/Render%20Nanomaps/badge.svg)](https://github.com/ss220club/Paradise-SS220/actions?query=workflow%3A%22Render+Nanomaps%22) +[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/ss220club/Paradise-SS220.svg)](https://isitmaintained.com/project/ss220club/Paradise-SS220 "Average time to resolve an issue") +[![Percentage of issues still open](http://isitmaintained.com/badge/open/ss220club/Paradise-SS220.svg)](https://isitmaintained.com/project/ss220club/Paradise-SS220 "Percentage of issues still open") [![forthebadge](http://forthebadge.com/images/badges/60-percent-of-the-time-works-every-time.svg)](http://forthebadge.com) [![forthebadge](http://forthebadge.com/images/badges/contains-technical-debt.svg)](http://forthebadge.com) diff --git a/_build_dependencies.sh b/_build_dependencies.sh index d146ad1c518d..058f897b55b6 100644 --- a/_build_dependencies.sh +++ b/_build_dependencies.sh @@ -2,15 +2,15 @@ # For dreamchecker export SPACEMANDMM_TAG=suite-1.7.1 # For TGUI -export NODE_VERSION=18 +export NODE_VERSION=20 # Stable Byond Major export STABLE_BYOND_MAJOR=515 # Stable Byond Minor -export STABLE_BYOND_MINOR=1620 +export STABLE_BYOND_MINOR=1630 # Beta Byond Major export BETA_BYOND_MAJOR=515 # Beta Byond Minor -export BETA_BYOND_MINOR=1620 +export BETA_BYOND_MINOR=1630 # Python version for mapmerge and other tools export PYTHON_VERSION=3.11.6 # RUSTG version diff --git a/_maps/map_files/Delta/delta.dmm b/_maps/map_files/Delta/delta.dmm index e8c0cb77cd02..4dae54a2a4f3 100644 --- a/_maps/map_files/Delta/delta.dmm +++ b/_maps/map_files/Delta/delta.dmm @@ -19,6 +19,31 @@ }, /turf/space, /area/station/maintenance/auxsolarstarboard) +"abD" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"abM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) "abQ" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/starboard2) @@ -120,7 +145,7 @@ "acC" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "acE" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -176,7 +201,7 @@ /area/station/security/execution) "adb" = ( /turf/simulated/wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "add" = ( /turf/simulated/wall/mineral/titanium, /area/shuttle/pod_1) @@ -208,11 +233,11 @@ /area/station/hallway/primary/central) "adt" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 + dir = 4 }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "adu" = ( /obj/machinery/atmospherics/portable/canister/air, /obj/machinery/atmospherics/unary/portables_connector{ @@ -220,7 +245,7 @@ }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "adx" = ( /obj/machinery/status_display{ pixel_x = 32 @@ -247,7 +272,7 @@ /area/shuttle/pod_1) "adN" = ( /turf/simulated/wall/r_wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "adO" = ( /obj/item/radio/intercom{ name = "east bump"; @@ -258,23 +283,40 @@ }, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_1) +"adU" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/distribution) +"adX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "adZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "aea" = ( /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aeb" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "aec" = ( /obj/item/kirbyplants, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -284,7 +326,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "aed" = ( /obj/docking_port/mobile/pod{ id = "pod1"; @@ -312,7 +354,14 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"aek" = ( +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "aet" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/structure/lattice, @@ -326,13 +375,13 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aez" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aeA" = ( /obj/machinery/light/small{ dir = 4 @@ -341,13 +390,17 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aeC" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) +"aeF" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood, +/area/station/medical/psych) "aeI" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -355,14 +408,14 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "aeJ" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aeK" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -375,10 +428,10 @@ "aeM" = ( /obj/machinery/door/airlock/external, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "aeN" = ( /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "aeO" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -390,13 +443,13 @@ pixel_x = 28 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "aeP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aeQ" = ( /obj/docking_port/mobile/pod{ dir = 4; @@ -423,7 +476,7 @@ "afb" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "afc" = ( /obj/structure/sign/pods{ pixel_x = -32 @@ -432,7 +485,7 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "afd" = ( /obj/machinery/status_display{ pixel_y = 32 @@ -454,7 +507,7 @@ pixel_x = -28 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "afg" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/auxsolarstarboard) @@ -463,7 +516,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "afj" = ( /obj/item/kirbyplants, /obj/effect/turf_decal/stripes/line{ @@ -474,26 +527,26 @@ pixel_x = 28 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "afk" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "afl" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "afm" = ( /turf/simulated/floor/plasteel{ dir = 5; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "afn" = ( /obj/item/radio/intercom{ name = "north bump"; @@ -543,7 +596,7 @@ dir = 8; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "afB" = ( /obj/structure/cable{ d1 = 2; @@ -556,7 +609,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "afC" = ( /obj/structure/cable{ d1 = 4; @@ -570,7 +623,7 @@ dir = 4; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "afJ" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -579,7 +632,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "afL" = ( /turf/simulated/floor/plasteel/white, /area/station/science/misc_lab) @@ -630,20 +683,22 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/machinery/alarm{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "age" = ( /obj/structure/sign/vacuum{ pixel_x = -32 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "agg" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -655,7 +710,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "agh" = ( /obj/machinery/status_display{ pixel_x = 32 @@ -671,7 +726,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "agk" = ( /obj/structure/window/reinforced, /obj/structure/shuttle/engine/heater{ @@ -682,6 +737,11 @@ }, /turf/simulated/floor/plating/airless, /area/shuttle/arrival/station) +"ago" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "agp" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -697,7 +757,7 @@ dir = 8; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "agq" = ( /obj/structure/cable{ d1 = 1; @@ -708,7 +768,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "agA" = ( /obj/structure/sign/vacuum{ pixel_x = -32 @@ -717,7 +777,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "agB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -726,7 +786,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "agC" = ( /obj/structure/sign/vacuum{ pixel_x = 32 @@ -738,7 +798,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "agD" = ( /turf/simulated/wall/mineral/titanium/nodiagonal, /area/shuttle/arrival/station) @@ -754,7 +814,7 @@ dir = 4; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "agJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -765,7 +825,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "agT" = ( /obj/item/clothing/suit/storage/hazardvest, /obj/item/clothing/suit/storage/hazardvest, @@ -797,17 +857,29 @@ /obj/machinery/cell_charger, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/arrival/station) -"ahg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"agZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/medical/storage/secondary) +"ahg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "ahh" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -826,10 +898,20 @@ d2 = 4; icon_state = "1-4" }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) +"ahm" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) "ahz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -839,7 +921,7 @@ locked = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "ahA" = ( /obj/machinery/door/airlock/external{ name = "Arrival Airlock" @@ -848,7 +930,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "ahB" = ( /obj/machinery/door/airlock/titanium{ id_tag = "s_docking_airlock" @@ -862,6 +944,21 @@ "ahC" = ( /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/arrival/station) +"ahD" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 8; + filter_type = 2 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "ahE" = ( /obj/machinery/door/airlock/titanium{ id_tag = "s_docking_airlock" @@ -880,7 +977,22 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) +"ahQ" = ( +/obj/machinery/airlock_controller/air_cycler{ + pixel_y = -25; + vent_link_id = "enginen_vent"; + ext_door_link_id = "enginen_door_ext"; + int_door_link_id = "enginen_door_int"; + ext_button_link_id = "enginen_btn_ext"; + int_button_link_id = "enginen_btn_int" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + autolink_id = "enginen_vent" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/west) "ahV" = ( /obj/item/kirbyplants, /turf/simulated/floor/mineral/titanium/blue, @@ -897,7 +1009,7 @@ /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "ail" = ( /obj/structure/chair/comfy/shuttle{ dir = 4 @@ -919,16 +1031,13 @@ /obj/item/kirbyplants, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aip" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "ait" = ( /obj/machinery/economy/atm{ pixel_y = -32 @@ -939,15 +1048,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aiE" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "aiF" = ( /obj/structure/chair{ dir = 8 @@ -955,7 +1069,7 @@ /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "aiG" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/ppflowers, @@ -969,14 +1083,20 @@ }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aiI" = ( /obj/structure/chair{ dir = 8 }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"aiL" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "aiX" = ( /obj/structure/chair{ dir = 4 @@ -984,17 +1104,17 @@ /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "ajd" = ( /obj/item/radio/beacon, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "ajf" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "ajq" = ( /obj/structure/cable{ d2 = 4; @@ -1007,7 +1127,7 @@ /obj/item/kirbyplants, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "ajD" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -1091,7 +1211,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aka" = ( /obj/machinery/light{ dir = 1 @@ -1106,15 +1226,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) -"aki" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/medical/virology) +/area/station/hallway/secondary/entry/east) "akw" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -1147,13 +1259,13 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "akQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ name = "Supply Break Room" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plating, /area/station/supply/office) "akY" = ( @@ -1186,19 +1298,29 @@ d2 = 4; icon_state = "2-4" }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "als" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "alt" = ( /obj/structure/sign/vacuum{ pixel_x = 32 @@ -1207,7 +1329,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "alv" = ( /obj/machinery/light/small{ dir = 1 @@ -1221,10 +1343,20 @@ "alx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aly" = ( /obj/machinery/status_display{ pixel_x = 32 @@ -1240,7 +1372,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "alG" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -1257,7 +1389,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "alH" = ( /obj/structure/computerframe, /turf/simulated/floor/mineral/titanium/blue, @@ -1404,24 +1536,41 @@ icon_state = "redyellowfull" }, /area/station/maintenance/fore2) +"amu" = ( +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "amz" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/important/directional/west, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "amA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "amB" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "amC" = ( /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, @@ -1479,18 +1628,23 @@ /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "amM" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "amN" = ( /obj/structure/sign/pods, /turf/simulated/wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "amP" = ( /obj/structure/cable{ d1 = 1; @@ -1559,22 +1713,22 @@ "ani" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plasteel{ - dir = 8; + dir = 9; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "ank" = ( -/turf/simulated/floor/plasteel/white/corner{ - dir = 4 +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/primary/aft/south) "anl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "ann" = ( /obj/machinery/light{ dir = 1 @@ -1583,13 +1737,8 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anp" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, /obj/machinery/camera{ c_tag = "Arrivals Hall Center" }, @@ -1597,11 +1746,12 @@ d2 = 2; icon_state = "0-2" }, +/obj/machinery/power/apc/important/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anr" = ( /obj/structure/cable{ d2 = 4; @@ -1624,27 +1774,31 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "ant" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "arrival" +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/area/station/hallway/secondary/entry) +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "anv" = ( /turf/simulated/floor/plasteel{ dir = 5; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "any" = ( /turf/simulated/wall/r_wall, /area/station/science/explab/chamber) @@ -1655,14 +1809,14 @@ }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anA" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/meat/slab{ +/obj/item/food/snacks/meat/slab{ pixel_x = 6; pixel_y = 11 }, -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/maintenance/fore2) @@ -1701,35 +1855,49 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/item/radio/intercom{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anL" = ( -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1742,10 +1910,15 @@ d2 = 8; icon_state = "2-8" }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1753,10 +1926,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/firealarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1764,19 +1947,34 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel/white/corner{ dir = 8 }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1784,10 +1982,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anU" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1797,10 +2000,15 @@ dir = 4 }, /obj/effect/landmark/lightsout, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anW" = ( /obj/machinery/camera{ c_tag = "Arrivals Hall Starboard"; @@ -1812,10 +2020,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anX" = ( /obj/structure/extinguisher_cabinet{ name = "south bump"; @@ -1827,30 +2040,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anY" = ( -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "anZ" = ( /turf/simulated/floor/plasteel{ dir = 6; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aoa" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/saltshaker, +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -4; pixel_y = 2 }, @@ -1886,7 +2099,7 @@ }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aof" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel/white/side, @@ -1951,13 +2164,13 @@ dir = 8; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aow" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aox" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_containers/iv_bag/blood/random, @@ -1976,13 +2189,13 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aoB" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aoC" = ( /turf/simulated/wall, /area/station/security/checkpoint/secondary) @@ -2092,7 +2305,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "apa" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, @@ -2173,15 +2386,15 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "apj" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "apk" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "apl" = ( /obj/structure/filingcabinet, /obj/machinery/firealarm{ @@ -2276,17 +2489,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "apv" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "apw" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -2423,11 +2641,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "apV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -2487,7 +2701,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqa" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, @@ -2498,21 +2712,21 @@ dir = 4 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqb" = ( /obj/structure/chair/comfy/brown, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqc" = ( /obj/item/kirbyplants, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqd" = ( /obj/structure/chair/comfy/brown, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2520,14 +2734,14 @@ }, /obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqe" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqg" = ( /obj/machinery/hologram/holopad, /obj/structure/cable{ @@ -2558,11 +2772,7 @@ }, /area/station/security/checkpoint/secondary) "aqj" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -2822,25 +3032,30 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqV" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqW" = ( /turf/simulated/floor/carpet, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aqY" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -2856,7 +3071,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "ara" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -2914,11 +3129,7 @@ /area/station/maintenance/fore2) "arg" = ( /obj/structure/chair/stool, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -3070,10 +3281,7 @@ /turf/simulated/floor/plasteel/grimy, /area/station/public/vacant_office) "arE" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/wood, /area/station/public/vacant_office) @@ -3188,7 +3396,7 @@ dir = 4 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "arP" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3198,7 +3406,22 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) +"arQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/spawner/nukedisc_respawn, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "arS" = ( /obj/structure/chair/office/dark{ dir = 8 @@ -3319,10 +3542,15 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "asj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3331,7 +3559,7 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "ask" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3342,7 +3570,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "asl" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -3443,14 +3671,19 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "asB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "asC" = ( /obj/structure/cable{ d1 = 1; @@ -3467,16 +3700,21 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "asE" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "asG" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -3622,20 +3860,25 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "asY" = ( /obj/effect/turf_decal/delivery/hollow, +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "asZ" = ( /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "ata" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -3759,7 +4002,7 @@ /area/station/maintenance/fore) "att" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood{ icon_state = "wood-broken" }, @@ -3860,7 +4103,7 @@ }, /obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "atD" = ( /obj/item/kirbyplants, /obj/machinery/newscaster{ @@ -3869,7 +4112,7 @@ pixel_y = -28 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "atE" = ( /obj/structure/chair/comfy/brown{ dir = 1 @@ -3879,13 +4122,13 @@ pixel_y = -28 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "atF" = ( /obj/structure/table/wood, /obj/item/folder, /obj/item/pen, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "atG" = ( /obj/structure/closet/wardrobe/red, /obj/machinery/newscaster/security_unit{ @@ -4174,10 +4417,7 @@ /area/station/maintenance/electrical_shop) "auo" = ( /obj/item/kirbyplants, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -4311,7 +4551,7 @@ dir = 8 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "auI" = ( /turf/simulated/floor/greengrid, /area/station/engineering/controlroom) @@ -4323,6 +4563,11 @@ /area/station/maintenance/fore2) "auK" = ( /obj/effect/spawner/window/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plating, /area/station/engineering/controlroom) "auL" = ( @@ -4426,14 +4671,14 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "avc" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "avd" = ( /obj/structure/cable{ d1 = 1; @@ -4457,7 +4702,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "avh" = ( /obj/machinery/light{ dir = 4 @@ -4465,7 +4710,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "avi" = ( /obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, @@ -4579,7 +4824,7 @@ /obj/item/clothing/gloves/color/black, /obj/item/clothing/glasses/meson, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "avz" = ( /obj/structure/cable{ @@ -4590,7 +4835,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "avA" = ( /obj/structure/cable{ @@ -4611,7 +4859,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "avB" = ( /obj/structure/cable{ @@ -4622,7 +4876,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "avC" = ( /obj/machinery/light/small{ @@ -4631,13 +4888,16 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "avE" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "avF" = ( /obj/structure/cable{ @@ -4646,24 +4906,12 @@ }, /turf/simulated/floor/plating, /area/station/engineering/controlroom) -"avG" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/station/engineering/controlroom) -"avI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) "avK" = ( /obj/structure/table/reinforced, /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/tank/internals/emergency_oxygen/engi, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "avL" = ( /obj/structure/sign/barsign{ @@ -4927,7 +5175,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "awi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4943,11 +5191,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "awj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4955,14 +5208,19 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable{ - d1 = 4; + d1 = 1; d2 = 8; - icon_state = "4-8" + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "awk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4981,7 +5239,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "awl" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -5000,7 +5258,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "awm" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall15a"; @@ -5023,7 +5281,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "awn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5034,7 +5292,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "awo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5042,7 +5300,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "awp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5050,7 +5308,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aws" = ( /obj/structure/cable{ d1 = 1; @@ -5171,28 +5429,10 @@ /obj/item/clothing/glasses/meson, /obj/item/analyzer, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) -"awH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "awI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "awJ" = ( /obj/structure/cable{ @@ -5200,33 +5440,9 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, -/area/station/engineering/controlroom) -"awL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, -/area/station/engineering/controlroom) -"awN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "awO" = ( /obj/structure/cable{ @@ -5234,18 +5450,10 @@ d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/greengrid, -/area/station/engineering/controlroom) -"awP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "caution" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/turf/simulated/floor/greengrid, /area/station/engineering/controlroom) "awQ" = ( /obj/structure/cable{ @@ -5256,9 +5464,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "awR" = ( /obj/structure/cable{ @@ -5266,35 +5472,7 @@ d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/controlroom) -"awS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, -/area/station/engineering/controlroom) -"awT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "awU" = ( /obj/structure/table/reinforced, @@ -5311,7 +5489,7 @@ icon_state = "2-8" }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "awV" = ( /obj/machinery/door/airlock/maintenance, @@ -5389,14 +5567,14 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "axi" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "axj" = ( /obj/structure/cable{ d1 = 1; @@ -5419,7 +5597,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "axl" = ( /obj/effect/spawner/window/reinforced/plasma, /turf/simulated/floor/plating, @@ -5629,10 +5807,7 @@ }, /area/station/maintenance/disposal) "axE" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/light/small{ dir = 4 }, @@ -5654,13 +5829,13 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "axG" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axI" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -5669,7 +5844,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axJ" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -5677,16 +5852,15 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/turf_decal/stripes/corner, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axK" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axL" = ( /obj/machinery/light, @@ -5694,14 +5868,14 @@ dir = 4 }, /obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axM" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axN" = ( /obj/item/radio/intercom{ @@ -5712,7 +5886,7 @@ dir = 4 }, /obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axO" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -5721,7 +5895,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axP" = ( /obj/structure/sign/electricshock{ @@ -5730,10 +5904,7 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axQ" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -5745,10 +5916,7 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axS" = ( /obj/structure/sign/nosmoking_2{ @@ -5760,17 +5928,16 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axT" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axU" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -5779,17 +5946,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) -"axV" = ( -/obj/machinery/atmospherics/trinary/filter{ - dir = 4; - filter_type = "o2"; - on = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axW" = ( /obj/item/kirbyplants, @@ -5802,7 +5959,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "axY" = ( /obj/structure/grille, @@ -5855,11 +6012,7 @@ }, /area/station/maintenance/fore) "ayh" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/closet/jcloset, /obj/structure/cable{ d2 = 2; @@ -5958,12 +6111,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) -"ayy" = ( -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "ayz" = ( /obj/structure/sign/directions/evac{ pixel_y = -8 @@ -5987,7 +6135,7 @@ "ayF" = ( /obj/item/kirbyplants, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "ayG" = ( /obj/structure/lattice, @@ -6008,28 +6156,19 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/disposal) -"ayI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) "ayJ" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; name = "Gas to Loop" }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "ayK" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "ayL" = ( /obj/machinery/ai_status_display, @@ -6056,13 +6195,11 @@ dir = 6 }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "ayR" = ( /obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "ayT" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -6071,7 +6208,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "ayV" = ( /obj/structure/cable/yellow{ @@ -6083,7 +6220,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "ayW" = ( /obj/effect/spawner/random_spawners/oil_maybe, @@ -6249,7 +6387,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "azw" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -6466,13 +6604,8 @@ /turf/simulated/floor/plating, /area/station/engineering/engine/supermatter) "azU" = ( -/obj/machinery/atmospherics/meter, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, +/obj/machinery/atmospherics/trinary/tvalve, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "azV" = ( /obj/structure/cable/yellow{ @@ -6480,11 +6613,10 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "azW" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -6493,7 +6625,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "azY" = ( /obj/structure/window/plasmareinforced{ @@ -6554,9 +6686,6 @@ /turf/space, /area/space/nearstation) "aAf" = ( -/obj/machinery/atmospherics/unary/thermomachine/heater/on{ - dir = 4 - }, /obj/machinery/camera{ c_tag = "Supermatter West"; dir = 4; @@ -6564,13 +6693,10 @@ pixel_y = -22 }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) -"aAg" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" +/obj/machinery/atmospherics/unary/thermomachine/heater/on{ + dir = 4 }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aAi" = ( /obj/structure/lattice/catwalk, @@ -6591,7 +6717,7 @@ /area/station/maintenance/fore) "aAk" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fore) @@ -6646,17 +6772,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "aAr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/secondary/entry) +/turf/simulated/wall, +/area/station/hallway/secondary/entry/south) "aAs" = ( /obj/item/reagent_containers/glass/bucket, /obj/item/mop, @@ -6716,7 +6833,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aAB" = ( /obj/machinery/firealarm{ dir = 8; @@ -6745,10 +6862,7 @@ }, /area/station/public/toilet) "aAD" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -6798,7 +6912,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aAI" = ( /obj/structure/table/wood, /obj/item/storage/fancy/crayons, @@ -7016,11 +7130,6 @@ d2 = 4; icon_state = "2-4" }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7029,7 +7138,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "aBf" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id_tag = "engsm" @@ -7048,13 +7157,6 @@ /obj/machinery/door/airlock/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) -"aBh" = ( -/obj/machinery/atmospherics/unary/thermomachine/freezer{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) "aBi" = ( /obj/structure/window/plasmareinforced{ dir = 4 @@ -7086,7 +7188,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aBk" = ( /obj/structure/window/plasmareinforced{ dir = 8 @@ -7114,7 +7216,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aBm" = ( /obj/structure/disposalpipe/segment{ @@ -7126,7 +7228,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aBn" = ( /obj/effect/turf_decal/arrows/black{ dir = 8 @@ -7145,10 +7247,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "aBp" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/light/small, /obj/structure/cable, /turf/simulated/floor/plasteel{ @@ -7361,7 +7460,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aBV" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -7378,7 +7477,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/visible, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aBX" = ( /obj/machinery/atmospherics/supermatter_crystal, @@ -7432,7 +7531,7 @@ dir = 4 }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aCf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7463,20 +7562,11 @@ }, /turf/simulated/floor/engine, /area/station/engineering/engine/supermatter) -"aCi" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) "aCj" = ( /obj/machinery/atmospherics/unary/portables_connector, /obj/machinery/atmospherics/portable/scrubber, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aCk" = ( /obj/structure/sign/securearea, @@ -7511,7 +7601,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aCr" = ( /obj/structure/reagent_dispensers/watertank, @@ -7708,7 +7799,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aCT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7727,27 +7819,16 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) -"aCV" = ( -/obj/machinery/atmospherics/meter, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aCW" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aCY" = ( /obj/machinery/atmospherics/meter, @@ -7773,33 +7854,28 @@ "aDc" = ( /obj/machinery/atmospherics/unary/portables_connector, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aDd" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aDe" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aDf" = ( -/obj/item/wrench, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aDh" = ( /obj/machinery/light{ @@ -7810,14 +7886,12 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aDi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7865,9 +7939,9 @@ /obj/structure/table, /obj/item/seeds/poppy/lily, /obj/item/seeds/poppy/geranium, -/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, /obj/item/grown/corncob, -/obj/item/reagent_containers/food/snacks/grown/apple, +/obj/item/food/snacks/grown/apple, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/maintenance/abandoned_garden) @@ -7889,9 +7963,9 @@ /obj/structure/table, /obj/item/stack/packageWrap, /obj/item/hand_labeler, -/obj/item/reagent_containers/food/snacks/grown/tea, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/cherries, +/obj/item/food/snacks/grown/tea, +/obj/item/food/snacks/grown/grapes, +/obj/item/food/snacks/grown/cherries, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/maintenance/abandoned_garden) @@ -7962,7 +8036,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aDA" = ( /obj/structure/cable{ d1 = 1; @@ -7970,7 +8044,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aDB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7982,11 +8056,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aDC" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -8005,11 +8084,16 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aDH" = ( /obj/effect/spawner/random_spawners/wall_rusted_always, /turf/simulated/wall, @@ -8119,17 +8203,6 @@ }, /turf/space, /area/station/maintenance/auxsolarport) -"aEd" = ( -/obj/machinery/atmospherics/trinary/filter{ - dir = 1; - filter_type = "n2"; - name = "nitrogen filter"; - on = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, -/area/station/engineering/controlroom) "aEe" = ( /obj/machinery/light{ dir = 8 @@ -8139,18 +8212,17 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aEf" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aEg" = ( /turf/simulated/floor/plasteel{ @@ -8161,11 +8233,7 @@ /obj/machinery/atmospherics/binary/pump{ name = "Gas to Filter" }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "Engineering Engine Super APC"; - pixel_x = -24; +/obj/machinery/power/apc/critical/directional/west{ shock_proof = 1 }, /obj/structure/cable/yellow{ @@ -8188,7 +8256,7 @@ "aEj" = ( /obj/machinery/atmospherics/binary/pump, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aEk" = ( /obj/structure/cable/yellow{ @@ -8204,20 +8272,12 @@ "aEl" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8; - name = "Nitrogen to Loop" + name = "Pure to Engine" }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) -"aEm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aEn" = ( /obj/structure/cable/yellow{ @@ -8232,7 +8292,8 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aEo" = ( /obj/machinery/atmospherics/unary/portables_connector{ @@ -8244,7 +8305,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/portable/scrubber, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aEp" = ( /obj/structure/lattice, @@ -8294,7 +8355,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aEy" = ( /obj/structure/cable{ d1 = 4; @@ -8328,10 +8389,7 @@ /turf/simulated/floor/plasteel, /area/station/service/janitor) "aED" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -8343,7 +8401,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "aEG" = ( /obj/structure/cable{ d1 = 1; @@ -8481,15 +8539,13 @@ dir = 1; name = "Gas to Thermo" }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aFd" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aFe" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -8503,22 +8559,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) -"aFf" = ( -/obj/machinery/atmospherics/trinary/filter{ - dir = 8; - filter_type = "n2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aFg" = ( /obj/structure/sign/fire, @@ -8538,15 +8579,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aFj" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aFk" = ( /obj/machinery/atmospherics/unary/portables_connector{ @@ -8558,22 +8597,7 @@ d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) -"aFl" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aFm" = ( /obj/machinery/hydroponics/soil, @@ -8631,7 +8655,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aFs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8685,29 +8709,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "aFC" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; pixel_x = 30 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aFD" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ @@ -8739,7 +8757,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aFI" = ( /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, @@ -8806,18 +8824,15 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aFW" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aFX" = ( /obj/machinery/atmospherics/binary/pump{ @@ -8838,7 +8853,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aFY" = ( /obj/machinery/camera{ @@ -8846,10 +8861,6 @@ network = list("SS13","Engineering") }, /obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -8858,8 +8869,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, -/area/station/engineering/engine/supermatter) +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "aFZ" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -8876,7 +8887,7 @@ name = "north bump"; pixel_y = 28 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aGa" = ( /obj/machinery/atmospherics/meter, @@ -8889,13 +8900,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aGb" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -8909,14 +8919,9 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aGc" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -8927,7 +8932,10 @@ icon_state = "1-8" }, /obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel, +/obj/machinery/power/apc/critical/directional/east{ + shock_proof = 1 + }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aGd" = ( /obj/structure/table/reinforced, @@ -8938,7 +8946,7 @@ }, /obj/item/tank/internals/plasma, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aGe" = ( /obj/structure/sink{ @@ -8971,9 +8979,7 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aGh" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -8982,20 +8988,18 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aGi" = ( /obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aGj" = ( /obj/structure/cable{ @@ -9081,11 +9085,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/service/bar) "aGw" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/light/small{ dir = 1 }, @@ -9153,7 +9153,7 @@ }, /obj/structure/table/wood, /obj/item/book/manual/barman_recipes, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/item/reagent_containers/glass/rag, /obj/machinery/requests_console{ department = "Bar"; @@ -9195,11 +9195,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/service/bar) "aGH" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -9208,7 +9204,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aGI" = ( /obj/structure/cable{ d1 = 1; @@ -9225,7 +9221,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aGJ" = ( /obj/machinery/alarm{ dir = 8; @@ -9236,7 +9232,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aGK" = ( /turf/simulated/wall, /area/station/supply/office) @@ -9296,14 +9292,6 @@ icon_state = "neutralfull" }, /area/station/security/permabrig) -"aGW" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/space, -/area/space/nearstation) "aGY" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/auxsolarport) @@ -9348,7 +9336,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aHd" = ( /obj/item/kirbyplants, @@ -9356,16 +9345,22 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/abandoned_garden) "aHe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"aHg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, /turf/simulated/floor/plasteel{ - icon_state = "yellowfull" + dir = 8; + icon_state = "whiteblue" }, -/area/station/engineering/controlroom) +/area/station/medical/storage) "aHh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9373,9 +9368,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aHj" = ( /obj/machinery/hydroponics/soil, @@ -9392,32 +9385,16 @@ icon_state = "yellowfull" }, /area/station/engineering/control) -"aHl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, -/area/station/engineering/controlroom) "aHn" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "yellowfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aHo" = ( /obj/machinery/atmospherics/binary/pump{ @@ -9427,7 +9404,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aHp" = ( /obj/structure/cable{ @@ -9438,14 +9415,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aHq" = ( /obj/structure/table, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/item/shovel/spade, /obj/item/reagent_containers/glass/bottle/nutrient/rh{ pixel_x = -4; @@ -9618,7 +9592,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "aHT" = ( /obj/machinery/conveyor{ dir = 4; @@ -9906,20 +9880,20 @@ /turf/simulated/floor/plasteel/dark, /area/station/maintenance/incinerator) "aIy" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/incinerator) "aIz" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, /obj/structure/cable{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/incinerator) "aIA" = ( @@ -9940,7 +9914,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aIC" = ( /obj/structure/cable{ @@ -9949,7 +9923,7 @@ icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aID" = ( /obj/structure/cable{ @@ -9958,7 +9932,7 @@ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aIE" = ( /obj/machinery/light, @@ -9971,7 +9945,7 @@ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aIF" = ( /obj/machinery/firealarm{ @@ -9985,7 +9959,7 @@ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aIG" = ( /obj/structure/cable{ @@ -9996,7 +9970,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aIH" = ( /obj/structure/cable{ @@ -10011,7 +9985,7 @@ d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aII" = ( /obj/structure/cable{ @@ -10020,7 +9994,7 @@ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aIM" = ( /obj/structure/barricade/wooden, @@ -10137,7 +10111,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aJd" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -10203,7 +10177,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aJt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10260,7 +10234,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aJE" = ( /obj/machinery/conveyor/south{ @@ -10277,7 +10251,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aJG" = ( /obj/structure/table/reinforced, @@ -10288,7 +10262,7 @@ pixel_y = -4 }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aJH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -10297,9 +10271,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aJI" = ( /obj/machinery/power/terminal{ @@ -10330,11 +10302,6 @@ /area/station/maintenance/auxsolarport) "aJN" = ( /obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10366,7 +10333,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -10378,24 +10344,32 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel, /area/station/maintenance/incinerator) "aJR" = ( /obj/machinery/power/terminal{ dir = 1 }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 }, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -10406,11 +10380,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -10631,7 +10601,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aKu" = ( /obj/machinery/hologram/holopad, /obj/structure/cable{ @@ -10645,7 +10615,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aKv" = ( /obj/machinery/light{ dir = 1 @@ -10674,7 +10644,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aKx" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -10758,6 +10728,17 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"aKQ" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) "aKR" = ( /obj/machinery/status_display{ pixel_y = 32 @@ -10852,10 +10833,7 @@ }, /area/station/maintenance/incinerator) "aLc" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -10884,22 +10862,23 @@ }, /area/station/maintenance/incinerator) "aLg" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 +/obj/machinery/atmospherics/binary/pump{ + name = "Mix to Turbine"; + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/maintenance/incinerator) "aLh" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "Mix to Turbine" - }, /obj/structure/cable{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -10910,6 +10889,15 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Port to Turbine" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -10925,17 +10913,16 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/maintenance/incinerator) "aLk" = ( /obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -10949,6 +10936,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -10960,6 +10950,9 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, /obj/effect/turf_decal/stripes/line{ dir = 5 }, @@ -10971,7 +10964,7 @@ /area/station/engineering/controlroom) "aLq" = ( /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "aLs" = ( /obj/effect/turf_decal/stripes/line{ @@ -10996,18 +10989,23 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/rack, +/obj/item/clothing/gloves/color/yellow, +/obj/item/multitool, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "aLw" = ( -/obj/machinery/power/terminal, /obj/structure/cable/yellow, +/obj/machinery/power/terminal{ + dir = 4 + }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 2; + icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, @@ -11321,37 +11319,33 @@ "aMv" = ( /turf/simulated/wall/r_wall, /area/station/security/execution) -"aMw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"aMx" = ( +/obj/structure/extinguisher_cabinet{ + name = "east bump"; + pixel_x = 30 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/area/station/medical/medbay) -"aMx" = ( -/obj/machinery/power/terminal, +/obj/structure/cable, /obj/structure/extinguisher_cabinet{ name = "east bump"; pixel_x = 30 }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + name = "east bump"; + pixel_x = 30 }, /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/turf/simulated/floor/plasteel, +/obj/machinery/power/smes, +/turf/simulated/floor/plasteel/dark, /area/station/engineering/controlroom) "aMz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11374,43 +11368,47 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel, /area/station/maintenance/incinerator) "aMC" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel, /area/station/maintenance/incinerator) "aMF" = ( /obj/machinery/atmospherics/meter, -/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel, /area/station/maintenance/incinerator) "aMG" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Port to Turbine" +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plasteel, /area/station/maintenance/incinerator) "aMH" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, /turf/simulated/floor/plasteel, /area/station/maintenance/incinerator) -"aMI" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel, -/area/station/maintenance/incinerator) -"aMJ" = ( -/obj/structure/sign/vacuum, -/turf/simulated/wall/r_wall, -/area/station/maintenance/incinerator) "aMK" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/delivery/hollow, @@ -11430,6 +11428,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "aMM" = ( +/obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -11486,43 +11485,31 @@ pixel_y = -32 }, /obj/machinery/computer/monitor{ - dir = 1; + dir = 4; name = "Engineering Power Monitoring Console" }, /obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/light/small{ + dir = 8 }, -/turf/simulated/floor/plasteel/dark, +/turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "aMT" = ( -/obj/machinery/light/small, -/obj/machinery/power/smes, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" +/obj/machinery/power/terminal{ + dir = 4 }, -/turf/simulated/floor/plasteel/dark, +/obj/structure/cable/yellow, +/turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "aMU" = ( -/obj/machinery/power/smes, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, /obj/item/radio/intercom{ name = "south bump"; pixel_y = -28 }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" +/obj/structure/cable, +/obj/machinery/power/smes, +/obj/structure/sign/electricshock{ + pixel_x = 32 }, /turf/simulated/floor/plasteel/dark, /area/station/engineering/controlroom) @@ -11710,6 +11697,13 @@ }, /turf/simulated/floor/plasteel, /area/station/supply/sorting) +"aNB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/plating, +/area/station/medical/coldroom) "aND" = ( /obj/structure/cable{ d1 = 1; @@ -11904,6 +11898,11 @@ /area/station/engineering/controlroom) "aOa" = ( /obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "caution" @@ -11925,14 +11924,10 @@ /area/station/service/bar) "aOd" = ( /obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 }, +/obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -11940,11 +11935,6 @@ icon_state = "neutralfull" }, /area/station/maintenance/incinerator) -"aOe" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/engineering/atmos) "aOf" = ( /obj/machinery/conveyor{ id = "cargodisposals" @@ -11964,10 +11954,6 @@ /obj/structure/sign/fire, /turf/simulated/wall/r_wall, /area/station/engineering/atmos) -"aOl" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/station/engineering/atmos) "aOo" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -11995,11 +11981,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/gambling_den) "aOt" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -12047,11 +12029,7 @@ /turf/simulated/floor/plasteel/grimy, /area/station/service/theatre) "aOC" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/light{ dir = 1 }, @@ -12285,10 +12263,6 @@ /obj/structure/sign/vacuum{ pixel_y = -32 }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -12296,22 +12270,26 @@ dir = 8; luminosity = 2 }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, /turf/simulated/floor/engine, /area/station/maintenance/incinerator) "aPm" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/power/compressor{ comp_id = "incineratorturbine"; dir = 4; luminosity = 2 }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/engine, /area/station/maintenance/incinerator) "aPn" = ( @@ -12319,18 +12297,18 @@ id = "Incinerator"; luminosity = 2 }, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, /turf/simulated/floor/engine, /area/station/maintenance/incinerator) "aPp" = ( -/obj/structure/cable{ +/obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" @@ -12338,14 +12316,14 @@ /turf/simulated/floor/engine, /area/station/maintenance/incinerator) "aPr" = ( -/obj/structure/cable{ +/obj/machinery/atmospherics/binary/valve{ + name = "Exhaust Reuse" + }, +/obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/binary/valve{ - name = "Exhaust Reuse" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -12357,6 +12335,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -12367,10 +12348,10 @@ name = "Exhaust Disposal" }, /obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; +/obj/structure/cable/yellow{ + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -12401,10 +12382,6 @@ /obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel, /area/station/public/storage/art) -"aPx" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plasteel/dark, -/area/station/engineering/atmos) "aPy" = ( /obj/machinery/light{ dir = 1 @@ -12433,6 +12410,11 @@ /area/station/service/theatre) "aPB" = ( /obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel{ dir = 4; @@ -12461,17 +12443,14 @@ c_tag = "Supermatter Entrance"; network = list("SS13","Engineering") }, -/obj/machinery/suit_storage_unit/atmos, /obj/effect/turf_decal/delivery/hollow, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "aPF" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -12547,11 +12526,7 @@ }, /area/station/service/janitor) "aPS" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -12607,11 +12582,11 @@ /area/station/service/bar) "aQc" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -7; pixel_y = 7 }, -/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/condiment/peppermill, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -12620,7 +12595,7 @@ /area/station/service/bar) "aQd" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -12631,11 +12606,7 @@ icon_state = "0-4" }, /obj/structure/table, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/item/stack/packageWrap, /obj/item/hand_labeler, /turf/simulated/floor/plasteel{ @@ -12723,15 +12694,6 @@ icon_state = "neutralfull" }, /area/station/supply/storage) -"aQo" = ( -/obj/structure/chair/comfy/lime{ - dir = 4 - }, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/station/medical/psych) "aQq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12913,10 +12875,6 @@ /turf/simulated/floor/engine, /area/station/maintenance/incinerator) "aQQ" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/reagent_containers/patch/silver_sulf, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -12927,9 +12885,6 @@ }, /area/station/maintenance/incinerator) "aQR" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, /obj/machinery/newscaster{ dir = 1; name = "south bump"; @@ -12995,40 +12950,41 @@ dir = 1 }, /obj/machinery/computer/atmos_alert, -/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "caution" }, /area/station/engineering/atmos) "aQX" = ( -/obj/structure/table/reinforced, +/obj/structure/rack, +/obj/item/painter, +/obj/item/painter, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, /obj/structure/window/reinforced{ dir = 1 }, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "caution" }, /area/station/engineering/atmos) "aQY" = ( -/obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/extinguisher, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "caution" @@ -13042,28 +12998,24 @@ }, /area/station/engineering/atmos) "aRa" = ( -/obj/structure/extinguisher_cabinet{ - name = "west bump"; - pixel_x = -30 - }, /obj/machinery/shower{ dir = 4 }, +/obj/structure/extinguisher_cabinet{ + name = "south bump"; + pixel_y = -30 + }, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "aRb" = ( -/obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/window/reinforced{ dir = 1 }, -/obj/item/airalarm_electronics, -/obj/item/airalarm_electronics, -/obj/item/firealarm_electronics, -/obj/item/firealarm_electronics, +/obj/structure/reagent_dispensers/watertank/high, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "caution" @@ -13079,6 +13031,10 @@ }, /obj/item/stack/cable_coil/random, /obj/item/stack/cable_coil/random, +/obj/item/firealarm_electronics, +/obj/item/firealarm_electronics, +/obj/item/firealarm_electronics, +/obj/item/firealarm_electronics, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "caution" @@ -13131,6 +13087,7 @@ }, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high, +/obj/item/toy/figure/crew/atmos, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "caution" @@ -13269,7 +13226,7 @@ /area/station/service/bar) "aRC" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/cheesiehonkers, +/obj/item/food/snacks/cheesiehonkers, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -13296,16 +13253,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) -"aRK" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aRL" = ( /obj/structure/table, /obj/machinery/firealarm{ @@ -13421,7 +13369,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aRX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13442,17 +13390,6 @@ "aSb" = ( /turf/simulated/wall, /area/station/supply/qm) -"aSc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) "aSd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, @@ -13465,7 +13402,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "aSh" = ( /obj/machinery/computer/security{ dir = 4; @@ -13547,6 +13484,24 @@ icon_state = "red" }, /area/station/security/permabrig) +"aSu" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "aSw" = ( /obj/machinery/conveyor/west{ id = "QMLoad2" @@ -13611,16 +13566,6 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) -"aSF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "aSG" = ( /obj/structure/chair/office/dark{ dir = 1 @@ -13812,7 +13757,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "aTa" = ( /obj/structure/cable{ d1 = 4; @@ -13823,7 +13768,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "aTb" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -13925,7 +13870,7 @@ dir = 4 }, /turf/simulated/floor/plasteel/goonplaque, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aTk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14058,11 +14003,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" @@ -14287,9 +14228,6 @@ }, /obj/item/stack/packageWrap, /obj/item/hand_labeler, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "caution" @@ -14299,9 +14237,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -14315,39 +14250,6 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"aUa" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Port to Turbine" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"aUb" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Port to Filter" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) "aUc" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -14428,7 +14330,7 @@ }, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "aUj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -14501,11 +14403,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aUw" = ( /obj/structure/chair/stool{ dir = 1 @@ -14531,11 +14438,16 @@ dir = 8; icon_state = "pipe-c" }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aUB" = ( /obj/structure/chair/stool{ dir = 1 @@ -14607,6 +14519,7 @@ }, /area/station/service/bar) "aUM" = ( +/obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel/dark, /area/station/engineering/atmos) @@ -14702,11 +14615,7 @@ icon_state = "0-2" }, /obj/structure/table, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/item/paper_bin, /turf/simulated/floor/plasteel{ dir = 1; @@ -14844,6 +14753,13 @@ /obj/machinery/computer/supplycomp{ dir = 8 }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Quartermaster's Desk"; + departmentType = 5; + name = "Quartermaster Requests Console"; + pixel_x = 30 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -15087,15 +15003,6 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"aVG" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) "aVH" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -15105,47 +15012,10 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"aVI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "caution" - }, -/area/station/engineering/atmos) -"aVJ" = ( -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics North"; - dir = 1; - network = list("SS13","Engineering") - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "caution" - }, -/area/station/engineering/atmos) "aVK" = ( /obj/effect/spawner/random_spawners/wall_rusted_maybe, /turf/simulated/wall, /area/station/maintenance/fore) -"aVL" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "caution" - }, -/area/station/engineering/atmos) "aVM" = ( /obj/structure/cable{ d1 = 1; @@ -15156,7 +15026,7 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "caution" + icon_state = "neutralfull" }, /area/station/engineering/atmos) "aVN" = ( @@ -15221,18 +15091,6 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) -"aVY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/fore) "aVZ" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -15248,7 +15106,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aWb" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/yellow/fake, @@ -15268,14 +15126,14 @@ /area/station/supply/miningdock) "aWg" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, +/obj/item/food/snacks/chips, /turf/simulated/floor/plasteel{ icon_state = "bar" }, /area/station/service/bar) "aWh" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb, +/obj/item/reagent_containers/drinks/cans/dr_gibb, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -15284,7 +15142,7 @@ /area/station/service/bar) "aWi" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/britcup, +/obj/item/reagent_containers/drinks/britcup, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -15302,17 +15160,21 @@ }, /area/station/service/bar) "aWl" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" + icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/starboard/west) "aWm" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -15323,16 +15185,12 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aWn" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/plasteel{ @@ -15373,7 +15231,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aWr" = ( /obj/structure/cable{ d1 = 4; @@ -15621,12 +15479,12 @@ }, /area/station/supply/qm) "aWJ" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, /obj/machinery/computer/card/minor/qm{ dir = 8 }, +/obj/machinery/keycard_auth{ + pixel_x = 25 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -15804,20 +15662,16 @@ /turf/simulated/floor/plasteel/dark, /area/station/engineering/atmos) "aXi" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) -"aXj" = ( -/obj/machinery/atmospherics/unary/thermomachine/heater{ +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "aXk" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ @@ -15827,49 +15681,14 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"aXl" = ( -/obj/machinery/atmospherics/meter, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"aXm" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"aXn" = ( -/obj/machinery/ai_status_display, -/turf/simulated/wall, -/area/station/engineering/atmos) "aXo" = ( /turf/simulated/wall, /area/station/engineering/atmos) "aXq" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/station/engineering/atmos) -"aXr" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 }, +/obj/machinery/atmospherics/meter, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -15929,7 +15748,7 @@ dir = 8; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "aXA" = ( /obj/machinery/camera{ c_tag = "Service Hall Middle"; @@ -15939,7 +15758,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "aXB" = ( /obj/structure/table/wood, /obj/item/staff/broom, @@ -16096,13 +15915,11 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aYa" = ( /obj/item/radio/intercom{ name = "north bump"; @@ -16133,7 +15950,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "aYe" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16145,7 +15962,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "aYf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16193,7 +16010,6 @@ }, /obj/item/gps/mining, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/keycard_auth, /obj/item/toy/figure/crew/qm, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -16203,6 +16019,9 @@ /obj/machinery/computer/security/mining{ dir = 8 }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -16239,12 +16058,7 @@ }, /area/station/security/permabrig) "aYt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -16268,15 +16082,6 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) -"aYz" = ( -/obj/machinery/atmospherics/unary/thermomachine/heater/on{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) "aYA" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 @@ -16306,13 +16111,12 @@ }, /area/station/service/kitchen) "aYD" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/lightreplacer, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/machinery/atmospherics/unary/thermomachine/heater/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" }, -/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "aYE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16322,59 +16126,6 @@ icon_state = "redfull" }, /area/station/service/kitchen) -"aYF" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "caution" - }, -/area/station/engineering/atmos) -"aYG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"aYH" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/machinery/newscaster{ - dir = 8; - name = "east bump"; - pixel_x = 28 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "caution" - }, -/area/station/engineering/atmos) -"aYI" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "aYJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -16501,9 +16252,6 @@ dir = 8; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; @@ -16515,21 +16263,19 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "aYY" = ( /obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "aYZ" = ( /turf/simulated/wall, /area/station/service/kitchen) @@ -16568,11 +16314,16 @@ c_tag = "Fore Hallway South"; dir = 4 }, +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "aZe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16640,9 +16391,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -16715,11 +16471,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/machinery/camera{ c_tag = "Cargo Dock SouthWest"; dir = 4 @@ -16811,6 +16563,10 @@ icon_state = "brown" }, /area/station/supply/qm) +"aZE" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/medical/storage) "aZG" = ( /obj/machinery/camera{ c_tag = "Perma-Brig Hallway Port"; @@ -16935,12 +16691,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -16994,7 +16745,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "bad" = ( /obj/structure/cable{ d1 = 4; @@ -17040,10 +16791,10 @@ /turf/simulated/floor/plasteel/dark, /area/station/engineering/atmos) "bam" = ( -/obj/machinery/atmospherics/unary/portables_connector{ +/obj/structure/chair/stool{ dir = 4 }, -/obj/effect/turf_decal/delivery/hollow, +/obj/effect/landmark/start/atmospheric, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -17053,33 +16804,6 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"bao" = ( -/obj/machinery/atmospherics/meter, -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"bap" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 8 - }, -/obj/machinery/atmospherics/portable/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) -"baq" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "bar" = ( /obj/structure/cable{ d1 = 1; @@ -17092,14 +16816,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) -"bas" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/suit_storage_unit/atmos, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/hallway/primary/fore/east) "bau" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -17201,7 +16918,6 @@ /area/station/service/hydroponics) "baG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -17212,11 +16928,14 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "baH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/welded, @@ -17243,7 +16962,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "baM" = ( /obj/structure/kitchenspike, /obj/effect/turf_decal/delivery/hollow, @@ -17323,7 +17042,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "baV" = ( /obj/machinery/light{ dir = 8 @@ -17651,10 +17370,7 @@ }, /area/station/security/permabrig) "bby" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17698,7 +17414,7 @@ dir = 1; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bbD" = ( /obj/machinery/light/small, /obj/structure/sign/securearea{ @@ -17720,7 +17436,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "bbF" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -17815,42 +17531,14 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"bbP" = ( -/obj/effect/landmark/start/atmospheric, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) "bbQ" = ( /obj/machinery/atmospherics/trinary/filter{ - dir = 1; - filter_type = "" - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"bbR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 + dir = 1 }, -/obj/structure/closet/secure_closet/atmos_personal, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) -"bbS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/atmospheric, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"bbT" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "bbU" = ( /obj/effect/mapping_helpers/airlock/windoor/access/any/security/forensics{ dir = 4 @@ -17863,9 +17551,6 @@ /area/station/security/detective) "bbV" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, /obj/effect/landmark/start/atmospheric, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -17948,18 +17633,25 @@ /turf/simulated/floor/plasteel, /area/station/service/hydroponics) "bck" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "bcl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -17978,7 +17670,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "bcp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ @@ -18051,13 +17743,13 @@ dir = 1; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bcC" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bcD" = ( /obj/machinery/light{ dir = 8 @@ -18124,7 +17816,7 @@ dir = 5; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bcN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18133,10 +17825,10 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bcP" = ( /turf/simulated/wall, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bcV" = ( /obj/structure/rack, /obj/item/clothing/suit/straight_jacket, @@ -18286,26 +17978,6 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"bdq" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) -"bdr" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"bds" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/suit_storage_unit/atmos, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "bdt" = ( /obj/structure/window/reinforced{ dir = 4 @@ -18372,7 +18044,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bdB" = ( /obj/structure/cable{ d1 = 4; @@ -18453,7 +18125,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "bdH" = ( /obj/structure/cable{ d1 = 4; @@ -18470,7 +18142,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "bdJ" = ( /obj/structure/cable{ d1 = 4; @@ -18584,30 +18256,34 @@ /area/station/service/kitchen) "bdU" = ( /turf/simulated/wall, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bdV" = ( /obj/structure/table, /obj/item/paper_bin, /obj/item/pen, -/obj/machinery/light{ - dir = 8 - }, /obj/item/radio/intercom{ name = "west bump"; pixel_x = -28 }, +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bdW" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bdX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18617,13 +18293,13 @@ dir = 1; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bdY" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bdZ" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -18640,7 +18316,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "beb" = ( /obj/effect/turf_decal/arrows/black{ dir = 1 @@ -18652,7 +18328,7 @@ dir = 4; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bec" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -18663,7 +18339,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bed" = ( /obj/effect/turf_decal/delivery/partial{ dir = 1 @@ -18798,42 +18474,15 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"beK" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) -"beL" = ( -/obj/machinery/firealarm{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/closet/secure_closet/atmos_personal, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "beM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Port Mix to Starboard Ports" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"beO" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "beP" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/turf_decal/stripes/line{ @@ -18919,10 +18568,7 @@ }, /area/station/service/hydroponics) "beZ" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "greenblue" @@ -18963,7 +18609,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "bfd" = ( /obj/machinery/light/small{ dir = 4 @@ -19003,10 +18649,7 @@ }, /area/station/service/kitchen) "bfh" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel{ @@ -19051,11 +18694,11 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bfq" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bfr" = ( /obj/structure/chair{ dir = 4 @@ -19065,7 +18708,7 @@ dir = 8; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bft" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19073,12 +18716,12 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bfu" = ( /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bfv" = ( /obj/structure/cable{ d1 = 1; @@ -19155,7 +18798,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bfF" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -19173,7 +18816,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bfH" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -19242,6 +18885,17 @@ icon_state = "vault" }, /area/station/security/permabrig) +"bfW" = ( +/obj/machinery/alarm{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "bfZ" = ( /obj/effect/landmark/start/shaft_miner, /obj/effect/turf_decal/delivery/partial{ @@ -19275,18 +18929,6 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"bgd" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Port Mix to Starboard Ports" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) "bge" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/stripes/line{ @@ -19331,10 +18973,13 @@ }, /area/station/engineering/atmos) "bgj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, +/obj/machinery/atmospherics/binary/pump{ + dir = 0; + name = "Pure to Engine" + }, /turf/simulated/floor/plasteel/dark, /area/station/engineering/atmos) "bgl" = ( @@ -19410,7 +19055,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bgx" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -19418,7 +19063,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bgy" = ( /obj/machinery/light{ dir = 8 @@ -19430,16 +19075,16 @@ }, /area/station/service/kitchen) "bgA" = ( -/obj/structure/table/reinforced, /obj/item/storage/bag/tray, /obj/effect/turf_decal/delivery/hollow, +/obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/station/service/kitchen) "bgB" = ( -/obj/structure/table/reinforced, /obj/effect/turf_decal/delivery/hollow, +/obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, @@ -19449,13 +19094,13 @@ dir = 8; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bgD" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bgE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -19470,7 +19115,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bgF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -19485,13 +19130,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bgG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bgH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -19506,7 +19151,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bgJ" = ( /turf/simulated/wall, /area/station/command/office/ce) @@ -19630,35 +19275,12 @@ /obj/structure/rack, /turf/simulated/floor/plasteel, /area/station/security/armory/secure) -"bhj" = ( -/obj/machinery/atmospherics/meter, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) "bhk" = ( -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "caution" - }, -/area/station/engineering/atmos) -"bhl" = ( -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "caution" + icon_state = "neutralfull" }, /area/station/engineering/atmos) "bhm" = ( @@ -19672,24 +19294,18 @@ /turf/simulated/floor/plasteel, /area/station/public/storage/tools) "bhn" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ +/obj/machinery/atmospherics/binary/pump{ dir = 1; - icon_state = "caution" + name = "Air to Ports" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" }, /area/station/engineering/atmos) "bho" = ( -/obj/structure/extinguisher_cabinet{ - name = "north bump"; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics South"; - network = list("SS13","Engineering") - }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "caution" + icon_state = "neutralfull" }, /area/station/engineering/atmos) "bhp" = ( @@ -19699,7 +19315,9 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bhr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, /turf/simulated/floor/plasteel/dark, /area/station/engineering/atmos) "bht" = ( @@ -19786,7 +19404,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "bhH" = ( /obj/machinery/smartfridge, /turf/simulated/floor/plasteel, @@ -19818,9 +19436,9 @@ }, /area/station/service/kitchen) "bhN" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/condiment/flour, /obj/effect/turf_decal/delivery/hollow, +/obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -19830,7 +19448,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bhP" = ( /obj/structure/cable{ d1 = 1; @@ -19846,22 +19464,27 @@ /obj/structure/disposalpipe/junction{ dir = 1 }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bhQ" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/dough, +/obj/item/food/snacks/dough, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/turf_decal/delivery/hollow, +/obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, /area/station/service/kitchen) "bhR" = ( -/obj/structure/table/reinforced, /obj/effect/turf_decal/delivery/hollow, +/obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -19876,11 +19499,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bhT" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19892,12 +19520,12 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bhU" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bhV" = ( /obj/structure/cable{ d1 = 4; @@ -19930,19 +19558,19 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bhX" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "bhY" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "browncorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bhZ" = ( /obj/structure/cable{ d1 = 1; @@ -20294,7 +19922,7 @@ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "biK" = ( /turf/simulated/floor/engine/n20, /area/station/engineering/atmos) @@ -20322,63 +19950,51 @@ icon_state = "escape" }, /area/station/engineering/atmos) -"biO" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Pure to Ports" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) "biP" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Mix to Ports" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/engineering/atmos) "biQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Air to Ports" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/railing/cap{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/engineering/atmos) "biR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/railing/cap, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -20390,20 +20006,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/engineering/atmos) "biT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -20417,12 +20043,20 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/effect/turf_decal/delivery/hollow, -/obj/effect/turf_decal/delivery/hollow, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -20431,14 +20065,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10; + initialize_directions = 10 }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -20595,7 +20231,7 @@ dir = 8; icon_state = "greenblue" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "bjo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20607,7 +20243,7 @@ dir = 4; icon_state = "whitehall" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "bjq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20663,21 +20299,6 @@ icon_state = "redfull" }, /area/station/service/kitchen) -"bju" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/obj/item/clipboard, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) "bjw" = ( /obj/effect/landmark/start/chef, /turf/simulated/floor/plasteel{ @@ -20704,16 +20325,21 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bjC" = ( /obj/structure/chair{ dir = 4 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bjD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ @@ -20736,7 +20362,7 @@ dir = 4; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bjG" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical, @@ -20858,7 +20484,11 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) +"bka" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) "bkd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -20966,10 +20596,7 @@ "bkn" = ( /obj/structure/table/wood, /obj/item/folder/red, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/light/small{ dir = 4 }, @@ -21052,48 +20679,50 @@ }, /turf/simulated/floor/engine/n20, /area/station/engineering/atmos) -"bkz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "bkA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/meter, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bkB" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bkC" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/pump, +/obj/structure/railing{ + dir = 8 + }, /obj/machinery/atmospherics/meter, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/meter, +/obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bkE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/atmospherics/portable/scrubber, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bkF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 }, -/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bkG" = ( @@ -21117,39 +20746,28 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/fore) "bkI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/purple, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bkJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/engineering/atmos) "bkK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 }, /obj/effect/turf_decal/stripes/corner, /turf/simulated/floor/plasteel, @@ -21167,13 +20785,18 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bkN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bkO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -21183,10 +20806,7 @@ /obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/binary/pump{ - dir = 0; - name = "Pure to SM" - }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plasteel/dark, /area/station/engineering/atmos) "bkQ" = ( @@ -21239,24 +20859,17 @@ /turf/simulated/floor/plasteel, /area/station/service/hydroponics) "blc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "greenblue" +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/area/station/hallway/primary/fore) +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "bld" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "red" +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/area/station/hallway/primary/fore) +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "ble" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ @@ -21282,13 +20895,13 @@ /turf/simulated/floor/plasteel, /area/station/service/kitchen) "bli" = ( -/obj/structure/table/reinforced, /obj/item/storage/box/papersack, /obj/item/storage/box/papersack, /obj/item/storage/box/papersack, /obj/item/storage/box/papersack, /obj/item/storage/box/papersack, /obj/effect/turf_decal/delivery/hollow, +/obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, @@ -21302,9 +20915,8 @@ /turf/simulated/floor/plasteel, /area/station/service/kitchen) "blk" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/mint, -/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/food/snacks/mint, +/obj/item/reagent_containers/condiment/enzyme, /obj/machinery/reagentgrinder, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, @@ -21327,13 +20939,13 @@ /turf/simulated/floor/plasteel, /area/station/service/kitchen) "blo" = ( -/obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/toy/figure/crew/chef, /obj/effect/turf_decal/delivery/hollow, /obj/item/eftpos/register{ dir = 1 }, +/obj/structure/table, /turf/simulated/floor/plasteel, /area/station/service/kitchen) "blq" = ( @@ -21346,11 +20958,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "browncorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "blr" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21363,8 +20980,13 @@ dir = 4 }, /obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bls" = ( /obj/structure/table, /obj/item/stack/packageWrap, @@ -21372,11 +20994,13 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/cable, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "blt" = ( /obj/structure/chair{ dir = 1 @@ -21384,12 +21008,12 @@ /turf/simulated/floor/plasteel{ icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "blu" = ( /turf/simulated/floor/plasteel{ icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "blv" = ( /obj/structure/window/reinforced{ dir = 8 @@ -21405,10 +21029,15 @@ "blw" = ( /obj/item/kirbyplants, /obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24; + name = "south bump" + }, /turf/simulated/floor/plasteel{ icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "blx" = ( /obj/structure/cable{ d1 = 4; @@ -21438,7 +21067,7 @@ /turf/simulated/floor/plasteel{ icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "blB" = ( /obj/structure/table/reinforced, /obj/machinery/firealarm{ @@ -21485,11 +21114,7 @@ }, /obj/structure/table, /obj/item/storage/firstaid/regular, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 6; @@ -21532,7 +21157,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "blN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/arrows/black{ @@ -21610,7 +21235,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "blZ" = ( /obj/structure/table, /obj/item/taperecorder, @@ -21691,11 +21316,16 @@ d2 = 8; icon_state = "4-8" }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bmh" = ( /obj/structure/cable{ d2 = 4; @@ -21837,85 +21467,93 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 5 }, -/obj/effect/turf_decal/delivery/hollow, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bmw" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 + dir = 4 }, -/obj/effect/turf_decal/delivery/hollow, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bmx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) -"bmy" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) -"bmz" = ( +"bmy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8; initialize_directions = 11 }, -/obj/effect/turf_decal/delivery/hollow, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) -"bmA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 +"bmz" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/portable/pump, +/obj/structure/railing{ + dir = 8 }, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"bmA" = ( +/obj/machinery/light, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) "bmB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +/obj/machinery/atmospherics/unary/portables_connector{ dir = 4 }, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "caution" +/obj/machinery/atmospherics/portable/scrubber, +/obj/structure/railing{ + dir = 4 }, +/obj/effect/turf_decal/delivery/hollow, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bmC" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "caution" +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/area/station/engineering/atmos) -"bmD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 4 }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "caution" - }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bmE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10; - initialize_directions = 10 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "caution" +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bmF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/simulated/floor/plasteel, @@ -21926,25 +21564,16 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/engineering/atmos) -"bmH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "bmI" = ( /obj/structure/table/reinforced, /obj/item/stack/rods{ @@ -21953,11 +21582,10 @@ /obj/item/stack/sheet/glass{ amount = 50 }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 +/obj/machinery/camera{ + dir = 10; + name = "Atmospherics South" }, -/obj/effect/turf_decal/delivery/hollow, -/obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bmJ" = ( @@ -21975,11 +21603,6 @@ name = "south bump"; pixel_y = -28 }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/hollow, -/obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bmK" = ( @@ -21991,23 +21614,8 @@ /obj/structure/sign/poster/official/do_not_question{ pixel_y = -32 }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/hollow, -/obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) -"bmL" = ( -/obj/item/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/station/engineering/atmos) "bmM" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 5 @@ -22114,7 +21722,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "bmY" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -22141,10 +21749,10 @@ /turf/simulated/wall, /area/station/service/kitchen) "bnc" = ( -/obj/structure/table/reinforced, /obj/item/clothing/suit/chef, /obj/item/kitchen/rollingpin, /obj/effect/turf_decal/delivery/hollow, +/obj/structure/table, /turf/simulated/floor/plasteel, /area/station/service/kitchen) "bnd" = ( @@ -22159,13 +21767,13 @@ pixel_y = 8 }, /turf/simulated/wall, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "bne" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/condiment/saltshaker, +/obj/item/reagent_containers/condiment/peppermill, /obj/item/kitchen/knife, /obj/effect/turf_decal/delivery, +/obj/structure/table, /turf/simulated/floor/plasteel, /area/station/service/kitchen) "bnf" = ( @@ -22280,11 +21888,7 @@ /obj/structure/chair{ dir = 8 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -22299,7 +21903,7 @@ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bnz" = ( /turf/simulated/floor/plasteel{ dir = 9; @@ -22390,7 +21994,7 @@ }, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bnT" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -22398,7 +22002,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bnU" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -22406,55 +22010,11 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bnW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/engineering/atmos) -"bnX" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/station/engineering/atmos) -"bnY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"bnZ" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/crew/atmos, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" - }, -/area/station/engineering/atmos) -"boa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bob" = ( /obj/structure/cable{ d1 = 1; @@ -22469,6 +22029,18 @@ }, /area/station/engineering/atmos) "boc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "east bump"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "Air to External Air Ports"; + on = 1; + target_pressure = 101 + }, /obj/machinery/light{ dir = 4 }, @@ -22479,6 +22051,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "east bump"; + pixel_x = 28 + }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bod" = ( @@ -22574,7 +22153,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bom" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -22591,7 +22170,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bon" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -22638,7 +22217,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "boq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -22655,7 +22234,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bos" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -22691,7 +22270,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bou" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -22725,7 +22304,7 @@ dir = 4; icon_state = "browncorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "box" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -22742,7 +22321,7 @@ dir = 4; icon_state = "browncorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "boy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -22759,7 +22338,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "boz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -22783,7 +22362,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "boA" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -22819,7 +22398,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "boD" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, @@ -23063,7 +22642,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bpm" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ @@ -23149,7 +22728,7 @@ dir = 9; icon_state = "green" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bpz" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8; @@ -23161,7 +22740,7 @@ dir = 1; icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bpA" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 10 @@ -23170,7 +22749,7 @@ dir = 1; icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bpB" = ( /obj/machinery/atmospherics/binary/pump{ name = "Pure to Mix" @@ -23179,123 +22758,96 @@ dir = 1; icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bpC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bpD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bpE" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 6 }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bpF" = ( +/obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, -/obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bpG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, +/obj/machinery/suit_storage_unit/atmos/secure, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bpH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 + dir = 9 }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bpI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"bpJ" = ( -/obj/structure/table/reinforced, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" +/obj/structure/closet/secure_closet/atmos_personal, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bpK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) -"bpL" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Air to External Air Ports"; - on = 1; - target_pressure = 101 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) "bpM" = ( /obj/structure/sign/poster/official/work_for_a_future{ pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10; - initialize_directions = 10 +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = 32 }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = 32 + }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bpN" = ( @@ -23338,14 +22890,14 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bpU" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bpV" = ( /obj/machinery/light/small{ dir = 1 @@ -23363,7 +22915,7 @@ dir = 1; icon_state = "yellow" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bpW" = ( /obj/structure/cable{ d1 = 4; @@ -23377,7 +22929,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bpY" = ( /obj/structure/cable{ d1 = 4; @@ -23526,7 +23078,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bqn" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall3"; @@ -23538,7 +23090,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bqp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23555,7 +23107,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bqq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -23563,27 +23115,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) -"bqr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central/north) "bqt" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall15"; @@ -23600,7 +23132,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bqu" = ( /obj/structure/cable{ d1 = 4; @@ -23610,7 +23142,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bqv" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23619,7 +23151,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bqx" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -23630,12 +23162,21 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) -"bqA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/area/station/hallway/primary/central/north) +"bqy" = ( +/obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"bqA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -23645,11 +23186,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bqB" = ( /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, @@ -23833,10 +23375,7 @@ /obj/structure/reagent_dispensers/peppertank{ pixel_x = 32 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/vehicle/secway, /obj/item/key/security, @@ -23887,7 +23426,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "brv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23918,7 +23457,7 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "brB" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/manifold/visible/green, @@ -23926,7 +23465,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "brC" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 @@ -23935,7 +23474,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "brD" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 @@ -23944,7 +23483,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "brE" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4; @@ -23955,64 +23494,43 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "brF" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 4 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "brG" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6; - initialize_directions = 6 - }, +/obj/machinery/suit_storage_unit/atmos/secure, +/obj/machinery/power/apc/directional/west, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "caution" +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "brH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4; - initialize_directions = 11 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"brI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/engineering/atmos) -"brJ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/t_scanner, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "brK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -24082,13 +23600,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "brV" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "brW" = ( /turf/simulated/wall, /area/station/engineering/tech_storage) @@ -24146,7 +23664,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bsg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24154,7 +23672,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bsh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -24162,7 +23680,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "bsi" = ( /obj/machinery/light{ dir = 8 @@ -24171,7 +23689,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bsj" = ( /obj/machinery/door/firedoor, /obj/structure/sign/poster/official/nanotrasen_logo{ @@ -24181,7 +23699,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bsl" = ( /obj/machinery/hologram/holopad, /obj/effect/landmark{ @@ -24192,7 +23710,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bsm" = ( /turf/simulated/floor/plasteel{ icon_state = "neutral" @@ -24208,7 +23726,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bso" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -24233,7 +23751,19 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) +"bss" = ( +/obj/machinery/bodyscanner{ + dir = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) "bst" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -24247,7 +23777,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bsv" = ( /turf/simulated/wall, /area/station/hallway/primary/central) @@ -24297,7 +23827,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bsE" = ( /obj/structure/cable{ d1 = 4; @@ -24327,7 +23857,7 @@ name = "south bump"; pixel_y = -28 }, -/obj/machinery/suit_storage_unit/security/hos, +/obj/machinery/suit_storage_unit/security/hos/secure, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -24511,7 +24041,7 @@ dir = 10; icon_state = "green" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bth" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 @@ -24523,7 +24053,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bti" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 1 @@ -24532,7 +24062,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "btj" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 @@ -24540,7 +24070,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "btk" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -24557,11 +24087,16 @@ /obj/machinery/light{ dir = 4 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "btm" = ( /obj/machinery/light{ dir = 8 @@ -24571,22 +24106,21 @@ name = "west bump"; pixel_x = -24 }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/suit_storage_unit/atmos/secure, +/obj/machinery/light{ + dir = 8 + }, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "caution" +/obj/machinery/light{ + dir = 8 }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "btn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 - }, +/obj/effect/spawner/window/reinforced, /obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "caution" - }, +/obj/effect/turf_decal/delivery/hollow, +/turf/simulated/floor/plating, /area/station/engineering/atmos) "bto" = ( /obj/machinery/atmospherics/binary/pump{ @@ -24693,7 +24227,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "btz" = ( /obj/structure/cable{ d1 = 1; @@ -24709,13 +24243,9 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "btA" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -24724,7 +24254,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "btD" = ( /obj/structure/table/glass, /obj/machinery/light{ @@ -24744,7 +24274,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "btF" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable{ @@ -24760,7 +24290,7 @@ "btH" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "btJ" = ( /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -24793,13 +24323,13 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "btV" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "btX" = ( /turf/simulated/floor/plasteel{ dir = 9; @@ -24822,7 +24352,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bud" = ( /obj/machinery/power/treadmill, /obj/machinery/treadmill_monitor{ @@ -24880,10 +24410,7 @@ }, /area/station/security/brig) "buj" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/item/kirbyplants, /obj/machinery/firealarm{ dir = 8; @@ -24943,7 +24470,7 @@ dir = 9; icon_state = "arrival" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bup" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ @@ -24954,7 +24481,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "buq" = ( /obj/machinery/atmospherics/binary/pump{ name = "Mix to Distro" @@ -24962,14 +24489,14 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bur" = ( /obj/machinery/atmospherics/unary/thermomachine/heater, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bus" = ( /obj/machinery/atmospherics/unary/thermomachine/freezer{ dir = 4 @@ -24978,7 +24505,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "but" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 @@ -24987,28 +24514,24 @@ name = "east bump"; pixel_x = 28 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "buu" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/portable/pump, /obj/structure/sign/nosmoking_2{ pixel_y = -32 }, -/turf/simulated/floor/plasteel{ - icon_state = "arrival" - }, +/obj/machinery/economy/vending/atmosdrobe, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "buv" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/portable/pump, /obj/machinery/camera{ c_tag = "Atmospherics Storage"; dir = 1 @@ -25018,32 +24541,11 @@ name = "south bump"; pixel_y = -28 }, -/turf/simulated/floor/plasteel{ - icon_state = "arrival" - }, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "buw" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/portable/scrubber, -/turf/simulated/floor/plasteel{ - icon_state = "escape" - }, -/area/station/engineering/atmos) -"bux" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/portable/scrubber, -/turf/simulated/floor/plasteel{ - icon_state = "escape" - }, +/obj/structure/closet/secure_closet/atmos_personal, +/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "buy" = ( /obj/machinery/light/small, @@ -25053,6 +24555,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, +/obj/machinery/firealarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "buz" = ( @@ -25061,12 +24568,12 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) @@ -25146,7 +24653,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "buJ" = ( /obj/structure/cable{ d1 = 1; @@ -25160,7 +24667,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "buK" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 8 @@ -25170,7 +24677,7 @@ dir = 4; icon_state = "escape" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "buL" = ( /obj/structure/sign/electricshock, /turf/simulated/wall/r_wall, @@ -25288,7 +24795,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bvl" = ( /obj/machinery/computer/shuttle/labor, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -25309,7 +24816,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bvr" = ( /obj/structure/table, /obj/item/storage/box/evidence, @@ -25364,11 +24871,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bvx" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/computer/prisoner{ dir = 8 }, @@ -25444,7 +24947,7 @@ dir = 10; icon_state = "arrival" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bvE" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 5 @@ -25453,7 +24956,7 @@ dir = 10 }, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bvF" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4; @@ -25464,7 +24967,7 @@ /turf/simulated/floor/plasteel{ icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bvG" = ( /obj/machinery/alarm{ dir = 1; @@ -25480,34 +24983,41 @@ /turf/simulated/floor/plasteel{ icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bvH" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/plasteel{ icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bvI" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4; name = "Air to Waste"; target_pressure = 101 }, +/obj/machinery/firealarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, /turf/simulated/floor/plasteel{ icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bvJ" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, +/obj/machinery/power/apc/directional/east, +/obj/structure/cable, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "caution" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "bvK" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, @@ -25571,12 +25081,12 @@ }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bvV" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bvW" = ( /obj/structure/rack, /obj/item/circuitboard/robotics{ @@ -25648,10 +25158,10 @@ /obj/item/seeds/wheat, /obj/item/seeds/potato, /obj/item/seeds/pumpkin, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/watermelon, +/obj/item/food/snacks/grown/grapes, +/obj/item/food/snacks/grown/tomato, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) @@ -25678,6 +25188,26 @@ "bwf" = ( /turf/simulated/wall/r_wall, /area/station/command/bridge) +"bwh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/east) +"bwl" = ( +/obj/structure/chair/sofa/corner{ + color = "#6ae226" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "bwm" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -25724,7 +25254,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bwA" = ( /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -25793,7 +25323,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "bwM" = ( /obj/structure/window/reinforced{ dir = 8 @@ -25817,7 +25347,7 @@ "bwQ" = ( /obj/machinery/ai_status_display, /turf/simulated/wall/r_wall, -/area/station/engineering/break_room) +/area/station/engineering/atmos/distribution) "bwR" = ( /obj/structure/cable{ d1 = 1; @@ -25838,12 +25368,12 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bwS" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/engineering/break_room) +/area/station/engineering/atmos/distribution) "bwT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25853,7 +25383,7 @@ /obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/engineering/break_room) +/area/station/engineering/atmos/distribution) "bwV" = ( /obj/structure/sign/poster/official/help_others{ pixel_x = -32 @@ -25962,7 +25492,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "bxf" = ( /obj/structure/cable{ d1 = 1; @@ -25973,7 +25503,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bxg" = ( /obj/structure/table, /obj/machinery/light{ @@ -25985,7 +25515,7 @@ dir = 4; icon_state = "caution" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bxh" = ( /turf/simulated/wall/r_wall, /area/station/engineering/tech_storage) @@ -25993,7 +25523,7 @@ /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bxj" = ( /obj/machinery/light/small{ dir = 8 @@ -26028,7 +25558,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bxm" = ( /obj/machinery/computer/card, /turf/simulated/floor/plasteel{ @@ -26177,7 +25707,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bxA" = ( /obj/structure/cable{ d1 = 4; @@ -26191,7 +25721,7 @@ dir = 4 }, /turf/simulated/floor/plasteel/dark, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bxC" = ( /obj/structure/cable{ d1 = 4; @@ -26244,11 +25774,7 @@ /turf/simulated/floor/greengrid, /area/station/command/vault) "bxG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -26259,7 +25785,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bxK" = ( /obj/item/kirbyplants, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -26271,7 +25797,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bxM" = ( /obj/structure/window/reinforced{ dir = 8 @@ -26353,17 +25879,7 @@ dir = 4; icon_state = "brown" }, -/area/station/hallway/secondary/entry) -"byb" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel, -/area/station/medical/reception) +/area/station/hallway/secondary/entry/east) "byc" = ( /obj/machinery/ai_slipper, /obj/structure/cable{ @@ -26583,7 +26099,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "byG" = ( /obj/structure/cable{ d1 = 1; @@ -26597,7 +26113,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "byH" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 8 @@ -26611,7 +26127,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "byJ" = ( /obj/structure/cable{ d1 = 1; @@ -26657,10 +26173,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "byM" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/carpet, /area/station/public/pet_store) @@ -26674,7 +26187,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "byO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -26687,7 +26200,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "byQ" = ( /obj/machinery/light{ dir = 4 @@ -26696,10 +26209,14 @@ c_tag = "Central Ring Hallway West"; dir = 8 }, +/obj/item/radio/intercom{ + name = "east bump"; + pixel_x = 28 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "byR" = ( /obj/structure/table/reinforced, /obj/item/storage/firstaid/regular, @@ -26744,17 +26261,15 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "byX" = ( /obj/structure/chair/office/dark{ dir = 4 @@ -26797,7 +26312,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bzb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26808,7 +26323,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bzc" = ( /obj/structure/sign/electricshock, /turf/simulated/wall/r_wall, @@ -26829,7 +26344,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bzh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26864,7 +26379,7 @@ dir = 9 }, /obj/structure/displaycase{ - start_showpiece_type = /obj/item/reagent_containers/food/snacks/donut/sprinkles + start_showpiece_type = /obj/item/food/snacks/donut/sprinkles }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -26887,6 +26402,10 @@ icon_state = "darkred" }, /area/station/security/main) +"bzu" = ( +/obj/effect/spawner/window, +/turf/simulated/floor/plating, +/area/station/medical/medbay) "bzv" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, @@ -26986,11 +26505,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "bzI" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -27122,6 +26637,7 @@ /obj/item/tank/internals/emergency_oxygen, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, +/obj/item/toy/figure/crew/atmos, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "caution" @@ -27148,7 +26664,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bAf" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 8 @@ -27158,7 +26674,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bAg" = ( /obj/structure/table/reinforced, /obj/item/plant_analyzer, @@ -27374,7 +26890,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bAO" = ( /obj/structure/cable{ d1 = 4; @@ -27439,6 +26955,23 @@ icon_state = "darkred" }, /area/station/security/brig) +"bBb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgreen"; + dir = 1 + }, +/area/station/medical/virology) "bBc" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ @@ -27625,11 +27158,7 @@ /area/station/engineering/break_room) "bBF" = ( /obj/item/kirbyplants, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/light{ dir = 1 }, @@ -27710,6 +27239,7 @@ /area/station/engineering/atmos) "bBM" = ( /obj/structure/table/reinforced, +/obj/item/clipboard, /obj/item/folder/yellow, /obj/item/pen, /turf/simulated/floor/plasteel{ @@ -27750,7 +27280,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bBP" = ( /obj/structure/table/reinforced, /obj/machinery/light{ @@ -27798,6 +27328,13 @@ /obj/item/aicard, /turf/simulated/floor/plasteel/dark, /area/station/engineering/tech_storage) +"bBV" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) "bBW" = ( /obj/structure/plasticflaps{ opacity = 1 @@ -27901,7 +27438,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bCg" = ( /obj/structure/table/reinforced, /obj/machinery/light{ @@ -28217,7 +27754,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bCD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28233,7 +27770,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bCE" = ( /obj/machinery/camera{ c_tag = "Central Ring Hallway East"; @@ -28260,7 +27797,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bCG" = ( /obj/machinery/economy/vending/coffee, /turf/simulated/floor/plasteel/dark, @@ -28293,7 +27830,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "bCL" = ( /obj/structure/cable{ d1 = 1; @@ -28389,11 +27926,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -28697,17 +28230,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) -"bDD" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Psych Foyer" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/port/north) "bDE" = ( /obj/item/kirbyplants, /obj/machinery/status_display{ @@ -28736,7 +28259,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bDH" = ( /obj/structure/rack{ dir = 8; @@ -28844,11 +28367,7 @@ /obj/item/stack/rods, /obj/item/stack/cable_coil/random, /obj/item/stack/cable_coil/random, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -28872,7 +28391,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bDS" = ( /obj/structure/table/reinforced, /obj/item/crowbar, @@ -28918,7 +28437,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bEb" = ( /obj/structure/window/reinforced, /obj/structure/cable{ @@ -29016,7 +28535,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bEp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -29031,7 +28550,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bEr" = ( /obj/machinery/firealarm{ dir = 1; @@ -29063,7 +28582,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bEx" = ( /turf/simulated/wall/r_wall, /area/station/security/warden) @@ -29120,13 +28639,6 @@ icon_state = "vault" }, /area/station/engineering/gravitygenerator) -"bEH" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/hallway/primary/central) "bEI" = ( /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -29455,7 +28967,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bFx" = ( /obj/machinery/light_switch{ dir = 1; @@ -29490,10 +29002,7 @@ }, /area/station/command/bridge) "bFC" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "darkblue" @@ -29651,7 +29160,19 @@ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) +"bFY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/iv_drip, +/turf/simulated/floor/plasteel{ + icon_state = "darkgreen"; + dir = 1 + }, +/area/station/medical/virology) "bGb" = ( /obj/machinery/light/small{ dir = 1 @@ -29926,8 +29447,11 @@ /area/station/engineering/break_room) "bGD" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/cans/starkist, +/obj/item/reagent_containers/drinks/cans/starkist, /obj/effect/turf_decal/delivery/hollow, +/obj/machinery/recharger{ + pixel_x = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -30091,7 +29615,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bGP" = ( /obj/machinery/hologram/holopad, /obj/structure/cable{ @@ -30139,23 +29663,24 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bGR" = ( /obj/machinery/light{ dir = 4 }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24; + name = "east bump" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bGS" = ( /obj/structure/table/reinforced, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/item/folder/yellow, /obj/structure/cable{ d2 = 4; @@ -30303,7 +29828,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bHj" = ( /turf/simulated/wall/r_wall, /area/station/command/meeting_room) @@ -30325,7 +29850,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bHn" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -30429,12 +29954,15 @@ "bHx" = ( /turf/simulated/wall/r_wall, /area/station/command/office/captain) -"bHA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 +"bHy" = ( +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) +"bHA" = ( +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -30443,7 +29971,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bHC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -30467,7 +29995,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bHD" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable{ @@ -30519,11 +30047,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/security/detective) "bHM" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/table/wood, /obj/item/taperecorder, /obj/item/restraints/handcuffs, @@ -30606,7 +30130,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bHT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -30615,7 +30139,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bHU" = ( /obj/structure/cable{ d1 = 4; @@ -30641,7 +30165,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bHW" = ( /obj/structure/cable{ d1 = 4; @@ -30860,7 +30384,7 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "bII" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -30944,6 +30468,11 @@ /obj/item/stack/sheet/glass, /obj/item/stack/sheet/glass, /obj/item/stack/sheet/glass, +/obj/machinery/requests_console{ + department = "Tech Storage"; + name = "Tech Storage Requests Console"; + pixel_x = 30 + }, /turf/simulated/floor/plasteel/dark, /area/station/engineering/tech_storage) "bIS" = ( @@ -31015,11 +30544,7 @@ /turf/simulated/floor/wood, /area/station/command/meeting_room) "bJc" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -31037,7 +30562,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bJe" = ( /obj/machinery/newscaster/security_unit{ dir = 1; @@ -31207,11 +30732,7 @@ /area/station/security/detective) "bJC" = ( /obj/item/kirbyplants, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -31227,7 +30748,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bJG" = ( /obj/machinery/flasher{ id = "Cell 1"; @@ -31241,18 +30762,6 @@ icon_state = "darkredcorners" }, /area/station/security/prison/cell_block) -"bJH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/primary/aft) "bJL" = ( /turf/simulated/wall, /area/station/security/warden) @@ -31451,6 +30960,9 @@ /area/station/aisat) "bJZ" = ( /obj/structure/closet/emcloset, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -31464,7 +30976,7 @@ dir = 10; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bKb" = ( /obj/structure/cable{ d1 = 1; @@ -31612,6 +31124,10 @@ icon_state = "yellow" }, /area/station/engineering/break_room) +"bKt" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/central/north) "bKu" = ( /obj/structure/rack{ dir = 8; @@ -31689,7 +31205,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bot" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bKF" = ( /obj/structure/table/wood, /obj/item/clothing/mask/cigarette/cigar{ @@ -31808,6 +31324,17 @@ }, /turf/simulated/floor/bluegrid, /area/station/turret_protected/ai_upload) +"bKW" = ( +/obj/machinery/firealarm{ + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/delivery/white/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) "bKY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31880,11 +31407,7 @@ }, /area/station/public/storage/tools/auxiliary) "bLj" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -31978,6 +31501,28 @@ }, /turf/simulated/floor/carpet, /area/station/security/detective) +"bLv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) "bLw" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/camera{ @@ -32013,7 +31558,7 @@ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bLz" = ( /obj/machinery/light{ dir = 4 @@ -32026,7 +31571,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bLA" = ( /turf/simulated/wall/r_wall, /area/station/security/brig) @@ -32237,7 +31782,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bMb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -32248,7 +31793,7 @@ dir = 4; icon_state = "browncorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "bMc" = ( /obj/machinery/camera{ c_tag = "Primary Security Hallway North"; @@ -32259,26 +31804,31 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bMe" = ( /obj/structure/cable{ d1 = 1; d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel/dark, /area/station/engineering/ai_transit_tube) "bMf" = ( @@ -32446,14 +31996,6 @@ /obj/item/multitool, /turf/simulated/floor/plasteel/dark, /area/station/engineering/tech_storage) -"bMD" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/pen/multi, -/turf/simulated/floor/plasteel/white, -/area/station/hallway/primary/central) "bME" = ( /obj/structure/table/reinforced, /obj/machinery/light{ @@ -32512,7 +32054,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bMM" = ( /obj/machinery/photocopier, /obj/structure/cable{ @@ -32845,7 +32387,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bNy" = ( /obj/effect/spawner/random_spawners/blood_maybe, /turf/simulated/floor/plating, @@ -32923,7 +32465,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bNL" = ( /obj/machinery/camera{ c_tag = "AI Chamber South"; @@ -32963,6 +32505,12 @@ }, /area/station/engineering/ai_transit_tube) "bNX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel/dark, /area/station/engineering/ai_transit_tube) "bNY" = ( @@ -33055,7 +32603,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bOi" = ( /obj/structure/sign/securearea, /turf/simulated/wall, @@ -33113,7 +32661,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bOp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -33242,7 +32790,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bOE" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, @@ -33281,14 +32829,6 @@ }, /turf/simulated/floor/carpet, /area/station/command/meeting_room) -"bOK" = ( -/obj/machinery/firealarm{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/station/medical/psych) "bOL" = ( /obj/structure/cable{ d1 = 1; @@ -33376,7 +32916,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bOX" = ( /obj/structure/chair/comfy/brown, /obj/structure/cable{ @@ -33407,10 +32947,7 @@ /turf/simulated/wall, /area/station/command/office/ntrep) "bPa" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/wood, /area/station/command/office/captain) @@ -33437,7 +32974,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bPd" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -33553,7 +33090,7 @@ "bPp" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, -/obj/item/reagent_containers/food/drinks/flask/detflask, +/obj/item/reagent_containers/drinks/flask/detflask, /turf/simulated/floor/carpet, /area/station/security/detective) "bPq" = ( @@ -33584,6 +33121,27 @@ icon_state = "redcorner" }, /area/station/security/checkpoint) +"bPt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/north) "bPu" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -33773,6 +33331,20 @@ "bPS" = ( /turf/simulated/wall, /area/space/nearstation) +"bPV" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Monkey Pen" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "bPY" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, @@ -33944,7 +33516,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bQy" = ( /obj/structure/table/reinforced, /obj/machinery/kitchen_machine/microwave, @@ -33961,7 +33533,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bQA" = ( /obj/structure/cable{ d1 = 1; @@ -34121,7 +33693,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bQS" = ( /obj/structure/table/wood, /obj/structure/window/reinforced{ @@ -34389,10 +33961,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel/dark, /area/station/aisat) -"bRw" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plasteel, -/area/station/maintenance/starboard) "bRx" = ( /obj/structure/showcase{ density = 0; @@ -34415,6 +33983,27 @@ icon_state = "grimy" }, /area/station/turret_protected/aisat) +"bRA" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/break_room) "bRB" = ( /obj/machinery/ai_slipper, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -34429,11 +34018,6 @@ icon_state = "grimy" }, /area/station/turret_protected/aisat) -"bRF" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "bRG" = ( /obj/structure/window/reinforced{ dir = 1; @@ -34497,12 +34081,18 @@ c_tag = "AI Transit Tube Access"; network = list("SS13","Engineering") }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel/dark, /area/station/engineering/ai_transit_tube) "bRU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, /turf/simulated/floor/plasteel/dark, /area/station/engineering/ai_transit_tube) @@ -34669,7 +34259,7 @@ /turf/simulated/floor/plasteel{ icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bSl" = ( /obj/item/storage/box/donkpockets, /obj/structure/table, @@ -34716,7 +34306,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bSx" = ( /obj/structure/cable{ d1 = 1; @@ -34727,13 +34317,13 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bSy" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bSz" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -34748,7 +34338,7 @@ dir = 6; icon_state = "brown" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bSD" = ( /obj/machinery/camera{ c_tag = "Central Ring Hallway West"; @@ -34757,7 +34347,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bSE" = ( /turf/simulated/wall/r_wall, /area/station/command/office/hop) @@ -34795,11 +34385,7 @@ /turf/simulated/floor/bluegrid, /area/station/turret_protected/ai_upload) "bSK" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - name = "south bump Important Area"; - pixel_y = -24 - }, +/obj/machinery/power/apc/important/directional/south, /obj/structure/cable, /turf/simulated/floor/bluegrid, /area/station/turret_protected/ai_upload) @@ -34887,7 +34473,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bSW" = ( /obj/machinery/firealarm{ name = "north bump"; @@ -34900,7 +34486,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bSX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34909,7 +34495,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bSY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -34920,7 +34506,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bTb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34929,7 +34515,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bTc" = ( /obj/machinery/power/terminal{ dir = 1 @@ -34978,7 +34564,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bTj" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -34988,7 +34574,7 @@ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bTk" = ( /obj/structure/cable{ d1 = 1; @@ -35000,14 +34586,10 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bTm" = ( /obj/item/kirbyplants, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -35072,6 +34654,23 @@ icon_state = "vault" }, /area/station/aisat) +"bTt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "bluefull" + }, +/area/station/medical/storage) "bTu" = ( /obj/structure/cable{ d1 = 2; @@ -35349,14 +34948,14 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bUa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bUc" = ( /obj/structure/window/reinforced{ dir = 8 @@ -35533,7 +35132,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bUB" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=engi2"; @@ -35558,7 +35157,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bUC" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall4"; @@ -35578,7 +35177,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bUD" = ( /obj/structure/cable{ d1 = 1; @@ -35591,6 +35190,9 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/station/turret_protected/aisat) +"bUE" = ( +/turf/simulated/wall, +/area/station/medical/cryo) "bUG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -35602,7 +35204,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bUJ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -35647,7 +35249,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bUL" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall4a"; @@ -35656,7 +35258,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bUM" = ( /obj/machinery/light{ dir = 4 @@ -35664,13 +35266,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bUO" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen, /turf/simulated/floor/plasteel/dark, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bUP" = ( /obj/machinery/door/poddoor/preopen{ id_tag = "transitlock"; @@ -35783,7 +35385,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bVd" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall13"; @@ -35793,7 +35395,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bVe" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall11"; @@ -35823,7 +35425,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bVf" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -35854,7 +35456,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bVi" = ( /obj/structure/cable{ d1 = 4; @@ -35864,13 +35466,11 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bVj" = ( /obj/machinery/camera{ c_tag = "Minisat Teleporter Room"; @@ -35908,7 +35508,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bVl" = ( /obj/structure/cable{ d1 = 1; @@ -35925,7 +35525,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bVm" = ( /obj/structure/cable{ d1 = 1; @@ -35946,14 +35546,14 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bVo" = ( /obj/structure/cable{ d1 = 2; @@ -35974,7 +35574,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bVp" = ( /obj/item/radio/beacon, /obj/machinery/navbeacon{ @@ -35996,7 +35596,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bVq" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -36006,7 +35606,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bVr" = ( /obj/structure/closet/secure_closet/engineering_chief, /obj/machinery/camera{ @@ -36029,27 +35629,16 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/space, /area/space/nearstation) "bVt" = ( -/obj/structure/sign/vacuum{ - pixel_x = -32 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - autolink_id = "stationai_vent" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, +/turf/simulated/floor/plasteel/dark, /area/station/engineering/ai_transit_tube) "bVB" = ( /obj/machinery/door/firedoor, @@ -36068,7 +35657,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bVD" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -36078,7 +35667,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bVH" = ( /obj/structure/window/reinforced, /obj/machinery/light/small{ @@ -36212,10 +35801,7 @@ /area/station/aisat) "bVX" = ( /obj/structure/window/reinforced, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel/dark, /area/station/aisat) @@ -36267,10 +35853,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/command/office/ce) "bWm" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -36370,7 +35953,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bWA" = ( /obj/structure/cable{ d1 = 1; @@ -36380,7 +35963,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bWC" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -36395,27 +35978,27 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bWG" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bWH" = ( /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bWI" = ( /obj/machinery/alarm{ dir = 8; name = "east bump"; pixel_x = 24 }, -/obj/machinery/suit_storage_unit/ce, +/obj/machinery/suit_storage_unit/ce/secure, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -36432,7 +36015,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bWK" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -36443,7 +36026,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bWN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -36504,15 +36087,17 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bXc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bXf" = ( /obj/machinery/alarm{ dir = 1; @@ -36529,21 +36114,23 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bXi" = ( /obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bXj" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 @@ -36551,7 +36138,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bXk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36559,7 +36146,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bXl" = ( /obj/structure/cable{ d1 = 1; @@ -36574,7 +36161,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bXm" = ( /obj/machinery/camera{ c_tag = "Minisat Power Station"; @@ -36598,7 +36185,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bXp" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -36615,7 +36202,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bXt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -36660,7 +36247,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bXB" = ( /obj/structure/cable{ d1 = 1; @@ -36687,7 +36274,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bXD" = ( /obj/machinery/camera{ c_tag = "Primary Security Hallway" @@ -36699,7 +36286,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bXE" = ( /obj/machinery/camera{ c_tag = "Engineering Break Room"; @@ -36835,9 +36422,9 @@ }, /area/station/legal/magistrate) "bXY" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/fire, /obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/unary/portables_connector, +/obj/machinery/atmospherics/portable/canister/air, /turf/simulated/floor/plasteel, /area/station/engineering/control) "bYa" = ( @@ -36856,7 +36443,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bYf" = ( /obj/structure/cable{ d1 = 1; @@ -36866,12 +36453,12 @@ /turf/simulated/floor/plasteel{ icon_state = "yellow" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bYg" = ( /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "bYi" = ( /obj/machinery/door/airlock/maintenance, /turf/simulated/floor/plasteel, @@ -36960,6 +36547,17 @@ }, /turf/simulated/floor/wood, /area/station/command/office/hop) +"bYs" = ( +/obj/machinery/camera{ + c_tag = "Medbay East Hallway"; + dir = 6; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "bYu" = ( /obj/machinery/status_display{ pixel_x = 32 @@ -37016,7 +36614,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bYD" = ( /turf/simulated/wall, /area/station/command/office/captain/bedroom) @@ -37034,7 +36632,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bYG" = ( /obj/structure/sign/directions/evac{ pixel_y = -8 @@ -37057,10 +36655,10 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 10 }, /turf/space, /area/space/nearstation) @@ -37088,7 +36686,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "bYM" = ( /turf/simulated/wall, /area/station/legal/lawoffice) @@ -37214,6 +36812,12 @@ /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/lattice/catwalk, /turf/space, /area/space/nearstation) @@ -37309,13 +36913,12 @@ /turf/simulated/wall/r_wall, /area/station/engineering/control) "bZs" = ( -/obj/machinery/atmospherics/portable/canister/air, -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 8 - }, /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, /turf/simulated/floor/plasteel, /area/station/engineering/control) "bZt" = ( @@ -37488,7 +37091,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bZU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -37502,7 +37105,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bZW" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, @@ -37706,7 +37309,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "caw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -37734,7 +37337,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "caA" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -37852,7 +37455,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "caP" = ( /obj/structure/cable{ d1 = 2; @@ -38023,6 +37626,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cbn" = ( @@ -38076,22 +37680,11 @@ }, /area/station/engineering/control) "cbr" = ( -/obj/structure/chair/sofa/corp/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" +/obj/structure/railing{ + dir = 8 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/white, /area/station/medical/reception) "cbs" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -38202,7 +37795,7 @@ }, /area/station/maintenance/port) "cbz" = ( -/obj/machinery/suit_storage_unit/captain, +/obj/machinery/suit_storage_unit/captain/secure, /obj/machinery/light{ dir = 1 }, @@ -38241,34 +37834,6 @@ /obj/effect/landmark/start/librarian, /turf/simulated/floor/plasteel/dark, /area/station/service/library) -"cbH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/station/medical/reception) -"cbI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/storage) "cbJ" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -38317,7 +37882,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "cbQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -38325,7 +37890,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "cbR" = ( /obj/structure/cable{ d1 = 1; @@ -38356,11 +37921,7 @@ /turf/simulated/floor/carpet, /area/station/command/office/hop) "cbU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/camera{ c_tag = "Head of Personnel's Office"; dir = 8 @@ -38387,7 +37948,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bot" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "cbW" = ( /obj/machinery/keycard_auth{ pixel_x = -24; @@ -38445,8 +38006,8 @@ /area/station/command/office/ntrep) "cca" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/wood, /area/station/command/office/ntrep) "ccb" = ( @@ -38636,10 +38197,7 @@ /area/station/legal/courtroom) "ccx" = ( /obj/structure/table/reinforced, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -38767,25 +38325,21 @@ }, /area/station/legal/magistrate) "ccL" = ( -/obj/structure/closet, /obj/machinery/light/small{ dir = 8 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/security/evidence) "ccM" = ( -/obj/structure/closet, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -38811,7 +38365,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/legal/courtroom) "ccP" = ( -/obj/structure/closet, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -39141,7 +38695,7 @@ /area/station/command/office/ntrep) "cdN" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/item/storage/fancy/donut_box, /turf/simulated/floor/wood, /area/station/command/office/ntrep) @@ -39185,7 +38739,7 @@ /area/station/command/office/blueshield) "cdT" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/reagent_containers/drinks/flask/gold, /obj/item/razor, /turf/simulated/floor/carpet/black, /area/station/command/office/captain/bedroom) @@ -39228,10 +38782,7 @@ /area/station/command/office/captain/bedroom) "cdY" = ( /obj/structure/table/wood, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/window/reinforced{ dir = 8 }, @@ -39312,6 +38863,12 @@ icon_state = "red" }, /area/station/legal/courtroom) +"cel" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/secondary) "cem" = ( /obj/machinery/light_switch{ dir = 4; @@ -39455,7 +39012,7 @@ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "ceH" = ( /obj/machinery/light/small{ dir = 8 @@ -39675,15 +39232,11 @@ /obj/machinery/computer/atmos_alert{ dir = 1 }, -/obj/machinery/power/apc{ - name = "south bump Engineering"; - pixel_y = -24; - shock_proof = 1 - }, /obj/structure/cable{ d2 = 8; icon_state = "0-8" }, +/obj/machinery/power/apc/critical/directional/south, /turf/simulated/floor/plasteel/dark, /area/station/engineering/smes) "cfk" = ( @@ -39752,18 +39305,6 @@ /obj/effect/landmark/start/assistant, /turf/simulated/floor/wood, /area/station/service/library) -"cfw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/storage) "cfx" = ( /obj/machinery/photocopier, /obj/structure/extinguisher_cabinet{ @@ -39850,11 +39391,7 @@ /turf/simulated/floor/wood, /area/station/command/office/ntrep) "cfM" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -39907,7 +39444,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "cfX" = ( /obj/structure/table/wood, /obj/item/gavelblock, @@ -39989,7 +39526,6 @@ /turf/simulated/floor/carpet, /area/station/legal/magistrate) "cgg" = ( -/obj/structure/closet, /obj/machinery/alarm{ name = "north bump"; pixel_y = 24 @@ -40000,6 +39536,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -40022,10 +39559,7 @@ /area/station/legal/magistrate) "cgj" = ( /obj/machinery/light, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/disposal, /obj/structure/cable, /obj/structure/disposalpipe/trunk{ @@ -40066,11 +39600,11 @@ }, /area/station/security/brig) "cgo" = ( -/obj/structure/closet, /obj/item/radio/intercom{ name = "south bump"; pixel_y = -28 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -40094,12 +39628,12 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/closet, /obj/machinery/light_switch{ dir = 1; name = "south bump"; pixel_y = -24 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -40137,7 +39671,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "cgF" = ( /obj/machinery/flasher{ id = "hopflash"; @@ -40146,7 +39680,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bot" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "cgI" = ( /obj/machinery/ai_status_display{ pixel_y = -32 @@ -40247,16 +39781,6 @@ icon_state = "whitepurple" }, /area/station/science/xenobiology) -"cha" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/reception) "chb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -40266,7 +39790,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "chc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -40279,11 +39803,11 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "chd" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "chf" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, @@ -40360,9 +39884,9 @@ /area/station/command/office/blueshield) "chs" = ( /obj/structure/closet/cabinet, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood, /area/station/command/office/blueshield) "cht" = ( @@ -40525,6 +40049,11 @@ /area/station/legal/lawoffice) "chP" = ( /obj/structure/filingcabinet/security, +/obj/machinery/requests_console{ + department = "Internal Affairs Office"; + name = "Internal Affairs Requests Console"; + pixel_x = 30 + }, /turf/simulated/floor/wood, /area/station/legal/lawoffice) "chS" = ( @@ -40753,7 +40282,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "ciB" = ( /turf/simulated/wall, /area/station/command/office/hop) @@ -40863,7 +40392,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "ciO" = ( /obj/structure/cable{ d1 = 1; @@ -40948,7 +40477,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "ciX" = ( /obj/machinery/status_display{ pixel_y = -32 @@ -41178,6 +40707,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cjH" = ( @@ -41266,18 +40796,14 @@ /turf/simulated/floor/plasteel, /area/station/engineering/control) "cjO" = ( -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 4; - name = "east bump"; - pixel_x = 24; - shock_proof = 1 - }, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/delivery/hollow, +/obj/machinery/power/apc/critical/directional/east{ + shock_proof = 1 + }, /turf/simulated/floor/plasteel, /area/station/engineering/control) "cjP" = ( @@ -41376,15 +40902,6 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/port) -"ckg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "ckh" = ( /obj/structure/cable{ d1 = 2; @@ -41423,7 +40940,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "ckm" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; @@ -41432,7 +40949,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "ckn" = ( /obj/structure/dresser, /turf/simulated/floor/carpet, @@ -41479,11 +40996,7 @@ /turf/simulated/floor/plasteel, /area/station/command/teleporter) "ckB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/table, /obj/item/hand_tele, /obj/structure/cable{ @@ -41544,15 +41057,6 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) -"ckJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/reception) "ckK" = ( /obj/structure/chair{ dir = 4 @@ -41616,27 +41120,13 @@ }, /area/station/legal/courtroom) "ckR" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/wood, /area/station/legal/lawoffice) -"ckS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/reception) "ckT" = ( /obj/structure/chair/office/dark{ dir = 8 @@ -41908,7 +41398,7 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "clB" = ( /obj/structure/cable{ d1 = 1; @@ -42054,7 +41544,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "clS" = ( /obj/structure/cable{ d1 = 4; @@ -42065,7 +41555,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "clT" = ( /obj/structure/cable{ d1 = 2; @@ -42085,7 +41575,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "clU" = ( /obj/machinery/camera{ c_tag = "Central Ring Hallway Center" @@ -42099,7 +41589,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "clV" = ( /obj/structure/cable{ d1 = 1; @@ -42113,7 +41603,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "clW" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -42263,7 +41753,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cmo" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -42281,9 +41771,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard2) -"cmt" = ( -/turf/simulated/floor/plasteel/white, -/area/station/hallway/primary/central) "cmv" = ( /obj/structure/cable{ d1 = 1; @@ -42291,6 +41778,8 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cmx" = ( @@ -42304,11 +41793,7 @@ /turf/simulated/floor/plating, /area/station/turret_protected/aisat) "cmy" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -42588,11 +42073,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cnh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -42714,7 +42195,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "cny" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -42723,7 +42204,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cnz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -42750,7 +42231,6 @@ /turf/simulated/floor/plasteel, /area/station/command/teleporter) "cnC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -42758,10 +42238,13 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "cnD" = ( /obj/machinery/light, /obj/machinery/alarm{ @@ -42836,11 +42319,7 @@ }, /area/station/legal/courtroom) "cnN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -42856,7 +42335,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "cnP" = ( /turf/simulated/wall, /area/station/public/locker) @@ -42873,27 +42352,30 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/starboard2) "cnV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cnW" = ( /turf/simulated/floor/plasteel{ icon_state = "bot" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "cnX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/structure/railing{ + dir = 5 }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) +/obj/structure/table/glass, +/obj/item/reagent_containers/drinks/mug, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "cnY" = ( /obj/structure/lattice, /obj/structure/window/reinforced, @@ -43085,7 +42567,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "coE" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -43093,7 +42575,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "coF" = ( /obj/machinery/door_control{ id = "teleportershutter"; @@ -43247,12 +42729,6 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/aisat) -"cpc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/exam_room) "cpd" = ( /obj/structure/window/reinforced{ dir = 1; @@ -43284,7 +42760,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bot" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "cpg" = ( /obj/item/wrench, /turf/simulated/floor/plating/airless, @@ -43548,20 +43024,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/wood, /area/station/service/library) -"cpJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) -"cpK" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) "cpM" = ( /obj/structure/table/wood, /obj/item/storage/bag/books, @@ -43590,7 +43052,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cpO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -43604,14 +43066,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "cpP" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "cpR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -43631,7 +43093,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cpS" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -43648,30 +43110,9 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) -"cpT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cpU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -43691,7 +43132,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cpW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -43718,7 +43159,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cpX" = ( /obj/structure/sign/poster/official/nanotrasen_logo{ pixel_y = 32 @@ -43738,7 +43179,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cpY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -43755,7 +43196,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cqb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -43784,26 +43225,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) -"cqc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cqd" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -43820,7 +43242,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cqe" = ( /obj/structure/sign/poster/official/nanotrasen_logo{ pixel_y = 32 @@ -43843,7 +43265,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cqf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -43873,7 +43295,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cqh" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -43894,7 +43316,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cqn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -43958,7 +43380,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cqr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -44313,7 +43735,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cru" = ( /obj/structure/cable{ d1 = 1; @@ -44340,7 +43762,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crw" = ( /obj/machinery/camera{ c_tag = "Central Ring Hallway Center"; @@ -44350,14 +43772,14 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crA" = ( /obj/structure/cable{ d1 = 1; @@ -44368,7 +43790,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crB" = ( /obj/structure/chair/stool{ dir = 8 @@ -44377,6 +43799,20 @@ icon_state = "neutralfull" }, /area/station/public/locker) +"crC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "crE" = ( /obj/structure/chair/comfy/black, /obj/machinery/navbeacon{ @@ -44386,7 +43822,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crF" = ( /obj/item/radio/beacon, /obj/structure/cable{ @@ -44397,7 +43833,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crG" = ( /obj/structure/chair/comfy/black, /obj/effect/landmark/start/assistant, @@ -44408,13 +43844,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crH" = ( /obj/structure/table/wood, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crJ" = ( /obj/structure/chair/stool{ dir = 1 @@ -44432,7 +43868,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -44444,7 +43880,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crO" = ( /obj/machinery/light, /obj/machinery/camera{ @@ -44457,7 +43893,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "crS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -44469,7 +43905,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "crT" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -44484,7 +43920,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "crW" = ( /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -44533,10 +43969,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "cse" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/table, /obj/structure/cable, /turf/simulated/floor/plating, @@ -44802,7 +44235,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "csP" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -44813,15 +44246,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) -"csQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "csR" = ( /obj/machinery/hologram/holopad, /obj/structure/cable{ @@ -44833,15 +44258,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) -"csS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "csT" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -44852,7 +44269,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "csU" = ( /obj/machinery/light{ dir = 4 @@ -44863,7 +44280,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "csV" = ( /turf/simulated/wall/r_wall, /area/station/service/expedition) @@ -44873,36 +44290,10 @@ icon_state = "neutralcorner" }, /area/station/hallway/primary/central/south) -"ctb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) "ctc" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard2) -"ctd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) "ctf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -44910,22 +44301,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) -"ctj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) +/area/station/hallway/primary/starboard/south) "ctl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -44981,14 +44357,6 @@ icon_state = "neutralfull" }, /area/station/public/locker) -"ctr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "cts" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plasteel{ @@ -45015,28 +44383,6 @@ icon_state = "neutralfull" }, /area/station/legal/courtroom) -"ctv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel, -/area/station/maintenance/starboard) -"ctw" = ( -/obj/machinery/door/airlock/virology/glass, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, -/area/station/medical/virology) "ctx" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -45063,21 +44409,6 @@ icon_state = "neutralcorner" }, /area/station/public/fitness) -"ctD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/classic/normal{ - name = "Medbay Desk" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, -/obj/item/paper_bin, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) "ctE" = ( /obj/machinery/door/poddoor/shutters{ density = 0; @@ -45099,7 +44430,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "ctF" = ( /obj/structure/table/reinforced, /obj/structure/extinguisher_cabinet{ @@ -45171,7 +44502,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "ctR" = ( /obj/structure/table/reinforced, /obj/item/stack/cable_coil/random, @@ -45179,10 +44510,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) "ctS" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/spawner/random_spawners/oil_maybe, /turf/simulated/floor/plating, /area/station/maintenance/port) @@ -45242,7 +44570,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cub" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -45254,7 +44582,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cuc" = ( /obj/structure/chair/comfy/black{ dir = 1 @@ -45268,7 +44596,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cud" = ( /obj/structure/cable{ d1 = 1; @@ -45283,7 +44611,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cue" = ( /obj/structure/chair/comfy/black{ dir = 1 @@ -45296,7 +44624,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cuf" = ( /obj/item/kirbyplants, /obj/structure/cable{ @@ -45307,7 +44635,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cug" = ( /obj/structure/cable{ d1 = 4; @@ -45318,7 +44646,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cuk" = ( /obj/structure/table, /obj/item/radio, @@ -45328,11 +44656,7 @@ /turf/simulated/floor/plasteel, /area/station/service/expedition) "cul" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -45367,7 +44691,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cuo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -45389,7 +44713,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cus" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -45401,7 +44725,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "cut" = ( /obj/machinery/light, /obj/structure/sign/securearea{ @@ -45424,7 +44748,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "cuv" = ( /obj/item/kirbyplants, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -45441,7 +44765,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "cuw" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -45726,7 +45050,7 @@ /turf/simulated/floor/plasteel, /area/station/service/expedition) "cuY" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/machinery/ai_status_display{ pixel_y = 32 }, @@ -45739,7 +45063,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/item/radio/intercom{ name = "north bump"; pixel_y = 28 @@ -45748,7 +45072,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "cva" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/machinery/status_display{ pixel_y = 32 }, @@ -45880,7 +45204,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cvt" = ( /obj/structure/table/reinforced, /obj/machinery/firealarm{ @@ -45919,11 +45243,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) "cvx" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -45963,29 +45283,13 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) -"cvE" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central/south) -"cvF" = ( -/turf/simulated/floor/plasteel{ - icon_state = "neutral" - }, -/area/station/hallway/primary/central/south) -"cvG" = ( -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cvH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cvJ" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, @@ -46044,16 +45348,6 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/rnd) -"cvU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) "cvV" = ( /obj/machinery/door/airlock/glass{ name = "Cabin" @@ -46067,7 +45361,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "cvX" = ( /obj/machinery/alarm{ dir = 1; @@ -46089,7 +45383,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "cvY" = ( /obj/structure/table, /turf/simulated/floor/plasteel, @@ -46163,55 +45457,11 @@ }, /turf/simulated/wall, /area/station/public/fitness) -"cwo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) -"cwp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "cwq" = ( /obj/item/kirbyplants, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel/white, /area/station/maintenance/port2) -"cwr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "cws" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/plasteel{ @@ -46423,7 +45673,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cwS" = ( /obj/structure/cable{ d1 = 1; @@ -46489,7 +45739,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) "cwY" = ( -/obj/machinery/suit_storage_unit/mime, +/obj/machinery/suit_storage_unit/mime/secure, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) @@ -46584,7 +45834,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cxn" = ( /turf/simulated/wall, /area/station/public/toilet/lockerroom) @@ -46707,8 +45957,12 @@ /area/station/engineering/control) "cxF" = ( /obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, /obj/effect/turf_decal/delivery, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/donut_box, /turf/simulated/floor/plasteel, /area/station/engineering/control) "cxG" = ( @@ -46788,7 +46042,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cxP" = ( /obj/effect/spawner/random_spawners/wall_rusted_maybe, /turf/simulated/wall, @@ -47065,7 +46319,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cyA" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; @@ -47082,7 +46336,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cyB" = ( /obj/machinery/shower{ dir = 4 @@ -47114,11 +46368,7 @@ /turf/simulated/floor/plasteel, /area/station/public/toilet/lockerroom) "cyH" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/camera{ c_tag = "Restrooms" }, @@ -47224,11 +46474,7 @@ }, /area/station/public/locker) "cyS" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/closet/wardrobe/pink, /obj/structure/cable{ d2 = 8; @@ -47247,13 +46493,9 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "cyU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -47277,12 +46519,7 @@ /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "cyX" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Cryo and Arrivals Super APC"; - pixel_y = 24 - }, +/obj/machinery/power/apc/important/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -47494,13 +46731,6 @@ }, /turf/simulated/floor/plasteel/grimy, /area/station/service/library) -"czB" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) "czC" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel/dark, @@ -47520,7 +46750,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery/hollow, @@ -47534,11 +46764,7 @@ }, /area/station/ai_monitored/storage/eva) "czJ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d1 = 2; d2 = 4; @@ -47620,7 +46846,7 @@ /area/station/science/robotics/showroom) "czO" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48026,6 +47252,14 @@ icon_state = "yellowfull" }, /area/station/engineering/hardsuitstorage) +"cAM" = ( +/obj/item/reagent_containers/glass/beaker/waterbottle, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/glass/reinforced/plasma, +/turf/simulated/floor/wood, +/area/station/medical/psych) "cAP" = ( /obj/effect/landmark/spawner/xeno, /turf/simulated/floor/plasteel{ @@ -48134,13 +47368,21 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) +"cBf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "cBg" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "cBh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -48150,7 +47392,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "cBi" = ( /obj/item/kirbyplants, /obj/machinery/light{ @@ -48752,7 +47994,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "cDa" = ( /obj/machinery/recharge_station, /obj/effect/turf_decal/delivery/hollow, @@ -48761,7 +48003,7 @@ "cDb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ - name = "MiniSat External Access" + name = "MiniSat Access" }, /obj/effect/mapping_helpers/airlock/access/all/science/minisat, /obj/structure/cable{ @@ -48788,7 +48030,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cDe" = ( /obj/effect/spawner/random_spawners/wall_rusted_always, /turf/simulated/wall, @@ -49209,16 +48451,13 @@ /obj/effect/spawner/random_spawners/wall_rusted_always, /turf/simulated/wall/r_wall, /area/station/engineering/control) -"cEC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" +"cEB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/area/station/medical/medbay) +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "cED" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/ai_status_display{ @@ -49247,22 +48486,12 @@ d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central/south) -"cEL" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, /area/station/hallway/primary/central) -"cEM" = ( -/obj/item/radio/intercom{ - name = "north bump"; - pixel_y = 28 - }, +"cEL" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -49311,7 +48540,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cET" = ( /obj/machinery/firealarm{ name = "north bump"; @@ -49321,7 +48550,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cEU" = ( /obj/structure/extinguisher_cabinet{ name = "north bump"; @@ -49331,7 +48560,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cEV" = ( /obj/structure/cable{ d1 = 1; @@ -49342,13 +48571,13 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cEW" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cEY" = ( /obj/structure/extinguisher_cabinet{ name = "north bump"; @@ -49358,7 +48587,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cEZ" = ( /obj/machinery/light{ dir = 1 @@ -49370,7 +48599,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cFa" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -49387,9 +48616,9 @@ /turf/simulated/floor/plasteel, /area/station/public/toilet/lockerroom) "cFc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -49398,25 +48627,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) -"cFd" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/hallway/primary/central) -"cFe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) +/area/station/hallway/primary/central/se) "cFg" = ( /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, @@ -49438,6 +48649,7 @@ "cFk" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cFl" = ( @@ -49490,23 +48702,6 @@ icon_state = "neutral" }, /area/station/public/fitness) -"cFo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "cFp" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -49514,7 +48709,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cFq" = ( /obj/structure/cable{ d1 = 4; @@ -49596,24 +48791,6 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/public/fitness) -"cFA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) -"cFB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) "cFD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -49725,10 +48902,7 @@ }, /area/station/security/brig) "cFR" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -50217,7 +49391,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cGA" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall7"; @@ -50227,7 +49401,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cGB" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall9"; @@ -50236,7 +49410,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cGD" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall9a"; @@ -50246,7 +49420,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cGF" = ( /obj/structure/cable{ d1 = 4; @@ -50263,28 +49437,9 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/hallway/primary/central) -"cGI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "neutralcorner" }, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) +/area/station/hallway/primary/central/se) "cGJ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -50298,40 +49453,24 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) -"cGN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"cGN" = ( /obj/effect/landmark/spawner/nukedisc_respawn, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/maintenance/starboard) -"cGO" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "cGP" = ( /obj/structure/bedsheetbin, /obj/structure/table, @@ -50545,7 +49684,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cHC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -50566,7 +49705,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cHE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -50587,7 +49726,7 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cHG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -50604,7 +49743,7 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cHH" = ( /obj/machinery/light, /obj/machinery/camera{ @@ -50626,7 +49765,7 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cHI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -50643,7 +49782,7 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cHJ" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -50654,10 +49793,15 @@ d2 = 8; icon_state = "4-8" }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cHK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -50673,7 +49817,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cHL" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -50690,7 +49834,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cHN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -50709,27 +49853,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/central) -"cHO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cHP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -50737,9 +49861,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/junction{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/turf_decal/stripes/corner, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -50748,7 +49873,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cHQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -50760,6 +49885,9 @@ dir = 8; icon_state = "pipe-c" }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -50768,16 +49896,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) -"cHV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) +/area/station/hallway/primary/central/se) "cHW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -50786,6 +49905,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" @@ -50804,8 +49924,6 @@ /area/station/maintenance/port2) "cHZ" = ( /obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) "cIa" = ( @@ -51065,7 +50183,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cIP" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) @@ -51082,7 +50200,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cIU" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -51091,11 +50209,11 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cIV" = ( /obj/structure/sign/science, /turf/simulated/wall, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cIW" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -51191,10 +50309,6 @@ }, /turf/simulated/wall, /area/station/medical/reception) -"cJg" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/medical/medbay) "cJh" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line, @@ -51204,12 +50318,6 @@ /obj/machinery/status_display, /turf/simulated/wall, /area/station/medical/reception) -"cJj" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, -/area/station/medical/reception) "cJk" = ( /obj/structure/sign/greencross, /turf/simulated/wall, @@ -51236,15 +50344,6 @@ icon_state = "neutral" }, /area/station/maintenance/starboard2) -"cJo" = ( -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/maintenance/starboard) -"cJp" = ( -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "cJq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -51254,69 +50353,6 @@ }, /turf/simulated/floor/plasteel, /area/station/science/robotics/chargebay) -"cJr" = ( -/obj/structure/table/glass, -/obj/item/tank/internals/emergency_oxygen/nitrogen{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/tank/internals/emergency_oxygen/nitrogen{ - pixel_x = 5 - }, -/obj/item/tank/internals/emergency_oxygen/plasma{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/tank/internals/emergency_oxygen/plasma{ - pixel_x = -5 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cJt" = ( -/obj/item/radio/intercom{ - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/closet/secure_closet/medical3, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cJu" = ( -/obj/structure/extinguisher_cabinet{ - name = "north bump"; - pixel_y = 30 - }, -/obj/structure/closet/radiation, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cJv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cJw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/maintenance/starboard) -"cJx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "cJz" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -51401,10 +50437,6 @@ }, /turf/simulated/floor/plasteel, /area/station/public/fitness) -"cJL" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "cJO" = ( /obj/machinery/light/small{ dir = 4 @@ -51467,13 +50499,10 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/electrical) "cJY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cJZ" = ( /obj/machinery/light/small{ dir = 1 @@ -51605,17 +50634,12 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) -"cKy" = ( -/obj/item/kirbyplants, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) "cKz" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cKA" = ( /obj/structure/chair/sofa/corp/right, /obj/effect/landmark/start/assistant, @@ -51646,10 +50670,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel/white, /area/station/science/research) -"cKE" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/white, -/area/station/science/genetics) "cKF" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -51684,20 +50704,21 @@ /turf/simulated/wall, /area/station/science/research) "cKM" = ( -/obj/structure/chair/sofa/corp/corner{ - dir = 4 - }, /obj/machinery/light{ dir = 8 }, +/obj/structure/table/glass, +/obj/item/book/random{ + pixel_x = 2; + pixel_y = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitebluecorner" }, /area/station/medical/reception) "cKN" = ( -/obj/structure/chair/sofa/corp/left, -/obj/effect/landmark/start/assistant, +/obj/item/kirbyplants, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitebluecorner" @@ -51710,18 +50731,7 @@ }, /area/station/medical/medbay) "cKP" = ( -/obj/structure/chair/comfy/teal, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cKQ" = ( -/obj/structure/table/holotable, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 6 - }, +/obj/structure/chair/office, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitebluecorner" @@ -51731,38 +50741,17 @@ /obj/machinery/light{ dir = 1 }, -/obj/structure/chair/comfy/teal, +/obj/structure/table/glass, +/obj/item/grown/sunflower, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" }, /area/station/medical/reception) -"cKS" = ( -/obj/structure/table/tray, -/obj/item/stack/medical/bruise_pack/advanced{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/stack/medical/ointment/advanced{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) "cKT" = ( /obj/structure/railing, /turf/simulated/floor/plasteel/white, /area/station/science/research) -"cKU" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) "cKV" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -51770,20 +50759,18 @@ }, /area/station/medical/medbay) "cKW" = ( -/obj/structure/chair/comfy/teal, -/obj/effect/landmark/start/assistant, +/obj/machinery/economy/vending/coffee, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitebluecorner" }, /area/station/medical/reception) "cKX" = ( -/obj/structure/table, +/obj/structure/table/glass, /obj/item/storage/firstaid/regular, -/obj/machinery/alarm{ - dir = 8; +/obj/item/radio/intercom{ name = "east bump"; - pixel_x = 24 + pixel_x = 28 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -51793,126 +50780,6 @@ "cKY" = ( /turf/simulated/wall, /area/station/medical/medbay) -"cLd" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Medbay Storage Room"; - dir = 4; - network = list("SS13","Medical") - }, -/obj/structure/table/glass, -/obj/item/storage/box/autoinjectors{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/iv_bags, -/obj/item/storage/box/pillbottles{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cLe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/storage) -"cLf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/storage) -"cLg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cLi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel, -/area/station/maintenance/starboard) -"cLk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) -"cLl" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/maintenance/starboard) "cLm" = ( /obj/structure/cable{ d1 = 4; @@ -51945,6 +50812,10 @@ d2 = 8; icon_state = "2-8" }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cLo" = ( @@ -52091,6 +50962,17 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/electrical) +"cLL" = ( +/obj/machinery/newscaster{ + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/closet/wardrobe/coroner, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "cLM" = ( /obj/structure/cable{ d1 = 4; @@ -52113,11 +50995,7 @@ /area/station/maintenance/electrical) "cLO" = ( /obj/structure/table/reinforced, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -52221,7 +51099,7 @@ }, /area/station/science/research) "cMo" = ( -/obj/structure/chair/sofa/corp/right{ +/obj/structure/chair/comfy/teal{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -52230,25 +51108,16 @@ }, /area/station/medical/reception) "cMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay) +/area/station/medical/reception) "cMq" = ( /turf/simulated/floor/plasteel/white, /area/station/medical/medbay) -"cMr" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/reception) -"cMs" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/reception) "cMt" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -52257,71 +51126,19 @@ }, /area/station/medical/reception) "cMv" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/light{ - dir = 1 - }, +/obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 1; + dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay) -"cMw" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) +/area/station/medical/paramedic) "cMz" = ( /turf/simulated/wall, /area/station/medical/storage) -"cMA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/radiation, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cMB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/storage) -"cMC" = ( -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/storage) -"cMG" = ( -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) "cMH" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/starboard) -"cMI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/station/maintenance/starboard) -"cMJ" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/maintenance/starboard) "cML" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, @@ -52363,7 +51180,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "cMR" = ( /obj/structure/chair{ dir = 4 @@ -52610,14 +51427,19 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cNO" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cNP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -52628,7 +51450,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cNQ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -52643,80 +51465,38 @@ /turf/simulated/floor/plasteel, /area/station/medical/reception) "cNR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/computer/crew{ dir = 4 }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/area/station/medical/medbay) -"cNS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/alarm{ + dir = 4; + name = "west bump"; + pixel_x = -24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/plasteel/white/side{ dir = 4 }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) -"cNT" = ( +/area/station/medical/paramedic) +"cNS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "whiteblue" + dir = 10 }, -/area/station/medical/reception) -"cNU" = ( -/obj/structure/rack/holorack, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 10 }, /turf/simulated/floor/plasteel/white, /area/station/medical/reception) -"cNV" = ( -/obj/item/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/plasteel/white, +"cNU" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, /area/station/medical/reception) "cNW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/chair/office{ + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -52724,14 +51504,20 @@ }, /area/station/medical/reception) "cNY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/structure/chair/office{ + dir = 8 }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) +/obj/effect/landmark/start/paramedic, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) "cNZ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/yellow{ @@ -52747,115 +51533,26 @@ /turf/space, /area/space/nearstation) "cOa" = ( -/obj/structure/chair/office/light{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/machinery/door_control{ - id = "psychfoyer"; - layer = 3.3; - name = "Psych Foyer Doors"; - normaldoorcontrol = 1; - pixel_x = -25; - pixel_y = -6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/effect/landmark/start/psychiatrist, -/turf/simulated/floor/wood, -/area/station/medical/psych) -"cOb" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_y = 5 +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/item/pen/multi, -/turf/simulated/floor/wood, -/area/station/medical/psych) -"cOc" = ( -/obj/machinery/light{ - dir = 4 +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" }, -/turf/simulated/floor/wood, -/area/station/medical/psych) -"cOd" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) -"cOe" = ( -/obj/item/reagent_containers/food/snacks/badrecipe, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) +/area/station/medical/paramedic) "cOg" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/medical/storage) -"cOh" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/fire{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cOi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start/doctor, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/storage) -"cOj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/storage) -"cOk" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - name = "east bump"; - pixel_x = 24 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) "cOl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52874,19 +51571,11 @@ }, /turf/space, /area/space/nearstation) -"cOn" = ( -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel, -/area/station/maintenance/starboard) "cOp" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/bananalamp, -/obj/item/reagent_containers/food/snacks/pie, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/item/food/snacks/pie, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -52911,11 +51600,7 @@ "cOr" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -52995,12 +51680,11 @@ /area/station/maintenance/electrical) "cOB" = ( /obj/machinery/atmospherics/unary/portables_connector{ - dir = 8 + dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" }, -/turf/simulated/floor/plasteel, /area/station/engineering/atmos) "cOC" = ( /obj/structure/table/reinforced, @@ -53157,15 +51841,6 @@ /obj/structure/sign/biohazard, /turf/simulated/wall, /area/station/science/xenobiology) -"cPa" = ( -/obj/effect/mob_spawn/human/corpse/charredskeleton, -/obj/effect/rune{ - cultist_desc = "an imitation of the real thing with no power."; - desc = "An odd collection of symbols drawn in what seems to be very old and dry blood."; - name = "old smeared rune" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "cPb" = ( /obj/structure/table/reinforced, /obj/item/storage/box/beakers, @@ -53262,10 +51937,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/landmark/lightsout, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cPA" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -53277,22 +51957,19 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/starboardsolar) "cPD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/railing{ + dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 10; + dir = 4; icon_state = "whiteblue" }, /area/station/medical/reception) "cPE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plasteel/white, +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/grass, /area/station/medical/reception) "cPG" = ( /obj/structure/girder, @@ -53301,21 +51978,11 @@ icon_state = "neutral" }, /area/station/maintenance/fsmaint) -"cPH" = ( -/obj/effect/landmark/lightsout, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/reception) "cPI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel/white, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, /area/station/medical/reception) "cPJ" = ( /obj/structure/disposalpipe/segment{ @@ -53339,39 +52006,9 @@ }, /turf/space, /area/space/nearstation) -"cPL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"cPM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"cPO" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "Psych" - }, -/turf/simulated/floor/plating, -/area/station/medical/psych) "cPQ" = ( /turf/simulated/floor/wood, /area/station/medical/psych) -"cPR" = ( -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/station/medical/psych) "cPT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -53381,25 +52018,6 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/port2) -"cPU" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/brute{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/brute{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) "cPV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -53407,31 +52025,6 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/maintenance/port2) -"cPW" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay Requests Console"; - pixel_x = 30 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) "cPX" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/yellow{ @@ -53475,6 +52068,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cQe" = ( @@ -53544,10 +52138,6 @@ icon_state = "neutralcorner" }, /area/station/public/fitness) -"cQs" = ( -/obj/item/reagent_containers/food/snacks/candy/candybar, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "cQu" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ @@ -53555,10 +52145,6 @@ icon_state = "neutral" }, /area/station/maintenance/port) -"cQv" = ( -/obj/effect/decal/cleanable/blood/footprints, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "cQx" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/simple/visible{ @@ -53813,7 +52399,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cRd" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -53846,7 +52432,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cRj" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -53854,140 +52440,6 @@ icon_state = "whitebluecorner" }, /area/station/medical/reception) -"cRk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) -"cRl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/reception) -"cRm" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"cRn" = ( -/obj/machinery/door_control{ - id = "medbayfoyer"; - layer = 3.3; - name = "Medbay Foyer Doors"; - normaldoorcontrol = 1; - pixel_x = -25 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"cRo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/radio/intercom{ - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"cRp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/station/medical/psych) -"cRq" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/station/medical/psych) -"cRr" = ( -/obj/item/radio/intercom{ - name = "east bump"; - pixel_x = 28 - }, -/obj/item/kirbyplants, -/turf/simulated/floor/wood, -/area/station/medical/psych) -"cRt" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/syringes, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/crutches, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cRu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/storage) -"cRv" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/storage) -"cRw" = ( -/obj/structure/table/glass, -/obj/item/storage/belt/medical, -/obj/item/storage/belt/medical, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/spray/cleaner, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) -"cRx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Toilet" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plasteel, -/area/station/medical/break_room) "cRy" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 @@ -54003,14 +52455,11 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cRA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -54384,77 +52833,12 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) -"cSx" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cSy" = ( -/obj/structure/table, -/obj/item/folder/white, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cSz" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) "cSA" = ( /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitebluecorner" }, /area/station/medical/medbay) -"cSB" = ( -/obj/item/kirbyplants, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cSD" = ( -/obj/structure/bed/roller, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/reception) -"cSE" = ( -/obj/machinery/light, -/obj/structure/sign/chemistry{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Medbay Lobby"; - dir = 1; - network = list("Medical","SS13") - }, -/obj/structure/bed/roller, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) "cSF" = ( /turf/simulated/floor/plasteel{ icon_state = "whitebluecorner" @@ -54471,36 +52855,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel/white, /area/station/medical/medbay) -"cSI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/station/medical/psych) -"cSJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/station/medical/psych) -"cSK" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/structure/closet/secure_closet/psychiatrist, -/obj/item/clipboard{ - pixel_x = -5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/station/medical/psych) "cSL" = ( /obj/structure/cable{ d1 = 4; @@ -54541,44 +52895,21 @@ /turf/space, /area/station/maintenance/starboardsolar) "cSO" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall, -/area/station/medical/storage) -"cSR" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/medical/break_room) -"cSS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/medical/break_room) -"cST" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/obj/structure/rack, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical{ + pixel_x = 3; + pixel_y = -3 }, -/obj/machinery/light/small{ - dir = 1 +/obj/item/storage/belt/medical{ + pixel_x = 6; + pixel_y = -6 }, -/obj/effect/decal/cleanable/vomit, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/spawner/nukedisc_respawn, /turf/simulated/floor/plasteel{ - icon_state = "neutralfull" + dir = 1; + icon_state = "whiteblue" }, -/area/station/medical/break_room) +/area/station/medical/storage) "cSW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, @@ -54633,15 +52964,6 @@ icon_state = "neutralfull" }, /area/station/public/fitness) -"cTg" = ( -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = 30 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) "cTh" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 @@ -54876,7 +53198,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cTT" = ( /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; @@ -54902,7 +53224,7 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cTW" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; @@ -54911,172 +53233,10 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cTX" = ( /turf/simulated/wall/r_wall, /area/station/medical/medbay) -"cTY" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 2; - id_tag = "chemdesk1"; - name = "Chemistry Desk Shutters" - }, -/obj/effect/spawner/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plating, -/area/station/medical/reception) -"cUb" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 2; - id_tag = "chemdesk1"; - name = "Chemistry Desk Shutters" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plating, -/area/station/medical/reception) -"cUe" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"cUf" = ( -/obj/machinery/camera{ - c_tag = "Medbay Entrance Hall"; - dir = 8; - network = list("Medical","SS13") - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"cUg" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Psychiatrist's Office"; - dir = 4; - network = list("Medical","SS13","Security") - }, -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/structure/cable, -/turf/simulated/floor/carpet, -/area/station/medical/psych) -"cUi" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/carpet, -/area/station/medical/psych) -"cUk" = ( -/obj/item/radio/intercom{ - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) -"cUl" = ( -/obj/structure/table/wood, -/obj/machinery/kitchen_machine/microwave, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) -"cUn" = ( -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/medbay) -"cUo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/item/radio/intercom{ - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutral" - }, -/area/station/medical/break_room) -"cUp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) -"cUq" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) -"cUr" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/medical/exam_room) -"cUs" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/ointment/advanced{ - pixel_x = 5 - }, -/obj/item/stack/medical/bruise_pack/advanced{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) "cUu" = ( /obj/structure/cable{ d1 = 2; @@ -55094,6 +53254,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cUv" = ( @@ -55101,7 +53262,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cUw" = ( /obj/structure/cable{ d1 = 4; @@ -55397,7 +53558,7 @@ icon_state = "pipe-y" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cVd" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery/hollow, @@ -55469,11 +53630,7 @@ /turf/simulated/floor/plasteel, /area/station/science/xenobiology) "cVo" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/table/reinforced, /obj/machinery/light{ dir = 4 @@ -55555,28 +53712,13 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cVD" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id_tag = "chemdesk2"; - name = "Chemistry Desk Shutters" - }, -/obj/effect/spawner/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plating, -/area/station/medical/chemistry) -"cVF" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/crew/chemist, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" +/obj/machinery/chem_master, +/obj/machinery/light{ + dir = 8 }, +/turf/simulated/floor/engine, /area/station/medical/chemistry) "cVG" = ( /obj/machinery/camera{ @@ -55587,158 +53729,27 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) -"cVH" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/chemist, -/turf/simulated/floor/plasteel, -/area/station/medical/chemistry) -"cVI" = ( -/obj/machinery/chem_dispenser, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/medical/chemistry) "cVL" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) -"cVM" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_x = -28 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cVN" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cVO" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/door_control{ - id = "medbayfoyer"; - layer = 3.3; - name = "Medbay Foyer Doors"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = 27 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cVP" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cVQ" = ( -/turf/simulated/floor/carpet, -/area/station/medical/psych) -"cVR" = ( -/obj/structure/bed/psych, -/turf/simulated/floor/carpet, -/area/station/medical/psych) -"cVS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) -"cVT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"cVU" = ( -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) -"cVV" = ( -/obj/item/kirbyplants, -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = 30 - }, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) -"cVW" = ( -/obj/machinery/newscaster{ - dir = 4; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) -"cVY" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "redbluefull" - }, -/area/station/medical/break_room) "cWa" = ( /obj/machinery/camera{ c_tag = "Port Hallway South" }, +/obj/machinery/firealarm{ + name = "north bump"; + pixel_y = 24 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "cWb" = ( /obj/machinery/light{ dir = 1 @@ -55751,10 +53762,6 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) -"cWc" = ( -/obj/effect/spawner/random_spawners/wall_rusted_always, -/turf/simulated/wall, -/area/station/medical/break_room) "cWd" = ( /turf/simulated/wall, /area/station/medical/break_room) @@ -55862,11 +53869,7 @@ }, /area/station/maintenance/port) "cWs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -56136,199 +54139,50 @@ }, /turf/simulated/floor/plasteel, /area/station/science/research) -"cXd" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway South 1"; - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "orangecorner" - }, -/area/station/hallway/primary/aft) "cXe" = ( /turf/simulated/wall/r_wall, /area/station/medical/chemistry) "cXf" = ( -/obj/structure/closet/secure_closet/reagents, -/obj/structure/disaster_counter/chemistry{ - pixel_x = -32 +/obj/effect/spawner/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter" }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteyellow" +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" }, +/turf/simulated/floor/plating, /area/station/medical/chemistry) "cXg" = ( /turf/simulated/floor/plasteel/white, /area/station/medical/chemistry) "cXh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, -/area/station/medical/chemistry) -"cXi" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/effect/spawner/window/reinforced, +/obj/structure/sign/chemistry, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/plating, /area/station/medical/chemistry) "cXj" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/alarm{ - dir = 8; - name = "east bump"; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/simulated/floor/plasteel, -/area/station/medical/chemistry) -"cXm" = ( -/obj/item/radio/intercom{ - name = "west bump"; - pixel_x = -28 - }, -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/station/medical/reception) -"cXn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) -"cXo" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/landmark/start/doctor, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) -"cXp" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/medical/reception) -"cXq" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) -"cXy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel/white, -/area/station/medical/exam_room) -"cXz" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/start/doctor, -/turf/simulated/floor/plasteel/white, -/area/station/medical/exam_room) -"cXA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/exam_room) -"cXB" = ( -/obj/machinery/camera{ - c_tag = "Medbay Public Exam Room"; - dir = 8; - network = list("SS13","Medical") - }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 4; - name = "east bump"; - pixel_x = 24; - shock_proof = 1 - }, -/obj/structure/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) -"cXC" = ( -/obj/structure/chair/stool, -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutral" - }, -/area/station/medical/break_room) -"cXD" = ( -/obj/structure/closet/crate, -/obj/item/retractor, -/obj/effect/spawner/lootdrop/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) -"cXF" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "redbluefull" +/obj/structure/railing{ + dir = 9 }, -/area/station/medical/break_room) -"cXG" = ( +/obj/structure/table/glass, +/obj/item/toy/plushie/slimeplushie, /turf/simulated/floor/plasteel{ - icon_state = "redbluefull" + dir = 1; + icon_state = "whitebluecorner" }, -/area/station/medical/break_room) +/area/station/medical/medbay) "cXI" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -56423,6 +54277,11 @@ /area/station/maintenance/port) "cYh" = ( /obj/structure/closet/wardrobe/yellow, +/obj/machinery/requests_console{ + department = "Locker Room"; + name = "Locker Room Requests Console"; + pixel_x = 30 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, @@ -56497,119 +54356,36 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel/white, /area/station/science/rnd) -"cYC" = ( -/turf/simulated/floor/plasteel{ - icon_state = "orangecorner" - }, -/area/station/hallway/primary/aft) "cYD" = ( -/obj/structure/table/glass, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/machinery/alarm{ + dir = 4; + name = "west bump"; + pixel_x = -24 }, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whiteyellow" +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/station/medical/chemistry) -"cYE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/camera{ + c_tag = "Chemistry North"; + dir = 4; + network = list("Medical","SS13") }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whiteyellowcorner" + icon_state = "whiteyellow" }, /area/station/medical/chemistry) "cYF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) -"cYG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) -"cYH" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/landmark/start/chemist, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteyellow" }, /area/station/medical/chemistry) -"cYI" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/station/medical/chemistry) -"cYJ" = ( -/obj/structure/table/glass, -/obj/machinery/light/small, -/obj/item/clipboard, -/obj/item/toy/figure/crew/md, -/obj/machinery/camera{ - c_tag = "Medbay Front Desk"; - dir = 1; - network = list("Medical","SS13") - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cYL" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/reception) -"cYM" = ( -/obj/structure/table, -/obj/machinery/light/small, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/cleaner, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) -"cYN" = ( -/obj/structure/closet/wardrobe/coroner, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) "cYO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -56624,20 +54400,6 @@ "cYP" = ( /turf/simulated/wall, /area/station/medical/psych) -"cYR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/plasteel/freezer, -/area/station/medical/medbay) -"cYS" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower, -/turf/simulated/floor/noslip, -/area/station/medical/medbay) "cYU" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -56647,62 +54409,6 @@ }, /turf/space, /area/station/maintenance/starboardsolar) -"cYV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/exam_room) -"cYW" = ( -/obj/structure/extinguisher_cabinet{ - name = "east bump"; - pixel_x = 30 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) -"cYX" = ( -/obj/structure/table/wood, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) -"cYY" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "redbluefull" - }, -/area/station/medical/break_room) -"cYZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "redbluefull" - }, -/area/station/medical/break_room) "cZb" = ( /obj/machinery/sleeper{ dir = 4 @@ -56719,7 +54425,7 @@ dir = 1; icon_state = "whitebluecorner" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "cZc" = ( /obj/structure/rack, /obj/item/clothing/accessory/stethoscope, @@ -56740,6 +54446,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cZe" = ( @@ -56751,12 +54458,12 @@ dir = 1; icon_state = "whitebluecorner" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "cZf" = ( /obj/machinery/iv_drip, /obj/structure/bed/roller, /turf/simulated/floor/plating, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "cZg" = ( /obj/structure/table/glass, /obj/structure/sign/nosmoking_2{ @@ -56771,7 +54478,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "cZh" = ( /obj/machinery/iv_drip, /obj/structure/bed/roller, @@ -56780,7 +54487,7 @@ dir = 4; icon_state = "whitebluecorner" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "cZi" = ( /obj/structure/mirror{ icon_state = "mirror_broke"; @@ -56791,7 +54498,7 @@ dir = 4; icon_state = "whitebluecorner" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "cZj" = ( /obj/machinery/constructable_frame/machine_frame, /obj/effect/decal/cleanable/cobweb2, @@ -56803,7 +54510,7 @@ dir = 4; icon_state = "whitebluecorner" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "cZk" = ( /obj/machinery/door/airlock/maintenance{ name = "Gambling Den" @@ -56836,15 +54543,6 @@ /obj/structure/rack, /turf/simulated/floor/plating, /area/station/maintenance/port) -"cZp" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) "cZq" = ( /obj/machinery/atmospherics/binary/valve, /obj/structure/sign/nosmoking_2{ @@ -56857,11 +54555,7 @@ /area/station/maintenance/electrical) "cZs" = ( /obj/structure/table/reinforced, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/item/folder/white, /obj/item/stock_parts/cell/high, /obj/item/stack/sheet/glass, @@ -56929,43 +54623,6 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/science/xenobiology) -"cZD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/door_control{ - id = "chemdesk2"; - name = "Secondary Chemistry Shutters"; - pixel_x = -26; - pixel_y = -5 - }, -/obj/machinery/door_control{ - id = "chemdesk1"; - name = "Primary Chemistry Shutters"; - pixel_x = -26; - pixel_y = 5 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/station/medical/chemistry) -"cZE" = ( -/obj/machinery/chem_master, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/station/medical/chemistry) "cZF" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -56982,54 +54639,14 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/white, /area/station/science/research) -"cZJ" = ( -/obj/structure/extinguisher_cabinet{ - name = "west bump"; - pixel_x = -30 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"cZL" = ( -/turf/simulated/floor/plasteel/freezer, -/area/station/medical/medbay) -"cZM" = ( -/obj/item/kirbyplants, -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) "cZN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/exam_room) -"cZO" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) -"cZQ" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) "cZR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -57038,20 +54655,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) -"cZS" = ( -/obj/machinery/sleeper, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) +/area/station/hallway/primary/aft/south) "cZT" = ( /obj/structure/cable{ d1 = 2; @@ -57068,85 +54672,31 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" }, /area/station/maintenance/starboard) -"cZU" = ( -/obj/structure/chair/stool, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) -"cZV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutral" - }, -/area/station/medical/break_room) -"cZW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) -"cZX" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 4; - name = "east bump"; - pixel_x = 24; - shock_proof = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) "cZY" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitebluecorner" }, -/area/station/medical/surgery) -"daa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/exam_room) +/area/station/maintenance/starboard) "dab" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dac" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dad" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, @@ -57170,11 +54720,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/abandonedbar) "dah" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/table/wood, /obj/item/clothing/gloves/color/fyellow, /obj/item/storage/toolbox/electrical, @@ -57296,16 +54842,21 @@ }, /area/station/maintenance/port) "dat" = ( -/obj/machinery/chem_heater, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/smartfridge/medbay, +/obj/machinery/door/window/classic/reversed, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, +/obj/effect/mapping_helpers/airlock/windoor/autoname/desk, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/plasteel/white, /area/station/medical/chemistry) "dau" = ( /turf/simulated/floor/plasteel{ @@ -57323,17 +54874,6 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) -"dax" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) "daz" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -57449,34 +54989,18 @@ /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, -/area/station/hallway/primary/aft) -"daO" = ( -/obj/structure/sign/chemistry{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/simulated/floor/plasteel{ - icon_state = "orangecorner" - }, -/area/station/hallway/primary/aft) -"daP" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/turf/simulated/floor/plasteel{ - icon_state = "orangefull" - }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "daR" = ( /obj/item/crowbar, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "daS" = ( /obj/item/kirbyplants, /turf/simulated/floor/plating, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "daT" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -57496,16 +55020,6 @@ }, /turf/space, /area/station/maintenance/starboardsolar) -"daU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) "daW" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -57518,37 +55032,6 @@ icon_state = "whiteyellowcorner" }, /area/station/medical/medbay) -"daZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dbb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) "dbc" = ( /obj/machinery/power/solar{ name = "Aft Starboard Solar Panel" @@ -57559,32 +55042,25 @@ }, /area/station/maintenance/starboardsolar) "dbd" = ( -/obj/machinery/chem_dispenser, +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper/precision, /obj/effect/turf_decal/stripes/line{ - dir = 1 + dir = 5 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/medical/chemistry) "dbg" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, /area/station/science/robotics) -"dbi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) -"dbl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "dbm" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -57606,51 +55082,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" }, /area/station/maintenance/starboard) -"dbr" = ( -/obj/effect/decal/cleanable/fungus, -/turf/simulated/wall, -/area/station/medical/surgery) -"dbs" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/exam_room) -"dbt" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/exam_room) -"dbu" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/exam_room) -"dbv" = ( -/obj/structure/sign/greencross{ - pixel_x = 32 - }, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/medical/exam_room) "dbw" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/apmaint) @@ -57670,17 +55107,6 @@ icon_state = "neutral" }, /area/station/maintenance/starboard) -"dbA" = ( -/obj/item/hemostat, -/obj/structure/table/tray, -/obj/machinery/newscaster{ - dir = 1; - name = "south bump"; - pixel_y = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/medical/surgery) "dbB" = ( /obj/structure/cable{ d1 = 4; @@ -57730,14 +55156,10 @@ /turf/simulated/floor/plasteel/dark, /area/station/maintenance/abandonedbar) "dbF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Observation Room" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/dark, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/rock/jungle, +/turf/simulated/floor/grass, /area/station/medical/medbay) "dbG" = ( /obj/item/kirbyplants, @@ -57906,293 +55328,93 @@ /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, -/area/station/hallway/primary/aft) -"dcf" = ( -/turf/simulated/floor/plasteel{ - icon_state = "orangefull" - }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dcg" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/white, /area/station/medical/chemistry) "dch" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/stool{ dir = 8 }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /obj/effect/landmark/start/chemist, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/medical/chemistry) -"dci" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "dcj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall8"; location = "hall7c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) -"dcm" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/station/medical/medbay) -"dcn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dco" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dcp" = ( -/obj/machinery/door/airlock/external{ - id_tag = "stationai_door_ext"; - locked = 1; - name = "Minisat Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/engineering/ai_transit_tube) -"dcr" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/landmark/lightsout, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) +/area/station/hallway/primary/aft/south) "dcs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/medical/chemistry) -"dct" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dcv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + dir = 6 }, /obj/structure/cable{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) -"dcw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dcx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dcy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" + dir = 4; + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) +/area/station/medical/chemistry) "dcz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" + icon_state = "neutralfull" }, -/area/station/medical/medbay) +/area/station/hallway/primary/central/ne) "dcA" = ( /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutral" }, /area/station/maintenance/apmaint) -"dcB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel, -/area/station/maintenance/starboard) "dcC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" }, /area/station/maintenance/starboard) "dcE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel/white, -/area/station/medical/exam_room) +/area/station/medical/medbay) "dcF" = ( /obj/machinery/door/airlock/maintenance{ locked = 1; @@ -58208,38 +55430,48 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dcG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dcH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dcI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dcJ" = ( /obj/structure/dresser, /obj/effect/decal/cleanable/cobweb, @@ -58306,7 +55538,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dcT" = ( /obj/structure/chair/wood, /turf/simulated/floor/wood, @@ -58321,13 +55553,10 @@ /turf/simulated/floor/wood, /area/station/maintenance/abandonedbar) "dcV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dcW" = ( /obj/effect/landmark/spawner/xeno, /turf/simulated/floor/plating, @@ -58409,7 +55638,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dde" = ( /obj/machinery/economy/vending/coffee, /turf/simulated/floor/wood, @@ -58461,13 +55690,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) "ddm" = ( /obj/machinery/light, /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "ddn" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -58475,7 +55704,7 @@ }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "ddr" = ( /obj/machinery/camera{ c_tag = "Research and Development"; @@ -58548,6 +55777,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/recharger{ + pixel_y = 5 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitepurplecorner" @@ -58638,108 +55870,27 @@ /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, -/area/station/hallway/primary/aft) -"ddK" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - icon_state = "orangefull" - }, -/area/station/hallway/primary/aft) -"ddM" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) +/area/station/hallway/primary/aft/north) "ddN" = ( -/obj/structure/reagent_dispensers/fueltank/chem{ - pixel_y = -32 - }, /obj/structure/table/glass, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; - name = "Chemistry Cleaner" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteyellow" - }, -/area/station/medical/chemistry) -"ddO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteyellow" - }, -/area/station/medical/chemistry) -"ddP" = ( -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/closet/secure_closet/chemical, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteyellow" - }, -/area/station/medical/chemistry) -"ddQ" = ( -/obj/machinery/light_switch{ - dir = 1; - name = "south bump"; - pixel_y = -24 +/obj/machinery/door_control{ + desc = "A remote control switch for the medbay foyer."; + id = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter Control"; + pixel_x = 26 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/reagent_containers/dropper{ + pixel_y = 7 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/item/clothing/glasses/science{ + pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science{ + pixel_y = -3 }, /turf/simulated/floor/plasteel{ - dir = 6; + dir = 4; icon_state = "whiteyellow" }, /area/station/medical/chemistry) @@ -58747,60 +55898,22 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/plating, -/area/station/medical/surgery) -"ddS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteyellowcorner" - }, -/area/station/medical/medbay) -"ddU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"ddV" = ( +/obj/structure/railing/corner{ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 8; + dir = 1; icon_state = "whitebluecorner" }, /area/station/medical/medbay) -"ddV" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 8; - network = list("Medical","SS13") - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/bottle/charcoal, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/dropper, -/obj/machinery/firealarm{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/station/medical/chemistry) "ddW" = ( /obj/structure/cable{ d1 = 1; @@ -58815,19 +55928,6 @@ icon_state = "neutral" }, /area/station/maintenance/apmaint) -"ddX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) "ddY" = ( /obj/structure/cable{ d1 = 1; @@ -58841,71 +55941,11 @@ /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) "ddZ" = ( -/obj/machinery/chem_master, -/obj/structure/extinguisher_cabinet{ - name = "south bump"; - pixel_y = -30 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32; - pixel_y = -32 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/medical/chemistry) -"dea" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/medbay) -"deb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"ded" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) -"deh" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dej" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) "dek" = ( /obj/structure/rack, /obj/item/roller, @@ -58923,25 +55963,36 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "dem" = ( /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "deo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dep" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "deq" = ( /obj/machinery/door/airlock/maintenance{ locked = 1; @@ -58949,26 +56000,17 @@ }, /obj/structure/barricade/wooden, /turf/simulated/floor/plasteel, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "der" = ( /obj/machinery/shower{ dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitebluecorner" }, -/area/station/medical/surgery) -"des" = ( -/obj/effect/spawner/random_spawners/wall_rusted_maybe, -/turf/simulated/wall, -/area/station/medical/break_room) +/area/station/maintenance/starboard) "det" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, @@ -59193,10 +56235,6 @@ icon_state = "neutral" }, /area/station/maintenance/port) -"deV" = ( -/obj/structure/sign/examroom, -/turf/simulated/wall, -/area/station/medical/exam_room) "deW" = ( /obj/structure/cable{ d1 = 1; @@ -59261,6 +56299,16 @@ "dff" = ( /turf/simulated/wall/r_wall, /area/station/command/office/rd) +"dfl" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) "dfm" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; @@ -59278,29 +56326,16 @@ /turf/simulated/floor/plating, /area/station/science/robotics/chargebay) "dfq" = ( -/obj/machinery/chem_heater, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Chemistry Requests Console"; - pixel_y = -30 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/plasteel, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, /area/station/medical/chemistry) -"dfr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "dft" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -59308,27 +56343,16 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dfu" = ( /turf/simulated/wall, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dfv" = ( /turf/simulated/wall, /area/station/medical/paramedic) -"dfx" = ( -/turf/simulated/wall/r_wall, -/area/station/medical/cloning) "dfy" = ( /turf/simulated/wall, /area/station/medical/cloning) -"dfz" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/medical/cloning) -"dfA" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall, -/area/station/medical/cloning) "dfB" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -59337,29 +56361,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) -"dfC" = ( -/obj/machinery/iv_drip, -/obj/machinery/newscaster{ - dir = 8; - name = "east bump"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/medbay) -"dfE" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) +/area/station/hallway/primary/aft/north) "dfH" = ( /obj/structure/cable{ d1 = 1; @@ -59368,6 +56370,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" @@ -59426,13 +56429,6 @@ icon_state = "wood-broken" }, /area/station/maintenance/abandonedbar) -"dfQ" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dfR" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -59560,51 +56556,6 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) -"dgw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/firealarm{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/aft) -"dgx" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dgy" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dgB" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "dgC" = ( /obj/machinery/light{ dir = 8 @@ -59613,128 +56564,37 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dgD" = ( /turf/simulated/wall/r_wall, /area/station/medical/paramedic) "dgF" = ( -/obj/machinery/computer/crew, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "whiteblue" + dir = 8; + icon_state = "whiteyellow" }, -/area/station/medical/paramedic) +/area/station/medical/chemistry) "dgG" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, +/turf/simulated/floor/plasteel/white, /area/station/medical/paramedic) "dgH" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/extinguisher_cabinet{ - name = "north bump"; - pixel_y = 30 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /obj/structure/cable{ + d1 = 1; d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/station/medical/paramedic) -"dgI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/clonepod, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/cloning) -"dgJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/computer/cloning, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/station/medical/cloning) -"dgK" = ( -/obj/machinery/alarm{ - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/dna_scannernew, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/station/medical/cloning) -"dgL" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/station/medical/cloning) -"dgM" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/cloning) -"dgN" = ( -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitepurplecorner" + icon_state = "1-2" }, -/area/station/medical/cloning) -"dgO" = ( -/obj/machinery/power/apc{ +/obj/structure/disposalpipe/segment{ dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/book/manual/medical_cloning, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" + icon_state = "pipe-c" }, -/area/station/medical/cloning) +/turf/simulated/floor/plasteel/white, +/area/station/medical/chemistry) "dgP" = ( /obj/structure/girder, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -59746,17 +56606,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) -"dgQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "dgR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -59766,44 +56615,31 @@ icon_state = "neutral" }, /area/station/maintenance/apmaint) -"dgS" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) "dgT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/rack, +/obj/item/storage/box/patch_packs{ + pixel_x = 3; + pixel_y = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) -"dgU" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 9 +/obj/item/storage/box/beakers{ + pixel_y = 2 }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dgV" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -4; - pixel_y = 4 +/obj/item/storage/box/syringes{ + pixel_x = -3 }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 3 +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = -2 }, -/obj/item/screwdriver, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/extinguisher_cabinet{ + name = "north bump"; + pixel_y = 30 }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "dgW" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -59821,53 +56657,31 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dgZ" = ( -/obj/machinery/camera{ - c_tag = "Patient Room West"; - dir = 4; - network = list("Medical","SS13") - }, -/obj/structure/closet/wardrobe/pjs, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - icon_state = "cmo" + dir = 1; + icon_state = "whitegreen" }, /area/station/medical/medbay) "dhc" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/newscaster{ - dir = 4; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/medbay) -"dhd" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/medbay) -"dhe" = ( -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, /area/station/medical/medbay) -"dhf" = ( -/obj/machinery/camera{ - c_tag = "Patient Room East"; - dir = 8; - network = list("Medical","SS13") +"dhh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/closet/wardrobe/pjs, /turf/simulated/floor/plasteel{ - icon_state = "cmo" + icon_state = "neutralfull" }, -/area/station/medical/medbay) +/area/station/hallway/secondary/entry/south) "dhi" = ( /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, @@ -60156,13 +56970,6 @@ icon_state = "neutral" }, /area/station/maintenance/apmaint) -"dil" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "dim" = ( /obj/structure/table, /obj/machinery/light{ @@ -60231,11 +57038,7 @@ /turf/simulated/floor/plasteel, /area/station/science/robotics/chargebay) "dis" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -60268,47 +57071,35 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "diw" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "diy" = ( /obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plasteel/white, -/area/station/medical/paramedic) +/area/station/medical/chemistry) "diz" = ( /obj/structure/cable{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" +/turf/simulated/floor/plasteel/white, +/area/station/medical/chemistry) +"diC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/station/medical/paramedic) -"diB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 1; + dir = 8; icon_state = "whitebluecorner" }, -/area/station/medical/cloning) -"diC" = ( -/turf/simulated/floor/plasteel/white, -/area/station/medical/cloning) +/area/station/medical/medbay) "diD" = ( /obj/structure/cable{ d1 = 4; @@ -60325,99 +57116,16 @@ icon_state = "blue" }, /area/station/maintenance/apmaint) -"diE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/cloning) -"diF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/station/medical/cloning) -"diG" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"diI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +"diN" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"diJ" = ( /obj/structure/cable{ - d1 = 4; d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/station/medical/medbay) -"diK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/effect/landmark/start/doctor, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"diL" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"diM" = ( -/obj/structure/extinguisher_cabinet{ - name = "east bump"; - pixel_x = 30 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"diN" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" + icon_state = "0-8" }, -/area/station/medical/medbay) +/turf/simulated/floor/plating, +/area/station/command/office/cmo) "diQ" = ( /obj/structure/rack, /obj/machinery/light/small{ @@ -60762,29 +57470,6 @@ }, /turf/simulated/floor/plasteel, /area/station/science/robotics/chargebay) -"djW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/maintenance/aft) -"djY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/station/medical/cloning) "djZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -60795,73 +57480,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) -"dka" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/cloning) -"dkb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/cloning) -"dkc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/cloning) -"dkd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/cloning) -"dke" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dkf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "dkh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -60869,22 +57487,12 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) -"dkj" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dkk" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "dkl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel/dark, -/area/station/medical/medbay) +/area/station/medical/surgery/observation) "dkm" = ( /obj/structure/rack, /obj/structure/extinguisher_cabinet{ @@ -60998,10 +57606,7 @@ }, /area/station/maintenance/port2) "dkB" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel/white, @@ -61027,6 +57632,20 @@ "dkI" = ( /turf/simulated/wall/r_wall, /area/station/science/toxins/mixing) +"dkL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "dkP" = ( /obj/structure/barricade/wooden, /obj/machinery/door/airlock/maintenance, @@ -61137,36 +57756,39 @@ }, /area/station/science/research) "dkY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/table/glass, +/obj/item/hand_labeler, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Chemistry Requests Console"; + pixel_x = -30 }, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whiteblue" + icon_state = "whiteyellow" }, -/area/station/medical/paramedic) +/area/station/medical/chemistry) "dkZ" = ( -/obj/machinery/door_control{ - id = "paramedic"; - name = "Garage Door Control"; - pixel_x = -24; - pixel_y = 1; - req_access_txt = "66" - }, -/obj/machinery/light_switch{ - dir = 4; - name = "custom placement"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper/precision, +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/area/station/medical/paramedic) +/turf/simulated/floor/engine, +/area/station/medical/chemistry) "dla" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -61185,13 +57807,18 @@ /turf/simulated/floor/plasteel, /area/station/science/robotics/chargebay) "dld" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/area/station/medical/medbay) +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) "dle" = ( /obj/machinery/alarm{ dir = 8; @@ -61201,71 +57828,15 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dlf" = ( -/obj/effect/landmark/start/paramedic, -/turf/simulated/floor/plasteel/white, -/area/station/medical/paramedic) -"dlg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/cloning) -"dlh" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay West Hallway"; - dir = 1; - network = list("Medical","SS13") - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dli" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/station/medical/cloning) -"dlj" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/cloning) -"dlk" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, +/obj/structure/chair/stool, /obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dll" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/cloning) -"dlm" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay Cloning"; dir = 1 }, -/obj/machinery/bodyscanner, -/turf/simulated/floor/plasteel{ - icon_state = "whitepurplecorner" - }, -/area/station/medical/cloning) +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) "dlp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -61277,29 +57848,17 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"dlq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/white, -/area/station/medical/cloning) -"dlr" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/portable/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "dls" = ( -/obj/machinery/atmospherics/unary/thermomachine/freezer{ - dir = 1 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/station/medical/psych) "dlu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -61309,9 +57868,16 @@ }, /area/station/medical/medbay) "dlv" = ( -/obj/structure/sign/nosmoking_2, -/turf/simulated/wall, -/area/station/medical/medbay) +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) "dlw" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable{ @@ -61327,33 +57893,9 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) -"dly" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Observation Room" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/medbay) "dlz" = ( /turf/simulated/wall, /area/station/medical/surgery) -"dlA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "redbluefull" - }, -/area/station/medical/break_room) -"dlB" = ( -/turf/simulated/floor/plating, -/area/station/medical/surgery) "dlD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -61365,20 +57907,6 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"dlE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "dlG" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -61452,11 +57980,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "dlV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/item/kirbyplants, /obj/structure/cable, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -61469,11 +57993,6 @@ icon_state = "whitepurplecorner" }, /area/station/command/office/rd) -"dlW" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) "dma" = ( /obj/structure/cable{ d1 = 4; @@ -61513,31 +58032,6 @@ }, /turf/simulated/floor/plasteel/white, /area/station/command/office/rd) -"dmd" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Monkey Pen" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/turf_decal/delivery/partial{ - dir = 1 - }, -/obj/effect/turf_decal/arrows/black{ - dir = 1 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) "dmf" = ( /obj/effect/turf_decal/delivery/hollow, /obj/machinery/light_switch{ @@ -61558,34 +58052,16 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dmi" = ( /turf/simulated/wall, /area/station/science/genetics) -"dmj" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/portable/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "dmk" = ( -/obj/machinery/alarm{ - dir = 8; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/medical/paramedic) +/turf/simulated/floor/engine, +/area/station/medical/chemistry) "dml" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -61595,56 +58071,12 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) -"dmn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) -"dmp" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "dmq" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/port) -"dmr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dms" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall/r_wall, -/area/station/command/office/cmo) "dmt" = ( /turf/simulated/wall/r_wall, /area/station/command/office/cmo) -"dmu" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "CMO" - }, -/turf/simulated/floor/plating, -/area/station/command/office/cmo) "dmv" = ( /obj/machinery/light{ dir = 8 @@ -61654,48 +58086,11 @@ icon_state = "whitebluecorner" }, /area/station/medical/medbay) -"dmw" = ( -/obj/machinery/camera{ - c_tag = "Medbay Observation Room"; - dir = 4; - network = list("Medical","SS13") - }, -/obj/item/kirbyplants, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkblue" - }, -/area/station/medical/surgery/observation) "dmy" = ( /obj/structure/girder, /obj/effect/decal/cleanable/fungus, /turf/simulated/floor/plating, /area/station/maintenance/port) -"dmz" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkblue" - }, -/area/station/medical/surgery/observation) -"dmA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) -"dmB" = ( -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkblue" - }, -/area/station/medical/surgery/observation) "dmG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -61883,11 +58278,7 @@ }, /area/station/security/brig) "dne" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -62029,210 +58420,44 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dnD" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dnH" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/abandonedbar) -"dnI" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id_tag = "paramedic"; - name = "Paramedic Garage" - }, -/obj/effect/turf_decal/delivery/blue, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plasteel, -/area/station/medical/paramedic) "dnJ" = ( -/obj/vehicle/ambulance{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Paramedic's Office"; - dir = 1; - network = list("Medical","SS13") - }, -/obj/effect/turf_decal/stripes/end{ +/obj/machinery/chem_heater, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/paramedic) +/turf/simulated/floor/engine, +/area/station/medical/chemistry) "dnK" = ( -/obj/machinery/status_display, -/turf/simulated/wall, -/area/station/science/genetics) -"dnL" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom{ - name = "north bump"; - pixel_y = 28 - }, -/obj/item/storage/box/disks{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/gloves, -/turf/simulated/floor/plasteel/dark, -/area/station/science/genetics) -"dnN" = ( -/obj/machinery/light{ - dir = 1 - }, /obj/machinery/computer/scan_consolenew, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/simulated/floor/plasteel, -/area/station/science/genetics) -"dnO" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ +/obj/machinery/alarm{ dir = 8; - icon_state = "whiteblue" - }, -/area/station/science/genetics) -"dnQ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 + name = "east bump"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/science/genetics) -"dnR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 + dir = 5; + icon_state = "whitepurple" }, -/mob/living/carbon/human/monkey, -/turf/simulated/floor/grass, /area/station/science/genetics) -"dnU" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/firealarm{ - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dnV" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/cartridge/medical, -/obj/item/cartridge/medical, -/obj/item/cartridge/chemistry, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) "dnW" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/flashlight/pen, -/obj/item/clothing/accessory/stethoscope, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) +/turf/simulated/floor/light, +/area/station/engineering/atmos) "dnX" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dnY" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/radio/intercom{ - name = "north bump"; - pixel_y = 28 - }, -/obj/item/clothing/glasses/hud/health, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dnZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/chair/sofa/left{ dir = 8 }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"doa" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/firealarm{ - name = "north bump"; - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/simulated/floor/plasteel, -/area/station/science/genetics) -"doe" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) -"dof" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Observation Room" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) +/turf/simulated/floor/wood, +/area/station/medical/psych) "dog" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, /obj/structure/disposalpipe/sortjunction{ dir = 8; name = "Quartermaster Junction"; @@ -62245,84 +58470,14 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) -"doh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) -"doi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) +/area/station/hallway/primary/central/north) "doj" = ( /turf/simulated/floor/plasteel/dark, /area/station/medical/surgery/observation) -"dok" = ( -/obj/machinery/firealarm{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) -"dol" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) "dom" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/public/construction) -"don" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) "doo" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -62408,18 +58563,6 @@ /obj/item/pen, /turf/simulated/floor/plasteel/white, /area/station/maintenance/port2) -"doF" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/camera{ - c_tag = "Medbay Cloning"; - dir = 1; - network = list("Medical","SS13") - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/cloning) "doJ" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -62525,14 +58668,9 @@ /turf/simulated/floor/plasteel/white, /area/station/science/robotics/chargebay) "doS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/north) "doT" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -62576,313 +58714,53 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "doZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dpa" = ( /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dpd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/station/science/genetics) -"dpe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/science/genetics) -"dpf" = ( -/obj/structure/bed/amb_trolley{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/paramedic) -"dpg" = ( -/obj/structure/closet/paramedic, -/obj/machinery/firealarm{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/station/medical/paramedic) -"dpi" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Medbay Genetics"; - dir = 4; - network = list("Medical","SS13") - }, -/obj/item/folder/white, -/obj/machinery/light_switch{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/science/genetics) -"dpj" = ( /obj/structure/chair/office/light{ - dir = 8 + dir = 1 }, /obj/effect/landmark/start/geneticist, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "whitepurple" - }, -/area/station/science/genetics) -"dpk" = ( -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/science/genetics) -"dpl" = ( -/turf/simulated/floor/plasteel{ - dir = 1; + dir = 8; icon_state = "whitepurplecorner" }, /area/station/science/genetics) -"dpm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/white, -/area/station/science/genetics) -"dpn" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/station/science/genetics) -"dpo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/station/science/genetics) -"dps" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" +"dpf" = ( +/obj/machinery/chem_dispenser, +/obj/structure/reagent_dispensers/fueltank/chem{ + pixel_y = -32 }, -/area/station/medical/medbay) +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"dpg" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) "dpt" = ( /turf/simulated/wall, /area/station/medical/surgery/observation) -"dpu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dpv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dpw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) "dpx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dpy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dpA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dpB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark/lightsout, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dpF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) -"dpG" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/structure/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable, -/turf/simulated/floor/plasteel{ - icon_state = "darkblue" - }, -/area/station/medical/surgery/observation) -"dpH" = ( -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plasteel{ - icon_state = "darkblue" - }, -/area/station/medical/surgery/observation) -"dpI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) -"dpJ" = ( -/obj/structure/chair, -/turf/simulated/floor/plasteel{ - icon_state = "darkblue" - }, -/area/station/medical/surgery/observation) -"dpK" = ( -/obj/structure/chair, -/obj/machinery/newscaster{ - dir = 8; - name = "east bump"; - pixel_x = 28 +/obj/machinery/disposal, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 }, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "darkblue" +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/station/medical/surgery/observation) +/turf/simulated/floor/wood, +/area/station/medical/psych) "dpL" = ( /obj/structure/rack, /obj/machinery/light/small{ @@ -63024,14 +58902,11 @@ /turf/simulated/wall, /area/station/command/office/rd) "dqi" = ( -/obj/item/kirbyplants, -/obj/machinery/firealarm{ - dir = 8; - name = "west bump"; - pixel_x = -24 +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitepurple" }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, /area/station/science/genetics) "dqj" = ( /obj/structure/table, @@ -63096,126 +58971,37 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) -"dqr" = ( -/obj/structure/table/glass, -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Medbay Genetics Office"; - dir = 4; - network = list("Medical","SS13") - }, -/obj/item/storage/box/disks, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurple" - }, -/area/station/science/genetics) "dqs" = ( /obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/plasteel/white, /area/station/science/genetics) "dqt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/station/maintenance/aft) -"dqw" = ( -/turf/simulated/floor/plasteel/dark, -/area/station/science/genetics) -"dqx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/table/glass, +/obj/item/storage/box/iv_bags{ + pixel_x = -4; + pixel_y = 5 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/station/science/genetics) -"dqz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/science/genetics) -"dqA" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + icon_state = "whiteyellow" }, +/area/station/medical/chemistry) +"dqL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/geneticist, -/turf/simulated/floor/plasteel/white, -/area/station/science/genetics) -"dqB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/science/genetics) -"dqE" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/station/medical/medbay) -"dqF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dqH" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dqI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dqM" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "Surgery 1" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/station/medical/surgery/primary) -"dqO" = ( -/obj/machinery/economy/vending/coffee, /turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" + dir = 5; + icon_state = "darkgreen" }, -/area/station/medical/reception) +/area/station/medical/virology) "dqQ" = ( /obj/machinery/camera{ c_tag = "Singularity SouthEast"; @@ -63227,12 +59013,6 @@ }, /turf/simulated/floor/plating/airless, /area/station/engineering/control) -"dqS" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "Surgery 2" - }, -/turf/simulated/floor/plating, -/area/station/medical/surgery/secondary) "dqT" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -63252,10 +59032,7 @@ }, /area/station/maintenance/starboard) "dqV" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -63276,7 +59053,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plasteel/white, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, /area/station/medical/medbay) "dqX" = ( /obj/structure/table, @@ -63370,10 +59153,7 @@ /turf/simulated/floor/wood, /area/station/command/office/ntrep) "drs" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/port) @@ -63450,8 +59230,10 @@ /turf/simulated/floor/plasteel/white, /area/station/science/robotics/chargebay) "drH" = ( -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" + }, /area/station/science/genetics) "drI" = ( /obj/machinery/door/firedoor, @@ -63471,7 +59253,7 @@ /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "drL" = ( /obj/structure/sign/science{ pixel_x = -32; @@ -63481,16 +59263,7 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) -"drM" = ( -/obj/structure/sign/science{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/simulated/floor/plasteel{ - icon_state = "purplecorner" - }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "drN" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -63505,169 +59278,30 @@ /turf/simulated/floor/plasteel/white, /area/station/science/research) "drO" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, +/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ dir = 8; - icon_state = "whitepurplecorner" - }, -/area/station/science/genetics) -"drP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel/white, -/area/station/science/genetics) -"drR" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - icon_state = "whitepurplecorner" - }, -/area/station/science/genetics) -"drT" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/monkeycubes/wolpincubes, -/obj/item/storage/box/monkeycubes/stokcubes, -/obj/item/storage/box/monkeycubes/neaeracubes, -/obj/item/storage/box/monkeycubes/farwacubes, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/plasteel/dark, -/area/station/science/genetics) -"drU" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/geneticist, -/turf/simulated/floor/plasteel{ - dir = 10; icon_state = "whitepurple" }, /area/station/science/genetics) -"drV" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/science/genetics) -"drW" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/station/science/genetics) -"drX" = ( -/turf/simulated/floor/plasteel/white, -/area/station/science/genetics) -"drZ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/carbon/human/monkey, -/turf/simulated/floor/grass, -/area/station/science/genetics) -"dsb" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dsc" = ( -/obj/machinery/camera{ - c_tag = "Medbay South Central Hall"; - dir = 8; - network = list("Medical","SS13") +"drR" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = -3 }, +/obj/item/reagent_containers/spray/cleaner, /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dsd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/bed/dogbed{ - name = "kitty basket" - }, /obj/structure/disposalpipe/segment, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dse" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dsf" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dsg" = ( -/obj/structure/chair/office/light, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dsh" = ( -/obj/item/kirbyplants, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chief Medical Officer's Office"; - dir = 8; - network = list("Medical","SS13") - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dsi" = ( -/obj/item/radio/intercom{ - name = "east bump"; - pixel_x = 28 - }, -/obj/machinery/light{ + icon_state = "whitepurple"; dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) +/area/station/science/genetics) +"drX" = ( +/turf/simulated/floor/plasteel/white, +/area/station/science/genetics) "dsj" = ( /obj/machinery/light/small{ dir = 8 @@ -63777,9 +59411,9 @@ /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ - icon_state = "purplecorner" + icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dsJ" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/metal{ @@ -63854,166 +59488,65 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) -"dsN" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id_tag = "geneticsdesk"; - name = "Genetics Desk Shutters" - }, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/science/genetics) "dsO" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/obj/machinery/door_control{ - id = "geneticsdesk"; - name = "Genetics Desk Shutters"; - pixel_x = -28; - pixel_y = -26 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurplecorner" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/area/station/science/genetics) -"dsP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurplecorner" + dir = 10; + icon_state = "whitepurple" }, /area/station/science/genetics) -"dsQ" = ( -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 +"dsP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/plasteel{ - icon_state = "whitepurplecorner" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/science/genetics) -"dsR" = ( /turf/simulated/floor/plasteel{ - icon_state = "whitepurplecorner" - }, -/area/station/science/genetics) -"dsS" = ( -/obj/machinery/ai_status_display, -/turf/simulated/wall, -/area/station/science/genetics) -"dsT" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Genetics Requests Console"; - pixel_y = -30 + icon_state = "whitepurple" }, -/turf/simulated/floor/plasteel/dark, /area/station/science/genetics) -"dsV" = ( -/obj/machinery/light, -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ +"dsQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/turf/simulated/floor/plasteel, -/area/station/science/genetics) -"dsW" = ( -/obj/item/kirbyplants, -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/station/science/genetics) -"dsX" = ( -/obj/structure/table/glass, -/obj/structure/mirror{ - pixel_y = -30 - }, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + icon_state = "whitepurple" }, -/turf/simulated/floor/plasteel/white, /area/station/science/genetics) -"dsY" = ( -/obj/machinery/newscaster{ - dir = 1; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"dsR" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/science/genetics) -"dsZ" = ( -/obj/machinery/dna_scannernew, -/obj/structure/extinguisher_cabinet{ - name = "south bump"; - pixel_y = -30 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 + dir = 6; + icon_state = "whitepurple" }, -/turf/simulated/floor/plasteel, /area/station/science/genetics) "dta" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/science/genetics) -"dtb" = ( -/obj/structure/sign/electricshock{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/station/medical/medbay) -"dtc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/medbay) "dte" = ( /obj/item/kirbyplants, /obj/machinery/alarm{ @@ -64023,169 +59556,12 @@ }, /turf/simulated/floor/plasteel, /area/station/service/expedition) -"dtf" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel, -/area/station/science/genetics) -"dtg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dth" = ( -/obj/structure/table/glass, -/obj/item/paper_bin/nanotrasen, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/stamp/cmo, -/obj/item/pen/multi, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dti" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/folder/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dtj" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dtl" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "darkblue" - }, -/area/station/medical/surgery/primary) -"dtm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkblue" - }, -/area/station/medical/surgery/primary) -"dtn" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "darkblue" - }, -/area/station/medical/surgery/primary) "dto" = ( /obj/structure/sign/science{ icon_state = "xenobio2" }, /turf/simulated/wall/r_wall, /area/station/science/research) -"dtq" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "darkblue" - }, -/area/station/medical/surgery/secondary) -"dtr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/start/doctor, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkblue" - }, -/area/station/medical/surgery/secondary) -"dts" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "darkblue" - }, -/area/station/medical/surgery/secondary) "dtv" = ( /obj/structure/cable{ d1 = 2; @@ -64201,6 +59577,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutral" @@ -64265,23 +59642,6 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/public/construction) -"dtF" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) -"dtG" = ( -/obj/machinery/camera{ - c_tag = "Medbay East Hallway"; - dir = 4; - network = list("Medical","SS13") - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "dtI" = ( /obj/effect/turf_decal/stripes/corner, /turf/simulated/floor/plating/airless, @@ -64330,6 +59690,12 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel/white, /area/station/maintenance/port2) +"dtR" = ( +/obj/structure/girder, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) "dtS" = ( /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/floor/plasteel{ @@ -64337,11 +59703,14 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) +"dtT" = ( +/obj/structure/table, +/obj/item/storage/box/cups, +/obj/item/toy/figure/crew/md, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "dtU" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plating, /area/station/maintenance/port) "dtY" = ( @@ -64459,195 +59828,30 @@ "duk" = ( /turf/simulated/wall, /area/station/medical/morgue) -"dul" = ( -/obj/machinery/disposal, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) "dum" = ( -/obj/structure/sign/nosmoking_2, -/turf/simulated/wall, -/area/station/medical/morgue) -"dur" = ( -/obj/structure/table/glass, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clipboard, -/obj/item/toy/figure/crew/cmo, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dus" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dut" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/machinery/door_control{ - id = "cmoofficedoor2"; - name = "Office Door (Starboard)"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 6; - req_access_txt = "40" - }, -/obj/machinery/door_control{ - id = "cmoofficedoor"; - name = "Office Door (Port)"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = -3; - req_access_txt = "40" - }, -/obj/machinery/door_control{ - id = "Biohazard_medi"; - name = "Emergency Medbay Quarantine"; - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"duu" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"duv" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/machinery/computer/card/minor/cmo{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"duw" = ( -/obj/effect/spawner/window/reinforced/polarized{ - id = "Chapel" - }, -/turf/simulated/floor/plating, -/area/station/service/chapel) -"dux" = ( -/obj/machinery/light, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"duy" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/plating, -/area/station/medical/surgery) -"duz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "darkblue" - }, -/area/station/medical/surgery/primary) -"duA" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkblue" - }, -/area/station/medical/surgery/primary) -"duB" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/radio/intercom{ - name = "east bump"; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/station/medical/surgery/primary) -"duD" = ( -/obj/machinery/optable, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/secondary) -"duE" = ( -/obj/machinery/alarm{ - dir = 8; - name = "east bump"; - pixel_x = 24 +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkblue" - }, -/area/station/medical/surgery/secondary) -"duG" = ( -/obj/machinery/status_display{ - pixel_y = -32 + icon_state = "whitepurplefull" }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" +/area/station/science/genetics) +"duw" = ( +/obj/effect/spawner/window/reinforced/polarized{ + id = "Chapel" }, -/area/station/medical/medbay) +/turf/simulated/floor/plating, +/area/station/service/chapel) +"duy" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "duK" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/two, @@ -64676,17 +59880,6 @@ icon_state = "neutral" }, /area/station/maintenance/starboard) -"duO" = ( -/obj/machinery/camera{ - c_tag = "Virology south"; - dir = 4; - network = list("Medical","SS13") - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "duP" = ( /obj/machinery/camera{ c_tag = "Engine Room South"; @@ -64874,25 +60067,6 @@ "dvt" = ( /turf/simulated/floor/plasteel/dark, /area/station/medical/morgue) -"dvu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dvv" = ( -/obj/machinery/firealarm{ - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/station/medical/morgue) "dvw" = ( /obj/structure/morgue{ dir = 8 @@ -64900,147 +60074,16 @@ /obj/effect/landmark/spawner/rev, /turf/simulated/floor/plasteel/dark, /area/station/medical/morgue) -"dvA" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dvB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/autopsy_scanner, -/obj/item/scalpel, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dvC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light_switch{ - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dvD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dvE" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/coroner, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) "dvG" = ( -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dvH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) +/obj/structure/closet/secure_closet/psychiatrist, +/turf/simulated/floor/wood, +/area/station/medical/psych) "dvI" = ( -/obj/machinery/light_switch{ - dir = 1; - name = "custom placement"; - pixel_x = 24; - pixel_y = -24 - }, -/obj/machinery/keycard_auth{ - pixel_x = 38; - pixel_y = -24 - }, -/obj/machinery/button/windowtint{ - dir = 1; - id = "CMO"; - pixel_x = 24; - pixel_y = -36; - req_access_txt = "40" - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dvJ" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer Requests Console"; - pixel_x = 30 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dvL" = ( -/obj/machinery/light_switch{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/holosign_switch{ - dir = 4; - id = "surgery1"; - pixel_x = -24; - pixel_y = 8 - }, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "darkblue" - }, -/area/station/medical/surgery/primary) -"dvM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/start/doctor, -/turf/simulated/floor/plasteel{ - icon_state = "darkblue" - }, -/area/station/medical/surgery/primary) -"dvQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "darkblue" - }, -/area/station/medical/surgery/secondary) -"dvR" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" +/obj/effect/spawner/window/reinforced/polarized{ + id = "morgue" }, -/area/station/medical/medbay) +/turf/simulated/floor/plating, +/area/station/medical/morgue) "dvS" = ( /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, @@ -65054,6 +60097,32 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating/airless, /area/space/nearstation) +"dvV" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"dvZ" = ( +/obj/structure/table/glass, +/obj/item/megaphone{ + pixel_x = -3 + }, +/obj/item/stamp/cmo, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) "dwi" = ( /turf/simulated/wall/r_wall, /area/station/science/server) @@ -65120,10 +60189,15 @@ dir = 8 }, /obj/effect/landmark/lightsout, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dwu" = ( /obj/machinery/camera{ c_tag = "Central Hallway South 3"; @@ -65132,54 +60206,27 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" +/obj/machinery/economy/atm{ + pixel_x = 32 }, -/area/station/hallway/primary/aft) -"dww" = ( -/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/station/medical/morgue) -"dwx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + icon_state = "neutralcorner" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dwB" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 +/area/station/hallway/primary/aft/south) +"dwz" = ( +/obj/machinery/disposal, +/obj/structure/sign/deathsposal{ + pixel_y = 32 }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dwC" = ( -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dwE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/turf_decal/delivery/hollow/left, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dwF" = ( -/obj/machinery/bodyscanner, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) +/area/station/medical/virology) "dwG" = ( /turf/simulated/wall, /area/station/command/office/cmo) @@ -65207,59 +60254,6 @@ }, /turf/simulated/floor/plasteel, /area/station/public/fitness) -"dwK" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dwL" = ( -/obj/structure/table/glass, -/obj/item/hemostat{ - pixel_x = 6 - }, -/obj/item/retractor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stack/medical/bruise_pack/advanced, -/obj/item/reagent_containers/iv_bag/salglu, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Medbay Surgery East"; - dir = 1; - network = list("Medical","SS13") - }, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/surgery/secondary) -"dwN" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/medbay) "dwO" = ( /obj/structure/cable{ d1 = 1; @@ -65269,20 +60263,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" }, /area/station/maintenance/starboard) -"dwP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/landmark/start/doctor, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/medbay) "dwQ" = ( /obj/structure/table/wood, /obj/item/clothing/under/costume/maid, @@ -65290,11 +60276,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/theatre) "dwS" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -65351,11 +60333,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "dxs" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/machinery/atmospherics/unary/portables_connector{ dir = 4 }, @@ -65412,14 +60390,11 @@ /turf/simulated/floor/plasteel, /area/station/science/robotics) "dxA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/doctor, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" +/obj/structure/flora/ausbushes/fullgrass, +/mob/living/simple_animal/chick{ + name = "Sins" }, +/turf/simulated/floor/grass, /area/station/medical/medbay) "dxC" = ( /obj/structure/table/reinforced, @@ -65474,168 +60449,19 @@ }, /turf/simulated/floor/plasteel, /area/station/science/robotics) -"dxF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/aft) "dxH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plasteel/dark, /area/station/medical/morgue) -"dxJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/coroner, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) "dxM" = ( /obj/machinery/optable, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/surgery) -"dxO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dxQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/spawner/nukedisc_respawn, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dxS" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dxT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dxU" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/bodybags, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dxW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dxY" = ( -/obj/structure/dresser, -/obj/structure/mirror{ - pixel_x = 32 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dxZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) +/area/station/maintenance/starboard) "dyb" = ( /turf/simulated/floor/plating, /area/station/maintenance/theatre) @@ -65656,18 +60482,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "dye" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, +/obj/structure/flora/grass/jungle, +/turf/simulated/floor/grass, /area/station/medical/medbay) "dyg" = ( /obj/structure/cable{ @@ -65691,19 +60511,6 @@ icon_state = "wood-broken" }, /area/station/maintenance/theatre) -"dyk" = ( -/obj/machinery/bodyscanner{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/medbay) "dyl" = ( /obj/item/kirbyplants, /obj/machinery/light/small{ @@ -65787,86 +60594,19 @@ }, /area/station/service/chapel) "dyW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" }, -/obj/effect/landmark/spawner/xeno, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) +/area/station/medical/cloning) "dzb" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/station/maintenance/library) -"dzg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dzh" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/bodybags, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dzj" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dzk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dzl" = ( -/obj/structure/bed, -/obj/item/bedsheet/cmo, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dzm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/secondary) "dzo" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, @@ -65877,13 +60617,6 @@ icon_state = "neutral" }, /area/station/maintenance/starboard) -"dzp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/medbay) "dzq" = ( /obj/machinery/light_switch{ dir = 4; @@ -65952,11 +60685,7 @@ }, /area/station/command/office/rd) "dzU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -65966,11 +60695,7 @@ }, /area/station/science/research) "dzV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/machinery/disposal, /obj/structure/cable{ d2 = 4; @@ -66017,8 +60742,6 @@ /obj/machinery/status_display{ pixel_y = -32 }, -/obj/item/storage/firstaid/machine, -/obj/item/storage/firstaid/machine, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) "dAa" = ( @@ -66027,199 +60750,6 @@ }, /turf/simulated/floor/plasteel, /area/station/science/robotics) -"dAd" = ( -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/station/medical/morgue) -"dAe" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/item/kirbyplants, -/obj/machinery/camera{ - c_tag = "Morgue West"; - dir = 1; - network = list("Medical","SS13") - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dAf" = ( -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/station/medical/morgue) -"dAg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/observation) -"dAh" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/station/medical/morgue) -"dAi" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dAk" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Morgue"; - departmentType = 5; - name = "Morgue Requests Console"; - pixel_y = -30 - }, -/obj/item/paper_bin, -/obj/machinery/light, -/obj/item/pen/multi, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dAl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer/autopsy, -/obj/machinery/camera{ - c_tag = "Morgue East"; - dir = 1; - network = list("Medical","SS13") - }, -/obj/machinery/newscaster{ - dir = 1; - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dAn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) -"dAp" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/obj/machinery/newscaster{ - dir = 1; - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dAq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "darkblue" - }, -/area/station/medical/surgery/primary) -"dAr" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) -"dAs" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/light_switch{ - dir = 8; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) -"dAt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/medbay) -"dAu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-y" - }, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/secondary) -"dAv" = ( -/obj/machinery/camera{ - c_tag = "Medbay Surgery East Storage"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/secondary) -"dAw" = ( -/obj/machinery/iv_drip, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/secondary) "dAx" = ( /turf/simulated/wall, /area/station/medical/surgery/secondary) @@ -66238,6 +60768,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" @@ -66306,15 +60837,15 @@ dir = 1; name = "Cargo Bay Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/general{ - dir = 1 - }, /obj/effect/turf_decal/delivery, /obj/item/desk_bell{ pixel_x = -6; pixel_y = 3; anchored = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -66323,7 +60854,7 @@ /obj/structure/computerframe, /obj/item/circuitboard/operating, /turf/simulated/floor/plasteel, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dAY" = ( /obj/structure/chair, /obj/effect/turf_decal/stripes/line{ @@ -66383,21 +60914,27 @@ name = "east bump"; pixel_x = 24 }, -/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dBk" = ( /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, /area/station/medical/morgue) "dBp" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, /area/station/medical/medbay) "dBq" = ( /turf/simulated/floor/wood, @@ -66409,12 +60946,9 @@ /turf/simulated/floor/plasteel/dark, /area/station/maintenance/theatre) "dBt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/dark, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass, /area/station/medical/medbay) "dBu" = ( /obj/structure/table/wood, @@ -66465,31 +60999,46 @@ /turf/simulated/floor/plasteel/airless, /area/station/science/toxins/test) "dBH" = ( -/obj/item/kirbyplants, /obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dBJ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) -"dBL" = ( +/area/station/hallway/primary/aft/south) +"dBK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) +"dBL" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -66497,20 +61046,33 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) "dBO" = ( /obj/structure/table/reinforced, -/obj/item/robotanalyzer, -/obj/item/bonegel, -/obj/item/FixOVein, -/obj/item/surgicaldrill, /obj/effect/turf_decal/delivery/hollow, /obj/machinery/button/windowtint{ id = "RoboSurgery"; pixel_x = 24; dir = 8 }, +/obj/item/storage/firstaid/machine, +/obj/item/storage/firstaid/machine, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/robotanalyzer, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) "dBP" = ( @@ -66533,30 +61095,38 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dBQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dBR" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dBT" = ( /obj/structure/cable{ d1 = 4; @@ -66572,199 +61142,31 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) -"dBV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) -"dBX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) -"dBY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutral" - }, -/area/station/maintenance/aft) -"dBZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spawner/random_spawners/oil_maybe, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) -"dCa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) "dCb" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/station/maintenance/aft) -"dCc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutral" - }, -/area/station/maintenance/aft) -"dCd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutral" - }, -/area/station/maintenance/aft) -"dCe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plasteel, -/area/station/maintenance/aft) "dCf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) -"dCg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance" }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" }, -/turf/simulated/floor/plasteel, -/area/station/maintenance/aft) +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "dCh" = ( /obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/medbay) -"dCi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light/small{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 1; + dir = 9; icon_state = "whitegreen" }, /area/station/medical/medbay) -"dCj" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/medbay) "dCm" = ( /obj/machinery/light/small{ dir = 1 @@ -66775,17 +61177,6 @@ icon_state = "neutral" }, /area/station/maintenance/starboard) -"dCn" = ( -/obj/machinery/bodyscanner, -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/medbay) "dCo" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -66802,23 +61193,6 @@ icon_state = "wood-broken" }, /area/station/maintenance/theatre) -"dCr" = ( -/obj/structure/table/glass, -/obj/item/circular_saw, -/obj/item/bonesetter{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/surgicaldrill, -/obj/machinery/firealarm{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/surgery/primary) "dCs" = ( /obj/structure/table/wood, /obj/item/clothing/head/papersack/smiley, @@ -66952,7 +61326,7 @@ }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dCY" = ( /obj/structure/plasticflaps{ opacity = 1 @@ -66983,11 +61357,6 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) -"dDa" = ( -/obj/machinery/light, -/obj/structure/closet/firecloset, -/turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) "dDb" = ( /obj/structure/cable{ d1 = 4; @@ -67004,7 +61373,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dDc" = ( /obj/structure/cable{ d1 = 1; @@ -67017,35 +61386,29 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dDg" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) "dDh" = ( /turf/simulated/floor/plating, /area/station/maintenance/aft) -"dDj" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) "dDk" = ( /turf/simulated/floor/plasteel{ icon_state = "neutral" }, /area/station/maintenance/aft) -"dDl" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) "dDm" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -67057,16 +61420,19 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "dDs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) @@ -67087,6 +61453,9 @@ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) "dDu" = ( @@ -67101,6 +61470,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen" @@ -67129,24 +61501,11 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) -"dDw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-y" }, +/turf/simulated/floor/plasteel/white, /area/station/medical/medbay) "dDy" = ( /obj/structure/cable{ @@ -67163,6 +61522,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/starboard) +"dDz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) "dDC" = ( /obj/structure/cable{ d1 = 4; @@ -67222,6 +61588,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "neutral" @@ -67274,6 +61644,22 @@ }, /turf/simulated/floor/plasteel/airless, /area/station/science/toxins/test) +"dDW" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/meter, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"dEa" = ( +/obj/vehicle/ambulance{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/simulated/floor/plasteel/white/side{ + dir = 4 + }, +/area/station/medical/paramedic) "dEc" = ( /obj/structure/chair{ dir = 4 @@ -67283,6 +61669,16 @@ }, /turf/simulated/floor/plasteel/airless, /area/station/science/toxins/test) +"dEg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "dEi" = ( /obj/structure/girder, /turf/simulated/floor/plating, @@ -67295,10 +61691,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dEm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -67306,7 +61707,7 @@ }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dEn" = ( /obj/structure/cable{ d1 = 1; @@ -67342,22 +61743,6 @@ icon_state = "whitegreen" }, /area/station/medical/medbay) -"dEu" = ( -/obj/item/bonegel{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/cautery, -/obj/item/FixOVein{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/table/tray, -/obj/item/scalpel, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/surgery/primary) "dEv" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -67387,9 +61772,6 @@ }, /turf/simulated/floor/plasteel/airless, /area/station/science/toxins/test) -"dER" = ( -/turf/simulated/wall, -/area/station/hallway/primary/central/south) "dES" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance/two, @@ -67397,11 +61779,6 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "dET" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, /obj/machinery/light{ dir = 8 }, @@ -67410,14 +61787,14 @@ pixel_y = 28 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dEU" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /obj/effect/landmark/start/assistant, /turf/simulated/floor/carpet, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dEV" = ( /obj/structure/table/wood, /obj/item/clothing/mask/cigarette/pipe, @@ -67429,13 +61806,13 @@ c_tag = "Central Hallway South 4" }, /turf/simulated/floor/carpet, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dEW" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, /turf/simulated/floor/carpet, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dEX" = ( /obj/structure/table, /obj/structure/window/reinforced{ @@ -67457,13 +61834,10 @@ location = "hall7" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dFa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dFb" = ( /obj/machinery/light{ dir = 4 @@ -67479,15 +61853,7 @@ pixel_x = 28 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) -"dFc" = ( -/obj/item/kirbyplants, -/obj/machinery/light/small, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/medbay) +/area/station/hallway/primary/aft/south) "dFd" = ( /obj/structure/cable{ d1 = 1; @@ -67503,7 +61869,8 @@ "dFe" = ( /obj/machinery/light/small, /turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" + dir = 6; + icon_state = "whitegreen" }, /area/station/medical/medbay) "dFf" = ( @@ -67549,67 +61916,56 @@ pixel_x = -32 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dFv" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/carpet, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dFw" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced/polarized{ dir = 8; id = "RoboSurgery" }, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/breath/medical, /obj/item/mmi, /obj/item/mmi, /obj/item/mmi, /obj/effect/turf_decal/delivery/hollow, +/obj/item/mmi, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) "dFx" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/landmark/start/assistant, /turf/simulated/floor/carpet, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dFy" = ( /obj/structure/table/reinforced, /obj/machinery/light{ dir = 4 }, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/bonesetter, -/obj/item/stack/medical/bruise_pack/advanced{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/spray/cleaner, /obj/effect/turf_decal/delivery/hollow, +/obj/item/storage/surgical_tray, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) -"dFB" = ( -/obj/structure/chair, -/turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) -"dFE" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +"dFA" = ( +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" + icon_state = "neutralcorner" }, -/area/station/medical/medbay) +/area/station/hallway/primary/central/nw) +"dFB" = ( +/obj/structure/chair, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft/south) "dFF" = ( /obj/structure/sign/biohazard, /turf/simulated/wall/r_wall, @@ -67618,16 +61974,12 @@ /turf/simulated/wall/r_wall, /area/station/medical/virology) "dFO" = ( -/obj/structure/chair, -/obj/machinery/newscaster{ - name = "north bump"; - pixel_y = 28 - }, +/obj/machinery/economy/vending/snack, +/obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" + icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "dFU" = ( /obj/structure/chair{ dir = 1 @@ -67647,11 +61999,7 @@ /turf/simulated/floor/plasteel/airless, /area/station/science/toxins/test) "dFW" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -67695,13 +62043,19 @@ dir = 4 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dGl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel/grimy, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) +"dGm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) "dGn" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -67716,13 +62070,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dGp" = ( /obj/structure/table, /obj/item/paper_bin, /obj/item/pen, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dGr" = ( /obj/machinery/power/terminal{ dir = 1 @@ -67734,99 +62088,9 @@ /obj/effect/landmark/spawner/nukedisc_respawn, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) -"dGt" = ( -/obj/item/kirbyplants, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dGu" = ( -/obj/item/kirbyplants, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dGv" = ( -/obj/item/kirbyplants, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dGw" = ( /turf/simulated/wall, /area/station/medical/virology) -"dGx" = ( -/obj/structure/table/glass, -/obj/item/radio/intercom{ - name = "north bump"; - pixel_y = 28 - }, -/obj/item/paper_bin, -/obj/machinery/newscaster{ - dir = 4; - name = "west bump"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dGy" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dGz" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dGA" = ( -/obj/item/kirbyplants, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dGK" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -67874,20 +62138,20 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dGS" = ( -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/primary/aft) +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/south) "dGU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "dGV" = ( /obj/structure/chair{ dir = 8 @@ -67900,89 +62164,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluecorner" }, -/area/station/medical/surgery) -"dHc" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/vacuum{ - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, -/area/station/medical/virology) -"dHd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, -/area/station/medical/virology) -"dHf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dHg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dHj" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/crew/virologist, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) +/area/station/maintenance/starboard) "dHk" = ( /obj/structure/grille, /turf/simulated/floor/plasteel{ @@ -67990,45 +62172,6 @@ icon_state = "neutral" }, /area/station/maintenance/port) -"dHm" = ( -/obj/machinery/camera{ - c_tag = "Virology north"; - dir = 8; - network = list("Medical","SS13") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dHp" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/start/virologist, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/virology) -"dHq" = ( -/obj/structure/table/glass, -/obj/item/radio/intercom{ - name = "east bump"; - pixel_x = 28 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkgreen" - }, -/area/station/medical/virology) "dHA" = ( /obj/structure/cable{ d1 = 4; @@ -68100,6 +62243,10 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"dHG" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/primary/central/nw) "dHJ" = ( /obj/structure/cable{ d1 = 4; @@ -68175,7 +62322,7 @@ }, /obj/item/kirbyplants, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dHO" = ( /obj/structure/cable{ d1 = 1; @@ -68192,25 +62339,28 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dHR" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced/polarized{ dir = 8; id = "RoboSurgery" }, -/obj/item/mmi, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 5 +/obj/effect/turf_decal/delivery/hollow, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = -4 }, /obj/item/storage/box/masks, -/obj/effect/turf_decal/delivery/hollow, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) "dHT" = ( /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dHU" = ( /obj/structure/sign/directions/security{ dir = 1; @@ -68233,7 +62383,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dHX" = ( /obj/structure/mirror{ pixel_x = -32 @@ -68242,26 +62392,9 @@ dir = 8; pixel_x = -12 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/station/medical/surgery) -"dHZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/surgery/primary) +/area/station/maintenance/starboard) "dIb" = ( /obj/machinery/atmospherics/unary/portables_connector, /obj/machinery/light/small{ @@ -68270,36 +62403,6 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) -"dId" = ( -/obj/machinery/firealarm{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dIe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) "dIh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -68331,78 +62434,6 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) -"dIj" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dIk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dIm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkgreencorners" - }, -/area/station/medical/virology) -"dIn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/virology) -"dIo" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkgreencorners" - }, -/area/station/medical/virology) "dIx" = ( /turf/simulated/wall, /area/station/service/chapel/office) @@ -68460,75 +62491,32 @@ dir = 1; pixel_y = 1 }, -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/turf/simulated/wall, -/area/station/hallway/secondary/exit) -"dIL" = ( -/obj/machinery/camera{ - c_tag = "Mech Lab"; - dir = 1; - network = list("Research","SS13") - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, -/area/station/science/robotics/chargebay) -"dIW" = ( -/obj/structure/sign/biohazard, -/turf/simulated/wall/r_wall, -/area/station/medical/virology) -"dIX" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/station/medical/virology) -"dIZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dJb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/sign/directions/evac{ + pixel_y = -8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" +/turf/simulated/wall, +/area/station/hallway/secondary/exit) +"dIL" = ( +/obj/machinery/camera{ + c_tag = "Mech Lab"; + dir = 1; + network = list("Research","SS13") }, -/area/station/medical/virology) -"dJc" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel, +/area/station/science/robotics/chargebay) +"dJr" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -68536,77 +62524,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dJd" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dJe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dJf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/medical/virology) -"dJh" = ( -/obj/machinery/light_switch{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "darkgreencorners" - }, -/area/station/medical/virology) -"dJi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dJj" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, /turf/simulated/floor/plasteel{ - icon_state = "darkgreencorners" + dir = 1; + icon_state = "whitegreen" }, /area/station/medical/virology) -"dJk" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/button/windowtint{ - id = "Surgery 1"; - pixel_y = 24; - req_access_txt = "45" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/surgery/primary) "dJu" = ( /obj/structure/morgue, /turf/simulated/floor/plasteel/dark, @@ -68656,23 +62583,6 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) -"dJE" = ( -/obj/structure/table/glass, -/obj/item/wrench/medical, -/obj/item/clothing/accessory/stethoscope, -/obj/machinery/camera{ - c_tag = "Medbay Cryogenics"; - dir = 1; - network = list("Medical","SS13") - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/medbay) "dJF" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -68706,111 +62616,12 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) -"dJM" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/button/windowtint{ - id = "Surgery 2"; - pixel_y = 24; - req_access_txt = "45" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/surgery/secondary) "dJO" = ( /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitebluecorner" }, -/area/station/medical/surgery) -"dJP" = ( -/obj/structure/extinguisher_cabinet{ - name = "west bump"; - pixel_x = -30 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dJQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dJS" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dJT" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/tank/air{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dJU" = ( -/obj/machinery/atmospherics/portable/canister/air, -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dJV" = ( -/obj/structure/table, -/obj/machinery/kitchen_machine/microwave, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dJW" = ( -/obj/structure/sign/nosmoking_2, -/turf/simulated/wall, -/area/station/medical/virology) -"dJX" = ( -/obj/structure/dresser, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "darkgreen" - }, -/area/station/medical/virology) -"dJY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/virology) +/area/station/maintenance/starboard) "dKd" = ( /obj/structure/table, /obj/machinery/newscaster{ @@ -68934,24 +62745,15 @@ /obj/item/stack/cable_coil/random, /turf/space, /area/space/nearstation) -"dKD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +"dKB" = ( +/obj/item/kirbyplants, +/obj/item/mounted/frame/apc_frame, /obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" + d2 = 2; + icon_state = "0-2" }, -/area/station/medical/virology) +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "dKH" = ( /obj/structure/closet/crate, /obj/item/flashlight, @@ -69008,27 +62810,6 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) -"dKV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/doctor, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "dKX" = ( /obj/structure/cable{ d1 = 4; @@ -69064,151 +62845,12 @@ icon_state = "neutral" }, /area/station/maintenance/apmaint) -"dLa" = ( -/obj/machinery/firealarm{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, -/area/station/medical/virology) -"dLb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dLc" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, -/area/station/medical/virology) -"dLd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, -/area/station/medical/virology) "dLe" = ( /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen" }, /area/station/medical/virology) -"dLf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/lightsout, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dLg" = ( -/obj/item/radio/intercom{ - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dLh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dLi" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/mob/living/carbon/human/monkey, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dLj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dLk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/mob/living/carbon/human/monkey, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dLl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dLp" = ( /obj/structure/table, /obj/item/radio/intercom{ @@ -69302,16 +62944,6 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"dLG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/secondary/exit) "dLK" = ( /obj/machinery/light{ dir = 4 @@ -69319,36 +62951,17 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) -"dLQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dLR" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 - }, -/obj/machinery/reagentgrinder, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"dLL" = ( +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" + dir = 8; + icon_state = "neutralcorner" }, -/area/station/medical/virology) +/area/station/hallway/primary/central/ne) "dLT" = ( /obj/structure/cable{ d1 = 1; @@ -69359,51 +62972,6 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/central/south) -"dLU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dLX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dLY" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/camera{ - c_tag = "Virology decontamination"; - dir = 4; - network = list("Medical","SS13") - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, -/area/station/medical/virology) -"dMa" = ( -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - name = "south bump"; - pixel_y = -30 - }, -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, -/area/station/medical/virology) "dMh" = ( /obj/machinery/camera{ c_tag = "Chapel Backroom"; @@ -69414,12 +62982,6 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) -"dMi" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/station/medical/surgery/primary) "dMj" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -69463,57 +63025,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "red" }, /area/station/hallway/secondary/exit) -"dMu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/medical/surgery) -"dMv" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, -/area/station/medical/virology) -"dMw" = ( -/obj/machinery/smartfridge/secure/chemistry/virology/preloaded, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/station/medical/virology) "dMx" = ( /obj/structure/cable{ d1 = 4; @@ -69525,51 +63041,6 @@ icon_state = "whitegreen" }, /area/station/medical/virology) -"dMy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dMz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/station/medical/virology) "dMA" = ( /obj/item/storage/secure/safe{ pixel_x = 32 @@ -69578,49 +63049,6 @@ icon_state = "grimy" }, /area/station/security/detective) -"dMC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dMD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) "dMF" = ( /obj/machinery/door/poddoor/preopen{ id_tag = "xeno2"; @@ -69642,22 +63070,6 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) -"dMG" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dMH" = ( /obj/structure/cable{ d1 = 4; @@ -69781,79 +63193,26 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"dNi" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/machinery/requests_console{ - department = "Virology"; - departmentType = 3; - name = "Virology Requests Console"; - pixel_y = 30 - }, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dNj" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/dropper, -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ +"dNe" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/station/medical/medbay) +"dNn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dNk" = ( -/obj/structure/chair/office/dark{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/effect/landmark/start/virologist, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreen" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/area/station/medical/virology) -"dNl" = ( -/obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dNm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreen" + d2 = 4; + icon_state = "1-4" }, -/area/station/medical/virology) -"dNn" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitegreen" @@ -69863,22 +63222,6 @@ /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/medical/virology) -"dNs" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dNt" = ( -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dNu" = ( /obj/structure/cable{ d1 = 1; @@ -69892,30 +63235,6 @@ icon_state = "whitegreen" }, /area/station/medical/virology) -"dNv" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dNw" = ( -/obj/structure/table/glass, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/alarm{ - name = "north bump"; - pixel_y = 24 - }, -/obj/item/radio/intercom{ - name = "east bump"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dNH" = ( /obj/structure/cable{ d1 = 1; @@ -70008,52 +63327,18 @@ }, /turf/space, /area/space) -"dNW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/computer/pandemic, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dNX" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dNY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/kirbyplants, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dNZ" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dOb" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "whitebluecorner" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dOc" = ( /obj/structure/window/reinforced/polarized{ id = "RoboSurgery" @@ -70073,144 +63358,6 @@ icon_state = "whitegreencorner" }, /area/station/medical/virology) -"dOe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dOf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dOh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dOi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dOj" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/landmark/spawner/nukedisc_respawn, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dOk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/station/medical/virology) -"dOl" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/station/medical/virology) "dOn" = ( /obj/machinery/light/small{ dir = 8 @@ -70285,7 +63432,7 @@ }, /area/station/hallway/secondary/exit) "dOz" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plasteel{ icon_state = "whitepurple" }, @@ -70315,98 +63462,6 @@ }, /turf/space, /area/station/maintenance/starboardsolar) -"dOG" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dOH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dOJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dOK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dOL" = ( -/obj/machinery/iv_drip, -/obj/machinery/firealarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dOM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dON" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/storage/box/monkeycubes, -/obj/machinery/newscaster{ - dir = 8; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dOO" = ( /turf/simulated/floor/plating, /area/station/maintenance/apmaint) @@ -70440,11 +63495,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) "dOV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -70508,14 +63559,21 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) -"dPg" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/delivery/hollow, +"dPe" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + name = "east bump"; + pixel_x = 28 + }, +/obj/item/reagent_containers/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/cans/cola{ + pixel_y = 7; + pixel_x = -7 + }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" + icon_state = "redyellowfull" }, -/area/station/medical/virology) +/area/station/medical/break_room) "dPh" = ( /obj/structure/cable{ d1 = 4; @@ -70531,73 +63589,6 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) -"dPj" = ( -/obj/item/kirbyplants, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dPk" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench/medical, -/obj/item/restraints/handcuffs/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dPl" = ( -/obj/structure/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves, -/obj/structure/sign/vacuum{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dPn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/surgery/secondary) -"dPo" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/delivery/hollow, -/mob/living/carbon/human/monkey, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dPq" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/portsolar) @@ -70638,8 +63629,13 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dPv" = ( /obj/structure/cable{ d1 = 4; @@ -70839,51 +63835,20 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"dPS" = ( -/obj/effect/spawner/random_spawners/wall_rusted_always, -/turf/simulated/wall/r_wall, -/area/station/medical/virology) "dPU" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dPV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "whitegreen" +/mob/living/carbon/human/monkey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/area/station/medical/virology) -"dPW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "whitegreen" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/medical/virology) -"dPX" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "whitegreen" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/turf/simulated/floor/plasteel/white, /area/station/medical/virology) "dPZ" = ( /obj/machinery/atmospherics/unary/portables_connector, @@ -70942,6 +63907,16 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) +"dQg" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "dQh" = ( /obj/structure/morgue, /obj/machinery/alarm{ @@ -70994,31 +63969,22 @@ /obj/structure/sign/nosmoking_2{ pixel_y = -32 }, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/cautery, /obj/effect/turf_decal/delivery/hollow, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) "dQr" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ - d2 = 8; - icon_state = "0-8" + d2 = 2; + icon_state = "0-2" }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dQs" = ( -/obj/machinery/door/airlock/maintenance, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -71030,103 +63996,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plasteel, -/area/station/maintenance/aft) -"dQu" = ( -/obj/item/bonegel{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/cautery, -/obj/item/FixOVein{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/table/tray, -/obj/item/scalpel, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/surgery/secondary) -"dQw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dQx" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dQy" = ( -/obj/structure/chair/office/dark, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dQz" = ( -/obj/structure/chair/office/dark, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dQA" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "whitegreen" - }, -/area/station/medical/virology) +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) "dQB" = ( /obj/structure/lattice/catwalk, /turf/space, @@ -71158,16 +64032,6 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"dQG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/spawner/rev, -/obj/effect/turf_decal/delivery, -/mob/living/carbon/human/monkey, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreen" - }, -/area/station/medical/virology) "dQI" = ( /obj/machinery/light{ dir = 1 @@ -71192,7 +64056,7 @@ /obj/structure/table/reinforced, /obj/item/stack/packageWrap, /obj/item/hand_labeler, -/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) @@ -71290,65 +64154,23 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) -"dRf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dRg" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers, -/obj/item/storage/box/syringes, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dRh" = ( -/obj/structure/table/glass, -/obj/structure/sign/deathsposal{ - pixel_y = -32 - }, -/obj/item/paper_bin, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dRi" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, +"dRc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +/obj/machinery/camera{ + c_tag = "Central Ring Hallway East"; + dir = 9 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" + icon_state = "neutralcorner" }, -/area/station/medical/virology) +/area/station/hallway/primary/central/se) "dRj" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -71417,10 +64239,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "dRq" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -71438,7 +64257,7 @@ /obj/item/clothing/gloves/color/black, /obj/item/clothing/suit/storage/hazardvest, /obj/item/clothing/mask/breath, -/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee, /obj/machinery/newscaster{ dir = 8; name = "east bump"; @@ -71477,18 +64296,6 @@ }, /turf/simulated/floor/plasteel/grimy, /area/station/service/chapel) -"dRx" = ( -/obj/structure/table/glass, -/obj/item/circular_saw, -/obj/item/bonesetter{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/surgicaldrill, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/surgery/secondary) "dRz" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -71608,12 +64415,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "dRT" = ( -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -71678,10 +64480,6 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) -"dSd" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall, -/area/station/medical/surgery/primary) "dSe" = ( /obj/structure/cable{ d1 = 1; @@ -71768,10 +64566,6 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "dSs" = ( -/obj/machinery/camera{ - c_tag = "Departure Lounge North"; - dir = 1 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -71779,7 +64573,7 @@ dir = 5 }, /obj/effect/turf_decal/stripes/line{ - dir = 10 + dir = 8 }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) @@ -71805,15 +64599,13 @@ /turf/simulated/floor/plasteel/dark, /area/station/maintenance/apmaint) "dSB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ +/obj/machinery/atmospherics/unary/portables_connector{ dir = 8 }, +/obj/machinery/atmospherics/portable/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "dSD" = ( @@ -71976,7 +64768,7 @@ /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency, /obj/item/wrench, -/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/apmaint) "dTg" = ( @@ -71997,8 +64789,11 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "dTh" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Departure Lounge North"; + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "dTi" = ( @@ -72053,11 +64848,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -72111,30 +64902,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel/grimy, /area/station/service/chapel/office) -"dTu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dTv" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) "dTw" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, @@ -72269,7 +65036,7 @@ /area/station/service/chapel/office) "dUf" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/item/reagent_containers/drinks/bottle/holywater, /turf/simulated/floor/carpet, /area/station/service/chapel/office) "dUg" = ( @@ -72309,13 +65076,13 @@ "dUk" = ( /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -72421,13 +65188,6 @@ icon_state = "red" }, /area/station/hallway/secondary/exit) -"dUD" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) "dUE" = ( /obj/machinery/power/tesla_coil{ anchored = 1 @@ -72501,8 +65261,8 @@ /area/station/service/chapel/office) "dUK" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, -/obj/item/reagent_containers/food/snacks/grown/poppy/lily{ +/obj/item/food/snacks/grown/poppy/geranium, +/obj/item/food/snacks/grown/poppy/lily{ pixel_x = 4; pixel_y = 5 }, @@ -72589,11 +65349,24 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "dUT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"dUU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central) "dUY" = ( /obj/machinery/light, /obj/machinery/alarm{ @@ -72663,29 +65436,14 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"dVv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) "dVw" = ( /obj/structure/cable{ d2 = 4; @@ -72702,11 +65460,8 @@ "dVx" = ( /obj/structure/table/wood, /obj/item/ashtray/plastic, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, /turf/simulated/floor/carpet, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dVy" = ( /obj/structure/grille, /obj/structure/cable/yellow{ @@ -72720,25 +65475,12 @@ /turf/simulated/floor/plating/airless, /area/station/engineering/control) "dVS" = ( -/obj/machinery/access_button{ - autolink_id = "stationai_btn_ext"; - name = "exterior access button"; - pixel_x = 20; - pixel_y = 20; - req_access_txt = "10;13" - }, /obj/structure/lattice/catwalk, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, /turf/space, /area/space/nearstation) "dWc" = ( @@ -72876,180 +65618,61 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dWL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/primary/aft) -"dWN" = ( -/obj/machinery/suit_storage_unit/cmo, /obj/effect/turf_decal/stripes/line{ - dir = 6 + dir = 8 }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "dWP" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/primary/central) -"dWS" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreen" - }, -/area/station/medical/virology) -"dWT" = ( -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dWU" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/firealarm{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dWX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/simulated/floor/plating/airless, -/area/station/medical/virology) -"dWY" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/plating/airless, -/area/station/medical/virology) -"dWZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/simulated/floor/plating/airless, -/area/station/medical/virology) -"dXb" = ( -/obj/machinery/atmospherics/binary/valve{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"dXc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 1; - level = 2 - }, /turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dXd" = ( -/obj/machinery/atmospherics/unary/outlet_injector/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plating/airless, -/area/station/medical/virology) -"dXe" = ( -/obj/structure/disposaloutlet{ - name = "evidence outlet" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plating/airless, -/area/station/medical/virology) -"dXf" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" +/area/station/medical/sleeper) +"dWR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/area/station/medical/virology) -"dXg" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/effect/turf_decal/delivery, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/primary) +"dWX" = ( +/turf/simulated/floor/plasteel/white, /area/station/medical/virology) -"dXh" = ( +"dWY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"dXi" = ( -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) +"dXg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "dXj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Public Access" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dXk" = ( /obj/machinery/light{ dir = 8 @@ -73076,10 +65699,7 @@ /turf/simulated/wall/r_wall, /area/station/hallway/secondary/exit) "dXo" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -73088,26 +65708,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) -"dXp" = ( -/obj/machinery/camera{ - c_tag = "Medbay Hallway East"; - dir = 1; - network = list("SS13","Medical") - }, -/obj/machinery/light, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) -"dXq" = ( -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_y = -32 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/station/medical/morgue) "dXr" = ( /obj/machinery/camera{ c_tag = "Robotics Lab"; @@ -73127,10 +65727,7 @@ /turf/simulated/floor/plasteel, /area/station/science/robotics) "dXs" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutral" @@ -73152,18 +65749,6 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) -"dXw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/primary) "dXx" = ( /obj/item/kirbyplants, /obj/machinery/camera{ @@ -73176,26 +65761,8 @@ icon_state = "chapel" }, /area/station/service/chapel) -"dXz" = ( -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Chief Medical Officer's Quarters"; - dir = 1; - network = list("Medical","SS13") - }, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/command/office/cmo) "dXC" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/camera{ c_tag = "Departure Lounge North" }, @@ -73212,10 +65779,6 @@ /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, /area/station/service/chapel/office) -"dXE" = ( -/obj/effect/decal/cleanable/fungus, -/turf/simulated/wall, -/area/station/medical/virology) "dXF" = ( /obj/structure/chair, /obj/machinery/camera{ @@ -73226,26 +65789,6 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"dXG" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/iv_bag/blood/OMinus, -/obj/item/reagent_containers/iv_bag/blood/OPlus, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/radio/intercom{ - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Virology Lab"; - network = list("SS13","Medical") - }, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dXH" = ( /obj/machinery/camera{ c_tag = "Port Aft Solars" @@ -73290,36 +65833,15 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"dXK" = ( -/obj/machinery/newscaster{ - dir = 1; - name = "south bump"; - pixel_y = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel, -/area/station/hallway/secondary/exit) "dXQ" = ( /obj/machinery/light, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "dXS" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, /obj/structure/closet/secure_closet/medical2, -/obj/structure/cable, /turf/simulated/floor/plating, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dXT" = ( /obj/machinery/light/small, /obj/structure/closet/crate/freezer, @@ -73331,7 +65853,7 @@ /obj/item/reagent_containers/iv_bag/blood/random, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dXU" = ( /obj/structure/table/reinforced, /obj/item/storage/firstaid/regular, @@ -73341,7 +65863,7 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dXV" = ( /obj/structure/table/wood, /turf/simulated/floor/plasteel/grimy, @@ -73358,75 +65880,54 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dXZ" = ( /obj/structure/table/reinforced, /obj/structure/bedsheetbin, /obj/machinery/light/small, /turf/simulated/floor/plasteel, -/area/station/medical/surgery) -"dYa" = ( -/obj/effect/spawner/random_spawners/wall_rusted_maybe, -/turf/simulated/wall, -/area/station/medical/surgery) +/area/station/maintenance/starboard) "dYb" = ( /obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/crew/geneticist, -/obj/structure/extinguisher_cabinet{ +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/box/disks, +/obj/item/radio/intercom{ name = "north bump"; - pixel_y = 30 + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitepurplecorner" + icon_state = "whitepurple" }, /area/station/science/genetics) "dYd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/station/science/genetics) -"dYi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/science/genetics) -"dYj" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/dna_scannernew, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Genetics Requests Console"; + pixel_y = 30 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitepurplecorner" + dir = 1; + icon_state = "whitepurple" }, /area/station/science/genetics) "dYl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/structure/table/glass, +/obj/item/storage/box/bodybags{ + pixel_y = 10; + pixel_x = 4 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" + icon_state = "whitepurplecorner" }, /area/station/science/genetics) "dYm" = ( @@ -73524,14 +66025,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/maintenance/port2) -"dYE" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/delivery/hollow, -/mob/living/carbon/human/monkey, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) "dYG" = ( /obj/item/kirbyplants, /obj/effect/turf_decal/delivery, @@ -73816,10 +66309,50 @@ /obj/machinery/blackbox_recorder, /turf/simulated/floor/bluegrid, /area/station/telecomms/chamber) +"ebi" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) +"ebB" = ( +/obj/structure/table, +/obj/machinery/door_control{ + id = "viroshutters"; + name = "Privacy Shutters Control"; + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/hand_labeler{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "ebU" = ( /obj/machinery/computer/general_air_control{ name = "Bomb Mix Monitor"; - autolink_sensors = list("burn_sensor"="Burn Mix"); + autolink_sensors = list("burn_sensor" = "Burn Mix"); dir = 1 }, /obj/machinery/ignition_switch{ @@ -73844,6 +66377,38 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/toxins/mixing) +"ecP" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Psych Office" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "psychoffice" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/station/medical/psych) +"ecX" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "eer" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, @@ -73871,6 +66436,14 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) +"eeX" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/box/bodybags, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) "efv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -73897,7 +66470,13 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) +"efS" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "egp" = ( /obj/structure/cable{ d2 = 2; @@ -73922,22 +66501,11 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/rnd) -"eha" = ( -/obj/machinery/iv_drip, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate/freezer/iv_storage, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/primary) "ehm" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /turf/simulated/floor/plasteel/white, /area/station/science/toxins/mixing) "ehT" = ( @@ -73950,6 +66518,17 @@ }, /turf/simulated/floor/plating, /area/station/command/office/rd) +"ehV" = ( +/obj/structure/grille, +/obj/structure/window/plasmareinforced{ + dir = 1 + }, +/obj/structure/window/plasmareinforced, +/obj/machinery/atmospherics/meter{ + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/station/science/toxins/mixing) "eir" = ( /obj/machinery/economy/vending/cart, /obj/machinery/computer/security/telescreen/entertainment{ @@ -74033,24 +66612,17 @@ /turf/simulated/floor/plating, /area/station/security/brig) "ejT" = ( -/obj/machinery/access_button{ - autolink_id = "perma_btn_int"; - name = "interior access button"; - pixel_x = -20; - pixel_y = 20; - req_access_txt = "67" - }, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "ekg" = ( @@ -74070,7 +66642,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "eki" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -74086,7 +66658,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "ekx" = ( /obj/machinery/door/airlock/research/glass{ name = "Science Chemistry" @@ -74110,11 +66682,7 @@ /turf/simulated/floor/plasteel/white, /area/station/science/misc_lab) "eky" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -74130,16 +66698,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/port) -"elT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Patient Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/medbay) "ema" = ( /obj/structure/window/reinforced{ dir = 1; @@ -74151,13 +66709,6 @@ }, /area/station/public/fitness) "eml" = ( -/obj/machinery/door/airlock/external{ - id_tag = "atmostanks_door_int"; - locked = 1; - name = "Atmos External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "emr" = ( @@ -74169,6 +66720,28 @@ icon_state = "dark" }, /area/station/security/main) +"emu" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Port to Engine" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"emy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/east) "emC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -74221,6 +66794,10 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/storage) +"eoJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "eoO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -74248,6 +66825,12 @@ icon_state = "whitepurple" }, /area/station/science/misc_lab) +"epO" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) "eqc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -74304,6 +66887,28 @@ }, /turf/simulated/floor/plasteel, /area/station/security/checkpoint/secondary) +"erg" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "erk" = ( /obj/structure/cable{ d2 = 2; @@ -74314,6 +66919,26 @@ }, /turf/simulated/floor/plating, /area/station/command/office/ce) +"ern" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/machinery/door/airlock/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/chemistry) "erA" = ( /obj/structure/table, /obj/item/clothing/glasses/science, @@ -74334,6 +66959,29 @@ icon_state = "whitepurple" }, /area/station/science/misc_lab) +"erE" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"erI" = ( +/obj/machinery/light_switch{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "erP" = ( /obj/machinery/camera{ c_tag = "Secure Lab - Test Chamber"; @@ -74353,16 +67001,32 @@ /area/station/public/fitness) "esa" = ( /obj/item/kirbyplants, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "darkred" }, /area/station/security/prisonershuttle) +"esf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "esj" = ( /obj/machinery/flasher/portable, /turf/simulated/floor/plasteel, @@ -74399,35 +67063,48 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/explab) -"etk" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/machinery/door/firedoor, -/obj/item/pen, -/obj/machinery/door/window/classic/normal{ - name = "Chemistry Desk" +"etc" = ( +/obj/machinery/button/windowtint{ + pixel_x = 24; + id = "sr2"; + dir = 8; + pixel_y = -7; + req_access_txt = "45" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 2; - id_tag = "chemdesk1"; - name = "Chemistry Desk Shutters" +/obj/machinery/light_switch{ + dir = 8; + name = "west bump"; + pixel_x = 24 }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/obj/machinery/holosign_switch{ + dir = 8; + id = "surgery2"; + pixel_x = 24; + pixel_y = 7 }, -/obj/machinery/door/window/classic/normal{ - dir = 1; - name = "Chemistry Desk" +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" }, -/turf/simulated/floor/plasteel, -/area/station/medical/reception) +/area/station/medical/surgery/secondary) +"etR" = ( +/obj/structure/extinguisher_cabinet{ + name = "east bump"; + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/south) +"etT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "euc" = ( /turf/simulated/wall/r_wall, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "eud" = ( /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -74447,6 +67124,17 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) +"ewa" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/gloves/color/latex/nitrile{ + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "ewj" = ( /obj/structure/railing{ dir = 1 @@ -74478,6 +67166,12 @@ }, /turf/space, /area/station/maintenance/starboardsolar) +"exy" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port/east) "exC" = ( /turf/simulated/floor/bluegrid{ nitrogen = 100; @@ -74499,7 +67193,29 @@ dir = 8; icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) +"exQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"eyb" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "viroshutters"; + name = "Privacy Shutters" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"eyl" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) "eyy" = ( /obj/machinery/door/poddoor{ density = 0; @@ -74523,6 +67239,36 @@ /obj/item/kirbyplants, /turf/simulated/floor/plasteel, /area/station/engineering/control) +"eyG" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/closet/crate/freezer/iv_storage, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) +"ezp" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port/east) +"ezr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "ezR" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -74543,15 +67289,11 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "eAi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/obj/structure/railing/corner, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue" + icon_state = "whitebluecorner" }, /area/station/medical/reception) "eAl" = ( @@ -74603,7 +67345,19 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"eCn" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/delivery/white/hollow, +/obj/machinery/power/apc/critical/directional/north, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) "eCs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -74637,6 +67391,27 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) +"eDE" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/south) +"eEf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) +"eEq" = ( +/turf/simulated/wall/r_wall, +/area/station/science/genetics) "eEE" = ( /obj/effect/turf_decal/delivery/hollow, /obj/effect/turf_decal/delivery/hollow, @@ -74654,10 +67429,28 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) +"eEP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8; + initialize_directions = 11 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) "eFu" = ( /obj/structure/cable{ d1 = 4; @@ -74743,6 +67536,18 @@ }, /turf/simulated/floor/wood, /area/station/public/pet_store) +"eHg" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"eHp" = ( +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "eHx" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -74759,11 +67564,33 @@ icon_state = "dark" }, /area/station/aisat) +"eHD" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"eHZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "eIG" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "eJp" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -74804,6 +67631,32 @@ icon_state = "neutralfull" }, /area/station/public/fitness) +"eKO" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/west) +"eKP" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"eLc" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "eLI" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -74822,6 +67675,47 @@ /obj/machinery/computer/area_atmos, /turf/simulated/floor/plasteel, /area/station/science/storage) +"eLU" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery/white/hollow, +/obj/machinery/camera{ + c_tag = "Virology Decontamination"; + dir = 4; + network = list("Medical","SS13") + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"eMA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"eMB" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "eNk" = ( /obj/structure/cable{ d1 = 1; @@ -74846,23 +67740,67 @@ }, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) +"eNp" = ( +/obj/structure/table, +/obj/item/reagent_containers/drinks/mug/med, +/obj/item/reagent_containers/drinks/coffee{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "eNt" = ( /turf/simulated/wall, /area/station/maintenance/fsmaint) +"eNw" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/comfy/teal{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/station/medical/medbay) "eNI" = ( /turf/simulated/floor/plasteel{ icon_state = "barber" }, /area/station/security/permabrig) "eOd" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable, /turf/simulated/floor/plasteel/white, /area/station/science/explab) +"eOt" = ( +/obj/structure/table/glass, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/item/cartridge/medical{ + pixel_y = 1; + pixel_x = 4 + }, +/obj/item/reagent_containers/drinks/coffee, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_y = 7; + pixel_x = -5 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) "eOG" = ( /obj/structure/cable{ d1 = 2; @@ -74879,20 +67817,6 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) -"eON" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/fireaxecabinet{ - pixel_x = 30 - }, -/obj/machinery/economy/vending/atmosdrobe, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/station/engineering/atmos) "eOO" = ( /obj/structure/cable{ d1 = 1; @@ -74910,7 +67834,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "eOQ" = ( /obj/structure/chair/sofa/pew{ dir = 8; @@ -74938,6 +67862,23 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/port) +"ePv" = ( +/obj/machinery/defibrillator_mount/loaded{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) "eQe" = ( /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, @@ -74969,7 +67910,7 @@ "eQu" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "eQz" = ( /obj/machinery/access_button{ layer = 3.6; @@ -74985,15 +67926,38 @@ name = "Virology Lab External Airlock" }, /obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel/white, /area/station/medical/medbay) +"eQZ" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) +"eRi" = ( +/obj/structure/table/glass, +/obj/item/storage/box/bodybags, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "eSc" = ( /obj/machinery/computer/rdconsole/experiment, /turf/simulated/floor/plasteel/white, @@ -75009,7 +67973,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "eTB" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -75037,21 +68001,6 @@ }, /turf/simulated/floor/engine, /area/station/science/explab) -"eTI" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_y = 8 - }, -/obj/item/camera/autopsy{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) "eUn" = ( /obj/structure/cable{ d1 = 4; @@ -75090,6 +68039,16 @@ icon_state = "dark" }, /area/station/security/storage) +"eVW" = ( +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) "eWa" = ( /obj/structure/cable{ d1 = 4; @@ -75167,7 +68126,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "eZE" = ( /obj/machinery/door/airlock, /obj/effect/mapping_helpers/airlock/autoname, @@ -75184,6 +68143,16 @@ icon_state = "cult" }, /area/station/legal/magistrate) +"fac" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "faq" = ( /obj/structure/closet/emcloset, /obj/item/wrench, @@ -75201,6 +68170,65 @@ icon_state = "darkred" }, /area/station/security/warden) +"fbD" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgreen" + }, +/area/station/medical/virology) +"fbX" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteyellowcorner"; + dir = 4 + }, +/area/station/medical/chemistry) +"fca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"fcl" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/nw) +"fcY" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/south) +"fdt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/medical/virology) "fdD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -75259,6 +68287,16 @@ icon_state = "red" }, /area/station/security/permabrig) +"ffa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) "ffd" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 8; @@ -75273,25 +68311,12 @@ }, /turf/simulated/floor/engine/n2, /area/station/engineering/atmos) -"ffm" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/simulated/floor/plasteel/white, -/area/station/hallway/primary/central) "ffz" = ( /obj/effect/spawner/random_spawners/cobweb_right_frequent, /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "ffC" = ( -/obj/machinery/access_button{ - autolink_id = "assolar_btn_int"; - name = "interior access button"; - pixel_x = 25; - pixel_y = -25; - req_access_txt = "10;13" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -75302,14 +68327,23 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) +"ffG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "ffJ" = ( /obj/structure/cable{ d1 = 4; @@ -75331,13 +68365,46 @@ }, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) +"fga" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "fgh" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/incinerator) +"fgF" = ( +/obj/structure/table/reinforced, +/obj/item/radio, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "fgM" = ( /turf/simulated/wall, /area/station/security/execution) +"fhh" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "fho" = ( /obj/machinery/economy/vending/artvend, /obj/effect/decal/cleanable/cobweb, @@ -75363,10 +68430,7 @@ /turf/simulated/floor/plasteel, /area/station/supply/sorting) "fhI" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, /obj/item/shard, /turf/simulated/floor/plating, @@ -75400,6 +68464,18 @@ icon_state = "neutral" }, /area/station/maintenance/port) +"fiu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/east) +"fiV" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/south) "fjJ" = ( /obj/structure/chair/office/dark, /turf/simulated/floor/plasteel/dark, @@ -75444,7 +68520,7 @@ "fmg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" }, @@ -75454,15 +68530,6 @@ icon_state = "dark" }, /area/station/telecomms/chamber) -"fmE" = ( -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central/south) "fmF" = ( /obj/structure/closet/secure_closet/security, /turf/simulated/floor/plasteel{ @@ -75512,6 +68579,55 @@ }, /turf/simulated/floor/plating, /area/station/command/office/ntrep) +"fob" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/east) +"foc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft/north) +"fod" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/doctor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) +"fol" = ( +/obj/structure/table/glass, +/obj/item/storage/box/patch_packs, +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/phone{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "fou" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -75561,7 +68677,7 @@ dir = 4; icon_state = "browncorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "fpL" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, @@ -75590,7 +68706,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "fqr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -75626,10 +68742,15 @@ dir = 4 }, /obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "fqS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -75648,20 +68769,11 @@ }, /area/station/maintenance/apmaint) "frh" = ( -/obj/machinery/door/airlock/external{ - id_tag = "assolar_door_int"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -75695,6 +68807,25 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"frO" = ( +/obj/structure/bed/roller, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24; + name = "south bump" + }, +/obj/machinery/camera{ + c_tag = "Medbay Lobby"; + dir = 1; + network = list("Medical","SS13") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "fsf" = ( /obj/structure/cable{ d1 = 1; @@ -75708,6 +68839,15 @@ icon_state = "neutral" }, /area/station/maintenance/port) +"fsC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/plasteel/white, +/area/station/medical/chemistry) "fsO" = ( /obj/structure/cable{ d1 = 4; @@ -75721,15 +68861,31 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/smes) +"fsR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) "fun" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/atmos/glass{ name = "Atmospherics Access" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"fuu" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/delivery/white/hollow, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) "fuH" = ( /obj/machinery/economy/vending/autodrobe, /obj/machinery/light/small{ @@ -75757,6 +68913,12 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) +"fwU" = ( +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "fwX" = ( /obj/structure/sign/electricshock{ pixel_x = -32; @@ -75767,7 +68929,27 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) +"fxo" = ( +/obj/machinery/bodyscanner{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"fxA" = ( +/obj/machinery/iv_drip, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) "fxC" = ( /obj/structure/cable{ d2 = 4; @@ -75776,6 +68958,15 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) +"fyn" = ( +/obj/machinery/economy/vending/coffee, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "fzd" = ( /obj/machinery/access_button{ autolink_id = "virolab_btn_int"; @@ -75795,9 +68986,8 @@ d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" - }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, /area/station/medical/virology) "fze" = ( /obj/structure/closet/l3closet/scientist, @@ -75808,6 +68998,15 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/white, /area/station/science/explab) +"fzp" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "fAb" = ( /obj/structure/cable{ d1 = 4; @@ -75827,10 +69026,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "fBl" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -75854,6 +69050,20 @@ }, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) +"fBU" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/hollow/left, +/obj/structure/sign/deathsposal{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "fCA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -75864,7 +69074,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"fCT" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "fCY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -75893,13 +69109,6 @@ }, /area/station/security/brig) "fDS" = ( -/obj/machinery/access_button{ - autolink_id = "stationai_btn_int"; - name = "interior access button"; - pixel_x = -20; - pixel_y = -20; - req_access_txt = "10;13" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -75909,12 +69118,6 @@ dir = 10; initialize_directions = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, /turf/simulated/floor/plasteel/dark, /area/station/engineering/ai_transit_tube) "fEo" = ( @@ -75983,6 +69186,13 @@ icon_state = "dark" }, /area/station/security/prison/cell_block) +"fFy" = ( +/obj/machinery/camera{ + dir = 6; + name = "Atmospherics North" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/atmos) "fFE" = ( /obj/effect/spawner/random_spawners/blood_maybe, /turf/simulated/floor/plasteel{ @@ -75990,24 +69200,35 @@ icon_state = "neutral" }, /area/station/maintenance/fsmaint) -"fFP" = ( -/obj/structure/mirror{ - pixel_x = -27 - }, -/obj/machinery/shower{ - dir = 4 +"fFU" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/latex, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"fGs" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" }, -/obj/machinery/door/window/classic/normal{ - dir = 4; - name = "Glass Door" +/obj/machinery/power/apc/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/cloning) +/area/station/hallway/primary/port/west) "fGt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"fGW" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/south, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "fHs" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -76043,17 +69264,20 @@ }, /area/station/maintenance/starboard) "fIv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plating, /area/station/maintenance/aft) "fIE" = ( @@ -76080,7 +69304,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "fJA" = ( /obj/structure/table/wood, /obj/item/storage/fancy/cigarettes/cigpack_uplift, @@ -76090,6 +69314,15 @@ icon_state = "grimy" }, /area/station/maintenance/starboard) +"fJR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) "fKN" = ( /obj/structure/cable{ d1 = 4; @@ -76108,30 +69341,17 @@ /area/station/maintenance/fsmaint) "fLI" = ( /obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/classic/normal{ - name = "Genetics Desk"; - dir = 4 - }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics{ dir = 4 }, -/obj/machinery/door/window/classic/normal{ - dir = 8; - name = "Genetics Desk" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id_tag = "geneticsdesk"; - name = "Genetics Desk Shutters" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/obj/machinery/door/window/classic/reversed{ + dir = 4; + name = "Genetics Reception" }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - icon_state = "purplefull" + dir = 8; + icon_state = "whitepurple" }, /area/station/science/genetics) "fLR" = ( @@ -76169,7 +69389,7 @@ inlet_injector_autolink_id = "n2o_in"; name = "Nitrous Oxide Supply Control"; outlet_vent_autolink_id = "n2o_out"; - autolink_sensors = list("n2o_sensor"="Tank") + autolink_sensors = list("n2o_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plasteel{ @@ -76177,6 +69397,26 @@ icon_state = "escape" }, /area/station/engineering/atmos) +"fMP" = ( +/obj/machinery/door/airlock/command{ + id_tag = "cmoofficedoor"; + name = "CMO's Office" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "CMO" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) "fMW" = ( /obj/machinery/light/small{ dir = 4; @@ -76213,6 +69453,30 @@ icon_state = "neutralcorner" }, /area/station/public/fitness) +"fNN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) +"fNP" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "fOa" = ( /obj/structure/bed/dogbed, /turf/simulated/floor/plasteel{ @@ -76225,7 +69489,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "fOy" = ( /obj/item/kirbyplants, /obj/effect/turf_decal/delivery/hollow, @@ -76266,7 +69530,35 @@ icon_state = "whitepurple" }, /area/station/science/research) +"fOV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"fPb" = ( +/obj/structure/table, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "fPx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ @@ -76278,16 +69570,6 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) "fPC" = ( @@ -76307,7 +69589,23 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) +"fPG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "fPJ" = ( /obj/effect/spawner/random_spawners/oil_maybe, /turf/simulated/floor/plasteel{ @@ -76323,6 +69621,26 @@ /obj/structure/lattice, /turf/space, /area/space/nearstation) +"fQh" = ( +/obj/structure/table/glass, +/obj/item/storage/box/iv_bags{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/machinery/economy/vending/wallmed{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/machinery/camera{ + c_tag = "Chemistry South"; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "fQr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -76338,6 +69656,11 @@ }, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) +"fQt" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/station/medical/reception) "fQU" = ( /obj/machinery/power/smes{ charge = 2e+006 @@ -76415,7 +69738,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "fSH" = ( /obj/structure/cable{ d1 = 1; @@ -76432,7 +69755,22 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) +"fTe" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "fTq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -76447,18 +69785,23 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "fTr" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/maintenance/fore2) "fTZ" = ( @@ -76495,19 +69838,7 @@ /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) "fVZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, +/turf/simulated/floor/plasteel/white, /area/station/medical/surgery/primary) "fWe" = ( /obj/machinery/door/poddoor{ @@ -76524,6 +69855,37 @@ }, /turf/simulated/floor/plating, /area/station/security/storage) +"fWX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) +"fXM" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/secondary) +"fYS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) "fZU" = ( /obj/structure/chair/stool/bar{ dir = 1 @@ -76534,13 +69896,34 @@ }, /area/station/service/bar) "fZV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Genetics Office" +/obj/machinery/newscaster{ + dir = 1; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/table/glass, +/obj/item/storage/box/syringes, +/obj/item/book/manual/wiki/sop_science, +/obj/structure/extinguisher_cabinet{ + name = "east bump"; + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitepurple" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/genetics, -/turf/simulated/floor/plasteel, /area/station/science/genetics) +"gap" = ( +/obj/machinery/firealarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) "gaZ" = ( /obj/item/radio/intercom{ name = "north bump"; @@ -76550,7 +69933,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "gbO" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance/two, @@ -76559,6 +69942,23 @@ icon_state = "bar" }, /area/station/maintenance/fsmaint) +"gbQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "gcp" = ( /obj/structure/cable{ d1 = 1; @@ -76634,6 +70034,23 @@ icon_state = "darkredfull" }, /area/station/security/processing) +"gfB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"gfR" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-4" + }, +/obj/machinery/power/apc/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) "ggA" = ( /obj/machinery/economy/vending/shoedispenser, /turf/simulated/floor/plasteel{ @@ -76652,13 +70069,7 @@ /turf/simulated/floor/plasteel, /area/station/command/teleporter) "ggW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -76686,25 +70097,82 @@ }, /turf/simulated/floor/plating, /area/station/security/main) -"ghJ" = ( -/obj/machinery/economy/atm{ - pixel_x = 32 +"ghB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/distribution) +"ghG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"ghP" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/distribution) +"ghS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Virology Hallway North"; + dir = 4; + network = list("Medical","SS13") }, -/area/station/hallway/primary/aft) +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "ghZ" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/wall, /area/station/maintenance/fore) +"git" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "giz" = ( /obj/structure/table/glass, -/obj/item/book/random{ +/obj/item/folder/white{ + pixel_x = 3; pixel_y = 6 }, +/obj/effect/landmark/lightsout, /turf/simulated/floor/plasteel/white, /area/station/medical/reception) +"giE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/east) "giK" = ( /obj/structure/lattice/catwalk, /obj/structure/transit_tube/curved{ @@ -76786,6 +70254,16 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) +"gkl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) "gls" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -76824,6 +70302,19 @@ icon_state = "neutralfull" }, /area/station/engineering/equipmentstorage) +"gnh" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass, +/area/station/medical/medbay) +"gns" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/distribution) "gnB" = ( /obj/machinery/alarm{ dir = 1; @@ -76875,11 +70366,22 @@ icon_state = "dark" }, /area/station/security/main) +"gpy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-4" + }, +/obj/machinery/power/apc/important/directional/west, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "gpU" = ( /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "gpX" = ( /obj/effect/landmark/spawner/nukedisc_respawn, /turf/simulated/floor/plasteel{ @@ -76905,17 +70407,7 @@ "grB" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) -"grD" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/spawner/window/reinforced/polarized/grilled{ - id = "CMO" - }, -/turf/simulated/floor/plating, -/area/station/command/office/cmo) +/area/station/hallway/secondary/entry/east) "gsC" = ( /obj/structure/cable{ d1 = 1; @@ -76925,27 +70417,14 @@ /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/maintenance/fore2) "gti" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/machinery/economy/vending/wallmed{ - layer = 3.3; - name = "Emergency NanoMed"; - pixel_x = 28 - }, -/obj/item/crutches, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, +/obj/structure/flora/rock/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, /area/station/medical/medbay) "gty" = ( /obj/machinery/light{ @@ -76980,6 +70459,10 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) +"gua" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "guk" = ( /obj/structure/cable{ d1 = 1; @@ -76995,7 +70478,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) +"gvr" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/south) "gvO" = ( /obj/effect/turf_decal, /obj/effect/decal/cleanable/dirt, @@ -77006,6 +70495,18 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/storage) +"gvZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) +"gwl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/medical/storage/secondary) "gwn" = ( /obj/structure/cable{ d1 = 4; @@ -77108,6 +70609,10 @@ }, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) +"gzi" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "gAL" = ( /obj/effect/landmark/damageturf, /turf/simulated/floor/plasteel/airless{ @@ -77115,6 +70620,19 @@ dir = 5 }, /area/space/nearstation) +"gAR" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "gBe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -77132,6 +70650,15 @@ icon_state = "darkredcorners" }, /area/station/security/permasolitary) +"gCA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "gDv" = ( /obj/machinery/door_timer/cell_1{ pixel_x = -32 @@ -77151,6 +70678,24 @@ icon_state = "wood-broken7" }, /area/station/maintenance/library) +"gDy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"gDM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "gEo" = ( /obj/structure/sink{ pixel_y = 25 @@ -77166,10 +70711,24 @@ dir = 5 }, /obj/machinery/light, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) +"gEy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port/east) "gEW" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -77204,7 +70763,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "gFm" = ( /obj/structure/window/reinforced{ dir = 1 @@ -77299,19 +70858,6 @@ /obj/effect/spawner/random_spawners/oil_maybe, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) -"gHC" = ( -/obj/machinery/door/airlock/external{ - id_tag = "apmaint2_door_int"; - locked = 1; - name = "West Maintenance External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/port) "gHE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research, @@ -77334,14 +70880,17 @@ }, /area/station/engineering/control) "gIn" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - name = "Chemistry Junction"; - sort_type_txt = "11" +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 6; + dir = 8; icon_state = "whiteblue" }, /area/station/medical/reception) @@ -77349,11 +70898,7 @@ /obj/effect/turf_decal{ dir = 6 }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 4; - name = "east bump"; - pixel_x = 24; +/obj/machinery/power/apc/critical/directional/east{ shock_proof = 1 }, /obj/structure/cable{ @@ -77362,6 +70907,15 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/storage) +"gJC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "gJT" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/metal{ @@ -77385,6 +70939,13 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/break_room) +"gKe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/engineering/atmos/distribution) "gKi" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -77399,6 +70960,13 @@ icon_state = "darkred" }, /area/station/security/brig) +"gKs" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) "gKF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -77414,6 +70982,34 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/port) +"gLm" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "sr2" + }, +/obj/machinery/holosign/surgery{ + id = "surgery2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/secondary) "gLn" = ( /obj/structure/cable{ d1 = 4; @@ -77428,6 +71024,24 @@ icon_state = "darkred" }, /area/station/security/brig) +"gLq" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"gLD" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/screwdriver, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "gLH" = ( /obj/machinery/door/window/classic/reversed{ name = "Danger: Conveyor Access"; @@ -77447,6 +71061,20 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/disposal) +"gMe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/secondary) "gML" = ( /obj/structure/sign/radiation/rad_area, /turf/simulated/wall/r_wall, @@ -77483,7 +71111,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "gNO" = ( /obj/item/radio/intercom{ name = "east bump"; @@ -77494,17 +71122,6 @@ }, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) -"gNS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Patient Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/medbay) "gOL" = ( /obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, @@ -77528,32 +71145,66 @@ icon_state = "darkredfull" }, /area/station/security/warden) -"gQU" = ( -/obj/structure/cable, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/security/permabrig) -"gQW" = ( -/turf/simulated/wall/r_wall, -/area/station/science/toxins/launch) -"gRi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre" +"gPc" = ( +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/obj/machinery/holosign/surgery{ - id = "surgery1" +/obj/effect/turf_decal/delivery/white/hollow, +/obj/machinery/shower{ + pixel_y = 8 + }, +/turf/simulated/floor/noslip, +/area/station/medical/surgery) +"gPh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/central/south) +"gQe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/primary) +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/south) +"gQS" = ( +/obj/effect/spawner/window/reinforced, +/turf/simulated/floor/plating, +/area/station/medical/sleeper) +"gQU" = ( +/obj/structure/cable, +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/security/permabrig) +"gQW" = ( +/turf/simulated/wall/r_wall, +/area/station/science/toxins/launch) "gTw" = ( /obj/structure/table/wood, /obj/item/folder/white, @@ -77585,6 +71236,37 @@ icon_state = "freezerfloor" }, /area/station/public/sleep) +"gVk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) +"gVm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/east) +"gVn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "gVE" = ( /obj/machinery/light{ dir = 1 @@ -77613,20 +71295,7 @@ pixel_y = 28 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) -"gWP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/simulated/floor/plasteel, -/area/station/supply/sorting) +/area/station/hallway/primary/central/west) "gXp" = ( /obj/machinery/door/airlock/security{ name = "Detective" @@ -77655,19 +71324,67 @@ icon_state = "red" }, /area/station/security/detective) -"gZj" = ( +"gYx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"gYJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "south bump"; + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Virology Bedroom South"; + network = list("SS13","Medical","Bedroom"); + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkgreen" + }, +/area/station/medical/virology) +"haj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, /obj/structure/cable{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/medical/virology) +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "haA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random_spawners/blood_maybe, @@ -77700,6 +71417,12 @@ /obj/structure/closet/wardrobe/atmospherics_yellow, /turf/simulated/floor/plating, /area/station/maintenance/electrical) +"hbl" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "hbr" = ( /obj/structure/cable{ d2 = 4; @@ -77720,6 +71443,23 @@ }, /turf/simulated/floor/plating, /area/station/security/interrogation) +"hbt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "hbv" = ( /obj/machinery/newscaster{ name = "north bump"; @@ -77730,7 +71470,7 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "hbB" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -77760,14 +71500,6 @@ }, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) -"hbU" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitegreen" - }, -/area/station/medical/virology) "hch" = ( /obj/structure/chair/stool{ dir = 8 @@ -77818,6 +71550,23 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) +"hdI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"heQ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/station/medical/medbay) "hfk" = ( /obj/machinery/economy/vending/security, /obj/item/radio/intercom{ @@ -77828,6 +71577,24 @@ icon_state = "darkred" }, /area/station/security/main) +"hgo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) +"hgR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "hha" = ( /obj/structure/cable{ d2 = 2; @@ -77838,6 +71605,17 @@ }, /turf/simulated/floor/plating, /area/station/command/office/rd) +"hhn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/west) "hhz" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -77861,6 +71639,9 @@ }, /turf/simulated/floor/plating/airless, /area/station/engineering/control) +"hhG" = ( +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/east) "hhU" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/turf_decal/stripes/corner{ @@ -77915,6 +71696,24 @@ }, /turf/simulated/floor/wood, /area/station/legal/lawoffice) +"hiT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) +"hiZ" = ( +/obj/structure/table, +/obj/item/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/firstaid/o2, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) "hjo" = ( /obj/structure/closet/crate, /obj/effect/landmark/costume/random, @@ -77993,7 +71792,7 @@ dir = 4; icon_state = "browncorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "hmr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -78021,17 +71820,26 @@ icon_state = "red" }, /area/station/hallway/secondary/exit) -"hmC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"hmM" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/area/station/medical/medbay) +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) "hng" = ( /obj/machinery/message_server, /turf/simulated/floor/bluegrid, @@ -78058,6 +71866,16 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) +"hon" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/purple, +/area/station/medical/psych) "hos" = ( /obj/structure/cable{ d1 = 4; @@ -78073,13 +71891,27 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/plasteel/white, -/area/station/hallway/primary/central) +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "hps" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) +"hpD" = ( +/obj/structure/table/glass, +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/item/reagent_containers/iv_bag/salglu, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) "hpH" = ( /obj/machinery/fishtank/tank, /obj/machinery/light/small{ @@ -78107,6 +71939,19 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"hrt" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/geneticist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/science/genetics) "hrD" = ( /obj/machinery/door/airlock/security/glass{ name = "Prison Perma Cell 3" @@ -78117,6 +71962,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/security/permabrig) +"hrX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "hsa" = ( /obj/machinery/light/small, /obj/structure/sign/poster/contraband/random{ @@ -78129,20 +71987,55 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/service/chapel/office) +"hsp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) "hss" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 }, /turf/simulated/floor/engine, /area/station/science/toxins/mixing) -"hsQ" = ( -/obj/structure/chair/sofa/corp/right{ +"hsE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue" + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/east) +"hsQ" = ( +/obj/structure/railing{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, /area/station/medical/reception) +"htc" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) "htH" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel, @@ -78155,11 +72048,20 @@ }, /turf/simulated/floor/wood, /area/station/maintenance/library) +"huq" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "huN" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"hvf" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) "hvX" = ( /obj/machinery/economy/vending/snack, /turf/simulated/floor/plasteel/dark, @@ -78195,6 +72097,35 @@ }, /turf/simulated/floor/wood, /area/station/maintenance/library) +"hxe" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 4; + location = "Medbay" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/window/classic/reversed{ + dir = 1; + name = "Medical Delivery" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/turf/simulated/floor/plating, +/area/station/medical/break_room) "hxl" = ( /obj/structure/cable{ d2 = 2; @@ -78209,10 +72140,7 @@ /turf/simulated/floor/plating, /area/station/security/detective) "hxB" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -78270,6 +72198,24 @@ icon_state = "dark" }, /area/station/turret_protected/aisat) +"hzo" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) +"hzL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) "hzW" = ( /obj/machinery/alarm{ dir = 1; @@ -78296,7 +72242,7 @@ name = "Mixed Air Supply Control"; outlet_vent_autolink_id = "air_out"; outlet_setting = 2000; - autolink_sensors = list("air_sensor"="Tank") + autolink_sensors = list("air_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 10 @@ -78319,6 +72265,11 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) +"hBw" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/hallway/primary/central/north) "hCU" = ( /obj/effect/turf_decal/delivery/partial, /obj/machinery/door/window/classic/normal{ @@ -78335,19 +72286,10 @@ }, /area/station/supply/sorting) "hCW" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/masks, -/obj/machinery/newscaster{ - name = "north bump"; - pixel_y = 28 - }, +/obj/machinery/economy/vending/genedrobe, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitepurplecorner" + dir = 1; + icon_state = "whitepurple" }, /area/station/science/genetics) "hDr" = ( @@ -78357,6 +72299,13 @@ icon_state = "freezerfloor" }, /area/station/service/kitchen) +"hDu" = ( +/obj/structure/bed, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "hDz" = ( /obj/structure/chair/office/dark{ dir = 8 @@ -78441,12 +72390,19 @@ /turf/space, /area/space/nearstation) "hFR" = ( -/obj/machinery/economy/vending/medical, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" +/obj/structure/bed/amb_trolley{ + dir = 1 }, -/area/station/medical/medbay) +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel/white/side{ + dir = 4 + }, +/area/station/medical/paramedic) "hFW" = ( /obj/machinery/door/airlock/engineering{ name = "Electrical Maintenance" @@ -78460,6 +72416,33 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/maintenance/port) +"hGZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + name = "north bump"; + pixel_y = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "hHk" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, @@ -78491,22 +72474,6 @@ icon_state = "bar" }, /area/station/maintenance/fsmaint) -"hIg" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/turf_decal/delivery/partial, -/obj/effect/turf_decal/arrows/black, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) "hIi" = ( /obj/structure/cable{ d1 = 4; @@ -78528,25 +72495,17 @@ icon_state = "darkred" }, /area/station/security/brig) -"hIk" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/window/classic/normal{ - name = "Medbay Desk" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) "hIE" = ( /obj/item/bodybag, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/maintenance/apmaint) +"hIZ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) "hJh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/atmos/glass{ @@ -78558,12 +72517,21 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/maintenance/incinerator) "hJG" = ( /turf/simulated/floor/plasteel/stairs, /area/station/science/research) +"hLd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/cmo/secure, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "hLU" = ( /obj/machinery/airlock_controller/air_cycler{ pixel_y = -25; @@ -78581,45 +72549,12 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/control) -"hLZ" = ( -/obj/structure/table/glass, -/obj/item/hemostat{ - pixel_x = 6 - }, -/obj/item/retractor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stack/medical/bruise_pack/advanced, -/obj/item/reagent_containers/iv_bag/salglu, -/obj/machinery/camera{ - c_tag = "Medbay Surgery West"; - dir = 1; - network = list("Medical","SS13") - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/surgery/primary) "hMD" = ( /obj/machinery/camera{ c_tag = "Research Toxin Mixing"; network = list("Research","SS13") }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -78646,6 +72581,24 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/control) +"hNh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) "hNy" = ( /obj/structure/cable{ d1 = 4; @@ -78691,6 +72644,14 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) +"hPM" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/delivery/white/hollow, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "hQe" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -78709,7 +72670,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "hQq" = ( /obj/structure/window/reinforced{ dir = 1; @@ -78721,44 +72682,66 @@ /area/station/public/fitness) "hQz" = ( /obj/machinery/door/window/classic/normal{ - name = "Robotics Desk"; - dir = 8 + dir = 8; + name = "Robotics Surgery" }, +/obj/effect/mapping_helpers/airlock/polarized, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ dir = 8 }, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) -"hRZ" = ( +"hRJ" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Cloning" +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) +"hSe" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"hSO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"hTe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, +/obj/effect/landmark/start/doctor, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitepurple" + icon_state = "whitebluefull" }, -/area/station/medical/cloning) +/area/station/medical/storage) "hTr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "hTD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass, @@ -78769,22 +72752,22 @@ "hTV" = ( /turf/simulated/wall, /area/station/legal/magistrate) -"hTW" = ( -/obj/machinery/camera{ - c_tag = "Medbay Surgery East Storage"; - dir = 1 - }, +"hUE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" + icon_state = "purplecorner" }, -/area/station/medical/surgery/primary) +/area/station/hallway/primary/aft/south) "hUV" = ( /obj/machinery/light{ dir = 1 @@ -78832,6 +72815,23 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) +"hWu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkgreen" + }, +/area/station/medical/virology) "hWF" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -78861,6 +72861,24 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/science/research) +"hXE" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/secondary) +"hYe" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkgreen" + }, +/area/station/medical/virology) "hYv" = ( /obj/structure/table, /obj/item/toy/figure/crew/scientist, @@ -78894,6 +72912,14 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) +"hZn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos/distribution) "hZs" = ( /obj/effect/turf_decal{ dir = 1 @@ -78912,6 +72938,28 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/storage) +"hZH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"hZK" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/station/medical/medbay) "hZL" = ( /turf/simulated/floor/plasteel/dark, /area/station/public/locker) @@ -78927,6 +72975,24 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"hZO" = ( +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "hZR" = ( /obj/structure/chair/stool{ dir = 4 @@ -78947,6 +73013,21 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/white, /area/station/science/robotics/chargebay) +"iaU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "ibb" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 @@ -79113,31 +73194,60 @@ }, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) -"ieW" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" +"ieS" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + dir = 9; + network = list("SS13","Medical") + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" }, +/area/station/medical/cryo) +"ieW" = ( +/obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, /obj/item/shard{ icon_state = "small" }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"ieX" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "ifj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/door/airlock/maintenance{ + name = "Internal Medbay Maintenance" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, -/area/station/medical/surgery/secondary) +/area/station/medical/surgery) "ifw" = ( /obj/structure/closet/l3closet/security, /turf/simulated/floor/plasteel{ @@ -79150,11 +73260,11 @@ /obj/machinery/door/airlock/mining/glass{ name = "Cargo Bay" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/machinery/door/poddoor/shutters{ id_tag = "qm_warehouse"; name = "Warehouse Shutters" }, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/sorting) "igJ" = ( @@ -79162,26 +73272,8 @@ icon_state = "darkred" }, /area/station/security/prison/cell_block) -"igV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Desk Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/genetics, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/station/maintenance/aft) -"ihi" = ( -/obj/machinery/door/airlock/external{ - id_tag = "perma_door_int"; - locked = 1; - name = "Perma Brig Exterior Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, +"ihi" = ( /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/any/security/brig, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "ihK" = ( @@ -79208,6 +73300,11 @@ icon_state = "vault" }, /area/station/security/permabrig) +"iis" = ( +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plating, +/area/station/medical/morgue) "iiM" = ( /obj/structure/window/reinforced{ dir = 8 @@ -79215,20 +73312,20 @@ /obj/structure/musician/piano, /turf/simulated/floor/plating, /area/station/maintenance/theatre) -"iiY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "ijk" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fore2) +"ijt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "ijN" = ( /obj/machinery/door/airlock/atmos/glass{ heat_proof = 1; @@ -79273,6 +73370,13 @@ }, /turf/simulated/floor/plasteel/grimy, /area/station/public/vacant_office) +"imG" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "imS" = ( /obj/structure/table/wood, /obj/machinery/light_switch{ @@ -79285,6 +73389,16 @@ /obj/item/clothing/head/stalhelm, /turf/simulated/floor/wood, /area/station/service/clown) +"imY" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) "inx" = ( /obj/structure/table/wood, /obj/machinery/fishtank/bowl, @@ -79297,6 +73411,11 @@ }, /turf/simulated/floor/wood, /area/station/public/pet_store) +"iny" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "inH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -79312,13 +73431,8 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "inM" = ( /obj/structure/cable{ d1 = 1; @@ -79338,20 +73452,42 @@ icon_state = "caution" }, /area/station/public/fitness) -"ioK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/classic/normal{ - name = "Medbay Desk" +"ioN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"ipg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "ipi" = ( /turf/simulated/floor/wood, /area/station/maintenance/apmaint) @@ -79366,6 +73502,26 @@ icon_state = "red" }, /area/station/security/permabrig) +"ipS" = ( +/obj/structure/table, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/obj/machinery/button/windowtint{ + id = "morgue"; + pixel_x = 8; + pixel_y = -24; + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) "ipZ" = ( /obj/machinery/economy/vending/cigarette, /turf/simulated/floor/plasteel/dark, @@ -79380,17 +73536,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) -"iqv" = ( -/obj/machinery/economy/vending/medical, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) "iqz" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "iro" = ( /obj/structure/cable{ d1 = 1; @@ -79409,6 +73558,10 @@ "irt" = ( /turf/simulated/wall, /area/station/maintenance/abandonedbar) +"irJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "irM" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -79422,6 +73575,43 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) +"itm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"itA" = ( +/obj/machinery/computer/cloning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"itX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) "iuU" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -79470,17 +73660,51 @@ /obj/machinery/status_display{ pixel_x = 32 }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) +"ivS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"iwu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"iwE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" }, -/turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) -"iwk" = ( -/obj/effect/spawner/random_spawners/wall_rusted_always, -/turf/simulated/wall, -/area/station/medical/surgery) +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) "iwQ" = ( /obj/machinery/light_switch{ name = "north bump"; @@ -79517,6 +73741,14 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) +"ixk" = ( +/obj/structure/table/glass, +/obj/item/wrench/medical, +/obj/item/soap/nanotrasen, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "ixr" = ( /obj/machinery/door/poddoor{ id_tag = "toxinsdriver"; @@ -79543,17 +73775,27 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/turf_decal/delivery, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" }, /area/station/maintenance/starboard) +"iAa" = ( +/obj/machinery/defibrillator_mount/loaded{ + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) "iBv" = ( /obj/structure/cable{ d1 = 1; @@ -79583,6 +73825,14 @@ /obj/structure/lattice, /turf/space, /area/space/nearstation) +"iBC" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) "iBK" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/two, @@ -79725,26 +73975,6 @@ }, /turf/simulated/floor/plating, /area/station/engineering/atmos) -"iFx" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/radio/intercom{ - name = "west bump"; - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/medical/surgery/secondary) "iFB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -79762,6 +73992,31 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"iGk" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) +"iGQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"iHR" = ( +/obj/structure/bed/psych, +/obj/machinery/status_display{ + layer = 4; + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) "iIr" = ( /obj/machinery/door/poddoor{ density = 0; @@ -79784,23 +74039,38 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/bar) +"iIS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space/nearstation) "iIY" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/machinery/light_switch{ - dir = 4; - name = "west bump"; - pixel_x = -24 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/button/windowtint{ +/obj/effect/landmark/start/paramedic, +/turf/simulated/floor/plasteel{ dir = 4; - id = "Psych"; - pixel_x = -24; - pixel_y = -8; - req_access_txt = "64" + icon_state = "whiteblue" }, -/turf/simulated/floor/wood, -/area/station/medical/psych) +/area/station/medical/paramedic) +"iJi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) "iJL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/atmos/glass{ @@ -79817,38 +74087,54 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) -"iKj" = ( -/obj/machinery/light_switch{ - dir = 4; - name = "west bump"; - pixel_x = -24 +"iKf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/holosign_switch{ - dir = 4; - id = "surgery2"; - pixel_x = -24; - pixel_y = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" + icon_state = "neutralfull" }, -/area/station/medical/surgery/secondary) -"iKT" = ( -/obj/machinery/access_button{ - autolink_id = "fpsolar_btn_ext"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = -25; - req_access_txt = "32" +/area/station/hallway/primary/starboard/north) +"iKv" = ( +/obj/structure/table, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkgreen" }, -/obj/structure/lattice/catwalk, +/area/station/medical/virology) +"iKN" = ( /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/space, -/area/station/maintenance/auxsolarport) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/starboard) "iLv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -79883,6 +74169,15 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) +"iMy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/station/medical/virology) "iNa" = ( /obj/item/relic, /turf/simulated/floor/engine, @@ -79905,6 +74200,23 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/storage) +"iNo" = ( +/obj/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/structure/table/glass/reinforced/plasma, +/turf/simulated/floor/carpet/purple, +/area/station/medical/psych) +"iNB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/east) "iOh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79947,11 +74259,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal) "iPa" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -79963,11 +74271,7 @@ /area/station/maintenance/starboard) "iPP" = ( /obj/item/kirbyplants, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 4; - name = "east bump"; - pixel_x = 24; +/obj/machinery/power/apc/critical/directional/east{ shock_proof = 1 }, /obj/structure/cable{ @@ -79998,6 +74302,31 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/fore2) +"iQj" = ( +/obj/structure/morgue, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"iQz" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"iQK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "iQO" = ( /obj/effect/spawner/random_spawners/wall_rusted_always, /turf/simulated/wall, @@ -80013,6 +74342,41 @@ /obj/machinery/atmospherics/portable/canister/toxins, /turf/simulated/floor/plasteel, /area/station/science/storage) +"iRk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/west) +"iRs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"iRF" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "iSc" = ( /obj/machinery/door/poddoor{ density = 0; @@ -80086,6 +74450,14 @@ icon_state = "red" }, /area/station/security/permabrig) +"iUf" = ( +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "iUt" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor{ @@ -80111,14 +74483,23 @@ icon_state = "bar" }, /area/station/service/bar) +"iUU" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/west) "iUZ" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/condiment/peppermill, /obj/machinery/door/firedoor, /obj/machinery/door/window, /obj/effect/mapping_helpers/airlock/windoor/autoname, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, /obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "kitchenbar"; + name = "Kitchen Shutters"; + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -80160,6 +74541,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "iVV" = ( @@ -80199,16 +74581,57 @@ }, /area/station/science/research) "iWE" = ( +/obj/machinery/economy/vending/cola, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) +"iWG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitebluecorner" }, -/area/station/hallway/primary/central) +/area/station/medical/medbay) +"iWN" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer Requests Console"; + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"iXC" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) "iXL" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"iXM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "iXX" = ( /obj/machinery/camera{ c_tag = "Brig - Cell 2"; @@ -80231,15 +74654,23 @@ /turf/simulated/floor/plasteel/white, /area/station/science/toxins/mixing) "iYu" = ( -/obj/machinery/access_button{ - autolink_id = "apmaint2_btn_ext"; - name = "exterior access button"; - pixel_x = 24; - pixel_y = 24 +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/e_to_w/engineer{ + req_access_txt = 13 }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) +"iYX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "jaE" = ( /obj/machinery/door/airlock/maintenance{ name = "Custodial Maintenance" @@ -80313,16 +74744,11 @@ icon_state = "neutralcorner" }, /area/station/public/fitness) -"jcu" = ( -/obj/machinery/economy/vending/cola, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutral" - }, -/area/station/medical/break_room) +"jcP" = ( +/obj/effect/spawner/random_spawners/blood_often, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) "jdb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ @@ -80343,6 +74769,17 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"jdr" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/south) "jdz" = ( /obj/structure/cable{ d2 = 4; @@ -80351,15 +74788,19 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/robotics/showroom) -"jdF" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"jdH" = ( +/obj/machinery/power/apc/critical/directional/east{ + shock_proof = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" }, /turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" + dir = 4; + icon_state = "whitegreen" }, -/area/station/medical/medbay) +/area/station/medical/virology) "jdU" = ( /obj/structure/cable{ d1 = 4; @@ -80381,6 +74822,54 @@ /obj/machinery/economy/vending/autodrobe, /turf/simulated/floor/plasteel/dark, /area/station/public/locker) +"jeS" = ( +/obj/structure/filingcabinet/chestdrawer/autopsy, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"jfB" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"jfG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) "jgr" = ( /obj/machinery/light_switch{ dir = 4; @@ -80389,17 +74878,52 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/bar) +"jgG" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "jhk" = ( /obj/effect/spawner/random_barrier/obstruction, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) -"jhM" = ( -/obj/machinery/economy/vending/medical, +"jhr" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + name = "west bump" + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"jid" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitebluecorner" + icon_state = "neutralcorner" }, -/area/station/medical/reception) +/area/station/hallway/primary/central/ne) +"jin" = ( +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/storage/secondary) "jiG" = ( /obj/structure/cable{ d1 = 1; @@ -80416,6 +74940,17 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/storage) +"jiU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluefull" + }, +/area/station/medical/storage/secondary) "jji" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -80448,7 +74983,24 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) +"jjD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/north) "jkk" = ( /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) @@ -80467,14 +75019,6 @@ icon_state = "yellowcorner" }, /area/station/engineering/break_room) -"jkU" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery/hollow, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/primary) "jkW" = ( /obj/structure/cable{ d2 = 2; @@ -80499,6 +75043,35 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/station/service/clown) +"jlw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"jlL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) +"jmY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall/r_wall, +/area/station/medical/virology) +"jnk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) "jnp" = ( /obj/structure/sink{ dir = 8; @@ -80538,7 +75111,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) +"jpa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "jpk" = ( /obj/structure/cable{ d2 = 8; @@ -80547,6 +75126,43 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) +"jpm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"jpC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/west) +"jqi" = ( +/obj/effect/spawner/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/science/genetics) "jqA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -80581,14 +75197,6 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "jrB" = ( -/obj/machinery/door/airlock/external{ - id_tag = "perma_door_ext"; - locked = 1; - name = "Perma Brig External Access" - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, /obj/effect/turf_decal/stripes/line, /obj/machinery/door/poddoor{ density = 0; @@ -80597,8 +75205,6 @@ name = "Prison Lockdown Blast Doors"; opacity = 0 }, -/obj/effect/mapping_helpers/airlock/access/any/security/brig, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "jrC" = ( @@ -80606,26 +75212,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) -"jrG" = ( -/obj/machinery/door/airlock/virology{ - name = "Virology Bedroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/station/medical/virology) "jrK" = ( /obj/structure/table/wood, /obj/item/folder, @@ -80648,64 +75234,16 @@ }, /turf/simulated/floor/engine, /area/station/science/test_chamber) -"jsi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/hallway/primary/central) "jsk" = ( /obj/machinery/door/airlock/external{ id_tag = "supply_home"; locked = 1; name = "Cargo Docking Hatch" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/supply_shuttle, /turf/simulated/floor/plating, /area/station/supply/storage) -"jsq" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) "jtb" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -80754,7 +75292,12 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) +"juK" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) "juN" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -80779,42 +75322,43 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/engineering/control) +"jvD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "jvR" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/theatre) -"jyM" = ( -/obj/machinery/door/airlock/command{ - id_tag = "cmoofficedoor"; - name = "CMO's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +"jwP" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/area/station/hallway/primary/central/north) +"jyz" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/area/station/hallway/primary/port/west) +"jzc" = ( +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) +/area/station/hallway/primary/fore/south) "jzs" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -80841,13 +75385,16 @@ name = "Distribution Loop" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "jAu" = ( /obj/machinery/door/poddoor/shutters{ density = 0; @@ -80864,17 +75411,35 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/meeting_room) -"jBy" = ( +"jAP" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24; + name = "east bump" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"jBj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" + icon_state = "neutralfull" }, -/area/station/medical/reception) +/area/station/hallway/primary/aft/north) +"jBE" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "jBM" = ( /obj/structure/cable{ d1 = 1; @@ -80905,16 +75470,24 @@ }, /turf/simulated/floor/plating, /area/station/command/office/hos) -"jCQ" = ( -/obj/machinery/door/airlock/external{ - id_tag = "fpsolar_door_int"; - locked = 1; - name = "Engineering External Access" +"jCu" = ( +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/machinery/light/small{ + dir = 1 }, +/obj/machinery/camera{ + c_tag = "Morgue North"; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"jCQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -80935,56 +75508,19 @@ icon_state = "cult" }, /area/station/legal/magistrate) -"jDT" = ( -/obj/machinery/door/airlock/virology, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"jDK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/plating, /area/station/medical/virology) -"jEr" = ( -/obj/machinery/door/airlock/medical{ - name = "Psych Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/station/medical/psych) "jEE" = ( -/obj/machinery/door/airlock/external{ - id_tag = "fpsolar_door_ext"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/w_to_e/engineer{ + req_access_txt = 13 }, /turf/simulated/floor/plating, -/area/station/maintenance/auxsolarport) +/area/station/maintenance/auxsolarstarboard) "jEI" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; @@ -80997,6 +75533,27 @@ /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/science/break_room) +"jGH" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"jGI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "jGV" = ( /obj/machinery/atmospherics/air_sensor{ autolink_id = "waste_sensor"; @@ -81004,19 +75561,25 @@ }, /turf/simulated/floor/engine/vacuum, /area/station/engineering/atmos) -"jIb" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" +"jHq" = ( +/obj/machinery/economy/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_y = 28 }, -/obj/effect/spawner/window/reinforced/polarized/grilled{ - id = "CMO" +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" }, -/turf/simulated/floor/plating, -/area/station/command/office/cmo) +/area/station/medical/medbay) "jIs" = ( /turf/simulated/wall/r_wall, /area/station/security/evidence) +"jIz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) "jIA" = ( /obj/structure/cable{ d1 = 4; @@ -81037,6 +75600,12 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/port) +"jIB" = ( +/obj/effect/spawner/window/reinforced/polarized{ + id = "sr1" + }, +/turf/simulated/floor/plating, +/area/station/medical/surgery/primary) "jIV" = ( /obj/structure/table, /obj/item/folder/red, @@ -81054,9 +75623,12 @@ inlet_injector_autolink_id = "n2_in"; name = "Nitrogen Supply Control"; outlet_vent_autolink_id = "n2_out"; - autolink_sensors = list("n2_sensor"="Tank") + autolink_sensors = list("n2_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "red" @@ -81076,20 +75648,10 @@ /turf/simulated/floor/plating, /area/station/security/checkpoint/secondary) "jJq" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - autolink_id = "escape_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = -26; - pixel_y = 6; - vent_link_id = "escape_vent"; - ext_door_link_id = "escape_door_ext"; - int_door_link_id = "escape_door_int"; - ext_button_link_id = "escape_btn_ext"; - int_button_link_id = "escape_btn_int" - }, /obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "jJI" = ( @@ -81103,30 +75665,43 @@ /obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/launch) -"jKp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"jJW" = ( +/obj/machinery/camera{ + c_tag = "Medbay Secure Storage"; + network = list("SS13","Medical"); + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/rack, +/obj/item/clothing/under/plasmaman/enviroslacks, +/obj/item/clothing/under/plasmaman/enviroslacks, +/obj/item/clothing/head/helmet/space/plasmaman/white, +/obj/item/clothing/head/helmet/space/plasmaman/white, +/obj/item/clothing/under/plasmaman{ + pixel_x = 2; + pixel_y = -6 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/clothing/under/plasmaman{ + pixel_x = 2; + pixel_y = -6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/clothing/head/helmet/space/plasmaman{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/space/plasmaman{ + pixel_x = -3; + pixel_y = 2 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_state = "whitebluecorner" + icon_state = "darkblue" }, -/area/station/hallway/primary/central) +/area/station/medical/storage/secondary) "jKE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/simulated/floor/plasteel, /area/station/supply/storage) @@ -81136,6 +75711,25 @@ }, /turf/simulated/floor/engine/plasma, /area/station/engineering/atmos) +"jKY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/starboard) "jLf" = ( /obj/structure/chair/sofa/left{ dir = 4; @@ -81185,6 +75779,16 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"jMD" = ( +/obj/machinery/computer/crew, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "jMN" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -81220,6 +75824,14 @@ icon_state = "brown" }, /area/station/supply/storage) +"jNp" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/medical/virology) "jNP" = ( /obj/machinery/door/window/reinforced/reversed{ dir = 4; @@ -81264,6 +75876,23 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/port) +"jNX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/wall/r_wall, +/area/station/medical/virology) +"jNY" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) +"jOL" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/station/hallway/secondary/entry/lounge) "jOW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -81281,10 +75910,15 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "jPk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -81311,6 +75945,29 @@ }, /turf/simulated/floor/plating, /area/station/supply/sorting) +"jPY" = ( +/obj/item/radio/intercom{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/table/tray, +/obj/item/storage/surgical_tray, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"jQv" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"jQA" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "jQN" = ( /obj/machinery/door/poddoor{ density = 0; @@ -81342,6 +75999,27 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/library) +"jRZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/station/medical/medbay) "jSg" = ( /obj/machinery/door/poddoor{ density = 0; @@ -81414,6 +76092,23 @@ icon_state = "yellowfull" }, /area/station/engineering/control) +"jTJ" = ( +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) "jUb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -81431,32 +76126,6 @@ /obj/structure/lattice, /turf/space, /area/space/nearstation) -"jUx" = ( -/obj/machinery/economy/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_x = -25 - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/station/medical/virology) -"jUF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) "jUH" = ( /obj/structure/cable{ d1 = 1; @@ -81501,6 +76170,43 @@ icon_state = "darkredcorners" }, /area/station/security/permabrig) +"jVn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"jVv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) "jVR" = ( /obj/structure/cable{ d2 = 8; @@ -81510,6 +76216,14 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/xenobiology) +"jVW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "jWY" = ( /obj/docking_port/stationary{ dir = 8; @@ -81521,10 +76235,20 @@ }, /turf/space, /area/space) +"jXz" = ( +/turf/simulated/floor/plating, +/area/station/hallway/primary/aft/south) "jYi" = ( /obj/effect/spawner/random_spawners/blood_maybe, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"jYK" = ( +/obj/effect/turf_decal/delivery/hollow, +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "jZh" = ( /obj/machinery/door/poddoor{ density = 0; @@ -81563,24 +76287,6 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/port) -"kan" = ( -/obj/machinery/door/airlock/external{ - id_tag = "assolar_door_ext"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/starboardsolar) "kaO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass, @@ -81614,29 +76320,48 @@ icon_state = "whitepurplecorner" }, /area/station/science/toxins/mixing) +"kce" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) "kcj" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) +"kcs" = ( +/obj/machinery/economy/vending/medidrobe, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) "kdg" = ( -/obj/machinery/door/airlock/external{ - id_tag = "escape_door_ext"; - locked = 1; - name = "Escape External Access" +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "kdm" = ( -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/machinery/firealarm{ dir = 4; name = "east bump"; @@ -81659,7 +76384,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "kej" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ @@ -81682,6 +76407,11 @@ icon_state = "vault" }, /area/station/turret_protected/aisat) +"keo" = ( +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/nw) "kep" = ( /obj/structure/cable{ d1 = 1; @@ -81718,6 +76448,18 @@ icon_state = "darkred" }, /area/station/security/prison/cell_block) +"kfx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "kfT" = ( /obj/structure/cable{ d2 = 4; @@ -81741,12 +76483,58 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/brig) +"kgl" = ( +/turf/simulated/wall, +/area/station/hallway/primary/central/north) +"kgC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "kgO" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/plasteel, -/area/station/science/toxins/mixing) +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) +"kho" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"khM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "khQ" = ( /obj/structure/cable{ d2 = 2; @@ -81766,17 +76554,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard2) -"khZ" = ( -/obj/machinery/access_button{ - autolink_id = "fssolar_btn_ext"; - name = "exterior access button"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "10;13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/station/maintenance/auxsolarstarboard) "kii" = ( /obj/structure/rack, /obj/item/storage/box/rubbershot{ @@ -81806,17 +76583,16 @@ }, /turf/simulated/floor/plasteel, /area/station/security/armory/secure) -"kit" = ( -/obj/effect/spawner/window/reinforced, -/turf/simulated/floor/plating, -/area/station/medical/break_room) -"kiK" = ( -/obj/structure/cable, -/obj/effect/spawner/window/reinforced/polarized/grilled{ - id = "CMO" +"kiC" = ( +/obj/machinery/firealarm{ + name = "north bump"; + pixel_y = 24 }, -/turf/simulated/floor/plating, -/area/station/command/office/cmo) +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/south) "kiL" = ( /obj/machinery/computer/security{ dir = 8 @@ -81831,6 +76607,25 @@ icon_state = "darkred" }, /area/station/security/warden) +"kjm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random_spawners/grille_often, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "kju" = ( /obj/machinery/door/airlock{ name = "Bathroom" @@ -81846,6 +76641,24 @@ icon_state = "neutralfull" }, /area/station/public/fitness) +"kkz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) "kkB" = ( /obj/effect/spawner/lootdrop/maintenance/two, /turf/simulated/floor/plasteel{ @@ -81865,7 +76678,9 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) "kla" = ( @@ -81880,12 +76695,6 @@ }, /turf/simulated/floor/plasteel, /area/station/service/kitchen) -"klh" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/hallway/primary/central) "klj" = ( /obj/structure/cable{ d2 = 4; @@ -81901,6 +76710,18 @@ icon_state = "darkred" }, /area/station/security/prisonershuttle) +"klE" = ( +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"klS" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) "kmr" = ( /obj/machinery/door/airlock/security{ name = "Evidence Storage" @@ -81914,16 +76735,28 @@ icon_state = "dark" }, /area/station/security/evidence) -"knd" = ( +"kmE" = ( +/obj/machinery/atmospherics/trinary/filter{ + dir = 4; + filter_type = 1; + on = 1 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) +"kna" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d2 = 8; - icon_state = "0-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/medical/virology) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "knI" = ( -/obj/item/reagent_containers/food/snacks/donut/jelly/cherryjelly, +/obj/item/food/snacks/donut/jelly/cherryjelly, /obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ dir = 9; @@ -81942,6 +76775,14 @@ }, /turf/space, /area/space) +"knY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) "koC" = ( /obj/item/kirbyplants, /obj/machinery/light/small{ @@ -81987,6 +76828,16 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) +"kpk" = ( +/obj/item/hemostat, +/obj/machinery/newscaster{ + dir = 1; + name = "south bump"; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "kpC" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on, /turf/simulated/floor/bluegrid{ @@ -81995,11 +76846,37 @@ temperature = 80 }, /area/station/science/xenobiology) +"kqn" = ( +/obj/effect/landmark/start/coroner, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"kqx" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) "kqL" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/checkpoint/secondary) +"kqX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "krN" = ( /obj/structure/cable{ d1 = 2; @@ -82048,6 +76925,17 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/control) +"kto" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"kts" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "ktB" = ( /obj/machinery/door/window/brigdoor{ dir = 1; @@ -82073,6 +76961,32 @@ icon_state = "darkredfull" }, /area/station/security/prison/cell_block) +"ktT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) +"kuI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "kuJ" = ( /obj/structure/cable{ d2 = 2; @@ -82101,6 +77015,20 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/explab) +"kxj" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/delivery/white/hollow, +/obj/machinery/camera{ + c_tag = "Medbay Storage Room"; + network = list("SS13","Medical") + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) "kxq" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -82109,6 +77037,31 @@ icon_state = "grimy" }, /area/station/maintenance/starboard) +"kxH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + name = "Morgue"; + sort_type_txt = "25" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "kxJ" = ( /obj/structure/cable{ d1 = 4; @@ -82127,6 +77080,12 @@ icon_state = "darkredfull" }, /area/station/security/prisonershuttle) +"kyr" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/storage) "kyK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -82136,33 +77095,64 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/port) -"kzA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage" +"kyN" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + name = "west bump"; + pixel_x = -24 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel{ - icon_state = "neutralfull" + dir = 8; + icon_state = "whiteblue" }, -/area/station/engineering/atmos) -"kAB" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/machinery/door/firedoor, -/obj/item/pen, -/obj/machinery/door/window/classic/normal{ - name = "Medbay Desk" +/area/station/medical/sleeper) +"kzd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/obj/effect/landmark/start/doctor, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, /turf/simulated/floor/plasteel/white, -/area/station/medical/reception) +/area/station/medical/sleeper) +"kAx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) +"kBB" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) "kBZ" = ( /obj/structure/sign/explosives, /turf/simulated/wall/r_wall, @@ -82175,6 +77165,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/turf_decal/stripes/line, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -82183,7 +77174,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "kCA" = ( /obj/effect/turf_decal{ dir = 4 @@ -82224,23 +77215,41 @@ icon_state = "darkredfull" }, /area/station/security/processing) -"kDC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"kDF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"kDH" = ( +/obj/structure/curtain, +/obj/effect/spawner/window/reinforced, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"kEt" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" }, +/area/station/hallway/primary/aft/south) +"kEN" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" + icon_state = "neutralfull" }, -/area/station/medical/medbay) +/area/station/hallway/primary/central/north) "kEZ" = ( /obj/structure/cable{ d1 = 1; @@ -82258,6 +77267,42 @@ icon_state = "neutralcorner" }, /area/station/public/locker) +"kGv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/starboard) +"kGA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft/south) "kGF" = ( /obj/machinery/door/poddoor/shutters{ dir = 2; @@ -82299,6 +77344,37 @@ icon_state = "whitepurple" }, /area/station/science/misc_lab) +"kHj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"kHJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) "kIs" = ( /obj/effect/turf_decal/stripes/line, /obj/item/radio/intercom{ @@ -82307,6 +77383,18 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) +"kID" = ( +/obj/machinery/disposal, +/obj/machinery/camera{ + c_tag = "Chief Medical Officer's Office"; + network = list("Medical","SS13") + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "kIF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -82324,6 +77412,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/station/command/office/blueshield) +"kIG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port/west) "kIP" = ( /turf/simulated/floor/wood{ icon_state = "wood-broken6" @@ -82336,6 +77438,35 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) +"kJJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) +"kKK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Port to Turbine" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "kLd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -82351,27 +77482,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) -"kLu" = ( -/obj/machinery/airlock_controller/access_controller{ - name = "Virology Lab Access Console"; - pixel_x = 6; - pixel_y = 24; - req_one_access_txt = "39"; - ext_door_link_id = "virolab_door_ext"; - int_door_link_id = "virolab_door_int"; - ext_button_link_id = "virolab_btn_ext"; - int_button_link_id = "virolab_btn_int" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/area/station/hallway/secondary/entry/east) +"kLU" = ( +/obj/structure/girder, /turf/simulated/floor/plasteel{ - icon_state = "whitegreenfull" + icon_state = "neutral" }, -/area/station/medical/virology) +/area/station/maintenance/starboard) "kMx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -82389,7 +77506,7 @@ /area/station/science/toxins/mixing) "kME" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/mug/sci, +/obj/item/reagent_containers/drinks/mug/sci, /turf/simulated/floor/plasteel/white, /area/station/science/break_room) "kNa" = ( @@ -82403,13 +77520,25 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) +"kNo" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) "kNC" = ( /obj/structure/chair/office/light{ dir = 8 }, /turf/simulated/floor/engine, /area/station/science/misc_lab) +"kOj" = ( +/obj/machinery/economy/vending/medical, +/obj/effect/turf_decal/woodsiding{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) "kOs" = ( /obj/machinery/atmospherics/portable/canister/sleeping_agent, /turf/simulated/floor/plasteel, @@ -82428,6 +77557,28 @@ icon_state = "red" }, /area/station/security/permabrig) +"kPl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "kPt" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light{ @@ -82440,10 +77591,59 @@ /obj/machinery/atmospherics/portable/canister/carbon_dioxide, /turf/simulated/floor/plasteel, /area/station/science/storage) +"kPL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) "kQt" = ( /obj/machinery/chem_master, /turf/simulated/floor/engine, /area/station/science/misc_lab) +"kQG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"kQO" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"kRp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft/south) "kSr" = ( /obj/structure/cable{ d1 = 1; @@ -82466,6 +77666,17 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/security/detective) +"kSO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "kSX" = ( /obj/structure/closet/crate, /obj/item/flashlight, @@ -82474,6 +77685,15 @@ icon_state = "neutral" }, /area/station/maintenance/starboard) +"kTc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "kTw" = ( /obj/machinery/fishtank/tank, /turf/simulated/floor/plating, @@ -82513,14 +77733,21 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) -"kVM" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery/hollow, +"kTY" = ( +/obj/machinery/airlock_controller/access_controller{ + name = "Virology Lab Access Console"; + pixel_x = -24; + req_one_access_txt = "39"; + ext_door_link_id = "virolab_door_ext"; + int_door_link_id = "virolab_door_int"; + ext_button_link_id = "virolab_btn_ext"; + int_button_link_id = "virolab_btn_int" + }, /turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" + dir = 9; + icon_state = "whitegreen" }, -/area/station/medical/surgery/secondary) +/area/station/medical/virology) "kWF" = ( /obj/machinery/light, /turf/simulated/floor/engine, @@ -82536,7 +77763,22 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) +"kWK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) +"kWL" = ( +/obj/machinery/computer/med_data, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "kWO" = ( /obj/structure/railing/corner{ dir = 4 @@ -82570,6 +77812,12 @@ icon_state = "neutralfull" }, /area/station/engineering/break_room) +"kWZ" = ( +/obj/structure/railing/corner, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) "kXj" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, @@ -82580,6 +77828,17 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"kXH" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/status_display{ + layer = 4; + pixel_x = -32 + }, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) "kXM" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -82588,6 +77847,13 @@ }, /turf/simulated/floor/plating, /area/station/medical/reception) +"kXO" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "kYe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -82598,6 +77864,15 @@ icon_state = "darkred" }, /area/station/security/warden) +"kYE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "kYS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -82618,6 +77893,16 @@ /obj/effect/spawner/random_spawners/dirt_maybe, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"lad" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "lah" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -82651,7 +77936,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "lbm" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, @@ -82707,13 +77992,6 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) -"lcJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central/south) "lcV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -82734,24 +78012,39 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel, /area/station/public/storage/art) -"ldx" = ( -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +"ldp" = ( +/obj/machinery/iv_drip, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" }, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/medical/virology) +/area/station/medical/surgery/secondary) +"leb" = ( +/obj/machinery/door/window/classic/reversed{ + name = "Do Not Revive"; + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "lee" = ( -/obj/structure/table/glass, -/obj/item/grown/sunflower{ - pixel_x = -2; - pixel_y = 2 +/obj/structure/chair/comfy/teal{ + dir = 4 }, /turf/simulated/floor/plasteel/white, /area/station/medical/reception) +"leo" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) "les" = ( /obj/structure/rack, /obj/item/assembly/igniter{ @@ -82778,6 +78071,16 @@ icon_state = "whitepurple" }, /area/station/science/misc_lab) +"leI" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/effect/landmark/start/doctor, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "lfd" = ( /obj/machinery/economy/slot_machine, /turf/simulated/floor/wood{ @@ -82788,16 +78091,34 @@ "lfg" = ( /turf/simulated/wall, /area/station/public/pet_store) +"lfU" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Mix to Ports" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"lfZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "lhu" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/public/storage/art) "lim" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -82811,13 +78132,64 @@ /turf/simulated/floor/engine, /area/station/science/test_chamber) "liC" = ( -/obj/machinery/light, -/obj/machinery/economy/vending/snack, -/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id_tag = "paramedic"; + name = "Paramedic Garage" + }, +/obj/machinery/door_control{ + id = "paramedic"; + name = "Garage Door Control"; + req_access_txt = "66"; + pixel_x = -24 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/medical/paramedic) +"liE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) +"lkb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"lky" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/storage/secondary) "llf" = ( /obj/structure/cable{ d2 = 8; @@ -82833,6 +78205,19 @@ icon_state = "neutral" }, /area/station/maintenance/fsmaint) +"llD" = ( +/obj/machinery/power/apc/critical/directional/east{ + shock_proof = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "llR" = ( /obj/machinery/light/small{ dir = 1 @@ -82840,6 +78225,20 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"llV" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/structure/sign/nosmoking_1{ + pixel_x = -30 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) +"lmQ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/east) "lnl" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -82855,7 +78254,21 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) +"lnN" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) "lnQ" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 @@ -82884,12 +78297,6 @@ /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, /area/station/maintenance/fsmaint) -"los" = ( -/obj/item/kirbyplants, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/reception) "loX" = ( /obj/structure/closet/secure_closet/security, /obj/item/radio/intercom{ @@ -82901,23 +78308,6 @@ icon_state = "darkred" }, /area/station/security/storage) -"lpg" = ( -/obj/structure/table/glass, -/obj/machinery/economy/vending/wallmed{ - layer = 3.3; - name = "Emergency NanoMed"; - pixel_y = -32 - }, -/obj/machinery/photocopier/faxmachine{ - department = "Chief Medical Officer's Office" - }, -/obj/machinery/newscaster{ - dir = 4; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) "lpm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -82929,6 +78319,26 @@ }, /turf/simulated/floor/engine, /area/station/science/explab/chamber) +"lpo" = ( +/obj/item/radio/intercom{ + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/table, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) +"lpI" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall, +/area/station/medical/paramedic) "lpL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -82936,10 +78346,33 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) +"lpX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "lqK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light_switch{ @@ -82948,6 +78381,26 @@ }, /turf/simulated/floor/wood, /area/station/public/pet_store) +"lqL" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/observation) +"lrh" = ( +/obj/machinery/optable, +/obj/item/radio/intercom{ + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "lrl" = ( /obj/structure/cable{ d1 = 2; @@ -82967,6 +78420,15 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"lrT" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "lsb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -82983,14 +78445,6 @@ icon_state = "neutralfull" }, /area/station/public/fitness) -"lsu" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) "ltb" = ( /obj/machinery/atmospherics/binary/valve{ dir = 1; @@ -83008,6 +78462,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel/dark, /area/station/legal/courtroom) +"lth" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "ltw" = ( /obj/machinery/light{ dir = 4 @@ -83016,7 +78479,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "ltX" = ( /obj/structure/plasticflaps{ opacity = 1 @@ -83104,6 +78567,27 @@ icon_state = "dark" }, /area/station/aisat) +"lvO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/starboard) "lvV" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, @@ -83116,6 +78600,15 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/aisat) +"lwo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) "lwr" = ( /obj/machinery/atmospherics/portable/canister, /obj/machinery/atmospherics/unary/portables_connector{ @@ -83137,6 +78630,24 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"lwY" = ( +/obj/structure/table/glass, +/obj/item/clothing/accessory/stethoscope{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_y = 3 + }, +/obj/item/clothing/accessory/stethoscope, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "lxc" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -83166,6 +78677,15 @@ /obj/machinery/economy/vending/hydrodrobe, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) +"lxK" = ( +/obj/machinery/camera{ + c_tag = "Primary Dorm Hallway - South" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/south) "lxX" = ( /obj/effect/mapping_helpers/airlock/unres{ dir = 1 @@ -83180,7 +78700,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "lyj" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -83189,19 +78709,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/maintenance/fore2) -"lyl" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/medical/virology) "lyp" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/normal{ @@ -83235,32 +78742,6 @@ icon_state = "whitepurple" }, /area/station/science/break_room) -"lzD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/classic/normal{ - name = "Monkey Pen"; - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/station/science/genetics) -"lzO" = ( -/obj/structure/table/glass, -/obj/item/flashlight/lamp, -/obj/machinery/newscaster{ - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "darkgreen" - }, -/area/station/medical/virology) "lzY" = ( /obj/structure/table/wood, /obj/machinery/alarm{ @@ -83321,9 +78802,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel/white, /area/station/science/break_room) +"lBx" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "lBR" = ( /turf/simulated/wall, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "lCu" = ( /obj/structure/table/reinforced, /obj/machinery/newscaster{ @@ -83333,6 +78823,45 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/maintenance/electrical) +"lDF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + name = "Genetics"; + sort_type_txt = "23" + }, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"lDO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"lEa" = ( +/obj/machinery/smartfridge/secure/medbay, +/turf/simulated/floor/plasteel/white, +/area/station/medical/chemistry) "lEr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -83368,6 +78897,43 @@ icon_state = "dark" }, /area/station/security/main) +"lFG" = ( +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay Requests Console"; + pixel_x = 30 + }, +/obj/structure/table, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/firstaid/toxin, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"lGs" = ( +/turf/simulated/wall/r_wall, +/area/station/medical/storage/secondary) +"lGx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"lHs" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) "lHK" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -83404,7 +78970,7 @@ /turf/simulated/floor/plasteel, /area/station/security/prison/cell_block) "lIv" = ( -/obj/machinery/suit_storage_unit/clown, +/obj/machinery/suit_storage_unit/clown/secure, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) @@ -83424,6 +78990,18 @@ icon_state = "darkblue" }, /area/station/ai_monitored/storage/eva) +"lJc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) "lJo" = ( /obj/structure/plasticflaps{ opacity = 1 @@ -83465,6 +79043,28 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"lKV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "lLU" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -83484,7 +79084,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "lMM" = ( /obj/effect/spawner/random_barrier/wall_probably, /turf/simulated/floor/plating, @@ -83564,11 +79164,12 @@ }, /turf/simulated/floor/plasteel, /area/station/public/storage/art) -"lPv" = ( -/obj/structure/cable, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/medical/virology) +"lPJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "lPV" = ( /obj/machinery/door/airlock/external{ id_tag = "enginen_door_int"; @@ -83585,6 +79186,29 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/engineering/control) +"lQl" = ( +/obj/effect/spawner/random_spawners/grille_maybe, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"lQs" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) "lQA" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall9f"; @@ -83672,6 +79296,16 @@ "lTi" = ( /turf/simulated/floor/wood, /area/station/maintenance/abandonedbar) +"lTy" = ( +/obj/machinery/newscaster{ + dir = 4; + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "lTY" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/barricade/wooden, @@ -83679,6 +79313,32 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/station/maintenance/library) +"lUd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) +"lUg" = ( +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "lUv" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance_hatch{ @@ -83696,6 +79356,22 @@ icon_state = "vault" }, /area/station/turret_protected/aisat) +"lVA" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/primary) +"lVJ" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "lWs" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, @@ -83712,18 +79388,69 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) -"lXe" = ( +"lXi" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Paramedic Office" +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/area/station/hallway/primary/central/south) +"lXn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/plasteel, -/area/station/medical/paramedic) +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) +"lXB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"lYp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Medbay Hall"; + sort_type_txt = "9" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"lYX" = ( +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/pen/multi, +/obj/item/flashlight/lamp/green{ + pixel_x = -7 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/glass/reinforced/plasma, +/turf/simulated/floor/carpet/purple, +/area/station/medical/psych) "lZw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -83745,6 +79472,23 @@ icon_state = "dark" }, /area/station/security/main) +"mbh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) "mbO" = ( /obj/machinery/economy/vending/coffee, /turf/simulated/floor/plasteel/dark, @@ -83783,6 +79527,17 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/misc_lab) +"mcY" = ( +/obj/machinery/disposal, +/obj/machinery/camera{ + c_tag = "Medbay Break Room"; + network = list("SS13","Medical") + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "mdd" = ( /obj/structure/table/wood, /obj/item/toy/russian_revolver, @@ -83843,7 +79598,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "meU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -83852,15 +79607,6 @@ icon_state = "dark" }, /area/station/security/processing) -"mfl" = ( -/obj/machinery/atmospherics/unary/thermomachine/freezer{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) "mft" = ( /obj/machinery/door/poddoor{ density = 0; @@ -83900,6 +79646,21 @@ icon_state = "dark" }, /area/station/security/storage) +"mfK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "mga" = ( /obj/effect/landmark/start/shaft_miner, /obj/structure/disposalpipe/segment{ @@ -83908,9 +79669,67 @@ }, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) +"mgM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard/west) +"mhf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) "mhu" = ( /turf/simulated/wall/r_wall, /area/station/security/permasolitary) +"mhx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/north, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/north) +"mhG" = ( +/obj/structure/rack, +/obj/item/screwdriver, +/obj/item/storage/box/bodybags, +/turf/simulated/floor/plating, +/area/station/medical/coldroom) "mhU" = ( /obj/item/radio/intercom{ name = "east bump"; @@ -83939,12 +79758,15 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) -"mko" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, +"mja" = ( +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell, /turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" + dir = 1; + icon_state = "whiteblue" }, -/area/station/medical/surgery/primary) +/area/station/medical/reception) "mkp" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -83971,25 +79793,22 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "mkS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/table, +/obj/item/taperecorder, +/obj/item/storage/box/gloves{ + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance" +/obj/machinery/status_display{ + layer = 4; + pixel_y = -32 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/obj/machinery/light/small, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" }, -/turf/simulated/floor/plasteel/dark, /area/station/medical/morgue) "mkY" = ( /obj/machinery/light{ @@ -84003,6 +79822,11 @@ }, /turf/simulated/floor/plasteel, /area/station/security/armory/secure) +"mli" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "mlS" = ( /obj/machinery/light/small{ dir = 4 @@ -84038,11 +79862,7 @@ /area/station/security/main) "mmx" = ( /obj/structure/closet/secure_closet/security, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -84063,17 +79883,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = 25; - req_access_txt = "63"; - vent_link_id = "perma_vent"; - ext_door_link_id = "perma_door_ext"; - int_door_link_id = "perma_door_int"; - ext_button_link_id = "perma_btn_ext"; - int_button_link_id = "perma_btn_int" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - autolink_id = "perma_vent" +/obj/structure/sign/securearea{ + pixel_x = 32 }, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) @@ -84118,6 +79929,13 @@ icon_state = "whitepurple" }, /area/station/science/research) +"moo" = ( +/obj/structure/chair/wheelchair, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "moy" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -84136,6 +79954,9 @@ /obj/machinery/atmospherics/unary/portables_connector, /turf/simulated/floor/plasteel/white, /area/station/science/toxins/mixing) +"mpZ" = ( +/turf/simulated/floor/carpet/purple, +/area/station/medical/psych) "mqP" = ( /obj/machinery/door/airlock/engineering{ name = "Fore Starboard Solar Access" @@ -84154,15 +79975,27 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "mqS" = ( /obj/item/radio/intercom{ name = "north bump"; pixel_y = 28 }, -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /turf/simulated/floor/plasteel, /area/station/security/armory/secure) +"mrs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "mrW" = ( /obj/machinery/newscaster{ dir = 1; @@ -84175,7 +80008,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "msl" = ( /obj/item/radio/beacon, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -84232,6 +80065,19 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) +"mtg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) "mtx" = ( /obj/item/radio/beacon, /turf/simulated/floor/plasteel/airless, @@ -84268,20 +80114,23 @@ /obj/structure/railing, /turf/simulated/floor/plasteel/white, /area/station/science/research) -"muK" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/secondary) "mvr" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/break_room) +"mwc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/secondary) "mwK" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -84310,6 +80159,15 @@ }, /turf/simulated/floor/plasteel, /area/station/science/robotics) +"mxM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "myf" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, @@ -84322,6 +80180,17 @@ }, /turf/simulated/floor/plating, /area/station/command/office/hos) +"myx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/coldroom) "myN" = ( /obj/structure/bed, /obj/item/bedsheet/hos, @@ -84335,23 +80204,6 @@ /obj/effect/landmark/start/head_of_security, /turf/simulated/floor/carpet/red, /area/station/command/office/hos) -"myR" = ( -/obj/machinery/smartfridge/medbay, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 2; - id_tag = "chemdesk1"; - name = "Chemistry Desk Shutters" - }, -/obj/machinery/door/window/classic/reversed{ - name = "Chemistry Desk" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) "mzs" = ( /obj/structure/cable{ d1 = 1; @@ -84363,7 +80215,57 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) +"mzz" = ( +/obj/structure/table/glass, +/obj/item/storage/box/autoinjectors{ + pixel_y = 4 + }, +/obj/item/roller, +/obj/item/storage/box/masks{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/flashlight/pen{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + dir = 4; + name = "west bump"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/door_control{ + desc = "A remote control switch for the medbay foyer."; + id = "medbayfoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = 7 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) +"mzT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) +"mzW" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/starboard) "mzZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -84396,6 +80298,18 @@ icon_state = "darkredcorners" }, /area/station/security/permasolitary) +"mAC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "mAH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -84436,6 +80350,26 @@ }, /turf/simulated/floor/plating, /area/station/engineering/smes) +"mBy" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Virology Bedroom North"; + network = list("SS13","Medical","Bedroom"); + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkgreen" + }, +/area/station/medical/virology) "mBN" = ( /obj/machinery/door/poddoor{ density = 0; @@ -84512,7 +80446,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "mFK" = ( /obj/machinery/light, /obj/machinery/economy/vending/bardrobe, @@ -84527,21 +80461,6 @@ /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/science/toxins/launch) -"mHm" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Staff Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel, -/area/station/medical/break_room) "mHK" = ( /obj/effect/spawner/random_barrier/possibly_welded_airlock, /obj/structure/barricade/wooden, @@ -84554,31 +80473,35 @@ /turf/simulated/floor/engine/n2, /area/station/engineering/atmos) "mJw" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" }, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/area/station/medical/virology) +"mJY" = ( +/obj/structure/table/glass, +/obj/item/soap/nanotrasen, +/obj/item/roller, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" }, -/turf/simulated/floor/plasteel, -/area/station/maintenance/starboard) +/area/station/medical/virology) "mKm" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/storage) +"mKx" = ( +/obj/machinery/computer/card/minor/cmo{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "mKM" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/delivery/hollow, @@ -84588,6 +80511,10 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) +"mKR" = ( +/obj/effect/spawner/window/reinforced, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) "mKU" = ( /obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, @@ -84628,19 +80555,6 @@ icon_state = "darkredfull" }, /area/station/security/warden) -"mLt" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "psychfoyer"; - name = "Psych Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/wood, -/area/station/hallway/primary/central) "mMb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -84652,6 +80566,10 @@ /obj/effect/spawner/random_spawners/oil_maybe, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"mMp" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) "mNc" = ( /obj/structure/cable{ d1 = 1; @@ -84714,7 +80632,15 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) +"mNM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/south) "mNS" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/polarized/grilled{ @@ -84735,11 +80661,16 @@ name = "west bump"; pixel_x = -30 }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "mOW" = ( /obj/structure/table/reinforced, /obj/item/storage/box/syringes, @@ -84762,6 +80693,15 @@ }, /turf/simulated/floor/plating, /area/station/supply/qm) +"mPF" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) "mPQ" = ( /obj/effect/turf_decal/delivery, /obj/structure/plasticflaps{ @@ -84790,19 +80730,44 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) +"mPU" = ( +/obj/effect/spawner/airlock/s_to_n{ + req_access_txt = 32 + }, +/turf/simulated/wall, +/area/station/engineering/gravitygenerator) +"mQc" = ( +/obj/item/radio/intercom{ + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) "mQk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel/dark, /area/station/legal/courtroom) +"mQm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "mRb" = ( /obj/machinery/airlock_controller/access_controller{ name = "Turbine Access Console"; @@ -84884,7 +80849,7 @@ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "mSF" = ( /obj/effect/turf_decal{ dir = 1 @@ -85008,6 +80973,27 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) +"mTz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/starboard/south) "mTZ" = ( /obj/machinery/door/window{ name = "Desk Door" @@ -85018,6 +81004,39 @@ }, /turf/simulated/floor/wood, /area/station/command/office/ntrep) +"mUz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/starboard) +"mUB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "mUF" = ( /obj/machinery/light, /obj/item/radio/intercom{ @@ -85043,42 +81062,46 @@ icon_state = "darkredcorners" }, /area/station/security/permabrig) +"mUR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "mUZ" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, /obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) -"mVA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +"mVd" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/light{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/white, +/turf/simulated/floor/grass, /area/station/medical/medbay) +"mVE" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/starboard) "mVF" = ( -/obj/machinery/access_button{ - autolink_id = "apsolar_btn_ext"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "13" +/obj/effect/spawner/airlock/s_to_n{ + req_access_txt = 1 }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/wall/r_wall, +/area/station/security/permasolitary) +"mWe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/turf/space, -/area/station/maintenance/portsolar) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "mWz" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -85093,7 +81116,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "mWO" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/three, @@ -85146,6 +81169,9 @@ icon_state = "vault" }, /area/station/command/bridge) +"mXA" = ( +/turf/simulated/wall, +/area/station/medical/sleeper) "mXZ" = ( /obj/machinery/camera{ c_tag = "Brig - Hallway North-East"; @@ -85177,7 +81203,7 @@ inlet_injector_autolink_id = "tox_in"; name = "Toxin Supply Control"; outlet_vent_autolink_id = "tox_out"; - autolink_sensors = list("tox_sensor"="Tank") + autolink_sensors = list("tox_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plasteel{ @@ -85185,13 +81211,38 @@ icon_state = "purple" }, /area/station/engineering/atmos) -"mZY" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"mZL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel/white, -/area/station/medical/cloning) +/area/station/medical/medbay) +"nae" = ( +/obj/machinery/atmospherics/binary/volume_pump/on{ + dir = 4; + name = "Port to Filter" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "naA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -85220,14 +81271,14 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "naN" = ( /obj/machinery/economy/vending/snack, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "nbE" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/ambrosia, @@ -85246,25 +81297,37 @@ }, /turf/simulated/floor/grass, /area/station/science/research) -"ncT" = ( -/obj/structure/chair/sofa/corp, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"ncB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel/white, -/area/station/medical/reception) +/area/station/medical/virology) "ncZ" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkredcorners" }, /area/station/security/brig) +"ndb" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) +"neb" = ( +/obj/effect/turf_decal/delivery/hollow, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/station/hallway/secondary/entry/lounge) "nem" = ( /obj/machinery/economy/vending/cigarette, /turf/simulated/floor/plasteel/dark, @@ -85273,10 +81336,15 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "nff" = ( /obj/structure/cable{ d2 = 8; @@ -85285,13 +81353,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/research) -"nfo" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/surgery/secondary) "nfy" = ( /obj/machinery/economy/vending/cigarette, /turf/simulated/floor/plasteel/dark, @@ -85358,16 +81419,6 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) -"ngL" = ( -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/machinery/door/window/classic/reversed{ - dir = 4; - name = "Glass Door" - }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/cloning) "ngZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ @@ -85401,6 +81452,23 @@ icon_state = "neutralfull" }, /area/station/engineering/break_room) +"nhv" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) +"nhy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "nhT" = ( /obj/machinery/alarm{ dir = 4; @@ -85471,7 +81539,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) +"njq" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) "njE" = ( /obj/machinery/light{ dir = 1 @@ -85485,6 +81559,17 @@ icon_state = "barber" }, /area/station/security/permabrig) +"njF" = ( +/obj/structure/chair/sofa/left{ + color = "#6ae226"; + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "njQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -85496,6 +81581,27 @@ icon_state = "dark" }, /area/station/command/office/hos) +"njU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central/south) "njX" = ( /obj/machinery/door/airlock{ name = "Court" @@ -85506,6 +81612,15 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/legal/courtroom) +"nkC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "nli" = ( /obj/structure/sign/poster/official/cleanliness{ pixel_y = 32 @@ -85514,24 +81629,20 @@ /turf/simulated/wall, /area/station/security/permabrig) "nlo" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Paramedic's maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, -/obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/chemistry) +"nlq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, -/turf/simulated/floor/plasteel, -/area/station/maintenance/aft) +/turf/simulated/wall/r_wall, +/area/station/medical/virology) "nlA" = ( /obj/machinery/door/airlock/command{ id_tag = "captainofficedoor" @@ -85574,6 +81685,12 @@ }, /turf/simulated/floor/plasteel, /area/station/public/vacant_office) +"nmt" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/south) "nmw" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -85619,14 +81736,19 @@ /turf/simulated/floor/carpet, /area/station/maintenance/starboard) "nnP" = ( -/obj/structure/table/reinforced, /obj/machinery/door/window, /obj/effect/mapping_helpers/airlock/windoor/autoname, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/drinks/britcup, +/obj/item/reagent_containers/condiment/saltshaker, /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "kitchenbar"; + name = "Kitchen Shutters"; + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -85657,16 +81779,6 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) -"noB" = ( -/obj/machinery/access_button{ - autolink_id = "perma_btn_ext"; - name = "exterior access button"; - pixel_x = 20; - pixel_y = -20; - req_access_txt = "67" - }, -/turf/space, -/area/space) "noW" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel/white, @@ -85699,6 +81811,12 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/storage) +"npn" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "red" + }, +/area/station/hallway/primary/fore/south) "npp" = ( /turf/simulated/floor/plasteel{ icon_state = "whiteblue" @@ -85723,6 +81841,11 @@ }, /turf/simulated/wall/r_wall, /area/station/engineering/engine/supermatter) +"npJ" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/north) "npQ" = ( /obj/structure/cable{ d1 = 4; @@ -85739,6 +81862,22 @@ icon_state = "neutral" }, /area/station/maintenance/fore) +"npV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"npW" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/observation) "nqn" = ( /obj/structure/table/reinforced, /obj/item/folder/white, @@ -85750,9 +81889,6 @@ /obj/effect/mapping_helpers/airlock/windoor/autoname/desk{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ - dir = 4 - }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ dir = 4 }, @@ -85784,6 +81920,36 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) +"nqK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"nrj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/valve/digital, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"nsl" = ( +/obj/machinery/clonepod/biomass, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"nso" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/grass, +/area/station/medical/medbay) "nsD" = ( /obj/structure/cable{ d1 = 1; @@ -85798,15 +81964,37 @@ /turf/simulated/floor/plating, /area/station/service/expedition) "ntt" = ( -/obj/machinery/light_switch{ - dir = 1; - name = "south bump"; - pixel_y = -24 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, /turf/simulated/floor/plasteel{ - icon_state = "darkblue" + dir = 8; + icon_state = "whiteblue" }, -/area/station/medical/surgery/observation) +/area/station/medical/surgery/secondary) +"ntG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plating, +/area/station/medical/coldroom) +"ntZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) "nui" = ( /obj/machinery/light/small{ dir = 8 @@ -85829,16 +82017,6 @@ icon_state = "caution" }, /area/station/public/fitness) -"nuu" = ( -/obj/machinery/light_switch{ - dir = 8; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "nuO" = ( /obj/structure/sign/vacuum/external, /turf/simulated/wall, @@ -85877,6 +82055,11 @@ /obj/effect/landmark/spawner/nukedisc_respawn, /turf/simulated/floor/wood, /area/station/maintenance/library) +"nvr" = ( +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) "nwK" = ( /obj/machinery/light, /obj/structure/cable{ @@ -85890,7 +82073,7 @@ name = "south bump"; pixel_y = -24 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "nxX" = ( /obj/structure/table/reinforced, @@ -85958,7 +82141,16 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) +"nBa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/paramedic) "nBh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/arrows/black, @@ -85989,28 +82181,6 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/control) -"nBz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Cloning" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/cloning) "nBO" = ( /obj/structure/sign/electricshock{ pixel_y = 32 @@ -86030,7 +82200,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "nBP" = ( /obj/machinery/atmospherics/unary/portables_connector, /obj/machinery/light_switch{ @@ -86078,6 +82248,12 @@ /obj/item/storage/fancy/candle_box/full, /turf/simulated/floor/plating, /area/station/maintenance/theatre) +"nCA" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) "nCY" = ( /obj/structure/closet/firecloset/full, /turf/simulated/floor/plasteel{ @@ -86096,7 +82272,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "nDM" = ( /obj/structure/table, /obj/item/folder/red, @@ -86114,6 +82290,13 @@ icon_state = "darkredcorners" }, /area/station/security/prisonershuttle) +"nEb" = ( +/obj/structure/closet/secure_closet/CMO, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "nEk" = ( /obj/machinery/door/airlock/research{ name = "Research Division Access" @@ -86131,6 +82314,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/science/research) +"nEp" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/north) "nEq" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Transit Tube" @@ -86144,6 +82335,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel/dark, /area/station/engineering/ai_transit_tube) +"nEw" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/south) "nEx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass, @@ -86159,6 +82355,15 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/engineering/control) +"nEy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "nER" = ( /obj/structure/cable, /obj/machinery/door/poddoor{ @@ -86171,6 +82376,23 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) +"nEX" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen/nitrogen{ + pixel_x = -4 + }, +/obj/item/tank/internals/emergency_oxygen/nitrogen, +/obj/item/clothing/mask/breath/vox, +/obj/item/tank/internals/emergency_oxygen/plasma{ + pixel_x = 5 + }, +/obj/item/tank/internals/emergency_oxygen/plasma{ + pixel_x = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners" + }, +/area/station/medical/storage/secondary) "nFh" = ( /obj/structure/cable{ d2 = 8; @@ -86212,25 +82434,16 @@ icon_state = "darkblue" }, /area/station/ai_monitored/storage/eva) -"nGL" = ( -/obj/machinery/bodyscanner{ - dir = 4 +"nGk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/surgery/primary) -"nHh" = ( -/obj/structure/reagent_dispensers/fueltank/chem{ - pixel_x = 32 - }, -/obj/machinery/economy/vending/chemdrobe, -/obj/effect/turf_decal/stripes/line{ - dir = 9 + icon_state = "neutralfull" }, -/turf/simulated/floor/plasteel, -/area/station/medical/chemistry) +/area/station/hallway/primary/central/north) "nHs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -86275,6 +82488,16 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) +"nIC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Internal Virologist Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/turf/simulated/floor/plating, +/area/station/medical/virology) "nIH" = ( /obj/structure/window/reinforced, /turf/simulated/floor/beach/water{ @@ -86282,10 +82505,10 @@ }, /area/station/public/fitness) "nJz" = ( -/obj/machinery/economy/vending/genedrobe, +/obj/machinery/computer/scan_consolenew, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whitepurplecorner" + icon_state = "whitepurple" }, /area/station/science/genetics) "nJE" = ( @@ -86312,7 +82535,12 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) +"nLs" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) "nLL" = ( /obj/machinery/light{ dir = 1 @@ -86335,6 +82563,26 @@ }, /turf/simulated/floor/plating, /area/station/command/office/hop) +"nMf" = ( +/obj/structure/table, +/obj/item/hand_labeler{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/pen/multi, +/obj/machinery/requests_console{ + department = "Morgue"; + departmentType = 5; + name = "Morgue Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) "nMR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -86385,16 +82633,29 @@ }, /turf/simulated/floor/wood, /area/station/maintenance/library) -"nOu" = ( -/obj/machinery/light_switch{ - name = "north bump"; - pixel_y = 24 +"nOp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" +/obj/item/paper_bin, +/obj/item/desk_bell{ + pixel_x = -7; + pixel_y = 7; + anchored = 1 }, -/area/station/medical/medbay) +/obj/machinery/door/window/classic/reversed{ + name = "Medical Reception"; + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 4 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "nOO" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, @@ -86434,10 +82695,30 @@ icon_state = "neutralfull" }, /area/station/supply/storage) -"nRf" = ( -/obj/machinery/optable, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/primary) +"nRk" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) +"nRv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "nRE" = ( /obj/machinery/door/poddoor{ density = 0; @@ -86464,7 +82745,7 @@ /obj/machinery/economy/vending/cola, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "nTR" = ( /obj/machinery/camera{ c_tag = "Central Ring Hallway West"; @@ -86476,7 +82757,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "nUp" = ( /obj/structure/cable{ d1 = 2; @@ -86503,6 +82784,13 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/command/office/ce) +"nVI" = ( +/obj/structure/cable, +/obj/machinery/power/apc/directional/south, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/south) "nWi" = ( /obj/machinery/door/poddoor{ density = 0; @@ -86552,18 +82840,21 @@ name = "reinforced stairs" }, /area/station/science/test_chamber) -"nXF" = ( -/obj/machinery/door/airlock/external{ - id_tag = "arrivalsn_door_ext" +"nYi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/access_button{ - autolink_id = "arrivalsn_btn_ext"; - name = "exterior access button"; - pixel_x = 24; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "nYm" = ( /obj/structure/sign/radiation/rad_area{ pixel_x = -32 @@ -86584,7 +82875,7 @@ known_by = list("captain") }, /obj/item/gun/projectile/revolver/russian, -/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/obj/item/reagent_containers/drinks/bottle/absinthe/premium, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/toy/figure/crew/captain, @@ -86609,6 +82900,14 @@ icon_state = "darkred" }, /area/station/security/brig) +"nYW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/east) "nZf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -86645,6 +82944,20 @@ icon_state = "neutralcorner" }, /area/station/public/fitness) +"nZk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "oar" = ( /obj/machinery/requests_console{ department = "Security"; @@ -86727,19 +83040,30 @@ }, /turf/simulated/floor/plating, /area/station/security/storage) -"odG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +"ocR" = ( +/obj/structure/table/glass, +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, +/obj/item/reagent_containers/iv_bag/salglu, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" }, +/area/station/medical/surgery/secondary) +"odG" = ( +/obj/effect/turf_decal/stripes/corner, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/corner, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "odQ" = ( /obj/effect/spawner/window/reinforced/plasma/grilled, @@ -86795,17 +83119,9 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) -"ofA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/secondary) +"ofu" = ( +/turf/simulated/wall, +/area/station/hallway/primary/central/west) "ofZ" = ( /obj/machinery/camera{ c_tag = "Perma-Brig General Population West"; @@ -86857,6 +83173,15 @@ icon_state = "dark" }, /area/station/security/main) +"ohu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/north) "oix" = ( /obj/structure/cable{ d1 = 1; @@ -86876,6 +83201,12 @@ icon_state = "neutralcorner" }, /area/station/public/fitness) +"oiF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) "ojf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -86885,6 +83216,13 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) +"ojv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port/east) "ojw" = ( /obj/structure/filingcabinet, /turf/simulated/floor/plating, @@ -86939,21 +83277,6 @@ icon_state = "freezerfloor" }, /area/station/public/sleep) -"olz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/supply/storage) "olR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining, @@ -86976,14 +83299,14 @@ inlet_injector_autolink_id = "waste_in"; name = "Gas Mix Tank Control"; outlet_vent_autolink_id = "waste_out"; - autolink_sensors = list("waste_sensor"="Tank") + autolink_sensors = list("waste_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "green" }, -/area/station/engineering/atmos) +/area/station/engineering/atmos/distribution) "omg" = ( /obj/machinery/door/poddoor{ density = 0; @@ -87019,6 +83342,12 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) +"omT" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) "omU" = ( /obj/structure/cable{ d1 = 1; @@ -87082,6 +83411,35 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) +"onG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/south) +"oop" = ( +/obj/effect/spawner/window/reinforced/polarized{ + id = "psychoffice" + }, +/turf/simulated/floor/plating, +/area/station/medical/psych) +"ooq" = ( +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "oox" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -87136,23 +83494,23 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) -"oqj" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medical Supplies" +"opY" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"oqo" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) "oqz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -87189,6 +83547,18 @@ }, /turf/simulated/floor/plasteel, /area/station/public/storage/art) +"orw" = ( +/obj/item/radio/intercom{ + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/table/tray, +/obj/item/storage/surgical_tray, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) "orz" = ( /obj/structure/window/reinforced{ dir = 1; @@ -87200,6 +83570,13 @@ /obj/structure/lattice, /turf/space, /area/space/nearstation) +"orG" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/lounge) "orY" = ( /obj/structure/barricade/wooden, /obj/machinery/door/airlock/command/glass{ @@ -87242,6 +83619,13 @@ /obj/effect/spawner/random_spawners/grille_maybe, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"osF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) "osM" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -87255,7 +83639,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "osS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -87294,7 +83678,18 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) +"ouk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/white, +/area/station/science/genetics) +"ouu" = ( +/obj/structure/closet/paramedic, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) "ova" = ( /obj/machinery/economy/merch{ dir = 1 @@ -87303,7 +83698,10 @@ dir = 6; icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) +"ovL" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/entry/north) "owG" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -87314,6 +83712,40 @@ }, /turf/simulated/floor/plasteel, /area/station/science/toxins/launch) +"oxJ" = ( +/obj/machinery/door_control{ + id = "kitchenbar"; + name = "Kitchen Bar Shutters Control"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "28" + }, +/obj/machinery/door_control{ + id = "kitchenhall"; + name = "Kitchen Hallway Shutters Control"; + pixel_x = -8; + pixel_y = 24; + req_access_txt = "28" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/service/kitchen) +"oxK" = ( +/obj/effect/turf_decal/box/white{ + color = "#009dff" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/defibrillator_mount/loaded{ + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "oxP" = ( /obj/effect/turf_decal{ dir = 1 @@ -87353,21 +83785,35 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/port) -"oyG" = ( -/obj/structure/chair/sofa/corp/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"oyz" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/power/apc/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/station/hallway/primary/central/east) +"oyD" = ( +/obj/machinery/alarm{ + pixel_y = 24; + name = "north bump" + }, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" + icon_state = "darkblue" }, +/area/station/medical/storage/secondary) +"oyG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel/white, /area/station/medical/reception) "oyR" = ( /obj/effect/landmark/start/scientist, @@ -87382,19 +83828,6 @@ /turf/simulated/floor/plating/airless, /area/station/maintenance/incinerator) "ozn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - autolink_id = "apsolar_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = -25; - req_access_txt = "13"; - vent_link_id = "apsolar_vent"; - ext_door_link_id = "apsolar_door_ext"; - int_door_link_id = "apsolar_door_int"; - int_button_link_id = "apsolar_btn_int"; - ext_button_link_id = "apsolar_btn_ext" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -87414,12 +83847,33 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "ozw" = ( /turf/simulated/floor/plasteel{ icon_state = "whitepurple" }, /area/station/science/break_room) +"ozR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 24; + name = "north bump" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "ozS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ @@ -87441,18 +83895,54 @@ /turf/simulated/floor/plasteel/white, /area/station/science/research) "oAd" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 8 +/obj/structure/railing{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) +"oAm" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ - icon_state = "whiteblue" + icon_state = "neutralfull" }, -/area/station/medical/reception) +/area/station/hallway/primary/central/east) +"oAx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/secondary) +"oBh" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "oBE" = ( /obj/item/vending_refill/coffee, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/starboard) +"oBK" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/medical/coldroom) +"oCp" = ( +/obj/machinery/economy/vending/virodrobe, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "oCK" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/effect/turf_decal/delivery/hollow, @@ -87501,20 +83991,25 @@ icon_state = "neutral" }, /area/station/maintenance/starboard) -"oDN" = ( -/obj/machinery/door/firedoor, +"oDF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/medical, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/turf/simulated/floor/plasteel{ + icon_state = "neutral" }, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) +/area/station/maintenance/starboard) "oDZ" = ( /obj/structure/cable{ d1 = 1; @@ -87539,31 +84034,8 @@ }, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) -"oEs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) "oFL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -87573,6 +84045,24 @@ icon_state = "barber" }, /area/station/service/barber) +"oFW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"oGw" = ( +/obj/machinery/economy/vending/wallmed{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "oHh" = ( /obj/structure/cable{ d2 = 4; @@ -87585,14 +84075,19 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "oHk" = ( -/obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window, /obj/effect/mapping_helpers/airlock/windoor/autoname, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, /obj/effect/turf_decal/delivery, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "kitchenbar"; + name = "Kitchen Shutters"; + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -87620,6 +84115,18 @@ icon_state = "dark" }, /area/station/security/prison/cell_block) +"oHT" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "viroshutters"; + name = "Privacy Shutters" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) "oII" = ( /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -87629,6 +84136,14 @@ /obj/item/radio/beacon, /turf/simulated/floor/engine, /area/station/science/test_chamber) +"oIN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/east) "oIT" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -87644,7 +84159,15 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) +"oJi" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery/blue/hollow, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "oJu" = ( /obj/effect/turf_decal/delivery/hollow, /obj/structure/cable{ @@ -87742,11 +84265,31 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/public/fitness) +"oLH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "oLR" = ( /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/maintenance/apmaint) +"oMd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "oMr" = ( /obj/machinery/turretid/lethal{ control_area = "\improper Telecoms Central Compartment"; @@ -87756,11 +84299,19 @@ /turf/simulated/wall/r_wall, /area/station/telecomms/chamber) "oMA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"oMI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "oMO" = ( /obj/structure/window/reinforced{ dir = 8 @@ -87814,6 +84365,19 @@ icon_state = "neutralfull" }, /area/station/supply/storage) +"oON" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "oOW" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -87822,13 +84386,6 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) -"oPN" = ( -/obj/machinery/economy/vending/medical, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/medbay) "oQB" = ( /obj/machinery/door/window/classic/reversed{ dir = 1; @@ -87839,6 +84396,16 @@ }, /turf/simulated/floor/plating, /area/station/science/toxins/launch) +"oQO" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) "oQY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -87881,7 +84448,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "oRu" = ( /obj/machinery/door/airlock/security, /obj/effect/mapping_helpers/airlock/autoname, @@ -87909,6 +84476,16 @@ icon_state = "whitepurple" }, /area/station/maintenance/apmaint) +"oRy" = ( +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/north) "oRD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -87918,10 +84495,20 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) +"oRM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) "oRW" = ( /obj/structure/cable{ d1 = 4; @@ -87941,6 +84528,18 @@ temperature = 80 }, /area/station/science/xenobiology) +"oTa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/south) "oTo" = ( /obj/structure/cable{ d1 = 4; @@ -87953,6 +84552,13 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) +"oTr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/unary/outlet_injector/on{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/station/medical/virology) "oTS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, @@ -87960,6 +84566,11 @@ /obj/effect/mapping_helpers/airlock/access/all/service/kitchen, /turf/simulated/floor/plasteel, /area/station/service/kitchen) +"oUw" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/station/medical/medbay) "oUJ" = ( /obj/structure/closet/crate{ opened = 1 @@ -87986,6 +84597,41 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/service/expedition) +"oVu" = ( +/obj/structure/morgue, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"oVH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/starboard) +"oWo" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "viroshutters"; + name = "Privacy Shutters"; + dir = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) "oWp" = ( /obj/effect/turf_decal{ dir = 4 @@ -87998,6 +84644,38 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/storage) +"oWC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/holosign_switch{ + dir = 4; + id = "surgery1"; + pixel_x = -24; + pixel_y = 7 + }, +/obj/machinery/light_switch{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/button/windowtint{ + pixel_x = -24; + id = "sr1"; + dir = 4; + pixel_y = -7; + req_access_txt = "45" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) "oWT" = ( /obj/structure/cable{ d1 = 1; @@ -88015,7 +84693,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "oXm" = ( /obj/structure/cable{ d1 = 4; @@ -88026,6 +84704,21 @@ icon_state = "dark" }, /area/station/security/brig) +"oXz" = ( +/obj/machinery/economy/vending/wallmed{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/machinery/camera{ + c_tag = "Medbay South Hallway"; + dir = 9; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "oXT" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Upload" @@ -88066,8 +84759,26 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel/white, /area/station/medical/medbay) +"oZf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "oZR" = ( /obj/structure/cable{ d1 = 4; @@ -88088,21 +84799,19 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) -"oZY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"pax" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/machinery/light{ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "neutralfull" + dir = 6; + icon_state = "whitegreen" }, -/area/station/engineering/atmos) +/area/station/medical/virology) "paC" = ( /obj/machinery/door/airlock/command{ id_tag = "captainofficedoor"; @@ -88118,24 +84827,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/command/office/captain/bedroom) -"paI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/iv_bag/blood/random, -/obj/machinery/economy/vending/wallmed{ - layer = 3.3; - name = "Emergency NanoMed"; - pixel_x = -25 - }, -/obj/item/crutches, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/medbay) "paJ" = ( /turf/simulated/floor/engine, /area/station/science/explab/chamber) @@ -88184,10 +84875,27 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/wall, /area/station/service/hydroponics) +"pcr" = ( +/obj/effect/spawner/window/grilled, +/turf/simulated/floor/plating, +/area/station/medical/storage/secondary) +"pcJ" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/donut_box, +/obj/machinery/computer/security/telescreen{ + pixel_x = -30; + network = list("Bedroom"); + name = "Virologist Isolation" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "pcY" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "pde" = ( /obj/machinery/newscaster{ name = "north bump"; @@ -88208,7 +84916,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "pdD" = ( /obj/machinery/door/airlock/security/glass{ name = "Prison Wing" @@ -88244,11 +84952,16 @@ name = "north bump"; pixel_y = 28 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "peG" = ( /obj/machinery/light/small{ dir = 4 @@ -88256,18 +84969,73 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "pfg" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id_tag = "geneticsdesk"; - name = "Genetics Desk Shutters" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/effect/spawner/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitepurple" }, -/turf/simulated/floor/plating, /area/station/science/genetics) +"pfO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/north) +"pgx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"pht" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) "phv" = ( /obj/structure/rack, /obj/item/storage/briefcase, @@ -88275,11 +85043,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "phF" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/camera{ c_tag = "Brig - Officer Equipment Storage"; network = list("SS13","Security") @@ -88319,6 +85083,20 @@ /obj/structure/flora/grass/jungle, /turf/simulated/floor/grass/jungle, /area/station/maintenance/fsmaint) +"pjO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/kirbyplants, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/west) +"pkg" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) "pkx" = ( /obj/machinery/economy/vending/engivend, /obj/effect/turf_decal/delivery, @@ -88377,6 +85155,26 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/simulated/floor/plating, /area/station/maintenance/port) +"pmO" = ( +/obj/structure/table/glass, +/obj/item/roller, +/obj/item/soap/nanotrasen, +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"pmR" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/east) "pmT" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -88394,29 +85192,18 @@ icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) -"pnF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +"pnr" = ( +/obj/item/radio/intercom{ + name = "south bump"; + pixel_y = -28 }, /turf/simulated/floor/plasteel{ - icon_state = "bluecorner" + dir = 8; + icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "ppj" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 @@ -88427,20 +85214,49 @@ icon_state = "vault" }, /area/station/security/execution) +"ppr" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/medical/reception) "ppu" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, /area/station/medical/reception) +"ppy" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"pqM" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "pqQ" = ( /obj/structure/cable{ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -88478,6 +85294,13 @@ }, /turf/simulated/floor/plasteel/white, /area/station/command/office/rd) +"pqY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/airless, +/area/station/medical/virology) "prb" = ( /obj/machinery/door/poddoor{ density = 0; @@ -88516,18 +85339,6 @@ icon_state = "neutral" }, /area/station/public/fitness) -"psr" = ( -/obj/machinery/smartfridge/secure/medbay, -/obj/machinery/door/window/classic/reversed{ - desc = "You have the public fridge, pal, lube off."; - name = "Anti-Theft Shield"; - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) "psA" = ( /obj/machinery/firealarm{ dir = 4; @@ -88541,6 +85352,24 @@ }, /turf/simulated/floor/engine, /area/station/science/misc_lab) +"psH" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"psT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/north) "pup" = ( /obj/machinery/atmospherics/portable/canister/oxygen, /turf/simulated/floor/plasteel, @@ -88562,6 +85391,11 @@ }, /turf/simulated/floor/plasteel, /area/station/public/toilet/lockerroom) +"pvf" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/west) "pvg" = ( /obj/structure/cable{ d2 = 2; @@ -88602,6 +85436,18 @@ icon_state = "darkred" }, /area/station/security/main) +"pvQ" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "pwd" = ( /obj/machinery/door/airlock/maintenance{ name = "Science Maintenance" @@ -88609,6 +85455,12 @@ /obj/effect/mapping_helpers/airlock/access/all/science/research, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"pwS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "pwU" = ( /obj/machinery/door/poddoor{ density = 0; @@ -88641,15 +85493,15 @@ icon_state = "red" }, /area/station/security/permabrig) -"pzp" = ( -/obj/machinery/light/small{ - dir = 1 +"pxD" = ( +/obj/structure/railing{ + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" + dir = 1; + icon_state = "whitebluecorner" }, -/area/station/medical/morgue) +/area/station/medical/medbay) "pzr" = ( /obj/machinery/door/airlock/engineering{ name = "Aft Port Solar Access" @@ -88690,12 +85542,24 @@ dir = 8 }, /obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "kitchenhall"; + name = "Kitchen Shutters" + }, /turf/simulated/floor/plasteel, /area/station/service/kitchen) "pAy" = ( /obj/item/storage/backpack/satchel, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"pAB" = ( +/obj/structure/bed, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "pAC" = ( /obj/machinery/light/small{ dir = 8 @@ -88703,12 +85567,37 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/port) +"pAZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "pBe" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) +"pBs" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "pBz" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/clothing/suit/browntrenchcoat, @@ -88717,6 +85606,21 @@ /obj/item/clothing/head/fedora, /turf/simulated/floor/plating, /area/station/maintenance/starboard) +"pBJ" = ( +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Medbay Cloning"; + dir = 8; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "pBY" = ( /obj/machinery/newscaster{ name = "north bump"; @@ -88732,6 +85636,22 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"pCt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port/east) "pCD" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/polarized/grilled{ @@ -88739,22 +85659,26 @@ }, /turf/simulated/floor/plating, /area/station/command/office/rd) -"pDb" = ( -/obj/machinery/economy/vending/medidrobe, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "neutralcorner" +"pCM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/area/station/medical/break_room) -"pDD" = ( -/obj/structure/chair{ - dir = 1 +/obj/item/radio/intercom{ + name = "east bump"; + pixel_x = 28 }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) +"pDw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposaloutlet{ + name = "evidence outlet" }, -/area/station/hallway/primary/central) +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plating/airless, +/area/station/medical/virology) "pDI" = ( /obj/structure/cable{ d1 = 1; @@ -88805,6 +85729,48 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) +"pFr" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"pFx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"pFF" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port/east) "pFT" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -88815,6 +85781,10 @@ icon_state = "whitepurple" }, /area/station/science/break_room) +"pGg" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/west) "pGi" = ( /obj/structure/sign/electricshock{ pixel_y = -32 @@ -88858,6 +85828,21 @@ icon_state = "red" }, /area/station/hallway/secondary/exit) +"pGL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "pHd" = ( /obj/structure/sign/electricshock{ pixel_y = 32 @@ -88877,7 +85862,7 @@ locked = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "pIn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -88889,7 +85874,22 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) +"pIs" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) "pIy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -88904,13 +85904,6 @@ /turf/simulated/floor/plasteel, /area/station/engineering/control) "pIC" = ( -/obj/machinery/access_button{ - autolink_id = "fssolar_btn_int"; - name = "interior access button"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "13" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -88921,12 +85914,12 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "pIY" = ( @@ -88937,31 +85930,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) -"pJc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "medbayfoyer"; - name = "Medbay Entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/reception) "pJt" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance" @@ -89023,37 +85991,18 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel/white, /area/station/science/explab) -"pLJ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ +"pLA" = ( +/turf/simulated/floor/plasteel{ dir = 8; - id_tag = "chemdesk2"; - name = "Chemistry Desk Shutters" - }, -/obj/machinery/door/window/classic/normal{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/windoor/autoname/desk{ - dir = 8 - }, -/obj/machinery/door/window/classic/normal{ - name = "Chemistry Desk"; - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ - dir = 4 + icon_state = "neutralcorner" }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/area/station/hallway/primary/central/se) +"pLJ" = ( +/obj/machinery/chem_dispenser, +/obj/structure/reagent_dispensers/fueltank/chem{ + pixel_x = -32 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/medical/chemistry) "pLU" = ( /obj/machinery/atmospherics/unary/portables_connector{ @@ -89061,6 +86010,10 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/toxins/mixing) +"pMq" = ( +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "pMx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -89156,7 +86109,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "pOB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -89251,6 +86204,33 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/storage) +"pSh" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"pSW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port/west) "pSX" = ( /obj/structure/rack, /obj/item/multitool, @@ -89320,6 +86300,25 @@ }, /turf/simulated/floor/engine, /area/station/science/explab/chamber) +"pUw" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + id = "psychoffice"; + dir = 4; + pixel_x = -24; + pixel_y = -5 + }, +/obj/machinery/light_switch{ + dir = 4; + name = "west bump"; + pixel_x = -24; + pixel_y = 5 + }, +/obj/effect/landmark/start/psychiatrist, +/turf/simulated/floor/wood, +/area/station/medical/psych) "pUB" = ( /obj/machinery/atmospherics/unary/portables_connector, /turf/simulated/floor/plasteel{ @@ -89328,22 +86327,11 @@ }, /area/station/science/toxins/mixing) "pUC" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - autolink_id = "arrivalsn_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = 25; - vent_link_id = "arrivalsn_vent"; - ext_door_link_id = "arrivalsn_door_ext"; - int_door_link_id = "arrivalsn_door_int"; - ext_button_link_id = "arrivalsn_btn_ext"; - int_button_link_id = "arrivalsn_btn_int" - }, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "pVI" = ( /obj/structure/plasticflaps{ opacity = 1 @@ -89372,6 +86360,18 @@ /obj/structure/lattice, /turf/space, /area/space/nearstation) +"pWh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "pWn" = ( /obj/machinery/economy/vending/cigarette, /turf/simulated/floor/plasteel, @@ -89398,7 +86398,34 @@ }, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) +"pWz" = ( +/obj/machinery/optable, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/primary) +"pWP" = ( +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/storage/box/beakers{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "pWT" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/decal/cleanable/dirt, @@ -89426,7 +86453,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "pYR" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -89440,7 +86467,7 @@ }, /obj/item/clothing/head/bearpelt, /obj/item/folder/documents, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/stack/spacecash/c1000, @@ -89449,6 +86476,24 @@ icon_state = "vault" }, /area/station/command/vault) +"pZM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) +"qaf" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/retractor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/starboard) "qao" = ( /obj/machinery/door/poddoor{ density = 0; @@ -89483,7 +86528,18 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) +"qaC" = ( +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "qbb" = ( /obj/structure/window/reinforced{ dir = 4 @@ -89493,7 +86549,7 @@ inlet_injector_autolink_id = "o2_in"; name = "Oxygen Supply Control"; outlet_vent_autolink_id = "o2_out"; - autolink_sensors = list("o2_sensor"="Tank") + autolink_sensors = list("o2_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plasteel{ @@ -89513,22 +86569,31 @@ /turf/simulated/floor/plasteel/dark, /area/station/aisat) "qbz" = ( -/obj/machinery/door/airlock/external{ - id_tag = "apsolar_door_int"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) +"qbI" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/north) +"qcs" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "qcA" = ( /obj/docking_port/stationary{ dir = 8; @@ -89538,24 +86603,34 @@ name = "port bay 4 at Kerberos"; width = 9 }, +/obj/machinery/access_button{ + autolink_id = "enginen_btn_ext"; + name = "exterior access button"; + pixel_x = 23; + pixel_y = -23 + }, /turf/space, /area/space) -"qcH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +"qcR" = ( +/obj/machinery/door/airlock/medical, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/medical/surgery/primary) +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "qdq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -89584,6 +86659,11 @@ icon_state = "dark" }, /area/station/security/main) +"qej" = ( +/obj/machinery/atmospherics/portable/canister/oxygen, +/obj/machinery/atmospherics/unary/portables_connector, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "qeJ" = ( /obj/structure/cable{ d1 = 4; @@ -89630,6 +86710,27 @@ }, /turf/simulated/floor/plasteel, /area/station/security/range) +"qft" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) +"qfH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) "qgm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -89638,11 +86739,11 @@ }, /area/station/public/fitness) "qgr" = ( -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/area/station/medical/surgery/primary) +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "qhG" = ( /obj/machinery/atmospherics/unary/thermomachine/freezer, /turf/simulated/floor/plasteel{ @@ -89697,24 +86798,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/station/public/storage/art) -"qjS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - name = "Genetics Junction"; - sort_type_txt = "23" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "qjT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -89732,7 +86815,13 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) +"qke" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/west) "qkH" = ( /obj/structure/chair/sofa/corner{ dir = 8; @@ -89740,6 +86829,21 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"qlz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/storage/secondary) +"qmB" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/latex, +/turf/simulated/floor/plating, +/area/station/medical/virology) "qmW" = ( /obj/structure/chair{ dir = 4 @@ -89793,6 +86897,14 @@ icon_state = "freezerfloor" }, /area/station/public/sleep) +"qqT" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "qqW" = ( /obj/structure/table, /obj/machinery/kitchen_machine/microwave, @@ -89801,6 +86913,17 @@ icon_state = "red" }, /area/station/security/permabrig) +"qrn" = ( +/obj/structure/extinguisher_cabinet{ + name = "south bump"; + pixel_y = -30 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "qrT" = ( /turf/simulated/wall/r_wall, /area/station/telecomms/chamber) @@ -89824,11 +86947,10 @@ /area/station/command/bridge) "qtk" = ( /obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "arrival" - }, -/area/station/hallway/secondary/entry) +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "qtC" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; @@ -89843,6 +86965,22 @@ }, /turf/simulated/floor/engine/co2, /area/station/engineering/atmos) +"qtJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/doctor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) "qub" = ( /obj/structure/cable{ d2 = 4; @@ -89870,7 +87008,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "quv" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ @@ -89911,21 +87049,6 @@ }, /turf/simulated/floor/plating, /area/station/security/execution) -"qvx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Genetics Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/genetics, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plasteel, -/area/station/science/genetics) -"qvU" = ( -/turf/simulated/wall, -/area/station/medical/exam_room) "qwg" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -89961,6 +87084,10 @@ }, /turf/simulated/floor/plating, /area/station/security/storage) +"qxa" = ( +/obj/structure/morgue, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "qxv" = ( /obj/structure/chair/sofa/pew/left{ dir = 8; @@ -89968,6 +87095,52 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"qxR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) +"qxT" = ( +/obj/structure/rack, +/obj/item/storage/box/autoinjectors{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/storage/box/autoinjectors, +/obj/item/hand_labeler, +/obj/item/crutches{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/crutches, +/obj/item/crutches{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) +"qys" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/obj/item/radio/intercom{ + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "qzr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -89992,7 +87165,14 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) +"qAe" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "qAx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -90019,6 +87199,16 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) +"qBj" = ( +/obj/machinery/light_switch{ + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "qBt" = ( /obj/structure/cable{ d1 = 1; @@ -90108,27 +87298,7 @@ icon_state = "neutral" }, /area/station/maintenance/apmaint) -"qFy" = ( -/obj/machinery/economy/vending/cola, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/hallway/primary/central) "qFR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - autolink_id = "assolar_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = 25; - req_access_txt = "13"; - vent_link_id = "assolar_vent"; - ext_door_link_id = "assolar_door_ext"; - int_door_link_id = "assolar_door_int"; - ext_button_link_id = "assolar_btn_ext"; - int_button_link_id = "assolar_btn_int" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -90140,6 +87310,11 @@ "qGf" = ( /turf/simulated/wall, /area/station/engineering/ai_transit_tube) +"qGl" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/north) "qGn" = ( /obj/machinery/hologram/holopad, /obj/structure/cable{ @@ -90199,7 +87374,15 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/starboard/south) +"qIK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "qIZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -90222,34 +87405,22 @@ /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/wood, /area/station/maintenance/library) +"qJe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "qJt" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) -"qJv" = ( -/obj/machinery/door/airlock/command{ - name = "CMO's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel/white, -/area/station/command/office/cmo) "qJA" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 }, /turf/simulated/floor/plasteel/white, /area/station/science/toxins/mixing) @@ -90266,6 +87437,28 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/library) +"qKk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) "qKL" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -90281,6 +87474,25 @@ }, /turf/simulated/floor/plating, /area/station/security/permasolitary) +"qLt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) "qMp" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -90290,23 +87502,12 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) -"qNS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, +"qMz" = ( +/obj/machinery/light/small, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" + icon_state = "neutral" }, -/area/station/medical/medbay) +/area/station/maintenance/aft) "qOd" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance/three, @@ -90315,28 +87516,20 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) -"qOu" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/newscaster{ - name = "north bump"; - pixel_y = 28 +"qOr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "whiteyellow" + dir = 4; + icon_state = "neutralcorner" }, -/area/station/medical/chemistry) +/area/station/hallway/primary/central/north) "qPg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -90346,6 +87539,12 @@ }, /turf/simulated/floor/wood, /area/station/maintenance/library) +"qPN" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "qPT" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -90358,6 +87557,10 @@ /obj/machinery/economy/vending/plasmaresearch, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) +"qQE" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) "qQS" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -90367,7 +87570,44 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"qRe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) +"qRk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Medbay CMO"; + sort_type_txt = "10" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "qRH" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -90377,6 +87617,18 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/explab) +"qRW" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "darkgreen" + }, +/area/station/medical/virology) "qSk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -90411,6 +87663,45 @@ }, /turf/simulated/floor/plasteel/freezer, /area/station/public/toilet/lockerroom) +"qTl" = ( +/obj/machinery/disposal, +/obj/machinery/economy/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_x = -28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"qTB" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/station/medical/medbay) +"qTE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) +"qTJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/white, +/area/station/science/genetics) "qTU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ @@ -90487,6 +87778,22 @@ icon_state = "darkblue" }, /area/station/command/bridge) +"qVF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/simulated/floor/plasteel, +/area/station/supply/storage) "qWf" = ( /obj/machinery/door/airlock/engineering{ name = "Aft Starboard Solar Access" @@ -90565,17 +87872,26 @@ }, /area/station/security/execution) "qYc" = ( -/obj/item/kirbyplants, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, /obj/structure/cable{ d1 = 1; d2 = 8; icon_state = "1-8" }, -/obj/item/kirbyplants, /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/turf/simulated/floor/plasteel, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "qYf" = ( /obj/machinery/button/windowtint{ @@ -90632,7 +87948,7 @@ dir = 8; icon_state = "greenblue" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "qZm" = ( /obj/machinery/door/airlock/security, /obj/effect/mapping_helpers/airlock/autoname, @@ -90653,32 +87969,52 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"qZr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "qZt" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "qZI" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "qZV" = ( -/obj/structure/chair/sofa/corp, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/chair/comfy/teal, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) +"raa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" + icon_state = "neutralfull" }, -/area/station/medical/reception) +/area/station/hallway/primary/central/sw) "raB" = ( /obj/structure/grille/broken, /obj/structure/lattice, @@ -90761,6 +88097,27 @@ icon_state = "bar" }, /area/station/maintenance/fsmaint) +"rdA" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/donut_box{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/item/storage/box/donkpockets, +/obj/machinery/camera{ + c_tag = "Virology Break Room"; + dir = 10; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"rdK" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/junglebush, +/turf/simulated/floor/grass, +/area/station/medical/medbay) "reo" = ( /obj/structure/sign/electricshock{ pixel_y = 32 @@ -90775,6 +88132,16 @@ icon_state = "red" }, /area/station/security/permabrig) +"reu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/west) "rev" = ( /obj/machinery/door/airlock/security/glass{ name = "Holding Area" @@ -90826,6 +88193,23 @@ }, /turf/simulated/floor/plasteel, /area/station/command/office/ce) +"reD" = ( +/obj/structure/table/glass, +/obj/item/wrench/medical, +/obj/item/crowbar, +/obj/item/storage/toolbox/emergency, +/obj/machinery/power/apc/critical/directional/east{ + shock_proof = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "reH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -90836,15 +88220,25 @@ }, /area/station/security/brig) "reW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, /obj/item/radio/intercom{ name = "east bump"; pixel_x = 28 }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"rfw" = ( +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/south) "rfW" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall9b"; @@ -90853,13 +88247,37 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "rga" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/incinerator) +"rgn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "rgH" = ( /obj/structure/cable{ d1 = 4; @@ -90882,13 +88300,6 @@ /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "riQ" = ( -/obj/machinery/access_button{ - autolink_id = "atmostanks_btn_int"; - name = "interior access button"; - pixel_x = -23; - pixel_y = 20; - req_access_txt = "32" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, @@ -90897,17 +88308,6 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) -"rje" = ( -/obj/machinery/firealarm{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "darkblue" - }, -/area/station/medical/surgery/secondary) "rjE" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable{ @@ -90925,6 +88325,9 @@ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) "rjL" = ( @@ -90987,6 +88390,17 @@ icon_state = "darkred" }, /area/station/security/warden) +"rkF" = ( +/obj/machinery/alarm{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) "rkJ" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -91107,6 +88521,37 @@ }, /turf/simulated/floor/plasteel, /area/station/command/customs) +"rnb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) +"rnp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, +/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) "rnA" = ( /obj/structure/chair/stool{ dir = 8 @@ -91122,6 +88567,9 @@ icon_state = "solarpanel" }, /area/station/maintenance/starboardsolar) +"rod" = ( +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) "row" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -91147,7 +88595,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "rps" = ( /obj/structure/cable{ d1 = 1; @@ -91214,6 +88662,17 @@ icon_state = "neutral" }, /area/station/maintenance/fore) +"rqv" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) +"rqw" = ( +/obj/structure/railing, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/reception) "rqO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -91230,6 +88689,11 @@ icon_state = "freezerfloor" }, /area/station/public/sleep) +"rrv" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/coroner, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "rrL" = ( /obj/structure/cable{ d1 = 4; @@ -91245,14 +88709,6 @@ icon_state = "neutral" }, /area/station/maintenance/fore) -"rsF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "darkblue" - }, -/area/station/medical/surgery/secondary) "rsK" = ( /obj/machinery/computer/security/telescreen/research{ pixel_y = -32 @@ -91261,22 +88717,38 @@ icon_state = "whitepurple" }, /area/station/science/misc_lab) +"rsV" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "rsX" = ( /obj/item/kirbyplants, /turf/simulated/floor/wood, /area/station/maintenance/library) -"rti" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "GeneticsDoor"; - name = "Genetics" +"rsY" = ( +/obj/machinery/computer/guestpass{ + pixel_x = -28 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/genetics, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/white, -/area/station/science/genetics) +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "rtG" = ( /obj/machinery/economy/vending/secdrobe, /obj/machinery/firealarm{ @@ -91290,12 +88762,12 @@ }, /area/station/security/storage) "rtH" = ( -/obj/machinery/door/airlock/external{ - id_tag = "arrivalsn_door_int" +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/e_to_w/engineer{ + req_access_txt = 13 }, -/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/maintenance/portsolar) "rtU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/atmos/glass{ @@ -91320,6 +88792,15 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) +"rvN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "rwD" = ( /obj/machinery/door/airlock/command/glass{ name = "Head of Personnel Bedroom" @@ -91348,25 +88829,48 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/control) +"rwM" = ( +/obj/structure/extinguisher_cabinet{ + name = "east bump"; + pixel_x = 27 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "rwU" = ( /turf/simulated/wall, /area/station/service/barber) "rwY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/west) +"rwZ" = ( +/obj/structure/table/reinforced, +/obj/item/desk_bell{ + anchored = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "arrival" +/obj/machinery/door/window/classic/reversed, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/windoor/autoname/desk, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "imnotmakingyoulubepissoff"; + name = "Chemistry Privacy Shutter" }, -/area/station/hallway/secondary/entry) +/turf/simulated/floor/plasteel/white, +/area/station/medical/chemistry) "rxb" = ( /obj/machinery/computer/secure_data, /obj/machinery/newscaster/security_unit{ @@ -91423,7 +88927,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "ryh" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -91432,7 +88936,17 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"ryp" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/starboard) +"ryz" = ( +/obj/effect/spawner/window/reinforced/polarized{ + id = "sr2" + }, +/turf/simulated/floor/plating, +/area/station/medical/surgery/secondary) "ryH" = ( /obj/structure/cable{ d1 = 1; @@ -91448,6 +88962,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/station/maintenance/port) +"rzs" = ( +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Psychiatrist's Office"; + dir = 4; + network = list("Medical","SS13","Security") + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) +"rzH" = ( +/obj/structure/rack, +/obj/item/wrench/medical, +/obj/item/storage/box/bodybags, +/obj/effect/spawner/random_spawners/cobweb_left_frequent, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "rzO" = ( /obj/machinery/economy/vending/scidrobe, /turf/simulated/floor/plasteel{ @@ -91455,6 +88990,25 @@ icon_state = "whitepurple" }, /area/station/science/break_room) +"rAD" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/machinery/economy/vending/wallmed{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/machinery/camera{ + c_tag = "Medbay Entrance Hall"; + dir = 8; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "rBP" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -91463,10 +89017,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) +"rCv" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "rCw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -91512,34 +89079,49 @@ }, /turf/simulated/floor/plasteel, /area/station/science/robotics) -"rEQ" = ( -/obj/structure/weightmachine/weightlifter, -/turf/simulated/floor/plasteel, -/area/station/public/fitness) -"rFp" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/turf_decal/delivery/partial, -/obj/effect/turf_decal/arrows/black, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"rEg" = ( +/obj/structure/extinguisher_cabinet{ + name = "north bump"; + pixel_y = 30 }, /turf/simulated/floor/plasteel{ - icon_state = "white" + dir = 1; + icon_state = "whitegreen" }, /area/station/medical/virology) -"rGZ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 +"rEn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating/airless, +/area/station/medical/virology) +"rEs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/primary) +"rEP" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) +"rEQ" = ( +/obj/structure/weightmachine/weightlifter, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) +"rGZ" = ( +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -91570,17 +89152,14 @@ icon_state = "vault" }, /area/station/telecomms/chamber) -"rHp" = ( -/obj/machinery/access_button{ - autolink_id = "atmostanks_btn_ext"; - name = "exterior access button"; - pixel_x = 20; - pixel_y = -20; - req_access_txt = "32" +"rHr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) +/area/station/maintenance/starboard) "rHD" = ( /obj/structure/cable{ d1 = 1; @@ -91605,12 +89184,33 @@ icon_state = "dark" }, /area/station/security/storage) +"rHX" = ( +/mob/living/carbon/human/monkey, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "rIb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) +"rIO" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Pure to Ports" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "rJd" = ( /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/dirt, @@ -91625,7 +89225,16 @@ name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"rJF" = ( +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "rKJ" = ( /obj/structure/cable{ d1 = 4; @@ -91658,6 +89267,34 @@ icon_state = "darkred" }, /area/station/security/prison/cell_block) +"rKU" = ( +/obj/effect/turf_decal/box/white{ + color = "#009dff" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"rLr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) "rLB" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless, @@ -91666,6 +89303,17 @@ /obj/machinery/r_n_d/experimentor, /turf/simulated/floor/engine, /area/station/science/explab/chamber) +"rMm" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "rMr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance_hatch{ @@ -91707,6 +89355,10 @@ icon_state = "neutral" }, /area/station/legal/courtroom) +"rNO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "rOe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -91734,6 +89386,16 @@ icon_state = "freezerfloor" }, /area/station/service/kitchen) +"rOl" = ( +/obj/structure/table/glass, +/obj/machinery/kitchen_machine/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "rOn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -91742,10 +89404,45 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "rOW" = ( /turf/simulated/wall/r_wall, /area/station/medical/reception) +"rPa" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/station/medical/medbay) +"rPH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"rPU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/west) "rQj" = ( /obj/machinery/firealarm{ dir = 8; @@ -91787,13 +89484,26 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) +"rRw" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) "rRC" = ( /obj/machinery/door/airlock/security/glass{ name = "Prison Perma Cell 2" @@ -91879,6 +89589,12 @@ }, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) +"rUU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/light, +/area/station/engineering/atmos) "rVB" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -91895,13 +89611,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "kitchenhall"; + name = "Kitchen Shutters" + }, /turf/simulated/floor/plasteel, /area/station/service/kitchen) "rVL" = ( /obj/machinery/economy/vending/coffee, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "rWL" = ( /obj/machinery/alarm{ dir = 8; @@ -91916,7 +89636,7 @@ /obj/structure/table/reinforced, /obj/item/folder, /obj/item/pen, -/obj/item/reagent_containers/food/snacks/grown/apple, +/obj/item/food/snacks/grown/apple, /obj/machinery/door/window/classic/normal{ dir = 8 }, @@ -91929,15 +89649,16 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) -"rXc" = ( -/obj/machinery/door/airlock/medical/glass, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, +"rXm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" + dir = 1; + icon_state = "whitebluecorner" }, -/area/station/medical/reception) +/area/station/medical/medbay) "rXv" = ( /obj/structure/cable{ d1 = 2; @@ -91954,13 +89675,6 @@ /turf/simulated/floor/plating, /area/station/command/office/rd) "rXy" = ( -/obj/machinery/access_button{ - autolink_id = "apsolar_btn_int"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "13" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -92019,6 +89733,16 @@ }, /turf/simulated/floor/engine, /area/station/science/explab/chamber) +"rYa" = ( +/mob/living/carbon/human/monkey, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/iv_drip, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) "rYb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/atmos/glass{ @@ -92035,6 +89759,13 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"rYe" = ( +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" + }, +/area/station/medical/storage/secondary) "rYP" = ( /obj/structure/bookcase, /turf/simulated/floor/wood{ @@ -92051,7 +89782,7 @@ inlet_injector_autolink_id = "co2_in"; name = "Carbon Dioxide Supply Control"; outlet_vent_autolink_id = "co2_out"; - autolink_sensors = list("co2_sensor"="Tank") + autolink_sensors = list("co2_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plasteel/dark, @@ -92115,10 +89846,6 @@ }, /turf/simulated/floor/plating, /area/station/security/processing) -"sak" = ( -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/station/medical/psych) "san" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -92127,7 +89854,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "saC" = ( /obj/structure/cable{ d1 = 1; @@ -92137,6 +89864,56 @@ /obj/effect/spawner/random_spawners/blood_often, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"saH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1; + level = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"saK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/important/directional/east, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/west) +"sbe" = ( +/obj/structure/extinguisher_cabinet{ + name = "east bump"; + pixel_x = 27 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"sbr" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "sbt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -92145,6 +89922,29 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) +"sbz" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Chemistry"; + sort_type_txt = "11"; + icon_state = "pipe-j2s" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "sbU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -92159,6 +89959,45 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/bar) +"scc" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) +"scp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) "scA" = ( /obj/machinery/firealarm{ dir = 8; @@ -92221,7 +90060,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/east) "seI" = ( /obj/structure/cable{ d1 = 1; @@ -92247,6 +90086,15 @@ }, /turf/simulated/floor/plating, /area/station/command/office/hos) +"sfu" = ( +/obj/structure/bed/roller, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "sfD" = ( /obj/machinery/doppler_array{ dir = 8 @@ -92265,6 +90113,26 @@ icon_state = "darkred" }, /area/station/security/main) +"sgr" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/machinery/defibrillator_mount/loaded{ + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Medbay Public Exam Room"; + dir = 5; + network = list("SS13","Medical") + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) +"sgM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Internal Medbay Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "sgZ" = ( /obj/machinery/newscaster{ name = "north bump"; @@ -92275,7 +90143,39 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) +"shb" = ( +/obj/machinery/light, +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) +"shh" = ( +/obj/machinery/camera{ + c_tag = "Surgery Storage"; + dir = 1; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) "shs" = ( /obj/machinery/economy/vending/assist, /obj/structure/extinguisher_cabinet{ @@ -92309,7 +90209,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "shS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -92325,21 +90225,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/robotics/showroom) -"siJ" = ( -/obj/machinery/economy/vending/medical, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "darkblue" - }, -/area/station/medical/surgery/observation) "sjA" = ( /obj/structure/disposalpipe/sortjunction{ dir = 8; @@ -92385,6 +90270,54 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) +"skW" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"slc" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/entry/east) +"sln" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"slq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "sls" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ @@ -92445,6 +90378,16 @@ icon_state = "whitepurple" }, /area/station/science/misc_lab) +"smG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "snn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -92521,7 +90464,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "sot" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -92550,20 +90493,6 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) -"soN" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "darkblue" - }, -/area/station/medical/surgery/secondary) "soV" = ( /obj/structure/cable{ d1 = 4; @@ -92573,7 +90502,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/sorting) "spp" = ( @@ -92586,25 +90515,25 @@ icon_state = "dark" }, /area/station/maintenance/apmaint) +"spz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "spP" = ( -/obj/structure/closet, /obj/machinery/light/small{ dir = 4 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/security/evidence) -"spS" = ( -/obj/item/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/station/engineering/atmos) "sqj" = ( /obj/effect/spawner/random_spawners/blood_maybe, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -92616,30 +90545,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) -"sqq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "CMO's Junction"; - sort_type_txt = "10" - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/medbay) "sqF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -92704,7 +90609,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "sqZ" = ( /obj/effect/landmark/spawner/xeno, /turf/simulated/floor/wood{ @@ -92775,6 +90680,19 @@ icon_state = "dark" }, /area/station/security/execution) +"ssu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) "ssy" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, @@ -92783,17 +90701,16 @@ }, /area/station/supply/storage) "ssz" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/door/window/classic/normal{ + name = "Monkey Pen"; + dir = 1 }, -/obj/machinery/door/airlock/medical, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/simulated/floor/grass, +/area/station/science/genetics) "ssL" = ( /obj/effect/spawner/random_spawners/wall_rusted_maybe, /turf/simulated/wall, @@ -92812,7 +90729,34 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) +"sty" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/item/radio/intercom{ + name = "west bump"; + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) +"stF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/hallway/primary/aft/south) "stU" = ( /obj/machinery/conveyor{ id = "cargodisposals" @@ -92851,16 +90795,37 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) -"suU" = ( -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 +"svp" = ( +/obj/effect/landmark/start/chief_medical_officer, +/obj/structure/chair/office/light{ + dir = 8 }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) +"svB" = ( +/obj/structure/table, +/obj/item/toy/figure/xeno, /turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" + icon_state = "neutral" }, -/area/station/hallway/primary/central/south) +/area/station/maintenance/aft) +"svD" = ( +/obj/machinery/economy/vending/coffee, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"svX" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/observation) "swV" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/glowshroom, @@ -92892,10 +90857,59 @@ icon_state = "darkred" }, /area/station/security/prison/cell_block) +"syt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"syB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/starboard) "syO" = ( /obj/structure/closet/secure_closet/research_reagents, /turf/simulated/floor/engine, /area/station/science/misc_lab) +"syY" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/south) "szb" = ( /obj/structure/table, /obj/item/clothing/accessory/armband/science, @@ -92906,6 +90920,11 @@ dir = 4 }, /area/station/maintenance/apmaint) +"szf" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "szk" = ( /obj/structure/table/reinforced, /obj/item/folder/red{ @@ -92919,6 +90938,27 @@ icon_state = "dark" }, /area/station/security/main) +"sAa" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper/precision, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"sAl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/station/medical/medbay) "sAy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research, @@ -92929,13 +90969,11 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/robotics/chargebay) -"sAW" = ( -/obj/structure/closet/secure_closet/medical2, +"sAB" = ( /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" + icon_state = "neutralcorner" }, -/area/station/medical/surgery/primary) +/area/station/hallway/secondary/entry/lounge) "sBE" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/firealarm{ @@ -92997,14 +91035,59 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/detective) +"sCK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"sDL" = ( +/obj/machinery/atmospherics/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/coldroom) +"sDN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "sDO" = ( -/obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, /obj/machinery/door/firedoor, /obj/machinery/door/window, /obj/effect/mapping_helpers/airlock/windoor/autoname, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, /obj/effect/turf_decal/delivery, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "kitchenbar"; + name = "Kitchen Shutters"; + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -93075,19 +91158,28 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"sFH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "sFK" = ( /turf/simulated/floor/plasteel, /area/station/science/research) "sGz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -93128,11 +91220,29 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "sHI" = ( /obj/machinery/economy/vending/cola, /turf/simulated/floor/plasteel/dark, /area/station/command/bridge) +"sIv" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "sIz" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, @@ -93149,7 +91259,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "sJk" = ( /obj/structure/chair/office/dark{ dir = 8 @@ -93176,13 +91286,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/public/storage/tools/auxiliary) -"sJx" = ( -/obj/machinery/economy/vending/virodrobe, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkgreen" - }, -/area/station/medical/virology) "sJA" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -93261,6 +91364,52 @@ }, /turf/simulated/floor/engine, /area/station/science/toxins/mixing) +"sMn" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 3 + }, +/obj/item/healthanalyzer, +/obj/item/storage/belt/medical, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"sMp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"sMA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) "sMV" = ( /obj/machinery/light{ dir = 4 @@ -93269,7 +91418,7 @@ dir = 5 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "sOd" = ( /obj/structure/cable, /obj/structure/cable{ @@ -93317,6 +91466,24 @@ icon_state = "darkredcorners" }, /area/station/security/permabrig) +"sOP" = ( +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/economy/vending/chemdrobe, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) +"sPf" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "sPg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, @@ -93328,6 +91495,27 @@ }, /turf/simulated/floor/plasteel, /area/station/supply/storage) +"sPs" = ( +/obj/structure/table, +/obj/item/autopsy_scanner, +/obj/item/camera/autopsy{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/scalpel, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"sPx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/nw) "sPz" = ( /obj/machinery/light/small{ dir = 1 @@ -93385,6 +91573,63 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"sQZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 24; + name = "north bump" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/north) +"sRh" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"sRk" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "viroshutters"; + name = "Privacy Shutters"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"sRC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "sRR" = ( /obj/structure/cable{ d1 = 1; @@ -93404,6 +91649,25 @@ /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, /area/station/maintenance/library) +"sSu" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"sSG" = ( +/obj/machinery/light_switch{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "sSH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/alarm{ @@ -93451,6 +91715,14 @@ icon_state = "neutral" }, /area/station/maintenance/fsmaint) +"sUE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/starboard/east) "sUV" = ( /obj/machinery/camera{ c_tag = "Central Ring Hallway South" @@ -93468,21 +91740,8 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "sVl" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - autolink_id = "fpsolar_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = 25; - req_access_txt = "32"; - vent_link_id = "fpsolar_vent"; - ext_door_link_id = "fpsolar_door_ext"; - int_door_link_id = "fpsolar_door_int"; - ext_button_link_id = "fpsolar_btn_ext"; - int_button_link_id = "fpsolar_btn_int" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -93495,34 +91754,13 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/station/maintenance/port) -"sVG" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/spawner/window/reinforced/polarized/grilled{ - id = "CMO" - }, -/turf/simulated/floor/plating, -/area/station/command/office/cmo) -"sVV" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medical Supplies" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" +"sVx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/area/station/medical/storage) +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "sWd" = ( -/obj/machinery/access_button{ - autolink_id = "assolar_btn_ext"; - name = "exterior access button"; - pixel_x = -25; - pixel_y = 25; - req_access_txt = "13" - }, /obj/structure/lattice/catwalk, /obj/structure/cable{ d1 = 4; @@ -93531,30 +91769,30 @@ }, /turf/space, /area/station/maintenance/starboardsolar) -"sWx" = ( -/obj/machinery/door/airlock/external{ - id_tag = "stationai_door_int"; - locked = 1; - name = "Minisat Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +"sWn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/area/station/hallway/primary/central/north) +"sWx" = ( +/obj/effect/spawner/airlock/e_to_w/engineer{ + req_access_txt = "11,13" }, -/turf/simulated/floor/plasteel/dark, +/turf/simulated/wall, /area/station/engineering/ai_transit_tube) +"sWI" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "sXr" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" @@ -93565,6 +91803,26 @@ }, /turf/simulated/floor/plating, /area/station/command/office/hos) +"sXV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"sYf" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "sYg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -93592,18 +91850,6 @@ icon_state = "darkredcorners" }, /area/station/security/prison/cell_block) -"sYw" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "whiteblue" - }, -/area/station/medical/exam_room) "sYB" = ( /obj/machinery/door/airlock/research, /obj/effect/mapping_helpers/airlock/autoname, @@ -93649,18 +91895,12 @@ /turf/simulated/floor/plasteel, /area/station/engineering/control) "sYX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/access_button{ - autolink_id = "escape_btn_int"; - name = "interior access button"; - pixel_x = -24; - pixel_y = -24; - req_access_txt = "10;13" +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 }, -/obj/structure/sign/vacuum{ - pixel_x = -32 +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 8 }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) @@ -93731,6 +91971,21 @@ icon_state = "neutralfull" }, /area/station/public/fitness) +"tby" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white/hollow, +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "tbP" = ( /obj/machinery/light_switch{ dir = 4; @@ -93755,11 +92010,10 @@ icon_state = "dark" }, /area/station/security/storage) -"tdC" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, +"tdW" = ( +/obj/effect/landmark/spawner/rev, +/obj/structure/morgue, +/turf/simulated/floor/plasteel/dark, /area/station/medical/morgue) "tep" = ( /obj/machinery/door/firedoor, @@ -93769,21 +92023,45 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel/white, /area/station/science/research) -"teL" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"teH" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe/antiviral{ + pixel_y = -5 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/reagent_containers/syringe/antiviral{ + pixel_y = 5 }, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) +/obj/item/reagent_containers/syringe/antiviral{ + pixel_y = 10 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 3 + }, +/obj/item/reagent_containers/dropper/precision, +/obj/machinery/light, +/obj/item/clothing/suit/straight_jacket{ + pixel_x = -2 + }, +/obj/item/clothing/mask/muzzle{ + pixel_x = -2 + }, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) +"tfY" = ( +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) "tge" = ( /obj/structure/sign/electricshock{ pixel_y = 32 @@ -93800,13 +92078,19 @@ icon_state = "red" }, /area/station/security/permabrig) -"tgf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Toilet" +"tgr" = ( +/obj/machinery/power/apc/critical/directional/east{ + shock_proof = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/simulated/floor/plasteel, -/area/station/medical/break_room) +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "tgs" = ( /obj/structure/chair/office/dark, /turf/simulated/floor/wood, @@ -93814,6 +92098,23 @@ "tgE" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/starboard) +"thz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "thL" = ( /turf/simulated/floor/wood, /area/station/maintenance/library) @@ -93831,6 +92132,15 @@ /obj/item/bedsheet/black, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"tiQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/aft/south) "tjB" = ( /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -93861,19 +92171,13 @@ "tks" = ( /turf/simulated/floor/wood, /area/station/maintenance/starboard) -"tls" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - autolink_id = "atmostanks_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = 57; - req_access_txt = "32"; - vent_link_id = "atmostanks_vent"; - ext_door_link_id = "atmostanks_door_ext"; - int_door_link_id = "atmostanks_door_int"; - ext_button_link_id = "atmostanks_btn_ext"; - int_button_link_id = "atmostanks_btn_int" +"tkI" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkbluecorners" }, +/area/station/medical/morgue) +"tls" = ( /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) @@ -93915,7 +92219,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "tmo" = ( /obj/structure/cable{ d1 = 1; @@ -93936,6 +92240,13 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/central) +"tmJ" = ( +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "tnu" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 4; @@ -93951,6 +92262,30 @@ /obj/item/storage/toolbox/mechanical, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) +"tnU" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/west) +"tod" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Internal Medbay Maintenance" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) +"tox" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "tpo" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -93960,12 +92295,39 @@ icon_state = "dark" }, /area/station/security/execution) +"tpM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "tpP" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"tpR" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/hollow, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "trr" = ( /obj/machinery/door/poddoor{ density = 0; @@ -94002,6 +92364,16 @@ icon_state = "barber" }, /area/station/service/barber) +"tsp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/chemistry) "tsL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -94022,7 +92394,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "tvq" = ( /obj/machinery/atmospherics/portable/scrubber/huge/stationary, /turf/simulated/floor/plasteel{ @@ -94066,6 +92438,12 @@ icon_state = "neutralcorner" }, /area/station/public/fitness) +"tvL" = ( +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/medbay) "twb" = ( /obj/structure/window/reinforced, /obj/structure/rack, @@ -94102,11 +92480,16 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "txR" = ( /obj/machinery/camera{ c_tag = "Experimention Lab"; @@ -94148,6 +92531,13 @@ }, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) +"tyQ" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "tzC" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, @@ -94170,13 +92560,17 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) -"tAl" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/morgue) +/area/station/hallway/primary/fore/north) +"tAi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/space/nearstation) "tAt" = ( /obj/structure/cable{ d1 = 1; @@ -94244,6 +92638,20 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) +"tBX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/sleeper) +"tCf" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/medical/virology) +"tCW" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/station/hallway/secondary/entry/south) "tDw" = ( /turf/simulated/wall, /area/station/medical/reception) @@ -94282,6 +92690,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"tDU" = ( +/obj/machinery/alarm{ + pixel_y = 24; + name = "north bump" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/port/west) "tEw" = ( /obj/structure/showcase{ density = 0; @@ -94302,6 +92720,17 @@ icon_state = "barber" }, /area/station/service/barber) +"tEL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "tFK" = ( /obj/item/soap/nanotrasen, /obj/machinery/light/small{ @@ -94315,6 +92744,14 @@ icon_state = "freezerfloor" }, /area/station/security/permabrig) +"tFN" = ( +/obj/structure/cable, +/obj/machinery/power/apc/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port/east) "tFO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -94351,15 +92788,16 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) -"tGB" = ( -/obj/machinery/door/airlock/external{ - id_tag = "atmostanks_door_ext"; - locked = 1; - name = "Atmos External Access" +"tGE" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/simulated/floor/plasteel, -/area/station/engineering/gravitygenerator) +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/north) "tGY" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 32 @@ -94373,13 +92811,22 @@ /obj/item/lipstick/random, /turf/simulated/floor/plating, /area/station/maintenance/theatre) +"tHx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + initialize_directions = 10 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "tIa" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "tIr" = ( /obj/machinery/economy/vending/hatdispenser, /turf/simulated/floor/plasteel/dark, @@ -94400,6 +92847,22 @@ }, /turf/simulated/floor/plasteel, /area/station/public/storage/art) +"tID" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "tIK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -94417,6 +92880,17 @@ icon_state = "neutral" }, /area/station/maintenance/port) +"tIM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24; + name = "east bump" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "tIT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass, @@ -94469,11 +92943,62 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) +"tKj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "tKX" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /turf/simulated/floor/plating, /area/station/medical/virology) +"tLO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"tMJ" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white/hollow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "tNn" = ( /obj/machinery/light/small, /obj/structure/chair/wood{ @@ -94485,16 +93010,17 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) -"tNq" = ( -/obj/item/radio/intercom{ - name = "east bump"; - pixel_x = 28 +"tNx" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/machinery/camera{ + dir = 6; + name = "Atmospherics Central" }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" + icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/engineering/atmos) "tNO" = ( /obj/machinery/computer/crew, /obj/machinery/requests_console{ @@ -94508,19 +93034,8 @@ icon_state = "darkred" }, /area/station/security/warden) -"tOv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/plasteel{ - icon_state = "red" - }, -/area/station/security/permabrig) "tOM" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -94599,11 +93114,50 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) +"tQT" = ( +/obj/machinery/camera{ + c_tag = "Medbay West Hallway"; + dir = 1; + network = list("Medical","SS13") + }, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "tRa" = ( /obj/machinery/economy/vending/cola, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) +"tRn" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster{ + name = "south bump"; + pixel_y = -32 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"tRC" = ( +/obj/machinery/light_switch{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/chair/wheelchair{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "tRF" = ( /obj/structure/rack, /obj/item/clothing/glasses/welding, @@ -94651,22 +93205,27 @@ /turf/simulated/floor/plating, /area/station/security/prison/cell_block) "tSp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, /obj/item/radio/intercom{ name = "west bump"; pixel_x = -28 }, +/obj/machinery/newscaster{ + dir = 1; + name = "south bump"; + pixel_y = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "tSt" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 5 }, /turf/simulated/floor/plasteel/white, @@ -94680,20 +93239,11 @@ /turf/simulated/floor/plating, /area/station/science/server) "tSB" = ( -/obj/machinery/door/airlock/external{ - id_tag = "fssolar_door_int"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "tSM" = ( @@ -94713,6 +93263,21 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/theatre) +"tTg" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolations" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "tTM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -94766,7 +93331,16 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) +"tVb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/maintenance/starboard) "tVz" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" @@ -94793,35 +93367,29 @@ }, /turf/simulated/floor/plating, /area/station/security/range) +"tVV" = ( +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "tWj" = ( /obj/effect/spawner/random_spawners/wall_rusted_probably, /turf/simulated/wall, /area/station/maintenance/apmaint) -"tWT" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, +"tWK" = ( +/obj/machinery/hologram/holopad, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" }, -/turf/simulated/floor/plasteel, -/area/station/medical/storage) +/area/station/medical/cloning) "tXb" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, /obj/machinery/light{ dir = 8 }, @@ -94829,7 +93397,7 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) "tXj" = ( /obj/machinery/cryopod/right, /obj/machinery/light_switch{ @@ -94841,10 +93409,102 @@ icon_state = "freezerfloor" }, /area/station/public/sleep) +"tXs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"tYd" = ( +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"tYs" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/storage) "tYD" = ( /obj/effect/spawner/random_spawners/oil_maybe, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"tYQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"tZI" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) +"tZV" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "uah" = ( /obj/structure/table/reinforced, /obj/machinery/door_control{ @@ -94874,7 +93534,7 @@ "uaL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" }, @@ -94883,7 +93543,7 @@ /obj/machinery/economy/vending/cigarette, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "ubm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -94912,6 +93572,20 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"ubP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plasteel{ + icon_state = "darkgreen" + }, +/area/station/medical/virology) "ubV" = ( /obj/effect/landmark/start/shaft_miner, /obj/structure/disposalpipe/segment, @@ -94933,13 +93607,12 @@ }, /area/station/public/fitness) "uci" = ( -/obj/machinery/door/airlock/external{ - id_tag = "apmaint2_door_ext"; - locked = 1; - name = "West Maintenance External Access" +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/s_to_n{ + req_access_txt = null }, -/turf/simulated/floor/plasteel, -/area/station/maintenance/port) +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/west) "ucl" = ( /obj/machinery/economy/vending/cigarette, /turf/simulated/floor/plating, @@ -94965,20 +93638,106 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/research) -"udZ" = ( -/obj/machinery/door/airlock/external{ - id_tag = "sol_door_ext"; - locked = 1; - name = "Arrivals External Access" +"udE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/access_button{ - autolink_id = "sol_btn_ext"; - name = "exterior access button"; - pixel_x = -13; - pixel_y = -23 +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) +"udS" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"udZ" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/w_to_e/engineer{ + req_access_txt = 13 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/maintenance/starboardsolar) +"uec" = ( +/obj/machinery/door_control{ + id = "cmoofficedoor"; + name = "Office Door"; + normaldoorcontrol = 1; + pixel_x = 25; + req_access_txt = "40" + }, +/obj/machinery/button/windowtint{ + id = "CMO"; + pixel_x = 24; + pixel_y = 8; + req_access_txt = "40"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -8; + dir = 8; + name = "custom placement" + }, +/obj/machinery/door_control{ + id = "Biohazard_medi"; + name = "Medical Quarantine"; + pixel_x = 35; + req_access_txt = "40" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"ueo" = ( +/obj/structure/rack, +/obj/item/roller, +/obj/item/storage/box/beakers, +/obj/item/hand_labeler, +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Genetics"; + dir = 4; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurple" + }, +/area/station/science/genetics) +"ueD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/port/east) "ueI" = ( /obj/machinery/atmospherics/portable/canister/nitrogen, /turf/simulated/floor/plasteel, @@ -94997,6 +93756,13 @@ }, /turf/simulated/floor/plasteel, /area/station/service/janitor) +"ueP" = ( +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) "ueR" = ( /obj/structure/table/reinforced, /obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ @@ -95048,12 +93814,6 @@ /turf/simulated/floor/wood, /area/station/maintenance/library) "uht" = ( -/obj/machinery/access_button{ - autolink_id = "apmaint2_btn_int"; - name = "interior access button"; - pixel_x = -24; - pixel_y = 24 - }, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -95067,7 +93827,16 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) +"uhM" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South 1"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/north) "uic" = ( /obj/structure/cable{ d1 = 4; @@ -95097,15 +93866,9 @@ }, /area/station/security/processing) "uil" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 8 - }, -/obj/machinery/atmospherics/portable/canister/air, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/hallway/secondary/exit) +/obj/effect/spawner/airlock, +/turf/simulated/wall, +/area/station/service/chapel/office) "uit" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; @@ -95147,6 +93910,13 @@ }, /turf/simulated/floor/plasteel, /area/station/security/armory/secure) +"uje" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "ujq" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall9e"; @@ -95190,7 +93960,18 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluecorner" }, -/area/station/medical/surgery) +/area/station/maintenance/starboard) +"ujS" = ( +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) "ukv" = ( /obj/structure/cable{ d1 = 4; @@ -95219,7 +94000,15 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) +"ukN" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/medical/morgue) "ulF" = ( /obj/machinery/door/airlock/glass{ name = "Chapel Office" @@ -95250,25 +94039,6 @@ }, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) -"unp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/chemistry) "unt" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -95338,6 +94108,16 @@ icon_state = "darkred" }, /area/station/security/prison/cell_block) +"upg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "upw" = ( /obj/item/radio/intercom{ name = "north bump"; @@ -95347,15 +94127,8 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "upI" = ( -/obj/machinery/access_button{ - autolink_id = "fpsolar_btn_int"; - name = "interior access button"; - pixel_x = -25; - pixel_y = 25; - req_access_txt = "32" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -95399,6 +94172,27 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/bridge) +"uqW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutral" + }, +/area/station/maintenance/starboard) +"usf" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkbluecorners" + }, +/area/station/medical/storage/secondary) "usl" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -95445,6 +94239,26 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/abandoned_garden) +"utn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "uts" = ( /obj/machinery/door/airlock/research{ name = "Abandoned Equipment Room" @@ -95453,6 +94267,21 @@ /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"uud" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/item/clothing/accessory/stethoscope, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) +"uuh" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "uvD" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/three, @@ -95461,6 +94290,70 @@ icon_state = "redyellowfull" }, /area/station/maintenance/fsmaint) +"uwm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/doctor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"uwR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/stack/packageWrap, +/obj/item/reagent_scanner/adv, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) +"uwX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/maintenance/starboard) +"uxq" = ( +/mob/living/carbon/human/monkey, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/simulated/floor/grass, +/area/station/science/genetics) +"uxr" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/landmark/spawner/rev, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/medical/morgue) +"uxv" = ( +/obj/structure/closet/secure_closet/reagents, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "uzM" = ( /obj/machinery/door/airlock/maintenance{ name = "Xenobiology Maintenance" @@ -95523,6 +94416,10 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) +"uBQ" = ( +/obj/effect/landmark/start/atmospheric, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) "uBS" = ( /obj/machinery/mineral/stacking_unit_console, /turf/simulated/wall, @@ -95537,29 +94434,17 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/port) -"uDd" = ( -/obj/machinery/door/airlock/command{ - id_tag = "cmoofficedoor2"; - name = "CMO's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +"uCI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 4 }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" }, -/turf/simulated/floor/plasteel/dark, -/area/station/command/office/cmo) +/area/station/engineering/atmos) +"uCR" = ( +/turf/simulated/wall/r_wall, +/area/station/engineering/atmos/distribution) "uDs" = ( /obj/structure/lattice/catwalk, /obj/structure/transit_tube/curved{ @@ -95573,6 +94458,10 @@ icon_state = "whitepurple" }, /area/station/maintenance/port) +"uDG" = ( +/obj/effect/landmark/start/doctor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/surgery/primary) "uDH" = ( /obj/machinery/door/poddoor{ density = 0; @@ -95594,13 +94483,6 @@ /turf/simulated/floor/plating, /area/station/security/permabrig) "uDO" = ( -/obj/machinery/door/airlock/external{ - id_tag = "fssolar_door_ext"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -95617,7 +94499,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/north) "uEq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -95652,6 +94534,47 @@ }, /turf/simulated/floor/plating, /area/station/security/interrogation) +"uFz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/mob/living/carbon/human/monkey, +/turf/simulated/floor/grass, +/area/station/science/genetics) +"uFH" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"uFJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/machinery/power/apc/directional/west, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) "uFN" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -95674,6 +94597,25 @@ icon_state = "whitepurple" }, /area/station/maintenance/apmaint) +"uGj" = ( +/obj/structure/table/glass, +/obj/item/roller, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + name = "east bump" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "uGm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -95692,6 +94634,12 @@ }, /turf/simulated/floor/wood, /area/station/service/clown) +"uGT" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "uGY" = ( /obj/machinery/alarm{ dir = 4; @@ -95715,6 +94663,11 @@ /obj/machinery/economy/vending/suitdispenser, /turf/simulated/floor/plasteel/dark, /area/station/public/locker) +"uHV" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/ne) "uJk" = ( /obj/structure/cable{ d1 = 4; @@ -95726,20 +94679,6 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) -"uJq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel{ - icon_state = "arrival" - }, -/area/station/hallway/secondary/entry) "uJC" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -95771,6 +94710,20 @@ }, /turf/simulated/floor/engine/n20, /area/station/engineering/atmos) +"uJQ" = ( +/obj/structure/table, +/obj/machinery/photocopier/faxmachine{ + department = "Chief Medical Officer's Office" + }, +/obj/machinery/newscaster{ + dir = 1; + name = "south bump"; + pixel_y = -28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "uKf" = ( /obj/structure/cable{ d2 = 2; @@ -95807,22 +94760,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/execution) -"uKw" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/station/maintenance/aft) "uKP" = ( /obj/machinery/door/airlock/maintenance{ name = "Crematorium Maintenance" @@ -95844,6 +94781,31 @@ /obj/machinery/economy/vending/cigarette, /turf/simulated/floor/plasteel/dark, /area/station/command/meeting_room) +"uLc" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"uLr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) "uLy" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, @@ -95876,6 +94838,27 @@ icon_state = "whitepurplecorner" }, /area/station/science/research) +"uMa" = ( +/obj/machinery/bodyscanner, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) +"uMB" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "uMM" = ( /obj/structure/extinguisher_cabinet{ name = "west bump"; @@ -95884,27 +94867,12 @@ /obj/machinery/economy/vending/detdrobe, /turf/simulated/floor/plasteel/dark, /area/station/security/detective) -"uMN" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/masks, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/newscaster{ - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "whiteblue" +"uNq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 }, -/area/station/medical/exam_room) +/turf/simulated/floor/plating/airless, +/area/station/medical/virology) "uNz" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plating, @@ -95916,6 +94884,19 @@ icon_state = "bar" }, /area/station/maintenance/fsmaint) +"uOC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) "uOZ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/mineral/stacking_machine{ @@ -95942,23 +94923,48 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/robotics/showroom) -"uQK" = ( -/obj/machinery/bodyscanner, +"uPn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24; + name = "south bump" + }, /turf/simulated/floor/plasteel{ dir = 1; - icon_state = "whiteblue" + icon_state = "darkblue" }, -/area/station/medical/surgery/secondary) +/area/station/medical/storage/secondary) +"uPp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "uRn" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, /turf/simulated/floor/plating, /area/station/security/brig) +"uSD" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/fore/north) "uSE" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/customs) +"uTw" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "uTx" = ( /obj/structure/cable{ d1 = 1; @@ -95973,6 +94979,50 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fore2) +"uTD" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/drinks/coffee{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/drinks/dry_ramen, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) +"uUi" = ( +/obj/structure/table/glass, +/obj/item/storage/box/iv_bags{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Virology Lab"; + network = list("SS13","Medical"); + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "uUk" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/normal{ @@ -95985,6 +95035,11 @@ dir = 4 }, /obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "kitchenhall"; + name = "Kitchen Shutters"; + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/service/kitchen) "uUu" = ( @@ -96020,6 +95075,18 @@ icon_state = "vault" }, /area/station/turret_protected/ai) +"uVH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/purple, +/area/station/medical/psych) "uVM" = ( /obj/machinery/airlock_controller/air_cycler{ pixel_y = 25; @@ -96051,6 +95118,29 @@ /obj/item/target/syndicate, /turf/simulated/floor/plating, /area/station/security/range) +"uWm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/storage/secondary) +"uWt" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) "uWB" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -96068,6 +95158,40 @@ }, /turf/simulated/floor/wood, /area/station/maintenance/theatre) +"uXN" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"uXP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/purple, +/area/station/medical/psych) "uYc" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 5"; @@ -96161,16 +95285,28 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) +"uZp" = ( +/obj/structure/chair/sofa/right{ + color = "#6ae226" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "vaZ" = ( /obj/structure/grille, /obj/structure/window/plasmareinforced{ dir = 1 }, /obj/structure/window/plasmareinforced, -/obj/machinery/atmospherics/pipe/simple/insulated, /obj/machinery/atmospherics/meter{ layer = 3.3 }, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "vbA" = ( @@ -96183,6 +95319,14 @@ icon_state = "whitepurple" }, /area/station/science/toxins/mixing) +"vbB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/thermomachine/freezer, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "vbN" = ( /obj/machinery/camera{ c_tag = "Exterior Armory"; @@ -96192,16 +95336,6 @@ }, /turf/space, /area/station/security/armory/secure) -"vbZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate/freezer/iv_storage, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/secondary) "vcb" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -96216,7 +95350,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "vce" = ( /obj/structure/chair{ dir = 8 @@ -96233,32 +95367,54 @@ }, /area/station/security/main) "vcx" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - autolink_id = "sol_vent" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = -25; - vent_link_id = "sol_vent"; - ext_door_link_id = "sol_door_ext"; - int_door_link_id = "sol_door_int"; - ext_button_link_id = "sol_btn_ext"; - int_button_link_id = "sol_btn_int" +/turf/simulated/floor/plasteel/dark, +/area/station/engineering/ai_transit_tube) +"vcE" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" }, -/turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) +"vdI" = ( +/obj/machinery/keycard_auth{ + pixel_y = 26 + }, +/obj/machinery/computer/security/telescreen{ + pixel_x = 30; + network = list("Medical"); + name = "Chief Medical Officer Monitor" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "veH" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, /area/station/engineering/atmos) +"veV" = ( +/obj/machinery/atmospherics/binary/valve{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) "vfh" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/unary/passive_vent{ @@ -96266,6 +95422,17 @@ }, /turf/space, /area/space/nearstation) +"vfi" = ( +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "vfD" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Maintenance" @@ -96293,6 +95460,11 @@ /obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/controlroom) +"vhF" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "vhS" = ( /obj/machinery/firealarm{ dir = 4; @@ -96342,16 +95514,32 @@ icon_state = "redcorner" }, /area/station/security/permabrig) +"vji" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/sw) +"vjj" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) "vjm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/disposalpipe/junction, /turf/simulated/floor/plasteel/white, /area/station/science/research) -"vjO" = ( -/obj/machinery/economy/vending/medical, -/turf/simulated/floor/plasteel/white, -/area/station/medical/storage) +"vjT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/starboard/east) "vko" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -96362,6 +95550,16 @@ icon_state = "darkred" }, /area/station/security/brig) +"vkP" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "vkU" = ( /obj/structure/cable{ d2 = 2; @@ -96387,7 +95585,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "vly" = ( /obj/structure/cable{ d1 = 4; @@ -96413,10 +95611,52 @@ /obj/effect/spawner/window/reinforced/tinted, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"vmp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "vmw" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"vmP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "vnm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -96424,15 +95664,15 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "vnq" = ( /obj/structure/table/reinforced, /obj/item/seeds/lime, /obj/item/seeds/watermelon, /obj/item/seeds/grape, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/watermelon, +/obj/item/food/snacks/grown/banana, /obj/machinery/door/window/classic/reversed{ dir = 8 }, @@ -96445,6 +95685,27 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) +"vnK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"vnQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) "vom" = ( /obj/machinery/atmospherics/air_sensor{ autolink_id = "air_sensor"; @@ -96468,10 +95729,25 @@ }, /turf/simulated/floor/plating, /area/station/security/processing) +"vpa" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "vpS" = ( /obj/effect/landmark/spawner/rev, /turf/simulated/floor/engine, /area/station/science/explab/chamber) +"vqu" = ( +/obj/effect/landmark/start/coroner, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "vrH" = ( /obj/structure/flora/junglebush, /obj/machinery/light/small{ @@ -96479,6 +95755,23 @@ }, /turf/simulated/floor/grass/jungle, /area/station/maintenance/fsmaint) +"vrP" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) +"vsw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/reception) "vsy" = ( /obj/machinery/alarm{ name = "north bump"; @@ -96519,17 +95812,32 @@ icon_state = "freezerfloor" }, /area/station/public/toilet) +"vtH" = ( +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "vuu" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/supply/miningdock) +"vuX" = ( +/obj/machinery/alarm{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) "vvC" = ( /obj/machinery/economy/vending/cola, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "vvQ" = ( /obj/structure/chair{ dir = 4 @@ -96571,20 +95879,14 @@ /obj/item/weldingtool/research, /turf/simulated/floor/plasteel/white, /area/station/science/explab) -"vzo" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - autolink_id = "fssolar_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = 25; - req_access_txt = "13"; - vent_link_id = "fssolar_vent"; - ext_door_link_id = "fssolar_door_ext"; - int_door_link_id = "fssolar_door_int"; - ext_button_link_id = "fssolar_btn_ext"; - int_button_link_id = "fssolar_btn_int" +"vyO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" }, +/area/station/hallway/primary/aft/south) +"vzo" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -96626,7 +95928,12 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) +"vzF" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/grass, +/area/station/medical/medbay) "vzG" = ( /obj/structure/sign/radiation/rad_area, /turf/simulated/wall, @@ -96648,7 +95955,6 @@ /area/station/command/office/hos) "vzU" = ( /obj/structure/closet/walllocker/emerglocker/north{ - pixel_y = 0; pixel_x = -32 }, /turf/simulated/floor/plating, @@ -96674,7 +95980,18 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) +"vAX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) +"vBu" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "vBO" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 @@ -96741,6 +96058,24 @@ icon_state = "yellow" }, /area/station/supply/office) +"vCM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/radio/intercom{ + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) "vDg" = ( /obj/machinery/alarm{ dir = 1; @@ -96806,23 +96141,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) -"vEP" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/spawner/xeno, -/turf/simulated/floor/plating, -/area/station/medical/break_room) "vET" = ( /obj/structure/table/wood, /obj/item/stack/packageWrap, @@ -96833,6 +96151,33 @@ }, /turf/simulated/floor/plasteel/grimy, /area/station/public/vacant_office) +"vEY" = ( +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Medbay Front Desk"; + dir = 9; + network = list("Medical","SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "vFs" = ( /obj/machinery/door/airlock/research{ name = "Toxins Storage" @@ -96872,6 +96217,24 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) +"vFI" = ( +/turf/simulated/wall, +/area/station/hallway/primary/central/ne) +"vFN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "vGg" = ( /obj/machinery/economy/vending/coffee, /obj/structure/sign/poster/official/random{ @@ -96894,6 +96257,25 @@ icon_state = "darkred" }, /area/station/security/warden) +"vGC" = ( +/obj/structure/extinguisher_cabinet{ + name = "east bump"; + pixel_x = 27 + }, +/obj/structure/table, +/obj/item/storage/firstaid/brute{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/firstaid/brute, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "vGR" = ( /obj/machinery/alarm{ name = "north bump"; @@ -96916,7 +96298,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "vHE" = ( /obj/machinery/mass_driver{ dir = 8; @@ -96924,20 +96306,34 @@ }, /turf/simulated/floor/plating, /area/station/science/toxins/launch) +"vHF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/exit) "vId" = ( /obj/item/reagent_containers/glass/bucket, /turf/simulated/floor/beach/sand, /area/station/maintenance/fsmaint) -"vIN" = ( -/obj/machinery/access_button{ - autolink_id = "arrivalsn_btn_int"; - name = "exterior access button"; - pixel_x = 4; - pixel_y = 24 +"vIr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "vIR" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 8; @@ -96979,15 +96375,6 @@ icon_state = "neutralcorner" }, /area/station/public/fitness) -"vJP" = ( -/obj/machinery/door/airlock/external{ - id_tag = "escape_door_int"; - locked = 1; - name = "Escape External Access" - }, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, -/area/station/hallway/secondary/exit) "vKf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -97010,7 +96397,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "vKB" = ( /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/ppflowers, @@ -97041,20 +96428,27 @@ name = "Turbine Interior Airlock" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/structure/cable{ +/obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/engine, /area/station/maintenance/incinerator) -"vMy" = ( -/obj/machinery/economy/vending/coffee, +"vMD" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "neutralcorner" + dir = 6; + icon_state = "whiteblue" }, -/area/station/medical/break_room) +/area/station/medical/sleeper) "vMI" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -97074,6 +96468,17 @@ icon_state = "darkred" }, /area/station/security/prison/cell_block) +"vOe" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) +"vOB" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) "vOI" = ( /obj/machinery/atmospherics/trinary/mixer, /turf/simulated/floor/plasteel{ @@ -97081,6 +96486,13 @@ icon_state = "whitepurple" }, /area/station/science/toxins/mixing) +"vPa" = ( +/obj/structure/sign/greencross{ + pixel_x = 32 + }, +/obj/machinery/economy/vending/medical, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "vPd" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research, @@ -97099,6 +96511,29 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/robotics/chargebay) +"vPo" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/south) +"vPD" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "vPK" = ( /obj/structure/cable{ d2 = 8; @@ -97109,6 +96544,19 @@ }, /turf/simulated/floor/plating, /area/station/command/office/ce) +"vQm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/observation) "vSr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -97155,7 +96603,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/south) "vSW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -97165,6 +96613,39 @@ icon_state = "red" }, /area/station/hallway/secondary/exit) +"vTs" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Workstation" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) +"vTw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/secondary/entry/west) +"vTx" = ( +/obj/item/radio/intercom{ + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/starboard/south) "vUu" = ( /obj/item/radio/intercom{ name = "east bump"; @@ -97229,6 +96710,44 @@ icon_state = "neutralfull" }, /area/station/engineering/hardsuitstorage) +"vVW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/maintenance/aft) +"vVX" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/plasteel{ + icon_state = "whitegreen" + }, +/area/station/medical/virology) +"vWI" = ( +/obj/structure/closet/secure_closet/reagents, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/status_display{ + layer = 4; + pixel_y = -32 + }, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) "vXf" = ( /obj/machinery/atmospherics/air_sensor{ autolink_id = "n2o_sensor" @@ -97241,12 +96760,59 @@ icon_state = "neutral" }, /area/station/maintenance/fsmaint) +"vXU" = ( +/obj/structure/table/glass, +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/obj/item/stack/medical/bruise_pack/advanced{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/stack/medical/ointment/advanced{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "vYt" = ( /obj/machinery/atmospherics/air_sensor{ autolink_id = "co2_sensor" }, /turf/simulated/floor/engine/co2, /area/station/engineering/atmos) +"vYz" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry/south) +"vYF" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/turf/simulated/floor/wood, +/area/station/medical/psych) +"vZa" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/reception) "vZC" = ( /obj/structure/cable{ d2 = 2; @@ -97255,6 +96821,25 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) +"vZK" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 3 + }, +/obj/item/paper_bin/nanotrasen, +/obj/item/pen/multi, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = -3 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "wai" = ( /obj/structure/cable{ d2 = 2; @@ -97285,30 +96870,33 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) +"wbi" = ( +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) "wbk" = ( /obj/machinery/economy/vending/cart, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) -"wby" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/medical/virology) "wbZ" = ( /obj/machinery/atmospherics/unary/portables_connector, /turf/simulated/floor/plasteel{ icon_state = "whitepurple" }, /area/station/science/toxins/mixing) +"wcu" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "wdo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -97330,6 +96918,26 @@ icon_state = "whitegreen" }, /area/station/medical/virology) +"wdS" = ( +/obj/machinery/firealarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Paramedic's Office"; + dir = 1; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/paramedic) "wdU" = ( /obj/structure/cable{ d1 = 4; @@ -97371,7 +96979,7 @@ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/engine, /area/station/engineering/controlroom) "wew" = ( /obj/machinery/alarm{ @@ -97427,7 +97035,7 @@ name = "Turbine Exterior Airlock" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/structure/cable{ +/obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" @@ -97486,6 +97094,15 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/exit) +"whp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "why" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -97504,10 +97121,43 @@ icon_state = "dark" }, /area/station/security/interrogation) -"wiR" = ( -/obj/structure/chair/office/light, -/turf/simulated/floor/plasteel/white, -/area/station/medical/reception) +"wil" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/west) +"wiD" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/box/patch_packs{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/storage/box/pillbottles{ + layer = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) +"wiE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/south) "wjm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ @@ -97528,6 +97178,35 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/warden) +"wjN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/ne) +"wjY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Power Monitoring" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) +"wkv" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-4" + }, +/obj/structure/closet/l3closet, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkblue" + }, +/area/station/medical/storage/secondary) "wkG" = ( /obj/machinery/door/airlock/maintenance{ name = "Auxiliary Storage" @@ -97544,12 +97223,31 @@ /obj/machinery/atmospherics/portable/scrubber, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) +"wkV" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/aft/north) +"wkW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "viroshutters"; + name = "Privacy Shutters"; + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) "wll" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ name = "Cargo Bay" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -97563,8 +97261,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/sorting) +"wlC" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/sw) "wmB" = ( /obj/structure/cable{ d2 = 4; @@ -97599,6 +97304,24 @@ icon_state = "darkredcorners" }, /area/station/security/prison/cell_block) +"wnk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "wnt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/maintenance/two, @@ -97616,12 +97339,34 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/service/kitchen) +"wob" = ( +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "wok" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on{ dir = 4 }, /turf/simulated/floor/engine, /area/station/maintenance/incinerator) +"woM" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/mask/surgical{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "woT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -97662,16 +97407,37 @@ }, /turf/simulated/wall/r_wall, /area/station/engineering/engine/supermatter) -"wqO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre Storage" +"wpJ" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Operating Theatre 1" + }, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "sr1" }, +/obj/machinery/holosign/surgery{ + id = "surgery1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, /area/station/medical/surgery/primary) +"wqd" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/camera{ + c_tag = "Medbay Observation Room"; + dir = 4; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) "wre" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -97700,22 +97466,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/command/teleporter) -"wrr" = ( -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = 25; - vent_link_id = "apmaint2_vent"; - ext_door_link_id = "apmaint2_door_ext"; - int_door_link_id = "apmaint2_door_int"; - ext_button_link_id = "apmaint2_btn_ext"; - int_button_link_id = "apmaint2_btn_int" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - autolink_id = "apmaint2_vent" +"wro" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" }, -/obj/effect/turf_decal/delivery, -/turf/simulated/floor/plasteel, -/area/station/maintenance/port) +/area/station/medical/virology) "wrE" = ( /obj/structure/table/reinforced, /obj/machinery/alarm{ @@ -97836,6 +97593,28 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/station/command/office/captain) +"wuc" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "medbayfoyer"; + name = "Medbay Entrance" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "wul" = ( /turf/simulated/floor/beach/sand, /area/station/maintenance/fsmaint) @@ -97843,19 +97622,53 @@ /obj/machinery/economy/vending/snack, /turf/simulated/floor/plasteel/dark, /area/station/command/bridge) -"wuL" = ( +"wuT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Internal Medbay Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, /obj/structure/cable{ - d2 = 4; - icon_state = "0-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, /turf/simulated/floor/plating, -/area/station/medical/virology) +/area/station/medical/coldroom) +"wvz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) "wvH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry/south) "wvM" = ( /obj/machinery/door/airlock{ name = "Internal Affairs Office" @@ -97892,6 +97705,32 @@ icon_state = "neutral" }, /area/station/maintenance/apmaint) +"wxq" = ( +/obj/effect/spawner/window/reinforced/polarized/grilled{ + id = "CMO" + }, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/command/office/cmo) +"wyn" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "medbayfoyer"; + name = "Medbay Entrance" + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "wyA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass, @@ -97914,6 +97753,22 @@ icon_state = "vault" }, /area/station/command/bridge) +"wyS" = ( +/obj/item/kirbyplants, +/obj/structure/cable, +/obj/machinery/power/apc/important/directional/south, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/secondary/entry/lounge) +"wzF" = ( +/obj/structure/chair/office/light, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception) "wzJ" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -97947,6 +97802,22 @@ /obj/structure/dresser, /turf/simulated/floor/plating, /area/station/maintenance/starboard) +"wAG" = ( +/obj/machinery/bodyscanner{ + dir = 2 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Morgue West"; + network = list("Medical","SS13") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/morgue) "wAN" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, @@ -97957,24 +97828,6 @@ /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) -"wAV" = ( -/obj/machinery/economy/vending/cigarette, -/obj/structure/extinguisher_cabinet{ - name = "east bump"; - pixel_x = 30 - }, -/obj/machinery/camera{ - c_tag = "Medbay Break Room"; - dir = 8; - network = list("SS13","Medical") - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/medical/break_room) "wAW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -97992,6 +97845,12 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"wBx" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) "wBO" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -98038,6 +97897,29 @@ }, /turf/simulated/floor/plating, /area/station/security/detective) +"wDE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) "wDU" = ( /obj/machinery/chem_dispenser, /obj/item/reagent_containers/glass/beaker/large, @@ -98052,7 +97934,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "wER" = ( /obj/structure/window/reinforced{ dir = 4 @@ -98073,6 +97955,12 @@ }, /turf/simulated/floor/plasteel, /area/station/supply/sorting) +"wFp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/cryo) "wGb" = ( /obj/structure/table, /obj/item/storage/box/donkpockets, @@ -98081,6 +97969,26 @@ icon_state = "whitepurple" }, /area/station/science/break_room) +"wGz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "wGL" = ( /obj/machinery/newscaster/security_unit{ dir = 4; @@ -98089,11 +97997,33 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/command/bridge) +"wGT" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/sleeper) "wHe" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, /obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) +"wHU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "wIb" = ( /obj/effect/spawner/random_spawners/dirt_frequent, /obj/structure/closet/crate, @@ -98132,6 +98062,15 @@ "wJr" = ( /turf/simulated/wall/r_wall, /area/station/science/break_room) +"wJE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "wJP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/effect/turf_decal/delivery/hollow, @@ -98158,23 +98097,17 @@ icon_state = "dark" }, /area/station/maintenance/apmaint) -"wKI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"wKG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 }, /turf/simulated/floor/plasteel{ - icon_state = "arrival" + icon_state = "neutralfull" }, -/area/station/hallway/secondary/entry) +/area/station/engineering/atmos) +"wKI" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/entry/lounge) "wKL" = ( /obj/machinery/light/small{ dir = 1 @@ -98187,6 +98120,14 @@ temperature = 80 }, /area/station/science/xenobiology) +"wLR" = ( +/obj/structure/morgue, +/obj/effect/landmark/spawner/rev, +/turf/simulated/floor/plasteel{ + icon_state = "darkbluecorners"; + dir = 1 + }, +/area/station/medical/morgue) "wMd" = ( /obj/machinery/camera{ c_tag = "Security Armory"; @@ -98202,6 +98143,12 @@ }, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) +"wMS" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/medical/surgery) "wNJ" = ( /obj/structure/table/reinforced, /obj/item/tank/jetpack/carbondioxide{ @@ -98210,14 +98157,24 @@ }, /obj/item/tank/jetpack/carbondioxide, /obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, /obj/effect/turf_decal/delivery, +/obj/machinery/power/apc/critical/directional/east{ + shock_proof = 1 + }, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) +"wOk" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 5 + }, +/obj/item/reagent_containers/dropper/precision, +/obj/item/reagent_containers/glass/beaker, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "wOE" = ( /obj/structure/transit_tube_pod{ dir = 8 @@ -98245,6 +98202,17 @@ icon_state = "brown" }, /area/station/supply/sorting) +"wPT" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "wRc" = ( /obj/machinery/chem_heater, /obj/item/radio/intercom{ @@ -98261,6 +98229,19 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"wRi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) +"wRp" = ( +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/hallway/primary/central/se) "wRN" = ( /obj/machinery/atmospherics/unary/outlet_injector/on{ autolink_id = "air_in"; @@ -98271,7 +98252,7 @@ "wSw" = ( /obj/machinery/economy/vending/cola, /turf/simulated/floor/plasteel/dark, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "wSB" = ( /obj/machinery/door/poddoor{ density = 0; @@ -98287,6 +98268,14 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) +"wSK" = ( +/obj/machinery/atmospherics/trinary/filter/flipped{ + dir = 1; + filter_type = 2; + name = "N2 Filter" + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "wSO" = ( /obj/structure/sign/vacuum/external{ pixel_y = -32 @@ -98299,7 +98288,7 @@ dir = 10; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "wSU" = ( /obj/structure/cable{ d1 = 1; @@ -98393,7 +98382,7 @@ /turf/simulated/floor/plasteel{ icon_state = "brown" }, -/area/station/hallway/primary/fore) +/area/station/supply/lobby) "wVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -98407,7 +98396,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "wVM" = ( /obj/machinery/access_button{ autolink_id = "enginen_btn_int"; @@ -98450,7 +98439,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "wWl" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -98478,6 +98467,23 @@ icon_state = "neutral" }, /area/station/maintenance/port) +"wWW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) +"wWX" = ( +/obj/machinery/computer/pandemic, +/obj/effect/turf_decal/delivery/green, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "wXn" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/polarized/grilled{ @@ -98498,26 +98504,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/starboard) -"wYm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/obj/machinery/holosign/surgery{ - id = "surgery2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel/dark, -/area/station/medical/surgery/secondary) +/area/station/hallway/primary/starboard/north) "wYv" = ( /obj/machinery/door/airlock/security{ name = "Armory" @@ -98566,16 +98553,6 @@ icon_state = "dark" }, /area/station/security/interrogation) -"wYZ" = ( -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/medical/virology) "wZa" = ( /obj/structure/window/reinforced{ dir = 1; @@ -98593,6 +98570,17 @@ }, /turf/simulated/floor/plating, /area/station/security/permabrig) +"wZb" = ( +/obj/structure/morgue, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/landmark/spawner/rev, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "wZe" = ( /obj/machinery/light/small{ dir = 8 @@ -98603,31 +98591,22 @@ }, /area/station/maintenance/fsmaint) "wZD" = ( -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = -57; - req_access_txt = "10;13"; - vent_link_id = "stationai_vent"; - ext_door_link_id = "stationai_door_ext"; - int_door_link_id = "stationai_door_int"; - ext_button_link_id = "stationai_btn_ext"; - int_button_link_id = "stationai_btn_int" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/spawner/airlock/e_to_w/engineer{ + req_access_txt = 13 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/wall, +/area/station/maintenance/port) +"wZK" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Internal Medbay Maintenance" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown" }, -/turf/simulated/floor/plasteel/dark, -/area/station/engineering/ai_transit_tube) +/turf/simulated/floor/plating, +/area/station/medical/coldroom) "xab" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -98673,6 +98652,14 @@ icon_state = "wood-broken5" }, /area/station/maintenance/apmaint) +"xbI" = ( +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/obj/item/toy/plushie/grey_cat, +/obj/structure/table/wood, +/turf/simulated/floor/wood, +/area/station/medical/psych) "xbS" = ( /obj/structure/cable{ d1 = 1; @@ -98731,9 +98718,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/turf_decal/stripes/line, /obj/machinery/access_button{ - autolink_id = "sol_btn_int"; + autolink_id = "engines_btn_int"; name = "interior access button"; pixel_x = -25; pixel_y = -25 @@ -98743,7 +98729,23 @@ initialize_directions = 10 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/west) +"xcR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) "xda" = ( /obj/item/cultivator, /obj/item/reagent_containers/glass/bottle/nutrient/ez, @@ -98760,6 +98762,36 @@ /obj/effect/spawner/random_spawners/wall_rusted_maybe, /turf/simulated/wall, /area/station/maintenance/library) +"xdN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"xeb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) "xgm" = ( /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) @@ -98794,16 +98826,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel/white, /area/station/command/office/rd) -"xgR" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/medical/surgery/secondary) "xha" = ( /obj/item/chair/stool/bar, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"xhf" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/surgery/observation) +"xhh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "xhi" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -98829,6 +98870,28 @@ /obj/machinery/magnetic_module, /turf/simulated/floor/plasteel, /area/station/security/range) +"xib" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Cloning" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) +"xid" = ( +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating, +/area/station/maintenance/aft) "xie" = ( /obj/machinery/door/firedoor, /obj/machinery/flasher{ @@ -98852,6 +98915,31 @@ icon_state = "vault" }, /area/station/turret_protected/aisat) +"xiK" = ( +/obj/machinery/photocopier, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"xjD" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/paramedic) "xjE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -98862,12 +98950,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) -"xkE" = ( -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/reception) "xkJ" = ( /obj/machinery/atmospherics/binary/pump{ name = "burn chamber to port"; @@ -98878,34 +98960,6 @@ icon_state = "whitepurple" }, /area/station/science/toxins/mixing) -"xlB" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel/white, -/area/station/medical/virology) -"xlF" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/newscaster{ - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/plasteel{ - icon_state = "whitebluefull" - }, -/area/station/medical/storage) "xlS" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/barricade/wooden, @@ -98932,14 +98986,20 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/teleporter) -"xnw" = ( -/obj/machinery/door/airlock/external{ - id_tag = "apsolar_door_ext"; - locked = 1; - name = "Engineering External Access" +"xnr" = ( +/obj/machinery/computer/crew{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "darkblue" + }, +/area/station/command/office/cmo) +"xnw" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -98962,6 +99022,28 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/port) +"xnL" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/machinery/door/poddoor/shutters/preopen{ + id_tag = "viroshutters"; + name = "Privacy Shutters" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/station/medical/virology) "xom" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -98974,6 +99056,12 @@ }, /turf/simulated/floor/wood, /area/station/public/pet_store) +"xoT" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/plasteel{ + icon_state = "purplefull" + }, +/area/station/hallway/primary/aft/south) "xph" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -99036,7 +99124,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "xrg" = ( /obj/structure/window/reinforced{ dir = 4 @@ -99058,7 +99146,16 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) +"xsh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/engine, +/area/station/medical/chemistry) "xsz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/disposal, @@ -99070,10 +99167,39 @@ icon_state = "whitepurple" }, /area/station/science/toxins/mixing) +"xsN" = ( +/obj/machinery/power/apc/directional/east, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "xtS" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/station/maintenance/port) +"xtU" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Bedroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) "xtZ" = ( /obj/effect/spawner/random_spawners/fungus_maybe, /turf/simulated/wall, @@ -99136,15 +99262,6 @@ icon_state = "darkred" }, /area/station/security/warden) -"xwk" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/station/medical/surgery/primary) "xwU" = ( /obj/machinery/economy/slot_machine, /turf/simulated/floor/plating, @@ -99210,51 +99327,39 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/range) -"xyC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "medbayfoyer"; - name = "Medbay Entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/reception) "xyI" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24; + name = "east bump" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "xzp" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) +"xzV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 2; + icon_state = "1-2" }, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/medical/virology) +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel/white, +/area/station/medical/medbay) +"xzZ" = ( +/obj/structure/sign/chemistry, +/turf/simulated/wall/r_wall, +/area/station/medical/chemistry) "xAc" = ( /obj/structure/railing/corner{ dir = 1 @@ -99264,6 +99369,29 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"xAK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) +"xBq" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "xBJ" = ( /obj/structure/railing{ dir = 10; @@ -99294,10 +99422,42 @@ }, /turf/simulated/floor/engine/vacuum, /area/station/engineering/atmos) +"xBR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "xCC" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/wall/mineral/titanium, /area/shuttle/pod_2) +"xCE" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plasteel/dark, +/area/station/medical/morgue) "xCH" = ( /obj/effect/turf_decal/delivery, /obj/structure/disposalpipe/segment{ @@ -99307,14 +99467,39 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) -"xCS" = ( +/area/station/hallway/primary/fore/east) +"xCT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, +/obj/effect/landmark/lightsout, +/turf/simulated/floor/plasteel/white, /area/station/medical/virology) +"xDk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "xDn" = ( /obj/structure/sign/electricshock{ pixel_y = 32 @@ -99326,6 +99511,18 @@ icon_state = "whitebluecorner" }, /area/station/medical/reception) +"xDT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "xEz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -99334,6 +99531,22 @@ temperature = 80 }, /area/station/science/xenobiology) +"xES" = ( +/obj/machinery/smartfridge/secure/chemistry/virology/preloaded, +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -30 + }, +/obj/machinery/requests_console{ + department = "Virology"; + departmentType = 3; + name = "Virology Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "xFp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -99364,6 +99577,45 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/port) +"xFI" = ( +/obj/machinery/economy/vending/wallmed{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) +"xFW" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/maintenance/aft) +"xFZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/starboard) +"xGb" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "xGg" = ( /obj/machinery/door/window/classic/reversed{ dir = 8; @@ -99394,6 +99646,14 @@ icon_state = "darkred" }, /area/station/security/warden) +"xGo" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/delivery/white/hollow, +/turf/simulated/floor/plasteel{ + dir = 10; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "xGw" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -99415,20 +99675,33 @@ }, /turf/simulated/floor/plating, /area/station/command/office/rd) -"xHj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"xHg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/camera{ + c_tag = "Virology Isolations"; + network = list("SS13","Medical"); + dir = 8 }, /turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" + dir = 6; + icon_state = "whitegreen" }, -/area/station/medical/surgery/primary) +/area/station/medical/virology) "xHl" = ( /obj/machinery/economy/vending/sustenance, /obj/structure/cable{ @@ -99446,31 +99719,22 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/range) -"xHC" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery"; - dir = 8; - location = "Medbay" - }, -/obj/machinery/door/window/classic/reversed{ - dir = 4; - name = "Medical Delivery" - }, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ +"xHN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/medical/storage) +/area/station/hallway/secondary/entry/east) +"xIm" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/medbay) "xIo" = ( /obj/structure/bed, /obj/structure/cable{ @@ -99512,6 +99776,12 @@ icon_state = "neutral" }, /area/station/maintenance/port) +"xIH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "xIJ" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -99519,6 +99789,24 @@ icon_state = "darkred" }, /area/station/security/main) +"xIN" = ( +/mob/living/simple_animal/hostile/retaliate/kangaroo{ + name = "Darwin" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/command/office/cmo) "xJq" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -99591,19 +99879,6 @@ icon_state = "bar" }, /area/station/maintenance/fsmaint) -"xKN" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/plasteel{ - icon_state = "cmo" - }, -/area/station/medical/storage) -"xKW" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/station/medical/surgery/secondary) "xKX" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, @@ -99633,7 +99908,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/west) "xLh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -99644,15 +99919,19 @@ }, /area/station/public/fitness) "xLC" = ( -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" +/obj/structure/closet/secure_closet/paramedic, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" }, -/obj/effect/spawner/window/reinforced/polarized{ - id = "Psych" +/area/station/medical/paramedic) +"xLM" = ( +/obj/machinery/sleeper, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" }, -/turf/simulated/floor/plating, -/area/station/medical/psych) +/area/station/medical/sleeper) "xLV" = ( /turf/space, /area/space/nearstation) @@ -99686,6 +99965,20 @@ icon_state = "vault" }, /area/station/command/bridge) +"xOd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/chemistry) +"xOG" = ( +/obj/structure/table/glass, +/obj/item/toy/figure/crew/virologist, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "xOZ" = ( /obj/machinery/atmospherics/portable/canister/sleeping_agent, /obj/effect/decal/cleanable/dirt, @@ -99699,6 +99992,15 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/ai_monitored/storage/eva) +"xPh" = ( +/obj/item/kirbyplants, +/obj/machinery/requests_console{ + department = "Arrival Shuttle"; + name = "Arrival Shuttle Requests Console"; + pixel_x = 30 + }, +/turf/simulated/floor/mineral/titanium/blue, +/area/shuttle/arrival/station) "xPn" = ( /obj/effect/spawner/random_spawners/wall_rusted_always, /turf/simulated/wall, @@ -99714,24 +100016,13 @@ /obj/item/kirbyplants, /turf/simulated/floor/plasteel/white, /area/station/science/explab) -"xPJ" = ( -/obj/machinery/door/airlock/external{ - id_tag = "sol_door_int"; - locked = 1; - name = "Arrivals External Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) "xPQ" = ( /obj/machinery/economy/vending/coffee, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "xPW" = ( /obj/machinery/light, /turf/simulated/floor/carpet, @@ -99799,17 +100090,6 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) -"xRm" = ( -/obj/machinery/access_button{ - autolink_id = "escape_btn_ext"; - name = "exterior access button"; - pixel_x = 24; - pixel_y = 24; - req_access_txt = "10;13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) "xRD" = ( /obj/effect/spawner/random_spawners/cobweb_right_frequent, /obj/structure/closet/firecloset, @@ -99830,6 +100110,17 @@ icon_state = "neutral" }, /area/station/maintenance/port) +"xRQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/iv_drip, +/turf/simulated/floor/plasteel{ + icon_state = "darkgreen" + }, +/area/station/medical/virology) "xRX" = ( /obj/structure/cable{ d1 = 4; @@ -99838,6 +100129,14 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/explab) +"xSf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/medical/cloning) "xSg" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -99862,8 +100161,50 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/prison/cell_block) +"xTi" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 0; + name = "Port to Filter" + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralfull" + }, +/area/station/engineering/atmos) +"xTt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/virology) +"xUg" = ( +/obj/structure/table, +/obj/item/storage/box/syringes, +/obj/item/storage/box/monkeycubes, +/obj/machinery/camera{ + c_tag = "Virology Pen"; + network = list("SS13","Medical") + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "xUI" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /turf/simulated/floor/plasteel, /area/station/security/armory/secure) "xVe" = ( @@ -99882,6 +100223,14 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"xVu" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/cryo) "xVF" = ( /obj/structure/cable{ d2 = 2; @@ -99890,15 +100239,12 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/command/customs) -"xWD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"xVK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "xXi" = ( /obj/structure/cable{ d1 = 1; @@ -99931,11 +100277,25 @@ name = "Custodial Junction"; sort_type_txt = "22" }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) +"xXW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/engine, +/area/station/engineering/controlroom) "xYp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor{ @@ -99960,6 +100320,12 @@ icon_state = "dark" }, /area/station/security/permabrig) +"xYO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/atmos) "xYX" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 4; @@ -99982,6 +100348,15 @@ /obj/item/reagent_containers/glass/bucket, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"yal" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft/north) +"yaM" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/simulated/floor/plasteel/white, +/area/station/medical/reception) "ycH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass, @@ -100096,10 +100471,19 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central/south) +/area/station/hallway/primary/central) "ygH" = ( /turf/simulated/wall/r_wall, /area/station/security/permabrig) +"yhn" = ( +/obj/structure/mopbucket/full, +/obj/item/mop, +/obj/item/caution, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkbluecorners" + }, +/area/station/medical/storage/secondary) "yib" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -100132,30 +100516,54 @@ /obj/effect/spawner/window/reinforced/plasma/grilled, /turf/simulated/floor/plating, /area/station/engineering/controlroom) +"yis" = ( +/obj/structure/table, +/obj/item/storage/bag/dice, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redyellowfull" + }, +/area/station/medical/break_room) "yiO" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/simulated/floor/plasteel, /area/station/maintenance/port2) -"yjn" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"yjA" = ( +/obj/machinery/power/apc/directional/south, +/obj/item/kirbyplants{ + icon_state = "plant-10" }, +/obj/structure/cable, +/turf/simulated/floor/wood, +/area/station/medical/psych) +"yjG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + name = "north bump"; + pixel_y = 28 + }, /turf/simulated/floor/plasteel{ - icon_state = "showroomfloor" + dir = 1; + icon_state = "neutralcorner" }, -/area/station/medical/surgery/secondary) +/area/station/hallway/primary/central/north) "yki" = ( /obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, @@ -100165,18 +100573,6 @@ icon_state = "darkredfull" }, /area/station/security/main) -"ykl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown" - }, -/turf/simulated/floor/plasteel, -/area/station/maintenance/starboard) "ykx" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -117999,7 +118395,7 @@ aaa aaa dij dij -aGW +sso dij dij aaa @@ -119634,7 +120030,7 @@ cCy hkk aaa abj -iYu +acF cHA aaa aaa @@ -119891,8 +120287,8 @@ maf hkk aaa cHA -uci -cHA +ddh +wZD aaa aaa aaa @@ -120148,7 +120544,7 @@ cTi hkk aaa cHA -wrr +cCq cHA aaa aaa @@ -120329,7 +120725,7 @@ abj abj abj abj -iKT +atK abj aLT aNT @@ -120405,7 +120801,7 @@ sZp cHA aaa cHA -gHC +drn cHA aaa aaa @@ -120586,8 +120982,8 @@ aaa abj abj gmT -jEE -gmT +jCQ +iYu acF aGZ wok @@ -120879,9 +121275,9 @@ bGs bwN abj bVs -bXG +iIS bYJ -abj +tAi nmF abj bXU @@ -121138,7 +121534,7 @@ abj dVS abj abj -abj +fYS nmF abj bXU @@ -121392,10 +121788,10 @@ bEI bGv bwN qGf -dcp -qGf -qGf +vcx +sWx abj +fYS giK abj bXU @@ -121649,9 +122045,9 @@ bEK bGw bwN bJZ -wZD bVt qGf +abj bZf fRW qYL @@ -121906,7 +122302,7 @@ bEM bGx bwN qGf -sWx +vcx qGf qGf bRT @@ -122111,7 +122507,7 @@ aaa aaa dij dij -aGW +sso dij abj aaa @@ -122121,7 +122517,7 @@ abj aaa abj dij -aGW +sso dij dij abj @@ -122413,7 +122809,7 @@ aOg acF bzL byi -bzL +mPU bBt rcq bEN @@ -122667,8 +123063,8 @@ lOm odQ wWl aOg -rHp -tGB +acF +eml tls eml riQ @@ -123176,13 +123572,13 @@ aYO keu rcz qJW -aOg -qJW -rcz -keu -aOg -aOg -bwP +uCR +ghB +ghP +gKe +uCR +uCR +uCR byl byl byl @@ -123439,7 +123835,7 @@ olZ btg buo bvD -bwP +uCR bym bzN bIx @@ -123672,7 +124068,7 @@ fgh aIy aJP aLg -aMI +aMC jMh aPH aQT @@ -123945,15 +124341,15 @@ aYy aYy aYy bdo -bkz +aYy bmv aUi bpA brB -aTZ -ban +hZn +adU bvF -bwP +uCR bzO bzN bBy @@ -124191,16 +124587,16 @@ aOb aPH aQV aSD -aSc -aVF -aXj -aYz -bam -bam +aPF +aSI +aVO +ban bam ban ban -aXW +ban +uTw +rIO aYt bkA bmw @@ -124210,7 +124606,7 @@ brC bti buq bvG -bwP +uCR byp bzN bBy @@ -124444,24 +124840,24 @@ aGZ aJS aLj aMH -aOe -aPx +aOb +aPH aQW -aSE -aUa -aVG -aXk -aYA -aYA -bbO -aYA -beJ -bgc -aXk -biO +aSD +iYX +aVF +ban +dnW +tNx +lth +fgF +dnW +wKG +lfU +aYt bkB bmx -aUi +gns bpC brD btj @@ -124691,8 +125087,8 @@ axG ayF ayF aAf -aBh aLq +jYK aLq aLq axG @@ -124705,26 +125101,26 @@ aOg aPy aQX aSD -aPF -aSI -aXl -aVO +mQm +vnQ +qIK ban -bbP ban ban +fzp +ban +jgG ban -bhj biP -bkB +eEP bmy jAs bpD brE -ban +adU bus bvI -bwP +uCR byl byl byl @@ -124942,36 +125338,36 @@ abj atd atd atd -aLs +ivS aFd axI aFd ayT -aCi -aCi +gCA aDe -aFd +gCA +rvN aFd aHo aJF aGZ aGZ hJh -aMJ +aNT aOg aPz aQY -aSF -aUb -aVH -aXm -beJ -bao -bbQ -bdp -beJ -bgd -aYA +aSD +aUc +aVF +ban +ban +ban +ban +ban +ban +jgG +ban biQ bkC bmz @@ -124986,7 +125382,7 @@ bys bzR bBA bDs -bIx +jnk byl bIx bKC @@ -125205,9 +125601,9 @@ axK ayJ azU ayR -aAg -aCV -aEd +dDW +ayR +wSK aFc aFW aJH @@ -125217,28 +125613,28 @@ aLn aML aOg aPH -spS -iiY +aQZ +aSD veH -aVI -aXn +aVF +aYD aYD cOB -bap cOB -beK +cOB +ban aXq -bhk +aXW biT -bkM +xYO bmA -aOb +bnW bpF -aOb -aOg -aOg -aOg -bwP +uCR +uCR +uCR +uCR +uCR byl byl bBB @@ -125464,7 +125860,7 @@ ayV aCS aCS aDh -aFl +aHc aHc aEn aHe @@ -125475,21 +125871,21 @@ aMM fun aUM aUM -aSD -aUc -aVJ -aXo -aXo -aOb -aOb -aOb -aXo -aXo -bhl +aSE +kKK +aVH +ggW +aYA +aYA +bbO +aYA +bgc +uPp +ban biR bkE bmB -bnX +aOb bpG brG btm @@ -125730,26 +126126,26 @@ aCk wAP aMN aOg -aPH +bHy aQZ aSD aUc -aVI -aOb -aYF -baq -bbR -bdq -beL -aOb -bhk -biT +aVF +jgG +ban +ban +ban +ban +ban +jgG +ban +rgn bkF bmC -aYK +kuI bpH brH -aYK +uBQ buv aOg bwW @@ -125971,7 +126367,7 @@ atd aub auG avC -awL +awR axM ayM aAd @@ -125980,8 +126376,8 @@ aEk npF aCj aEf -aFf -aHl +ahD +aHh aIE atd aLp @@ -125991,22 +126387,22 @@ aPC aRb aSD aUc -aVI -kzA -aYG -bdr -bbS -bdr +aVF +wKG +aXk +bdp +bbQ +bdp beM ggW bhn biS -bkF -bmD -bnY +mhf +bkM +aXo bpI -brI -brI +buw +buw buw bvK bwX @@ -126016,7 +126412,7 @@ bBE bKp bEX bGD -bIA +bEX bKp bMq bGz @@ -126227,8 +126623,8 @@ abj atd aue auI -aLu -awH +xXW +aHp axO ayM azY @@ -126244,27 +126640,27 @@ atd aPE aRa aOg -aPH +fFy aRc aSD aUc -aVI -aOb -aYH -bas -bbT -bds -eON -aOb -bhk +aVF +jgG +rUU +iUf +iUf +iUf +dnW +nae +ban aZm -bkF +mhf bmE -bnZ -bpJ -brJ +aXo +btn btn -bux +btn +aOb aOg byl byl @@ -126485,7 +126881,7 @@ atd aub auI avE -awN +awR axP ayM azZ @@ -126495,7 +126891,7 @@ aCY aEh aFh aJs -aHl +aHh aIG aJV aLs @@ -126505,19 +126901,19 @@ aPH aQZ aSD aUc -aVL -aXo -aXo -aOb -aOb -aOb -aXo -aXo +aVF +jgG +jVW +xTi bho -aZm +bho +bho +uCI +bho +pgx bkI bmF -boa +bpK bpK brK bto @@ -126528,7 +126924,7 @@ bOg bzW bBG bKp -bIA +bEX bGF bEX bKp @@ -126763,19 +127159,19 @@ aTT aSH aUd aVM -aXq -aYI -bhp -mfl -bhp -beO -aXn +jVW +beJ +beJ +beJ +beJ +beJ +beJ bhk biU bkJ bmG bob -bpL +bob bob btp buz @@ -126998,8 +127394,8 @@ aaa atd aub auI -avG -awP +avE +awR axR ayM aAb @@ -127009,7 +127405,7 @@ aDa aEi aFh aFY -aHl +xVK aII lZR aLu @@ -127020,17 +127416,17 @@ aQZ aSD aUe aVN -aXr +bau aYJ bau -oZY +bau bau aXG -aXr +bau sGz biV bkK -bmH +brL boc bpM brL @@ -127255,7 +127651,7 @@ abj atd aue auI -aLs +wJE awQ axS ayM @@ -127266,7 +127662,7 @@ aDb ayM ayM aFZ -aHh +xVK aID atd mKM @@ -127284,9 +127680,9 @@ bbV aYK aXN ijT +jgG mzZ -ban -bkM +osF bmI aOg aOg @@ -127513,7 +127909,7 @@ atd aub auG avC -awL +awR axN ayM aAd @@ -127523,7 +127919,7 @@ wpA aDc aEj aGa -aHl +xVK nwK atd atd @@ -127537,13 +127933,13 @@ aVF bgg bkL bgg -aTZ -ban +iXM +kQO tiC bgg +emu ban -ban -bkM +osF bmJ aOg brN @@ -127769,7 +128165,7 @@ abj atd aub axl -avI +xhh awR axL ayP @@ -127780,7 +128176,7 @@ ayL aDc aEj aFi -aHh +xVK wer aJY aLv @@ -127793,12 +128189,12 @@ aUf aVP aXu aYL -aXu +nrj hlY bbW beP bgh -bhp +vnK bhp bkN bmK @@ -127902,7 +128298,7 @@ abj abj abj aaa -mVF +dYJ abj aaa dij @@ -128026,10 +128422,10 @@ abj atd auf axl -avI -awS +xhh +awR axT -ayI +aFd azV aCU aCU @@ -128042,7 +128438,7 @@ pmT rtU aLw aMT -aOg +wjY aPH aRi aSK @@ -128058,7 +128454,7 @@ bgi jJc biZ bkO -bmL +aQZ aOg bpQ brP @@ -128160,7 +128556,7 @@ aaa abj nKk xnw -nKk +rtH abj dij aaa @@ -128283,15 +128679,15 @@ abj atd aug atd -avI -awT -axV +xhh +awR +kmE +ayR +ayR ayR -aAg ayR -aAg aDd -aEm +aFj aFj aGg odG @@ -128540,7 +128936,7 @@ abj atd atd atd -aLu +kTc aHp axU ayK @@ -128556,7 +128952,7 @@ atd atd atd atd -aOl +aOg aOg aOg aOg @@ -130391,7 +130787,7 @@ bDF bOj brW bjU -blL +kIG bWE bYi drn @@ -130647,7 +131043,7 @@ bKu bBR bOr brW -bty +tDU vHe bWH cHA @@ -131075,10 +131471,10 @@ aaa abj abj abj -grB +iUU aef aef -grB +iUU abj abj abj @@ -131095,8 +131491,8 @@ abj abj abj abj -grB -udZ +iUU +qke rJk abj abj @@ -131161,7 +131557,7 @@ bBR bBR bOt brW -bty +jyz vHe bWH bYj @@ -131332,29 +131728,29 @@ abj abj aaa aaa -grB -afb -afb -grB +iUU +pGg +pGg +iUU abj aaa aaa aaa aaa abj -grB -grB -grB -grB -grB -grB +iUU +iUU +iUU +iUU +iUU +iUU aaa aaa aaa abj -grB -vcx -grB +iUU +ahQ +iUU aaa aaa aaa @@ -131418,7 +131814,7 @@ bBT bBT bOu brW -bty +jyz vHe bWH bYk @@ -131584,38 +131980,38 @@ aaa aaa aaa adb -grB +iUU adb -grB -grB -grB -grB +iUU +iUU +iUU +iUU aef aef adb -grB -grB +iUU +iUU adb -grB -grB -grB -grB +iUU +iUU +iUU +iUU aik aiE -afb +pGg ajf -grB -grB -grB -grB -adb -grB -xPJ -grB -adb -adb -adb +iUU +iUU +iUU +iUU adb +iUU +eKO +iUU +aAr +aAr +aAr +aAr aaa uzN aqC @@ -131675,8 +132071,8 @@ bKB bME bOw brW -bSy -vHe +fGs +pSW bWH ctU bZL @@ -131739,7 +132135,7 @@ ecs dyz iTn wbZ -vaZ +ehV wRN cKu sMj @@ -131838,10 +132234,10 @@ aaa aaa aaa aaa -grB -grB -grB -vIN +iUU +iUU +uci +pGg tXb adZ san @@ -131863,8 +132259,8 @@ adZ adZ adZ adZ -aip -agA +rwY +age agg adZ xcL @@ -131872,7 +132268,7 @@ oMA qtk ani wSO -adb +aAr aaa uzN aqz @@ -132095,41 +132491,41 @@ aaa aaa aaa aaa -nXF +aeN pUC -rtH +aeN adt afh -aea +tnU fCA -asB +ahg eYW -asB -asB -asB -asB -asB -asB ahg -ajZ -ajZ -ajZ -ajZ -cMP -ajZ -ajZ -ajZ -ajZ ahg -ajZ -ajZ -ajZ +ahg +ahg +ahg +ahg +ahg +vTw +vTw +vTw +vTw +cMP +vTw +vTw +vTw +vTw +rPU +vTw +vTw +vTw amA -amM +hhn anu wvH gEs -adb +aAr aaa apG aqD @@ -132253,7 +132649,7 @@ lwr vhS nBP xkJ -vaZ +ehV jzV cRy qwo @@ -132352,9 +132748,9 @@ aaa aaa aaa aaa -grB -grB -grB +iUU +iUU +iUU adu sMV aeb @@ -132367,7 +132763,7 @@ eCj aeb aeb ltw -agB +aeb aeb aeb aeb @@ -132380,13 +132776,13 @@ aeb agB aeb mFy -aeb +wil reW -amL -anv -ank -anP -adb +saK +kWK +ant +anL +aAr aaa uzN aqE @@ -132612,38 +133008,38 @@ aaa aaa aaa adb -grB +iUU adb -grB -grB -grB +iUU +iUU +iUU adb -grB -grB +iUU +iUU adb -grB -grB +iUU +iUU adb -grB -grB -grB -grB -aio +iUU +iUU +iUU +iUU +pjO aiF aiI -ajy -grB -grB -grB -grB +pvf +iUU +iUU +iUU +iUU adb -grB adb adb adb +aAr sgZ anK -adb +aAr aaa uzN uzN @@ -132884,12 +133280,12 @@ abj aaa aaa abj -grB -grB -grB -grB -grB -grB +iUU +iUU +iUU +iUU +iUU +iUU abj aaa abj @@ -132897,10 +133293,10 @@ aaa aaa aaa aaa -adb +aAr ezV anL -adb +aAr abj abj abj @@ -132960,9 +133356,9 @@ bFn bMH bOy bDQ -bty -vHe -bWH +ezp +pCt +exy bYj bZP cbK @@ -133154,10 +133550,10 @@ abj abj abj abj -grB +dGS ant -anP -adb +anL +aAr awX awX awX @@ -133217,9 +133613,9 @@ bFo bMI bOz bDQ -bjU +ojv blL -bWE +gEy bYj jRu cbL @@ -133411,10 +133807,10 @@ aaa aaa abj aaa -grB +dGS ant -anP -adb +anL +aAr aor aoR aqF @@ -133475,8 +133871,8 @@ bMJ bOA bIV bTZ -vHe -bWH +ueD +tFN bYj bZR cbM @@ -133668,7 +134064,7 @@ aaa aaa abj aaa -grB +dGS ant anJ rxD @@ -133925,10 +134321,10 @@ aaa aaa abj aaa -grB +dGS ant -anP -adb +anL +aAr aoS apK aqH @@ -133988,9 +134384,9 @@ bFo bMI bFr bDQ -bty -vHe -bWH +ezp +pCt +exy bYj bZS cbN @@ -134182,9 +134578,9 @@ aaa aaa abj aaa -grB +dGS ant -anP +anL aoo aoo aoo @@ -134245,9 +134641,9 @@ bFq bMK bPY bDQ -bty +ezp eki -bWH +exy bYj jRu cbO @@ -134439,9 +134835,9 @@ aaa aaa abj aaa -grB +dGS ant -anP +anL aoo aoT apL @@ -134502,9 +134898,9 @@ bFr bMG bPZ bOC -bSy +pFF eki -bWH +exy bYj bZR cbM @@ -134696,9 +135092,9 @@ aaa aaa abj aaa -adb +aAr ant -anP +anL aoo imf apM @@ -134953,7 +135349,7 @@ aaa aaa abj aaa -adb +aAr ant fqF aoo @@ -135000,13 +135396,13 @@ pQf baF bol bqm -byO -vcb -byO -byO +sWn +fOV +ssu +uFJ bxl baG -byO +hNh bEa bDR bEp @@ -135033,10 +135429,10 @@ quu tVa bsf bsf -bsf +vCM cvs bsf -bsf +jVv bsf bsf shP @@ -135210,9 +135606,9 @@ aaa aaa abj aaa -grB +dGS ant -anP +anL aoo vET apM @@ -135239,65 +135635,65 @@ osM mks osM mOM -osM +gQe osM aSZ osM -osM +gQe osM aYX baK bcl bdG bhF -bhF +onG qYV bjn -blc +qYV bmX bom bqn -tmq -tIa -tmq -tmq -tmq -tmq -tmq +npJ +kEN +fcl +fcl +fcl +sPx +fcl bCf -tmq +fcl bFs -tmq -tmq -tmq -tmq -tmq +fcl +fcl +fcl +fcl +fcl ozr -tmq +hzo bUL -tmq -tmq -bZU -tmq -tmq +hzo +hzo +qxR +hzo +hzo cbP -tmq -tmq -tmq -tmq -tmq -tIa +hzo +hzo +hzo +reu +hzo +gKs cpN crq -tmq -tmq -tmq -tmq -tmq -tmq -tmq -tmq -tmq +vji +vji +vji +vji +raa +vji +vji +vji +vji cDd cGy xqH @@ -135467,7 +135863,7 @@ aaa aaa abj aaa -grB +dGS ant rBP aoo @@ -135488,16 +135884,16 @@ aCx nNK aDD gpU -vzB +uSD kdu aEF aHS -aRK +fcY aXA -aGJ +jzc +syY aEF -aEF -aRK +fcY aTa aEF aEF @@ -135508,28 +135904,28 @@ aSe bdH aEF aEF -bld +npn bjo -bld +npn vzB boy -tmq -bIX -bSz -bIX -bIX -bIX +npJ +xGb +jwP +iXC +iXC +iXC byQ -bWM +keo bDG -bWM -bWM -bHi -bIX -bIX -bIX -bIX -bSz +keo +keo +dFA +iXC +iXC +iXC +iXC +ntZ nTR bUM bWM @@ -135541,21 +135937,21 @@ cbQ bSD bHi ckm -bIX -bIX -bSz +oQO +eVW +ntZ bqp -bIX -cEL +rqv +wlC ctQ -cEL +wlC cwQ -cEL -cEL -cEL -cEL -cEL -cEL +kqx +wlC +wlC +wlC +wlC +wlC btE cHC ddn @@ -135724,9 +136120,9 @@ aaa aaa abj aaa -grB +dGS ant -anP +anL aoo aoY ast @@ -135770,10 +136166,10 @@ eer uUk aYZ pde -tmq -bhX -bsv -bvV +npJ +wPT +kgl +juK bxi bxi bwf @@ -135788,7 +136184,7 @@ jAu jAu bHj bSE -bsv +ofu gVF btH btH @@ -135981,7 +136377,7 @@ aaa aaa abj aaa -grB +dGS ant alm nmr @@ -136001,7 +136397,7 @@ aBu aBy aLD xXU -aFH +qbI aFA aGv aHJ @@ -136026,13 +136422,13 @@ bhI bjq blf aYZ -boo -tmq -hQe -bsv -pcY -pcY -pcY +lKV +nGk +klE +kgl +dHG +dHG +dHG bwf bAr bCl @@ -136058,8 +136454,8 @@ ckn clI cno bSE -bqr -cvE +cqn +bwm csK ctR cvt @@ -136069,8 +136465,8 @@ twb cBe cCC csK -cEM -tmq +czY +ckv bIG cIW cKw @@ -136238,9 +136634,9 @@ aaa aaa abj aaa -grB +dGS akG -uJq +als aoo apa apR @@ -136283,10 +136679,10 @@ bdQ bjt wny aYZ -boo -tmq -bIX -pcY +yjG +npJ +xGb +bKt aaa abj aaa @@ -136315,8 +136711,8 @@ qYT clJ cnp bSE -bqr -cvE +cqn +bwm csK cBi cEr @@ -136326,8 +136722,8 @@ cEr cEr cDO csK -cEL -tmq +czY +ckv bIG cIW cKx @@ -136480,24 +136876,24 @@ abj abj abj abj -grB +doS ahz -grB +doS abj abj abj abj -grB +doS pHg -grB +doS abj abj abj abj abj -grB +dGS ant -rwY +anL aoo apb apS @@ -136515,7 +136911,7 @@ aAx aAw aES aUv -aFH +qbI aFA aGx aHM @@ -136540,10 +136936,10 @@ bdP bjs blh aYZ -boo -tmq -bIX -pcY +rnb +npJ +xGb +bKt aaa abj aaa @@ -136584,7 +136980,7 @@ cCE cEb csK sUV -tmq +ckv cHE cIX cMe @@ -136737,24 +137133,24 @@ aaa aaa abj aaa -grB +doS afb -grB -grB -grB -grB -grB -grB +doS +doS +doS +doS +doS +doS afb -grB +doS aaa abj aaa aaa aaa -adb +aAr upw -wKI +fqF aoo apc apT @@ -136771,8 +137167,8 @@ lJo aES jaE aES -aUv -aFH +mhx +qbI aFA aGy aHM @@ -136793,14 +137189,14 @@ bcr bdM bfh aYZ -bdQ +oxJ bjt blj aYZ bop -tmq -bIX -pcY +npJ +xGb +bKt aaa abj aaa @@ -136829,8 +137225,8 @@ ckp clL bUT bSE -bqr -suU +cqn +ado csK cEs cwT @@ -136841,7 +137237,7 @@ cCF cEr cEQ cIT -tmq +ckv cHG cJa dau @@ -136986,30 +137382,30 @@ aaa aaa aaa adN -adb -adb -adb -adb -grB -grB -adb -grB -grB +ovL +ovL +ovL +ovL +doS +doS +ovL +doS +doS ahz -grB +doS aio aiH aiX ajy -grB +doS pHg -grB -grB -adb -grB -grB -adb -adb +doS +doS +ovL +doS +doS +ovL +aAr anp jOW aoo @@ -137029,7 +137425,7 @@ aAy aGq uLH aUy -aFH +qbI aFA aGz aHN @@ -137054,10 +137450,10 @@ aYa aYC blk aYZ -boo -tmq -bhX -bsv +rnb +npJ +fwU +kgl abj abj abj @@ -137098,7 +137494,7 @@ cEr cEr cEQ cIT -tmq +ckv cHG cIW cND @@ -137161,7 +137557,7 @@ dIx dIx dIx dIx -dIx +uil abj aaa aaa @@ -137245,27 +137641,27 @@ add add adL aey -grB +doS afc -adZ -adZ -agg -aip -agA -adZ -adZ -adZ -adZ -adZ -adZ -adZ -adZ -aip -agA -agg -adZ -adZ -amz +dWL +dWL +pvQ +ffG +rJF +dWL +dWL +dWL +dWL +dWL +dWL +dWL +dWL +ffG +rJF +pvQ +dWL +dWL +gpy amL ant anO @@ -137285,7 +137681,7 @@ axe axe axe axe -aVY +jjD aWa aFA aFA @@ -137311,10 +137707,10 @@ bhK aYE bll bmZ -boo -tmq -bIX -pcY +rnb +npJ +xGb +bKt aaa abj aaa @@ -137343,7 +137739,7 @@ bWT clN cnr bSE -bqr +cqn crw csK ejB @@ -137355,7 +137751,7 @@ cCH cEr cER cIT -tmq +ckv cHG cIW cKA @@ -137416,10 +137812,10 @@ dSo dKP dTh sYX -vJP +dVb jJq -kdg -xRm +dVb +acF acF aaa aaa @@ -137503,28 +137899,28 @@ adO aed aez aeP -afh -aea -aea -aea +jpa +qGl +qGl +qGl agJ ajZ ajZ ajZ ajZ -cMP +nEp ajZ ajZ ajZ ajZ -ahg +pfO ajZ ajZ ajZ ajZ -amA +gVk amM -anu +wvH alx aop aop @@ -137543,7 +137939,7 @@ axe aEO axe pdL -aFH +qbI aFA aGA aMg @@ -137570,8 +137966,8 @@ blm bmZ boq bqq -bIX -pcY +xGb +bKt aaa abj aaa @@ -137671,11 +138067,11 @@ dPM dPM dkq dSs +dSP +dSB dIH dIH dIH -uil -dIH abj aaa aaa @@ -137759,27 +138155,27 @@ add add adL aeA -grB +doS afj -aeb -aeb +blc +blc agh agC -aeb -aeb -aeb -aeb -aeb -aeb -aeb -aeb -aeb -agB +blc +blc +blc +blc +blc +blc +blc +blc +blc +whp alt aly -aeb -aeb -amB +blc +vmP +tIM amL ant ait @@ -137799,8 +138195,8 @@ aBt axe aFy axe -aRW -aFH +sQZ +qbI aFA aGB aMi @@ -137825,10 +138221,10 @@ bdQ aYE blo bmZ -boo -tmq -bIX -pcY +rnb +npJ +xGb +bKt aaa abj aaa @@ -137857,8 +138253,8 @@ cks clP cnt bSE -cpT -cvE +boo +bwm csK cvz cxQ @@ -137869,7 +138265,7 @@ cEr cEN csK cES -tmq +ckv cHG cIW cKC @@ -137927,11 +138323,11 @@ dKo dKo dKo dKo -dSB +dXJ +dKo +dUj +kdg tSp -dXK -dIH -dIH dIH abj aaa @@ -138014,32 +138410,32 @@ aaa aaa aaa adN -adb -adb -adb -adb -grB -grB -adb -grB -grB +ovL +ovL +ovL +ovL +doS +doS +ovL +doS +doS ahA -grB +doS aio -aiI -aiI +ndb +ndb ajy -grB +doS ahA -grB -grB -adb -grB -grB -adb +doS +doS +ovL +doS +ovL +ovL amN ant -anP +anL xVF apf aqg @@ -138056,8 +138452,8 @@ vtq aAB azq axe -aVY -aFH +jjD +qbI aFA iIC aMg @@ -138083,9 +138479,9 @@ aZk bln aZa pYl -tIa +kEN bsj -bsv +kgl abj abj abj @@ -138115,7 +138511,7 @@ bSE bSE bSE cpU -cvE +bwm csK cDs cvB @@ -138126,7 +138522,7 @@ cBm cCK csK cET -tmq +ckv cHG cIW cMn @@ -138186,8 +138582,8 @@ dNa dKo dXJ uaj -dUj -dSP +dKo +dKo dUT dIH abj @@ -138279,22 +138675,22 @@ aaa aaa abj aaa -grB +doS afb -grB -grB -grB -grB -grB -grB +doS +doS +doS +doS +doS +doS afb -grB +doS aaa abj aaa aaa aaa -adb +aAr ant anP aop @@ -138313,8 +138709,8 @@ azr aGo aHX axe -aVY -aFH +jjD +qbI aFA aGD aHP @@ -138339,10 +138735,10 @@ bhR bjw bnc bmZ -boo -tmq -bIX -pcY +rnb +npJ +xGb +bKt aaa pTv quW @@ -138370,9 +138766,9 @@ ciF bYv aaa aaa -dER +bsv nBO -cvE +bwm csK csK xPb @@ -138383,7 +138779,7 @@ csK csK csK cEU -tmq +ckv cHG cJa cKF @@ -138424,7 +138820,7 @@ dfu dEU dFv dGl -dGS +dcV dHT dIJ cWH @@ -138536,24 +138932,24 @@ abj abj abj abj -grB +doS ahA -grB +doS abj aaa aaa abj -grB +doS ahA -grB +doS abj abj abj abj abj -grB +dGS ant -anP +anL aop aop fih @@ -138571,7 +138967,7 @@ aAC aCw aFQ bck -aFH +ohu aFA aGE aIZ @@ -138596,10 +138992,10 @@ bli bdQ bne bmZ -boo -tmq -bIX -pcY +rnb +npJ +xGb +bKt aaa mBN bxm @@ -138639,8 +139035,8 @@ czJ cBn cCL tzC -cEL -tmq +czY +ckv cHG cJa cKF @@ -138681,7 +139077,7 @@ dfu dEV dVx dGl -dGS +dcV dHT dIJ cWH @@ -138808,7 +139204,7 @@ aaa aaa aaa aaa -adb +aAr ann anQ aou @@ -138816,19 +139212,19 @@ api apZ aqU asA -asY +neb asY awh avb awi -aoA +wyS axe aCP aAD axe axe aAz -aFH +qbI aFA aGF aIZ @@ -138853,10 +139249,10 @@ bdQ bdP bQy bmZ -boo -tmq -bIX -pcY +rnb +npJ +xGb +bKt aaa mBN bxn @@ -138882,11 +139278,11 @@ cfG chl ciH bYv -dER -dER -dER +bsv +bsv +bsv cpX -cvE +bwm euc oHh eIG @@ -138896,8 +139292,8 @@ czK cBo cCM qih -cEL -tmq +czY +ckv cHG cIW cKG @@ -138938,7 +139334,7 @@ dfu dEW dFx dGl -dGS +dcV dHQ dLD dST @@ -139065,11 +139461,11 @@ aaa aaa aaa aaa -grB +dGS anl anR -asB -apu +oTa +dhh aqX asB asi @@ -139084,8 +139480,8 @@ azt aAE aIQ axe -aAz -aFH +bPt +qbI aFA aGG aHR @@ -139111,9 +139507,9 @@ bdQ bQy aYZ fJp -tmq -bIX -pcY +npJ +xGb +bKt aaa koT bxo @@ -139154,8 +139550,8 @@ cyk cyk gyY cEV -tmq -cHG +dLT +gPh cIW cKH cMn @@ -139195,7 +139591,7 @@ dfu dBR dFa dGl -dGS +dcV naN dIH dXC @@ -139322,10 +139718,10 @@ agE agF agE aaa -grB +dGS ant anT -aow +vYz apj aqa aqV @@ -139367,10 +139763,10 @@ pzT pzT aYZ bna -boo -tmq -bhX -bsv +rnb +npJ +fwU +kgl abj bwf bxp @@ -139397,21 +139793,21 @@ bYv mTf bYv clS -ckv -ckv -cqc +tmq +tmq +cqo pBe csP cub -cvE +bwm uKf cyk czM cBp cCN cxa -cEL -tmq +czY +ckv cHH cJb cKI @@ -139438,9 +139834,9 @@ sAy dfo dqp drK -dce -dce -ddJ +ank +ank +xoT dql dql dql @@ -139452,7 +139848,7 @@ dfu dHT dcV hTr -dWL +dcV xPQ dIK dQI @@ -139579,7 +139975,7 @@ alv alH agF aaa -grB +dGS ant anT joU @@ -139589,7 +139985,7 @@ aqW asj aqW atC -adb +wKI axF awl ayx @@ -139598,7 +139994,7 @@ bhO bhO bhO bhO -aAz +hsE aFH aWq aGH @@ -139611,23 +140007,23 @@ bhO bhO bhO aRW -aWl +bjA bhO bhO aZd baU bfp -aWq +bhO bjA bhO bhO bhO bhO byN -boo -tmq -bsm -pcY +rnb +npJ +hBw +bKt aaa uqG bxq @@ -139651,56 +140047,56 @@ cca cfK cfK qub -csW -csW +cFa +cFa clS -ckv -ckv -cqc +tmq +tmq +cqo crE -csQ +bZU cuc -cvE +bwm cxa cyl czO cBr cCO jdz -cEL -tmq +czY +ckv cHI dEm -cVA -cVA +wkV +wkV cNN -cVA -cVA -cVA +wkV +wkV +wkV cTV -cVA +wkV clA -cVA -cVA -cVA -cVA -cVA +wkV +wkV +wkV +wkV +wkV dft dgC diu dnC -doS dnC -dHT +dnC +yal dgC -dft +mNM drL cVA cVA cVA cZR doY -dgC +wiE doY doY doY @@ -139708,8 +140104,8 @@ dDb dXj dHT dcV -dGU -dGS +hTr +dcV fOr dIH aKM @@ -139836,7 +140232,7 @@ alw alH agF aaa -grB +dGS ant anU lML @@ -139846,10 +140242,10 @@ aqW arP aqW atD -adb +wKI juJ awm -aAr +asB aBj azv aAG @@ -139884,7 +140280,7 @@ bMa bot bqt bsl -pcY +bKt aaa omg bxr @@ -139909,15 +140305,15 @@ cdN cfK fnc ciL -dLT +dUU clT -dLT -dLT +dUU +dUU cqb crF csR cud -cvF +bsm cxa rUS czN @@ -139928,15 +140324,15 @@ cEW cGA cHJ dEl -doZ -doZ +jBj +jBj cNO cPy -doZ -doZ -doZ -doZ -cnV +jBj +jBj +jBj +foc +dGU doZ doZ doZ @@ -139950,15 +140346,15 @@ cnV doZ doZ doZ -dfB -doZ -doZ +tiQ +vyO +kGA neQ -doZ +pIn dwt -doZ -doZ -bJH +pIn +kRp +pIn pIn dBP dDc @@ -140093,7 +140489,7 @@ alv alH agF aaa -grB +dGS ant anT wEA @@ -140103,17 +140499,17 @@ aqW asj aqW atE -adb +wKI roR awn -ayy +sAB aBU -aEF -aTa -aEF -aRK +pmR +bwh +pmR +fob cyT -aEF +pmR aFC aGJ aJc @@ -140121,17 +140517,17 @@ aKw aKw xCH aRH -aEF +pmR aoZ -aRK -aEF -aSe -aEF +fob +pmR +pmR +pmR aJc -aEF -aEF +pmR +pmR bgx -aSe +gVm bhY bhY blq @@ -140139,9 +140535,9 @@ bhY foX bMb bov -bsg -bsm -pcY +hgo +hBw +bKt aaa jQN bxs @@ -140165,23 +140561,23 @@ ccc cdO cfL mTf -czY -czY +cEL +cEL cEK -ckv -ckv -cqc +tmq +tmq +cqo crG -csS +bFM cue -cvG +bIX cxa cyn czQ cBt cCQ siG -cFa +csW cGB cHK dEm @@ -140190,31 +140586,31 @@ cRh cNP cRh cRh -cmn +cJY cTW -cYC -cXd -cYC -cYC -daO -cYC -cYC -dgw -cmn -cmn +tGE +cJY +uhM +cJY +cJY +cJY +oRy +dsI dle cJY +cJY +psT +cJY dmh +cJY +kEt dpa +hUE dpa -dsI -drM -dpa -ghJ -cTW +etR dwu -dxF -diw +cmn +cmn dQr dBj dBQ @@ -140350,17 +140746,17 @@ agE agF agE aaa -grB +dGS ant anT aoA -apk +tCW aqe asE arO asE atF -apj +jOL avg aBm axk @@ -140396,9 +140792,9 @@ bfq bdU bnd bov -bsg +hgo bsn -bsv +kgl abj bwf bxt @@ -140425,21 +140821,21 @@ bYx gFD bYx clU -ckv -ckv -cqc +tmq +tmq +cqo crH csT cuf -cvG +bIX uKf cyk czP cBs cCR cxa -cFa -tmq +csW +ckv cHL cJf hjK @@ -140449,33 +140845,33 @@ cPA ppu hjK rOW -cVD cXe -cVD cXe -daP -dcf -ddK -dfv -dfv -lXe -dfv -dnI -dfv +cXe +cXe +cXe +cXe +cXe +cXe +cXe +cXe +cXe +cXe +eEq dmi -qvx +dta dmi -dce -drK -duk -duk -duk -oDN -duk -duk -duk +ank +stF +ank +dfu +dfu +dfu +dfu +dfu +dfu dBJ -dDa +dfu dfu dFb dFB @@ -140486,7 +140882,7 @@ jpk dJG dKo dKo -dLG +vHF dVp dKp pGr @@ -140599,7 +140995,7 @@ aim aim aim aim -ahV +xPh ahC akA agE @@ -140607,20 +141003,20 @@ aaa aaa aaa aaa -grB +dGS ant anT -aea +eDE aeJ aea aea ask aea aea -aeJ +orG aea awo -ayy +sAB ayA azx aAJ @@ -140653,9 +141049,9 @@ bjC bls bfq bov -bsg -bwm -pcY +hgo +uGT +bKt aaa mTy bxu @@ -140695,8 +141091,8 @@ czR cBo cBo eNm -cFa -tmq +csW +ckv cHK ppu cKM @@ -140704,35 +141100,35 @@ cMo wAW mTs cRj -cSx -rOW -qOu +wzF +lBx cXf +qaC cYD -cXe -cVD +kXH pLJ cVD -dgD +xsh +uxv dgF dkY dkZ dnJ -dfv +eEq dqi drH dmi fLI pfg -duk -dvs -dvs -dxH -dvs -dvs -duk +dmi +dmi +jcP +dDk +xid +dDk +dDh dQs -dfu +jXz dfu dfu eQu @@ -140864,7 +141260,7 @@ aaa aaa aaa aaa -adb +aAr ans lpL aoB @@ -140910,9 +141306,9 @@ bfu blt bfq bov -bsg -bwm -pcY +hgo +uGT +bKt aaa nWi bxv @@ -140938,11 +141334,11 @@ cfN chr ciP bYx -dER -dER -dER +bsv +bsv +bsv cqe -cvG +bIX euc xrW eIG @@ -140952,42 +141348,42 @@ czS cBo cCS qih -cFa -tmq +csW +ckv cHK ppu cKN -cSs +nQF cNS +kts +ktT nQF -wiR -cSy -cTY -cVF +mTs +rwZ +cZF cXg -cYE -cZD dbd dch ddZ -dgD -dgG +uwR +cXg +xOd diy dlf dpf -dfv +eEq nJz dpd -dqr +ueo drO dsO -duk -pzp -tdC -dxH -tdC -dAd -duk +uxq +dmi +svB +dDm +dEo +uud +dDm dBL dDg dEo @@ -141121,9 +141517,9 @@ abj abj abj abj -grB +dGS ant -anP +anL aoC aoC hTD @@ -141167,9 +141563,9 @@ bfu blu bhU bov -bsg -bwm -pcY +hgo +uGT +bKt aaa nWi bxw @@ -141209,47 +141605,47 @@ czT cBu cCT tzC -cFa -tmq -pnF -byb -jBy +csW +ckv +cHK +cJh +rQz eAi -cNT cPD -cRl -cSz -rOW -cZE +cPD +uFH +nQF +mTs dat -dax +cZF +cXg cXg dcg dcs dfq -dgD +tsp dgH diz dmk dpg -dfv +eEq dYb -dpe +drX dqs -drP +drX dsP ssz -dvu -dwx -dxJ -dyW -dAe -duk +dmi +dEo +dEo +dEo +dEo +kPL fIv dDh -dEp -abj -abj +lHK +aaa +aaa abj abj abj @@ -141364,21 +141760,21 @@ aaa aaa aaa grB -afb +pMq grB grB grB grB grB grB -afb +pMq grB aaa abj aaa aaa aaa -adb +aAr hbv als aoC @@ -141400,7 +141796,7 @@ jkv wnt eOG aFF -gWP +rnp uJC ibg aKy @@ -141424,9 +141820,9 @@ bfu blu bhU bov -bsg -bwm -pcY +hgo +uGT +bKt aaa mSV quW @@ -141454,9 +141850,9 @@ ciR bYx aaa aaa -dER +bsv tlB -cvG +bIX csV csV oVl @@ -141467,45 +141863,45 @@ csV csV csV cEY -tmq +ckv cHK cJh rQz -npp +rqw cNU cPE -xkE -mTs -etk -cVH +fTe +gDM +dEg cXh +wOk cYF -dlW -ctb -cXg +daW +daW +xBR ddN -dgD -dfv +hSe +fbX nlo -dfv -dfv -dfv +fsR +vWI +eEq hCW -dYi drX drX +ouk dsQ -duk -dvv -tdC -dxO -tdC -dAf -duk -dBV +uFz +dmi +oBK +sDL +mhG +dEo +dDh +pht dCb -dEp -aaa +dEo +abj aaa aaa aaa @@ -141626,18 +142022,18 @@ grB pWw tRa ajd -ajy +sWI grB ahF grB grB -adb +slc grB grB -adb +slc amN ant -anP +anL jJl apm arM @@ -141683,7 +142079,7 @@ bdU hmg gFa bML -bsv +kgl abj abj abj @@ -141713,7 +142109,7 @@ cht cht cht ygv -cvG +bIX csV cxe cvK @@ -141724,45 +142120,45 @@ cBw cCV csV gaZ -tmq +ckv cHK ppu cKP -npp +iBC cbr hsQ -cha -cSB -cUb -cVI -cXi -cYG -daU -daU -cvU -ddO -uKw +ecX +tRn +tDw +cXe +cXe +xzZ +nqn +lEa +ern +cXe +cXe dgT -djW -dmn +fsC +cXg dqt -igV +eEq dYd -dYj +qTJ dYl drR dsR dum -dvw -dvw -dxO -dvw -dvw -duk -dCd -dDj +dmi +aNB +ntG +myx +wZK +dDh +qLt +dCb dEo -aaa +abj aaa aaa aaa @@ -141879,18 +142275,18 @@ aaa abj grB aip -afJ -adZ -adZ -adZ -adZ -adZ +vrP +aip +aip +aip +aip +aip +xHN aip -adZ agA alG -adZ -adZ +aip +aip amz amL ant @@ -141938,9 +142334,9 @@ bfu blu bhU bov -bsg -bwm -pcY +hgo +uGT +bKt aaa abj aaa @@ -141970,7 +142366,7 @@ clW cmX cht ygv -fmE +hQe csV cul cxh @@ -141981,43 +142377,43 @@ cBv cCW csV cEZ -tmq +ckv cHK ppu -cKQ +cKP npp -ncT +nQF lee -ckJ -mTs -myR -cZF -cXg -cpJ -cXg -cXg -cXg -ddP -dfx -dfy -dfy -dfy -dfy -dmi +pWh +frO +tDw +vzF +oUw +eNw +daY +sAl +jRZ +rPa +cXe +fQh +llD +daW +sOP +eEq dnK -dmi +hrt fZV -dsN -dsS -duk -tdC -tdC -dxO -tdC -dXq -duk -dCd -dDk +dmi +dmi +dmi +dmi +dfy +dfy +wuT +dEo +dEo +pht +dDh lHK abj aaa @@ -142136,21 +142532,21 @@ aaa aaa grB aFB -ajZ -ajZ -cMP -ajZ -ajZ -ajZ -ahg +fiu +fiu +vcE +fiu +fiu +fiu +giE kLd kNa kNa kNa ahi -amA +fPG amM -anu +wvH anX aoC aoC @@ -142196,8 +142592,8 @@ blu bhU box bqx -bwm -pcY +uGT +bKt aaa abj aaa @@ -142237,46 +142633,46 @@ czV cBy cCX xph -cFa +csW qZt ukK cJi cKR -cMr +npp qZV -cPH -ckJ -cSD -cTY -nHh +cSs +pWh +sfu +kXM +hZK cXj -cYH ddV -daW -daW -ddQ -dfx -dgI -fFP -ngL -dlg +cMq +pwS +tLO +pwS +cXe +cXe +cXe +mKR +cXe +eEq dmi -dnL -dpi -dqw -drT -dsT -duk -dvw -dvw -dxO -dvw -dvw -duk -fIv -dDk +jqi +dmi +dmi +jQv +dyW +nsl +itA +udS +tXs +dfy +dDh +kHj +dDh dEo -aaa +abj aaa aaa aaa @@ -142394,16 +142790,16 @@ aaa grB aec akb -aeb -aeb -aeb -aeb +bld +bld +bld +bld akb -agB +bld inH xyI ivG -xyI +pCM rQS amB amL @@ -142452,9 +142848,9 @@ bfu bly bfq bov -bsg -bwm -pcY +hgo +uGT +bKt aaa abj aaa @@ -142484,7 +142880,7 @@ clY cnA cht sor -cvG +bIX csV cuX cCX @@ -142494,44 +142890,44 @@ cBv pLm dte csV -cFa -tmq +csW +ckv cHK ppu -cKS +uTD npp -ncT +qZV giz -ckJ -cSE -rOW -cXe -cXe -cYI -cXe -nqn -psr -unp -dfx -dgJ -diB -djY -doF -dmi -dnN -dpj -dqx -drU -dsV -dum -pzp -tdC -dxO -tdC -dAh -duk -dBX -dDl +pWh +rMG +kXM +pxD +ddV +cMq +etT +pwS +tLO +pwS +cSA +gQS +kyN +wGT +sgr +sty +qTl +tMJ +tby +gQS +ooq +tHx +hSO +hSO +hSO +ioN +dfy +dDh +qLt +qMz dEo aaa aaa @@ -142648,17 +143044,17 @@ aaa aaa aaa aaa -adb -adb -adb +slc +slc +slc aeM -adb -adb -adb -adb -adb +slc +slc +slc +slc +slc mqP -adb +slc axm axm awY @@ -142709,9 +143105,9 @@ bfu wVi bfq bov -bsg -cvW -bsv +hgo +tmJ +kgl abj abj abj @@ -142751,46 +143147,46 @@ cCX cBC cDa csV -cFa -tmq +rfw +ckv cHK ppu -jhM -npp +cMt +kWZ oyG oAd -ckJ -los -kXM -cVM -cXm -cYJ -tDw -daY -dcm -ddS -dfy -dgK +iQz +rMG +wyn +cMq +cMq +gJC +sMp +bqy +tLO +oMI diC -dka -dli -dmi -doa -dpk -dqz -drV -dsZ -duk -dvw -dvw -dxO -dvw -dvw -duk -dBY -dDh -lHK -abj +vBu +dWP +dWP +dWP +oiF +fWX +eEf +hZH +xib +sDN +xdN +tWK +oON +smG +gAR +dfy +dtR +pht +lQl +dEo +dEo aaa aaa aaa @@ -142906,11 +143302,11 @@ aaa aaa aaa aaa -adb +slc aeC -aeN +hhG aff -adb +slc afk afz agp @@ -142965,10 +143361,10 @@ bgH bjF ova bdU -boy -bsg -bwm -pcY +ozR +hgo +uGT +bKt aaa abj aaa @@ -142998,7 +143394,7 @@ cma cnB coG wat -cvG +bIX csV csV wUm @@ -143008,47 +143404,47 @@ wUm iFr stt csV -cFa -tmq -cHO -cJj -cKU -cMs -cNV +jdr +dLT +njU +cJh +nCu +rqw +fQt cPI -ckJ -xDF -kAB -cVN -cXn -mTs -ppu -cKO -cMq -kDC -dfz -dgL -diC -dka -dlj -dta -dnO -dpl -dqz -drW -dsW -duk -tdC -tdC -dxO -tdC -tdC -duk -fIv -dDk +haj +oZf +wuc +cYO +cYO +dvV +erg +sbz +utn +mZL +kho +iaU +kHJ +kHJ +oqo +kzd +iwE +tBX +fac +gQS +ooq +wHU +xSf +ooq +ooq +eRi +dfy +eeX +pht +dDh +dDr dEo -aaa -aaa +abj aaa aaa aaa @@ -143163,11 +143559,11 @@ aaa aaa aaa aaa -adb +slc aeK aeQ aeK -adb +slc afl afB agq @@ -143210,7 +143606,7 @@ aJd aJd aGK ayD -olz +qVF jKE ayD bbe @@ -143223,9 +143619,9 @@ bbi bbe bbe boz -bsg -bwm -pcY +hgo +uGT +bKt aaa abj aaa @@ -143255,7 +143651,7 @@ cmb cnD cht sqO -cvG +bIX uaS csV cxl @@ -143265,47 +143661,47 @@ cCX cBC cCX csV -cFa -tmq -cHN -cJh -nCu -npp -cbH +csW +ckv +jfG +ppr +hdI +rsV gIn -ckS +gIn +sIv xDF -ioK -xkE -cXo -cYL -hIk -ctr -dco -qNS -dfz -dgM -mZY -dkb -dlq -rti -dpm -dpm -dqA -cKE -dsX -duk -dvw -dvw -dxO -dvw -dvw -duk -dBZ -dDm -dEo -aaa -aaa +kXM +fhh +iRF +cMq +gfB +cMq +cMq +lDF +tox +eLc +bka +bka +bka +jlL +bka +dDz +kSO +gQS +uGj +lGx +pBJ +ooq +ooq +ixk +dfy +dDr +iRs +syt +dDk +xFW +abj aaa aaa aaa @@ -143420,11 +143816,11 @@ aaa aaa aaa aaa -adb +slc aeL afa aeL -adb +slc afm afC agH @@ -143480,9 +143876,9 @@ bjG blB bbe boy -bsg -bwm -pcY +hgo +uGT +bKt aaa abj aaa @@ -143512,7 +143908,7 @@ cmc cnE xmE ygv -cvG +bIX rVL csV cvQ @@ -143522,44 +143918,45 @@ cAb cBD cDc csV -cFa -tmq +csW +ckv cHN ppu cKW nQF -cNS -cRk +nQF +nQF nQF xDF -ctD -cVO +kXM +qTB cnX -xDF -ppu -daZ -dcn -ddU -dfz -dgN -diE -dkc -dll -dta -dnQ -dpn -dqB -dpn -dsY +iRF +cMq +cMq +cMq +hbt +cSA +vBu +dWP +dWP +dWP +dWP +dWP +dWP +woM +mXA +dfy +tod +duk +dvI +efS duk -eTI -dwB -dxO -lsu -bju duk -dCa -dDk +duk +duk +mbh +dDm lHK abj aaa @@ -143630,7 +144027,6 @@ aaa aaa aaa aaa -aaa "} (170,1,1) = {" aaa @@ -143737,9 +144133,9 @@ bjH blN bbi bov -bsg -ado -bsv +hgo +pnr +kgl pcY pcY pcY @@ -143769,7 +144165,7 @@ cmd cnG cht ygv -cvG +bIX nSv csV eXJ @@ -143779,44 +144175,45 @@ mhU cDf cDf csV -cFa -tmq +csW +ckv cHN ppu cKX -cMt +nCu cNW -rMG -los -dqO -kXM -cVP -cXp -cYM +vXU +qqT +xDF tDw -nOu -dqW +heQ +hZK +abD +rAD +lVJ +cKV +hbt cSA -dfy -dgO -diF -dkd -dlm -dmi -dnR -dpo -lzD -drZ -dtf +gQS +xLM +uMa +sPf +sPf +sPf +sPf +vMD +mXA +rzH +fGW duk -dvA -dvt -dxQ -dvE -dAk +eHD +jlw +vkP +wZb +iis duk -teL -dDh +eMA +vjj dEo aaa aaa @@ -143887,7 +144284,6 @@ aaa aaa aaa aaa -aaa "} (171,1,1) = {" aaa @@ -143994,12 +144390,12 @@ bfA bnf bNB cpO -bsg +hgo bsr -bsv -bxi -bxi -bvV +kgl +nLs +nLs +eyl bwf dnr snE @@ -144026,7 +144422,7 @@ cht cht cht vAP -lcJ +bSz csV csV csV @@ -144036,43 +144432,44 @@ csV csV csV csV -cnO +lXi tIa njo -hjK +lpI +dfv +dfv +dfv +dfv +ppu +nOp tDw -kXM -pJc -xyC -kXM -hjK tDw ppu -rXc ppu tDw -cKO -dqW -dlh -dfA -dfz -hRZ -nBz -dfz -dmi -dta -dta -dta -dta -dta +tDw +ppy +lkb +oGw +mXA +gQS +gQS +mMp +mMp +mMp +gQS +gQS +mXA +qej +mUR duk -dvB -dwC -dxO -dwC -dAl +jeS +dxH +tfY +leb +dXg duk -dCc +eMA dDh dEo aaa @@ -144144,7 +144541,6 @@ aaa aaa aaa aaa -aaa "} (172,1,1) = {" aaa @@ -144251,85 +144647,86 @@ bjI bnh dCY bov -bsg -bwm -coE -bwm -bwm -bwm +hgo +uGT +sFH +pSh +pSh +pSh bza bEo bCC bqv bEo bHA -bwm -bwm -bwm -bwm +pSh +pSh +pSh +dLL coE -bwm +wBx bVc -bwm -bwm -bwm -bwm -bwm -bwm -bwm +wBx +wBx +wBx +rkF +oyz +mQc +wBx ciV -bwm -bwm -bwm +wBx +wBx +wBx coE -cqn -bwm -cFa +scp +pLA +epO cun -cFa +epO cxm cyz -cFa -cFa -cFa -cFa -cFa -tmq +epO +gfR +ujS +epO +epO +hIZ cHP -dWP -cKY +dfv +dEa hFR cNR -cPL -cRn -cKO -cUe -ckg -cMq -cKO -cZJ +dfv +jMD +lad +mzz +rsY +fol +gLD +qrn +tDw cKO -don +hbt cSA -dgx -cSA -diJ -dkf -dqE -dmp -dqE -cSA -dqE -dsb -dtb +bUE +qAe +rKU +jGH +jGH +jGH +jGH +tZI +bUE +vbB +gzi duk -dvC -dvt -dxS -dww -dAi +cLL +dxH +tfY +xCE +tZV dBk -dCd +bLv dDk lHK abj @@ -144401,7 +144798,6 @@ aaa aaa aaa aaa -aaa "} (173,1,1) = {" aaa @@ -144509,88 +144905,88 @@ blF bbe jjp dog -tmq -tIa -tmq -tmq +npJ +kEN +uHV +uHV uhI -tmq -tmq +uHV +dcz bCD bsg -bFM +wjN bqu -tmq -tmq -tmq -tmq -tIa -tmq +uHV +uHV +uHV +uHV +oAm +lmQ bVd -tmq -tmq +lmQ +lmQ bYF -tmq -tmq -tmq -tmq -tmq -tmq -tmq -tmq -tIa -cqo +lmQ +iNB +lmQ +lmQ +nYW +lmQ +lmQ +lmQ +oAm +wvz crS nAC -tmq +hIZ rfW -tmq -tmq -tmq -tmq -cDd -tmq -tmq +hIZ +hIZ +hIZ +gkl +wRp +hIZ +hIZ cGD kCi liC -cKY +omT cMv cNY -cPM -mVA -cSH -cSH -cki -cYO -cYO -cYO -dbb -dcr -ddX -dgy -dgQ -diI -qjS -dqF -dKV -dgQ -sqq -dqF -dqF -dtc -jUF -dvD -dwE -dxT -dzg -dAn +dfv +kWL +nQF +nQF +cMp +nQF +yaM +npp +ppu +cKO +hbt +cSA +fNP +rod +dGm +rod +wFp +qQE +rod +xVu +bUE +vOe +git +duk +wAG +rEP +tkI +vPD mkS -dCe -dDk +duk +mbh +fFU dEo -aaa -aaa +abj aaa aaa aaa @@ -144712,7 +145108,7 @@ aaa ofi ofi tSB -ofi +jEE ofi abj akB @@ -144766,88 +145162,88 @@ bbe bbe boC bqA -efA -oIT -efA -efA +qOr +jpm +uLr +uLr bxz bzb -efA +jid bCE fTq bHm bHC -efA +uLr qjT -efA +uLr bPc oIT bSU bVe bXa -oRD +iJi cau -oRD +iJi eEG cfS cnw cnC -oRD +iJi pOw -oRD +iJi mWz cqp crT efA cuo -oRD -oRD +uOC +uOC cyA +uOC oRD -oRD -oRD -pOw +dRc +fca cFc aBd cHQ -qFy -cKY -cMw -cKV -cKV -aMw -cKV -cUf -cRo -cKV -cKV -cKV -cKV -ctd -cSF -dil -cSF -cSF +dfv +nCA +dgG +wdS +dfv +mja +nQF +oRM +eKP +vsw +nQF +npp +ieX +cKO +kPl +hrX +oMd +mzT dld -cSF -dmr -cSF -dps -cSF -dsc -cRm +dlv +qtJ +hsp +pZM +xIH +sgM +irJ +kgC duk -cYN -dwF -dxU -dzh -tAl +lrh +dxH +dvt +dvt +nMf dBk -dBV -dDm +vVW +lXB xbW -aaa -aaa +abj aaa aaa aaa @@ -145023,15 +145419,15 @@ bni eNt vDt eNt -bsv -bsv +kgl +kgl pcY pcY bxA pcY pcY -bsv -bsv +vFI +vFI bgs bHD bgs @@ -145067,43 +145463,43 @@ cxn dFO cGF iWE -pDD -cYP -cYP -cYP -cPO -jEr -cPO -cYP -cYP -cYP -cJg -cJg -dci -ddM -dfr -cKY -cJg -czB -cEC -cJg -dms -jIb -jyM -kiK -dmt -grD -dmt -dmt -dmt -dmt -dmt -dmt -dmt -dBV -dDh +dfv +ouu +nBa +shb +dfv +moo +vIr +upg +lUd +eHZ +tEL +mtg +eQZ +mUB +lYp +cSA +bUE +wcu +oxK +erI +ieS +pmO +reD +hgR +duk +duk +duk +duk +sPs +jvD +dvt +rrv +ipS +duk +mbh +dDr lHK -abj aaa aaa aaa @@ -145297,7 +145693,7 @@ bNi bPd bLh bSW -bVg +aWl mrW bYH hvX @@ -145312,56 +145708,56 @@ cvu coI fRQ bYH -cEL +kiC cuu -bIX +nEw cxn cyB cAc cBE cyB cxn -cFd +bng hos -cmt -bMD +bng +dfv xLC iIY cOa -cPQ -cRp -cSI -cUg -aQo -cYP -cYS -cZL +xjD +hZO +vEY +vZa +nCu +leI +nQF +npp +ppu cKO -cFo -cSA -cJg -dgS -cMp -cFe -dFE -dmt -dnU -dpu -cKy -dsd -dul -dur -lpg -dwG -dUD -dVv -dWN -dmt +hbt +tQT +cYP +cYP +cYP +cYP +cYP +cYP +cYP +cYP +duk +amu +tYd +iQj +wLR +mAC +rNO +xzp +tfY dCf -dCb +mbh +dDh dEo -aaa -aaa +abj aaa aaa aaa @@ -145482,7 +145878,7 @@ aaa aaa aaa abj -khZ +adg abj abj aaa @@ -145554,8 +145950,8 @@ bNj bPe bQW bSX -bVg -bXc +aWl +iRk bYK cax cax @@ -145569,56 +145965,56 @@ cax cax cax bYK -cEL +nmt cuu -bIX +nEw cxn cyC cAd cBF qTi cxn -bDD -jsi -cmt -ffm -xLC -sak -cOb -cPQ -cRq -cSJ -cVQ -cVQ -cYP -cYR -cZL -cUn -dct -dea -cKY -dgU -diL -dkk -dlr -dmu -dnV -dpv -dqI -dse -dtg -dus -dvG -grD -dvG -dzj -dAp -dmt -dBY -dDm +cUM +buF +ezR +dfv +dgD +dgD +dgD +dgD +rOW +rOW +rOW +vtH +qys +pWP +lwY +tDw +jHq +hbt +cSA +xbI +mPF +oop +vuX +rzs +pUw +uWt +aeF +duk +jCu +vqu +dvt +dvt +kfx +hbl +hbl +ukN +duk +vVW +dDh dEo -aaa -aaa +abj aaa aaa aaa @@ -145736,7 +146132,7 @@ aaa aaa dij dij -aGW +sso dij abj adg @@ -145812,7 +146208,7 @@ bPf sJs bSY xLe -bXc +iRk bZi cax ccq @@ -145835,44 +146231,45 @@ bBk cAc cyD cxn -bEH -jKp -tNq -klh -mLt -bOK -cOc -cPR -cRr -cSK -cUi -cVR -cYP -cYS -cZL -cKV -cFo -cSF -cJg -dgV -diK -dkj -dls -dmu -dnW -dpw -dxW -dsf -dth -dut -dvH -qJv -dxW -dba -dXz +boG +mUz +cUM +boG +lGs +nEX +jJW +wkv +qlz +yhn dmt -dCd -dDh +dwG +dwG +dwG +dwG +dwG +iWG +nYi +kYE +jNY +cPQ +oop +cPQ +lYX +iNo +mpZ +iHR +duk +jfB +hbl +hbl +dvw +kfx +tdW +tdW +oVu +duk +mbh +dDk lHK abj aaa @@ -145943,7 +146340,6 @@ aaa aaa aaa aaa -aaa "} (179,1,1) = {" aaa @@ -146068,8 +146464,8 @@ bNl bPg bQW bSX -bVg -bXc +aWl +iRk bYK cay ccq @@ -146083,9 +146479,9 @@ cay cax cqr bYK -cFa +fiV cuu -bIX +nEw cxn cxn cAe @@ -146093,46 +146489,46 @@ cxn cxn cxn bng -cGI -bng -bng -bng -cYP -cYP -cYP -cYP -cYP -cYP -cYP -cYP -cUr -cUr -daZ -ctj -ddU -cKY -diG -dke -dlk -dmj -dmu -dnX -dpx -dvG -dsg -dti -duu -dvI -sVG -dvG -dzk -dAr +kjm +boG +boG +lGs +oyD +gwl +jiU +agZ +uPn dmt -fIv -dDr +nEb +pqM +tYQ +sCK +fMP +tpM +tKj +dkL +lnN +kJJ +ecP +dls +uXP +hon +uVH +yjA +duk +amu +qxa +dvs +qxa +kfx +dvt +dvt +kqn +duk +kkz +dDh dEo -aaa -aaa +abj aaa aaa aaa @@ -146325,7 +146721,7 @@ bTd bPh bLh bSX -bVg +mgM bXc bYH ccO @@ -146340,9 +146736,9 @@ ccq nfy cqr bYH -cFa -cuu -bIX +vTx +mTz +nVI cxn cyF bBu @@ -146350,50 +146746,50 @@ cEj cEj pWn cxn -buF +jVn boG -cJo -bRw -bng -cOd -cJL -cOe -qvU -uMN -cXq -cZM -sYw -cUr -cKO -cFo -cSA -cJg -dgS -cMp -cFA -dJE -dmt -dnY -dpy -dqH -dsh -dtj -duv -dvJ -dwG -dxY -dzl -dAs +boG +lGs +rYe +jin +lky +uWm +usf dmt -dCg +hLd +vAX +fNN +xiK +nRk +rXm +qRk +cSA +jNY +vYF +cYP +cAM +fJR +dnX +dpx +dvG +duk +nkC +rwM +tgr +gDy +pAZ +skW +skW +uxr +duk dDs +klS dEp abj -abj aaa abj abj -abj +aaa aaa aaa aaa @@ -146581,7 +146977,7 @@ bLn bLn bLn bLn -bTb +jpC bVi bXf bYH @@ -146609,40 +147005,40 @@ cDg cJl fPx cTa -cJp -bRF -bng -cOe -cPa -cOd -qvU -cUk -dcE -dcE -cZQ -dbu -cMq -cFo -dfE -cKY -cJg -czB -cFB -cJg -dms -jIb -uDd -kiK -dmt -sVG -dmt -dmt -dmt -dmt -dmt -dmt -dmt -cKY +cUM +lGs +lGs +lGs +pcr +tYs +pcr +dwG +kID +kNo +xIN +uJQ +dwG +cKO +hbt +cSA +lHs +kOj +cYP +cYP +oop +oop +cYP +cYP +duk +duk +duk +duk +dvI +qcR +dvI +dvI +duk +duk dDt cKY cKY @@ -146653,8 +147049,8 @@ dFG dFG aaa aaa -aaa -aaa +abj +abj aaa aaa aaa @@ -146856,7 +147252,7 @@ cqr bYH cnO qHK -bSz +vPo cxn cyH cAh @@ -146865,58 +147261,58 @@ cxn cxn cxn xQW -boG -boG +cUM +cUM bSe -bng -cJL -cQs -cQv -qvU -cTg -dcE +cMz +eCn +nqK +kQG +ewa +htc +vpa cZN -cZQ -dbu -cMq -ctd +lQs +uLc +dwG +cKO +hbt cSA -dgx cSA cSA -cHV -dgW dmv +xDT cSA -dpA cSA cSA +bfW cSA +xIm cSA -dtG -dwK +dmv dgW +wGz cSA cSA cJk dCh dDu dEr -dFc +tvL cTX -dLa -dLd -dLY -dIW -abj -lyl -lPv +hPM +eLU +xGo dFG -wuL dFG -aki -xzp -abj +sSu +dFG +sSu +dFG +dFG +aaa +aaa +aaa aaa aaa aaa @@ -147097,7 +147493,7 @@ bPj bLn bXD bVg -bXc +oIN bYH rML ccs @@ -147111,9 +147507,9 @@ cnK coM cqt bYH -cFa +fiV cuu -bwm +gvr cxn czU bBu @@ -147121,58 +147517,56 @@ cAf cDh cEo cxn -cUA -cMz -cMz -cMz -cMz -cMz -cMz +oDF +boG +cUM +ago cMz +kxj +hvf +uwm cSO -iqv -dcE -daa -dbi -dbs -dtF -dcv -ded -dgB -dgX -dgX -cVT -dxZ -dgX -dnZ -dpB -dgX -dgX -dgX -dgX -dgX -dgX -dxZ -dgX -dAt +hmM +xeb +dvZ +eOt +vZK +wxq +cKO +wDE +cSH +cSH +cSH +pFx +cki +cSH +xzV +cSH +kna +cSH +cSH +kDF +cSH +cki +kxH +cSH +cSH oYX -dCi +dgX dDv dbH dFd eQz -dLb -dLQ -dMa +dNu +nZk +gLq +dGw +mBy +hYe +dGw +qRW +gYJ dFG -aaa -wby -dMG -dLR -dMw -dNj -dRg -ldx abj aaa aaa @@ -147229,6 +147623,8 @@ aaa aaa aaa aaa +aaa +aaa "} (184,1,1) = {" aaa @@ -147264,7 +147660,7 @@ aaa aaa aaa dij -aGW +sso dij dij abj @@ -147352,9 +147748,9 @@ bLo bLp bPk bLn -bTb +emy bVg -bXc +oIN bYH caC cct @@ -147368,9 +147764,9 @@ cnL coN beB bYH -cFa +lxK cuu -bwm +gvr cxn czU bBu @@ -147378,58 +147774,58 @@ txW cxn cxn cxn -cUA -cMz -cJr -cLd -cMA -cOh -cPU -cRt +oDF +boG +cUM +rHr cMz -cUs -dcE -daa -cZp -deV -cKV -cwo +fuu +hvf +xcR +sbr +diN +sRh +ahm +svp +mKx +diN +cKO +hbt cSF -dil -nuu -diM cSF -dlu cSF -dqW +cPJ +dlu cSF +sbe +exQ cSF -dsi cSF -cMq cSF -diM +dQg +oXz dlu -cMq -hmC +cSF +cSF +cSF cKY -dCj -dDw +njq +dqW dEs dFe dFF -dLc -dLU -dMv -dIX -abj -dFG -dNi -hbU -dMx -dNk -dRh +tpR +rPH +pax +dGw +bBb +xRQ +dGw +bFY +ubP dFG +abj +aaa aaa aaa aaa @@ -147611,7 +148007,7 @@ bPl bLn bTb bVg -bXc +oIN bYH caD ccu @@ -147625,7 +148021,7 @@ cnM coO cqt bYH -cFa +fiV cuu cvW cxn @@ -147635,31 +148031,34 @@ cBL cDh cEq cDe -cUA +oDF +cUM +eHp +cjn cMz -xlF -cLe -cMB -cbI -cfw -cRu -oqj -cVS -cXy -cYV -cZO -dbt -deb -dcw -dux -cJk -cKY -cKY -cKY -dlv +bKW +hvf +xcR +tyQ +dwG +vdI +iWN +uec +xnr +dwG +oBh +hbt +cSF dCo -dof +npW +svX +npW +npW +dpt +dpt dCo +dCo +dpt cXJ cXJ cXJ @@ -147667,9 +148066,6 @@ cXJ cXJ cXJ cXJ -dSd -qcH -cXJ cKY rjE cKY @@ -147678,16 +148074,16 @@ cTX dFG fzd dFG +dGw +dqL +fbD +dGw +iKv +hWu dFG -aaa -gZj -dNW -dRf -dMy -dNl -dRi -wYZ -aaa +abj +abj +abj aaa aaa aaa @@ -147868,7 +148264,7 @@ bPm gow bTb bVg -bXc +oIN xan cei ccv @@ -147882,9 +148278,9 @@ cnM coM cqt bYH -cFa +fiV cuu -bwm +gvr cxn cyJ cAf @@ -147893,65 +148289,65 @@ cxn cxn cDe cUA +cUM +boG cMz -cJt -cLf -xKN -cOi -cMC -vjO -cOg -cVU -cXz -cpc -cZQ -dbu -cKV -cwp -duG -cKY -dgZ -paI -dyk -cKY -dmw -doh -dpJ -dqM -dCr -dtl -duz -dvL -nGL -cXJ -jkU -fVZ +cMz +kyr +hvf +sMA +teH +dwG +dwG +dwG +dwG +dwG +dwG +bYs +hbt +cSF +lqL +doj +dkl +doj +doj +wqd +rMm +aiL +uje +llV +jIB +fxA +oWC +ePv +eHg +hpD cXJ cSZ -dDE +oDF bng aaa -aaa dFG -kLu +kTY +gVn +jQA +dGw +xtU +kDH +dGw +kDH +xtU +dFG +dFG +oHT +xnL +eyb +dFG dFG -aaa -aaa -knd -dNX -dTu -dTv -dNm -dWS -knd abj aaa aaa aaa -aaa -aaa -aaa -aaa aaZ aaa aaa @@ -148125,7 +148521,7 @@ bPn gXp eOO bVl -bXc +oIN bYH caF ccw @@ -148139,7 +148535,7 @@ cnN coP cqu bYH -cFa +fiV cuv cvX cxn @@ -148150,62 +148546,62 @@ cDh cFb cFg ltY +boG +ezR cMz -cJu -cLf -cMC -cOj -cMC -cRv -sVV -cVU -cXA -dcE -cZQ -dbu -cKV -cwp -cSF -cJg -dhe -dwN -dkl -cJg -dmB -doh -dpJ -dqM -dEu -dtm -nRf -dvM -hLZ -cXJ -eha -hTW +wiD +tVV +hvf +hTe +wob +tRC +cOg +cSA +cSA +dgW +cSA +cKO +sln +sXV +vQm +ijt +crC +nhy +fod +lfZ +qRe +qZr +udE +dWY +wpJ +xAK +dWR +pWz +uDG +jPY cXJ cSY -dDy +wnk npb abj -abj -aki -dHc -lPv -abj -abj dFG -dNY +qBj +cBf wdL -dMz -dNn -dWT +dGw +ghG +sRC +pcJ +nEy +fga +dGw +fBU +lrT +ebB +wWX +xES dFG -aaa -aaa -aaa -aaa -aaa +abj aaa aaa aaa @@ -148407,63 +148803,63 @@ cxn cxn cFg bHf +bng +bng cMz -cJv -cLg -cMG -cOk -cPW -cRw -cMz -cVV -cXB -cYW -cZS -dbv -cKV -cwp +kcs +hvf +jIz +iwu +lJc +rLr +bTt +cSH +cSH +dcE +cSH +cSH +uXN cSF -elT -dhe -dwP -dzp -dly -dAg -doe -dpF -gRi -dHZ -dtn -duA -dAq -qgr -wqO -mko -dXw +lqL +doj +doj +doj +doj +oLH +lPJ +dBK +gua +doj +jIB +imY +rEs +lVA +fVZ +gap cXJ boG -dDE +oDF bng aaa -aaa -aki -dHd -lPv -aaa -aaa dFG -dXG -dPg -dQw -dfQ -dWU -dFG -abj -abj -abj -aaa -aaa -aaa +rEg +cBf +wdL +dGw +pFr +mfK +arQ +vFN +xHg +tTg +dNn +dWX +cBf +jBE +wdL +oWo +rEn +oTr aaa aaa aaa @@ -148664,62 +149060,62 @@ wTL cnP cFh ltY +ezR +ezR cMz -cMz -tWT -xHC -cMz -cMz -cMz -cMz -cWd -cWd -cWd -cWd -cWd -dbl -dcx -cwr -cJg -dhd -diN -dfC -cJg -dmB -doh -dpH -cXJ -dJk -dMi -duB -dMi -sAW -cXJ -xwk -xHj +qxT +kto +hvf +itX +xBq +aHg +cOg +jAP +xFI +dlu +cSF +cSF +esf +cSF +lqL +xhf +nhv +eMB +vPa +uMB +vfi +dBK +doj +dtT +jIB +bBV +lDO +npV +dfl +fxo cXJ dCm -dDD +cUA bng aaa dFG -dFG -ctw -dFG -dFG -dFG -dFG -dJW -aki -jsq -lPv +wro +cBf +wdL dGw -dFG -dFG -dFG -abj -abj -abj +dGw +tCf +tCf +tCf +dGw +dGw +hGZ +qgr +ezr +wWW +qfH +sRk +uNq aaa aaa aaa @@ -148808,7 +149204,7 @@ aaa aaa aaa aaa -aGW +sso abj ace aco @@ -148896,7 +149292,7 @@ nXf bLn bTh bVn -bXk +vjT bYN caH ccz @@ -148922,62 +149318,62 @@ cnP cFi cGM cmv -ctv -cLi -cOn +kGv +cMz +cMz +aKQ +hvf +pkg +fCT +cMz +aZE +cKY cWd -vEP cWd -cUl -cVW -cXC -cYX -cpK cWd -cKV -cwp -dXp -cKY -cKY -cKY -cKY +cWd +bRA +cWd cKY -dmz -dol -dpG -dAx +bzu +bzu +bzu dAx dAx dAx -dAx -dAx -dAx -dAx -yjn -dAx +gLm +ryz +ryz +dlz +dlz +pIs +dlz +dlz +cXJ +cXJ cSY -dDC +iKN bng abj dFG -dGt -dHf -dId -dNt -dJP -jUx -dLe +erE +cBf dOd -dMC -dOd -duO -dOG -dPj -dPS -dWX -dXd -abj -aaa +ghS +mJw +dLe +dLe +dLe +jhr +dGw +dJr +qJe +mrs +cEB +sAa +wkW +pqY +pDw aaa aaa aaa @@ -149179,60 +149575,60 @@ cnP cFj cGN boG -cJw -xWD -cMH -cWd -cRx -cWd -pDb -cXG -cXG -cYY -cZU -kit -cKV -cwp -cSF -cJg -dhd +aSu +lpX +cMz +hiZ +hvf +hvf +fCT +cMz +mzW +mVE +hxe +lUg +lTy +sSG +khM +fyn +bzu dhc dBp -cJg -dmB -doh -ntt -dAx -dJM -xgR -iFx -iKj -xKW -dAx -muK -ifj +gnh dAx +bss +ntt +qKk +itm +iGk +dlz +gPc +qft +eyG +dlz +iQK boG -dDE +boG +oDF npb aaa -aki -dGu -dHg -dIe -dIZ -dJQ -dej -dLf -dej -dMD -dOH -dOe -dOH -dPk -xCS -dWY -abj +dFG +xOG +adX +qTE +jGI +lXn +xCT +xTt +ncB +abM +vTs +vmp +tID +ipg +sMn +uUi +dFG abj aaa aaa @@ -149410,7 +149806,7 @@ bPr bsH rOn bVg -bXk +sUE bYN hiO ccB @@ -149434,64 +149830,64 @@ cBP jez cnP cFk -cGO +vhF cHZ -cJx -cLk -cMH -des -cSR +boG +jKY +cMz +jTJ +vGC +lFG +lpo +cMz +ezR +mli cWd -cUo -cVY -cXF -dlA -cZV -mHm -dlE -dcy -deh -gNS -dvR +mcY +kXO +mWe +xDk +rCv +bzu dxA dBt dbF -dmA -doi -dpI -wYm -dPn -dtq -soN -dvQ -nfo -ofA -dzm -dAu dAx +ueP +oAx +hXE +gMe +ffa +hRJ +hiT +lwo +rRw +dlz +iny +cSY cSZ -dDE +lvO bng abj dFG -dGv -dNv -dIk -dJe -dNv -dKD -dLg -dLX -dXi -dXi -dOf -dXi -dPl +dwz +spz +kqX +mxM +jdH +qPN +thz +qPN +oJi +dGw +dGw +dNr +bPV +dNr dFG -dWZ -dXe -abj -abj +dFG +aaa +aaa aaa aaa aaa @@ -149694,59 +150090,57 @@ csi csi cIa csi -cLl -cMI -ykl -cSS -tgf -cUp -cXG -cXG -cYZ -cZW -kit -cKV -dqW -cPJ -cJg -dhe +syB +cMz +cMz +cMz +cMz +cMz +cMz +huq +boG +cWd +eNp +gvZ +slq +kAx +pBs +bzu dye -dkl -cJg -dmB -doj -dpJ -dqS -dQu -dtr -duD -rsF -dwL -dAx -vbZ -dAv +nso +dNe dAx +orw +cel +fXM +mwc +leo +dlz +wbi +knY +shh +dlz cSZ -dDE +cSY +cSZ +lvO bng aaa dFG +dFG dGw -dNr -xlB -dJf -dGw -dGw +nIC dGw -knd dGw dNr -jDT +scc dNr dGw -dFG -dFG -dFG +dGw +fPb +dLe +gbQ +pAB dFG abj aaa @@ -149799,6 +150193,8 @@ aaa aaa aaa aaa +aaa +aaa "} (194,1,1) = {" aaa @@ -149923,7 +150319,7 @@ bsH bsH btT wXF -bVB +iKf bsD bYM bYM @@ -149951,59 +150347,57 @@ cFl cGP cIb csi -dcB -cMJ -des -cST -cWd -cUq -vMy -jcu -wAV -cZX +nRv +wRi +cqC +cMH +kLU +szf +boG +doq +boG cWd -oPN -dcz -jdF -cKY -dhf +yis +qcs +xsN +dPe +aek +bzu gti -dCn -cKY -siJ -dok -dpK -dqS -dRx -dts -duE -rje -uQK -dAx -kVM -dAw +mVd +rdK dAx +ocR +etc +iAa +kBB +ldp +dlz +wMS +ebi +nvr +ifj +boG cSY -dDC -bng +cSY +lvO +ryp abj +aaa dFG -dGx -dHj -dJb -dXb -dJS +fdt +jDK dGw -dLh -dPo +oCp +dLe +gYx +dLe +svD dGw -dNs -dOh -dOJ -lPv +xUg +dWX dPU -dQx -dXf +vVX dFG abj aaa @@ -150056,6 +150450,8 @@ aaa aaa aaa aaa +aaa +aaa "} (195,1,1) = {" aaa @@ -150208,11 +150604,15 @@ cFm cGQ ujq csi -dlw -bng -cWd -cWc -cWc +xFZ +boG +cqC +cqC +eHp +boG +cqC +cqC +doq cWd cWd cWd @@ -150220,48 +150620,44 @@ cWd cWd cWd cKY -mJw cKY cKY cKY -cKY -cKY -cKY -dpt -dpt -dpt -dAx -dAx dAx dAx dAx dAx dAx dAx -dAx -dAx -dCm -dDD +dlz +dlz +dlz +dlz +dlz +oFW +boG +cSZ +cUA npb aaa -wuL -dGy -dIj -dOi -dXc -dJT -dXE -dLi -dOd -wuL -dNt -oEs -dOK -hIg -dPV -dQy -dXg -tKX +aaa +dFG +veV +qmB +dGw +wro +eoJ +liE +sVx +mJY +dGw +uuh +eoJ +pGL +rYa +nlq +abj +abj aaa aaa aaa @@ -150467,30 +150863,30 @@ cId csi kkC cqC -boG +cMH boG cqC +doq +cMH cqC boG -cjn -cXD cZc -cqC +qaf boG -dcB +duM dek cjn boG cqC cqC -cMH -doq -cqC +iQK +tVb cqC +doq cqC -dsj -boG boG +dsj +cMH gpX cMH dyc @@ -150498,26 +150894,24 @@ dzo hjo cjn obN -dDE +oDF bng aaa -wby -dGz -dJi -dJc -dXh -dJU -lPv -dLj -dQG -dmd -dNu -dOj -dOL -dGw -dGw +aaa +dFG +saH +opY dGw +uZp +imG +cBf +dWX +rdA dGw +psH +qPN +rHX +hDu dFG abj aaa @@ -150570,6 +150964,8 @@ aaa aaa aaa aaa +aaa +aaa "} (197,1,1) = {" aaa @@ -150736,8 +151132,8 @@ cZT dbq dcC del -dfH -cHW +uqW +oVH cjF cHW cHW @@ -150758,24 +151154,24 @@ iVO dDF bqC abj +aaa dFG -dGA -dHm -dJd -dXi -dJV +iGQ +jNp dGw -dLk -dXi -knd -dNv -dOk -dOM -rFp -dPW -dQz -dXg -tKX +bwl +njF +dMx +sYf +rOl +dFG +iMy +vOB +hzL +jmY +jNX +aaa +aaa aaa aaa aaa @@ -150986,13 +151382,13 @@ aFt aFt cSX dDE -iwk -dlz -dlz +bqC +bng +bng dcF -dlz -dlz -dlz +bng +bng +ryp dfI dhi dfI @@ -151015,24 +151411,20 @@ oqS dDG dDG abj +aaa +dFG +dFG dFG -dGw -dGw -jrG -dGw -dJW -dGw -dLl -dYE -dGw -dNw -dOl -dON -lPv -dPX -dQA -dXf dFG +dFG +vOB +kce +tKX +dFG +dFG +abj +abj +abj abj aaa aaa @@ -151041,6 +151433,10 @@ aaa aaa aaa aaa +aaa +aaa +aaa +aaa aaZ aaa aaa @@ -151243,7 +151639,7 @@ imS aFt iPa vly -iwk +bqC cZb cZY dcG @@ -151272,25 +151668,25 @@ dCq dDH dDG abj +aaa +aaa +aaa abj -dFG -lzO -dIm -dJh -dJX -dFG -dFG -dFG -dFG -dFG -knd -dFG -dFG -dFG -dFG -dFG -dFG abj +abj +aaa +aaa +abj +abj +abj +aaa +aaa +abj +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -151500,11 +151896,11 @@ cQe aFt cSZ cUw -dlz +bng cZe dab dcH -dlB +boG dJO dXT dfI @@ -151529,25 +151925,16 @@ dyb dDI jvR abj -abj -aki -dHp -dIn -dJY -dJY -lPv aaa -abj -abj -abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa abj -abj -abj -abj -abj -abj -abj aaa aaa aaa @@ -151598,224 +151985,233 @@ aaa aaa aaa aaa -"} -(201,1,1) = {" -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaZ -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -eNt -aZu -eNt -abj -abj -abj -aaa -aaa -abj -ygH -aJx -aJx -vNM -fgM -fgM -fgM -fgM -fgM -fgM -fgM -aZG -bbq -ygH -bLA -pJt -bLA -bLA -juN -ejC -uRn -bLA -bLA -bno -bqM -bjr -bqM -tmp -ewt -kgb -rTN -bLB -vZC -rXR -hps -bLB -hiB -isB -jbi -bLB -hTV -hTV -eZE -eGJ -hkM -bsG -cjr -foK -cjr -cjr -bqj -cqE -bgt -axb -ckV -brS -oNd -cyV -cIk -cIj -cIk -pNl -fNF -tbn -cIh -aFu -cLo -cMM -aHQ -cQf -fIE -boG -dDy -dlz -cZf -dac -dcI -duy -dMu -dXU -dfI -dhl -diS -diS -diS -dmH -diT -diS -dtB -dmK -dtz -cjn -dvS -dwS -dyg -eQh -dAC -uVQ -dBq -dDJ -jvR -aaa -abj -dFG -dHq -dIo -dJj -sJx -dFG -abj -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 +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaZ +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +eNt +aZu +eNt +abj +abj +abj +aaa +aaa +abj +ygH +aJx +aJx +vNM +fgM +fgM +fgM +fgM +fgM +fgM +fgM +aZG +bbq +ygH +bLA +pJt +bLA +bLA +juN +ejC +uRn +bLA +bLA +bno +bqM +bjr +bqM +tmp +ewt +kgb +rTN +bLB +vZC +rXR +hps +bLB +hiB +isB +jbi +bLB +hTV +hTV +eZE +eGJ +hkM +bsG +cjr +foK +cjr +cjr +bqj +cqE +bgt +axb +ckV +brS +oNd +cyV +cIk +cIj +cIk +pNl +fNF +tbn +cIh +aFu +cLo +cMM +aHQ +cQf +fIE +boG +dDy +bng +cZf +dac +dcI +duy +cMH +dXU +dfI +dhl +diS +diS +diS +dmH +diT +diS +dtB +dmK +dtz +cjn +dvS +dwS +dyg +eQh +dAC +uVQ +dBq +dDJ +jvR +abj +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 +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -152014,13 +152410,13 @@ aFv aFv cSY dDC -dlz +bng cZg dab ddR dxM dNZ -dbA +kpk dfI dhm diT @@ -152042,14 +152438,14 @@ dBq dyb dDK oqS -aaa abj -dFG -dFG -dFG -dFG -dFG -dFG +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -152271,10 +152667,10 @@ cQg aFv cTa dDE -dlz +bng cZh dac -dem +uwX dAX dOb dXY @@ -152300,14 +152696,14 @@ dCs ucl oqS abj -abj -abj aaa aaa aaa -abj -abj -abj +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -152459,7 +152855,7 @@ ygH uUu kju aKU -tOv +aOX nFh aSj aTH @@ -152528,12 +152924,12 @@ cQi aFv aLH dDE -dlz +bng cZi daR deo dem -dMu +cMH dXZ dfJ dho @@ -152785,9 +153181,9 @@ cQh fIE cSY dDD -dlz +bng cZj -daS +dKB dep dGV ujM @@ -153042,13 +153438,13 @@ aFv aFv cjn dDE -dlz -dlz -dbr +bng +bng +bqB deq -dlz -dlz -dYa +bng +bng +dfK dfI dfI dfI @@ -155373,7 +155769,7 @@ aaa jtb jtb frh -jtb +udZ jtb abj abj @@ -155886,7 +156282,7 @@ aaa aaa abj jtb -kan +frh jtb abj abj @@ -157593,7 +157989,7 @@ aaa aaa aaa aaa -aGW +sso abj abj abj @@ -157862,7 +158258,7 @@ mhu mhu mhu mhu -mhu +mVF bda aTM bdf @@ -158116,7 +158512,7 @@ aaa aaa aaa aaa -noB +aaa jrB mmV ihi diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 455f8e33cfb3..f308ad53b0ae 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -42,6 +42,10 @@ }, /turf/space, /area/space) +"abb" = ( +/obj/machinery/economy/vending/cigarette, +/turf/simulated/floor/wood, +/area/station/command/office/captain) "abe" = ( /obj/structure/grille/broken, /obj/structure/lattice, @@ -65,11 +69,7 @@ /turf/simulated/floor/plating/airless, /area/station/engineering/solar/auxport) "abU" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -162,7 +162,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "acx" = ( /obj/structure/cable{ d1 = 1; @@ -233,7 +233,7 @@ /area/station/science/toxins/mixing) "adc" = ( /obj/structure/closet/secure_closet/clown, -/obj/item/reagent_containers/food/snacks/pie, +/obj/item/food/snacks/pie, /turf/simulated/floor/wood, /area/station/service/clown) "adi" = ( @@ -308,11 +308,7 @@ pixel_x = -6; pixel_y = 24 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -404,7 +400,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "aev" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -418,16 +414,12 @@ dir = 6 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aex" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -536,7 +528,7 @@ /area/shuttle/pod_3) "afT" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = 5; pixel_y = 12 }, @@ -663,7 +655,7 @@ name = "south bump"; pixel_y = -24 }, -/obj/item/reagent_containers/food/drinks/flask/detflask, +/obj/item/reagent_containers/drinks/flask/detflask, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -695,7 +687,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "ahv" = ( /obj/structure/lattice, /obj/machinery/access_button{ @@ -750,20 +742,20 @@ /area/station/public/fitness) "aii" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/sillycup{ +/obj/item/reagent_containers/drinks/sillycup{ pixel_x = -5; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/sillycup, -/obj/item/reagent_containers/food/drinks/sillycup{ +/obj/item/reagent_containers/drinks/sillycup, +/obj/item/reagent_containers/drinks/sillycup{ pixel_x = 5; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/sillycup{ +/obj/item/reagent_containers/drinks/sillycup{ pixel_x = 5; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/sillycup{ +/obj/item/reagent_containers/drinks/sillycup{ pixel_x = 5; pixel_y = 3 }, @@ -809,10 +801,7 @@ dir = 4 }, /obj/effect/turf_decal/stripes/corner, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -834,7 +823,7 @@ dir = 1; icon_state = "red" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aiL" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -874,9 +863,7 @@ /obj/machinery/computer/mob_battle_terminal/red{ pixel_y = 30 }, -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -886,6 +873,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/station/security/processing) +"aje" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "ajg" = ( /turf/simulated/wall, /area/station/maintenance/fore) @@ -988,11 +982,7 @@ name = "south bump"; pixel_y = -24 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "ajJ" = ( @@ -1049,7 +1039,7 @@ /area/station/maintenance/fore) "ajS" = ( /obj/effect/turf_decal/delivery/hollow, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "akg" = ( @@ -1113,11 +1103,7 @@ }, /area/station/public/fitness) "akr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -1184,7 +1170,7 @@ c_tag = "Engineering - Storage" }, /obj/effect/turf_decal/delivery/hollow, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "akR" = ( @@ -1267,6 +1253,10 @@ pixel_x = -24 }, /obj/structure/closet/crate/can, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "black" @@ -1381,20 +1371,12 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ icon_state = "cult" }, /area/station/legal/lawoffice) "alI" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo"; - pixel_x = -5 - }, /obj/machinery/light/small{ dir = 1 }, @@ -1529,9 +1511,6 @@ /turf/simulated/wall/r_wall, /area/station/security/brig) "amI" = ( -/obj/structure/closet{ - name = "Evidence Closet 3" - }, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -1542,11 +1521,8 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -1584,11 +1560,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -1947,7 +1919,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "aok" = ( /obj/structure/cable, /obj/structure/cable{ @@ -1981,7 +1953,7 @@ /obj/structure/window/plasmareinforced{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/meter{ layer = 3.3 }, @@ -2424,12 +2396,10 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aqQ" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "darkred" @@ -2629,11 +2599,7 @@ name = "south bump"; pixel_y = -24 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "arU" = ( @@ -2848,10 +2814,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "ate" = ( @@ -2930,6 +2893,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -3166,11 +3134,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 8; icon_state = "0-4" @@ -3183,7 +3147,7 @@ name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/wall/r_wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "auj" = ( /obj/machinery/camera/autoname{ dir = 4 @@ -3366,7 +3330,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluefull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "avc" = ( /turf/simulated/wall/r_wall, /area/station/command/office/hos) @@ -3421,6 +3385,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/security/brig) "avr" = ( @@ -3454,11 +3419,7 @@ /area/station/maintenance/fsmaint) "avz" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -3674,7 +3635,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "avU" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -3731,9 +3692,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "awb" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel, /area/station/supply/office) "awe" = ( @@ -4132,11 +4091,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "axw" = ( @@ -4196,7 +4151,7 @@ /area/station/maintenance/fore) "axH" = ( /obj/structure/flora/ausbushes/lavendergrass, -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /turf/simulated/floor/grass/no_creep, /area/station/medical/virology) "axM" = ( @@ -4422,7 +4377,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "ayE" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -5333,11 +5288,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/machinery/light_switch{ name = "custom placement"; pixel_x = 6; @@ -5353,6 +5304,7 @@ name = "west bump"; pixel_x = -28 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/security/brig) "aCw" = ( @@ -5413,13 +5365,6 @@ /obj/structure/closet/secure_closet/engineering_welding, /turf/simulated/floor/plasteel, /area/station/engineering/control) -"aCH" = ( -/obj/structure/cable/yellow, -/obj/effect/spawner/window/reinforced/polarized/grilled{ - id = "Processing" - }, -/turf/simulated/floor/plating, -/area/station/supply/storage) "aCV" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -5553,11 +5498,7 @@ /turf/simulated/floor/plating/airless, /area/space/nearstation) "aDt" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -5618,7 +5559,7 @@ locked = 1; name = "Supply Dock Airlock" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/supply_shuttle, /turf/simulated/floor/plating, /area/station/supply/storage) "aDB" = ( @@ -6142,7 +6083,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "aFF" = ( /obj/machinery/camera{ c_tag = "Mining Office"; @@ -6463,16 +6404,13 @@ d2 = 4; icon_state = "2-4" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/station/security/brig) "aGX" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -29 }, -/obj/machinery/suit_storage_unit/ce, +/obj/machinery/suit_storage_unit/ce/secure, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -6643,9 +6581,7 @@ "aHH" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/turf_decal/delivery/hollow, -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "aHI" = ( @@ -6680,7 +6616,7 @@ dir = 1; icon_state = "red" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aHO" = ( /turf/simulated/wall/r_wall, /area/station/security/armory/secure) @@ -6690,7 +6626,7 @@ name = "east bump"; pixel_x = 24 }, -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -6736,11 +6672,7 @@ /turf/simulated/floor/plasteel, /area/station/supply/storage) "aHZ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -6776,11 +6708,7 @@ /area/station/command/bridge) "aIc" = ( /obj/machinery/light, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow, /turf/simulated/floor/wood, /area/station/public/mrchangs) @@ -6848,6 +6776,12 @@ /obj/structure/statue/tranquillite/mime, /turf/simulated/floor/mineral/tranquillite, /area/station/service/mime) +"aIr" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard/north) "aIs" = ( /obj/structure/chair/office/dark{ dir = 4 @@ -6921,7 +6855,7 @@ dir = 1 }, /obj/effect/turf_decal/delivery/hollow, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "aIA" = ( @@ -7112,7 +7046,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aJa" = ( /obj/machinery/alarm{ dir = 4; @@ -7125,7 +7059,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJb" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 6 @@ -7146,7 +7080,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "aJd" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=1.5-Fore-Central"; @@ -7161,7 +7095,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7172,7 +7106,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7191,7 +7125,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJg" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -7210,7 +7144,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJh" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -7224,7 +7158,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJi" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -7240,7 +7174,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJk" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -7254,7 +7188,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJl" = ( /obj/effect/spawner/random_spawners/grille_maybe, /turf/simulated/floor/plating, @@ -7273,11 +7207,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7291,7 +7225,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aJt" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 1 @@ -7306,7 +7240,7 @@ /area/station/engineering/control) "aJv" = ( /turf/simulated/wall/r_wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "aJz" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -7505,7 +7439,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "aKf" = ( @@ -7520,7 +7455,8 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/mining, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "aKg" = ( @@ -7553,7 +7489,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aKi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -7573,11 +7509,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/tile/bar, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aKl" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -7606,7 +7547,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aKw" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -7617,7 +7558,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aKy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7642,16 +7583,10 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aKB" = ( /turf/simulated/wall, /area/station/service/clown) -"aKC" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/station/hallway/primary/fore) "aKD" = ( /obj/machinery/camera{ c_tag = "Fore Primary Hallway Cells" @@ -7663,7 +7598,7 @@ dir = 1; icon_state = "red" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aKE" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -7674,7 +7609,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aKF" = ( /obj/structure/rack, /obj/item/reagent_containers/dropper/precision, @@ -7703,7 +7638,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aKI" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -7712,13 +7647,13 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "aKK" = ( /obj/item/radio/beacon, /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aKL" = ( /obj/machinery/light{ dir = 1 @@ -7727,7 +7662,7 @@ dir = 1; icon_state = "red" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aKT" = ( /obj/item/radio/intercom{ name = "north bump"; @@ -7942,10 +7877,8 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 +/obj/machinery/power/apc/critical/directional/west{ + shock_proof = 1 }, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) @@ -8145,15 +8078,14 @@ }, /obj/item/cartridge/cargo, /obj/item/megaphone, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, +/obj/machinery/keycard_auth{ + pixel_x = 24 + }, /turf/simulated/floor/plasteel{ icon_state = "brown" }, @@ -8179,25 +8111,15 @@ icon_state = "brown" }, /area/station/supply/qm) -"aLV" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel, -/area/station/supply/lobby) "aLW" = ( /obj/machinery/alarm{ dir = 4; name = "west bump"; pixel_x = -24 }, -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, +/obj/item/kirbyplants/plant25, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aLY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8207,13 +8129,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aLZ" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/weldingtool, /obj/item/clothing/head/welding, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aMb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8263,7 +8185,7 @@ /area/station/maintenance/fpmaint) "aMf" = ( /turf/simulated/wall/r_wall, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aMh" = ( /obj/machinery/atmospherics/portable/canister/air, /obj/effect/turf_decal/delivery/white/hollow, @@ -8279,7 +8201,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aMk" = ( /turf/simulated/wall, /area/station/legal/courtroom) @@ -8390,7 +8312,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "aMA" = ( /obj/structure/table/wood, /obj/item/stamp/clown{ @@ -8476,7 +8398,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "aML" = ( /turf/simulated/floor/plasteel, /area/station/public/construction) @@ -8647,7 +8569,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/keycard_auth, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -8673,7 +8594,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aNf" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -8686,20 +8607,16 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aNi" = ( /obj/structure/window/basic, -/obj/structure/reagent_dispensers/watertank, /obj/machinery/camera{ c_tag = "Outter Vault"; dir = 8 @@ -8710,10 +8627,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plasteel{ icon_state = "browncorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aNk" = ( /obj/machinery/economy/vending/assist, /obj/effect/decal/cleanable/dirt, @@ -8772,7 +8695,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aNu" = ( /obj/structure/chair, /obj/structure/sign/poster/official/random{ @@ -8826,7 +8749,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aNG" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -8842,16 +8765,13 @@ }, /area/station/legal/lawoffice) "aNJ" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aNK" = ( /obj/machinery/door/airlock{ id_tag = "Toilet1"; @@ -8870,7 +8790,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aNM" = ( /obj/machinery/cryopod, /obj/machinery/light_switch{ @@ -9248,11 +9168,7 @@ /area/station/maintenance/fsmaint) "aPl" = ( /obj/machinery/shieldgen, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -9365,15 +9281,16 @@ pixel_x = 7; pixel_y = -6 }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Requests Console"; - pixel_y = 30 - }, /obj/machinery/photocopier/faxmachine{ department = "Quartermaster's Office" }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Quartermaster's Desk"; + departmentType = 5; + name = "Quartermaster Requests Console"; + pixel_y = 30 + }, /turf/simulated/floor/plasteel{ icon_state = "brown" }, @@ -9632,7 +9549,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aQs" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ @@ -9715,6 +9632,9 @@ /obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/all/supply/qm, /obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/polarized{ + id = "qm" + }, /turf/simulated/floor/plasteel, /area/station/supply/qm) "aQI" = ( @@ -9948,18 +9868,8 @@ }, /area/station/public/dorms) "aRu" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/turf/simulated/wall, +/area/station/hallway/secondary/entry/south) "aRx" = ( /obj/structure/closet/wardrobe/orange, /turf/simulated/floor/plasteel{ @@ -9969,12 +9879,10 @@ /area/station/security/prisonlockers) "aRy" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/mint, /obj/item/kitchen/rollingpin, /obj/item/reagent_containers/glass/beaker{ pixel_x = 5 }, -/obj/item/reagent_containers/food/condiment/enzyme, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -10021,7 +9929,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aRD" = ( /obj/machinery/firealarm{ dir = 8; @@ -10057,13 +9965,13 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aRH" = ( /obj/structure/table/wood, /obj/item/reagent_containers/glass/beaker/waterbottle{ pixel_x = -5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 5 }, /obj/structure/window/reinforced{ @@ -10464,9 +10372,7 @@ /area/station/legal/courtroom) "aTh" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /turf/simulated/floor/plating, /area/station/maintenance/fore) "aTi" = ( @@ -10477,7 +10383,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aTm" = ( /obj/machinery/firealarm{ dir = 8; @@ -10728,7 +10634,7 @@ /area/station/maintenance/fpmaint) "aUa" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 5 }, /obj/item/reagent_containers/glass/beaker/waterbottle{ @@ -10882,7 +10788,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aUq" = ( /obj/machinery/firealarm{ dir = 4; @@ -10896,7 +10802,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aUs" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10925,14 +10831,9 @@ /turf/simulated/floor/plating, /area/station/public/storage/emergency/port) "aUw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aUx" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -11009,11 +10910,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -11085,6 +10982,17 @@ icon_state = "darkgrey" }, /area/station/engineering/smes) +"aUM" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/directional/west, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) "aUP" = ( /obj/machinery/camera/motion{ c_tag = "AI Upload Chamber"; @@ -11151,16 +11059,14 @@ /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_1) "aUX" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/structure/sign/botany{ pixel_x = 32 }, /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "aUY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, @@ -11356,11 +11262,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - cell_type = 5000; - name = "south bump Important Area"; - pixel_y = -24 - }, +/obj/machinery/power/apc/important/directional/south, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -11618,9 +11520,7 @@ name = "east bump"; pixel_x = 27 }, -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, +/obj/item/kirbyplants/plant11, /turf/simulated/floor/wood, /area/station/legal/courtroom) "aWj" = ( @@ -11663,12 +11563,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 8; - name = "Engineering Engine Super APC"; - pixel_x = -24 - }, +/obj/machinery/power/apc/critical/directional/west, /turf/simulated/floor/plasteel, /area/station/engineering/control) "aWq" = ( @@ -11712,11 +11607,16 @@ dir = 8 }, /obj/effect/turf_decal/tile/bar, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/central/north) "aWv" = ( /obj/effect/spawner/random_spawners/fungus_maybe, /turf/simulated/wall, @@ -11769,7 +11669,7 @@ dir = 1; pixel_y = 2 }, -/obj/machinery/suit_storage_unit/captain, +/obj/machinery/suit_storage_unit/captain/secure, /turf/simulated/floor/wood, /area/station/command/office/captain/bedroom) "aWF" = ( @@ -11821,12 +11721,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 8; - name = "Engineering Engine Super APC"; - pixel_x = -24 - }, +/obj/machinery/power/apc/critical/directional/west, /obj/machinery/computer/security/engineering, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" @@ -11867,7 +11762,7 @@ pixel_x = -28 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "aWV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -12025,7 +11920,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "aXu" = ( /obj/effect/spawner/random_spawners/fungus_maybe, /turf/simulated/wall, @@ -12211,11 +12106,11 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aXS" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aXT" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/three, @@ -12244,10 +12139,7 @@ icon_state = "0-4" }, /obj/machinery/light, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating, /area/station/public/construction) "aXY" = ( @@ -12279,7 +12171,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aYb" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/two, @@ -12296,13 +12188,8 @@ layer = 4; pixel_x = -32 }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "aYl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12372,7 +12259,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aYA" = ( /obj/effect/spawner/window/reinforced/tinted, /turf/simulated/floor/plating, @@ -12465,10 +12352,7 @@ /area/station/public/locker) "aYM" = ( /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, @@ -12547,7 +12431,7 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aYU" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -12661,7 +12545,7 @@ name = "Escape Pod One" }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aZk" = ( /obj/machinery/door/airlock/engineering{ name = "Arrivals Expansion Area" @@ -12669,11 +12553,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aZm" = ( /obj/effect/spawner/window/reinforced/tinted, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aZn" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -12686,7 +12570,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aZr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -12772,7 +12656,7 @@ /area/station/engineering/smes) "aZJ" = ( /turf/simulated/wall/r_wall, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "aZK" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -12828,7 +12712,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aZQ" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -12841,7 +12725,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aZR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, @@ -12849,7 +12733,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "aZS" = ( /obj/structure/sign/directions/science{ pixel_x = 32; @@ -12866,7 +12750,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "aZT" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -12874,10 +12758,7 @@ }, /obj/structure/table, /obj/item/storage/fancy/donut_box, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -12961,7 +12842,7 @@ /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "bac" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12983,6 +12864,11 @@ }, /area/station/hallway/secondary/bridge) "bad" = ( +/obj/machinery/requests_console{ + department = "Locker Room"; + name = "Dorms Requests Console"; + pixel_x = 30 + }, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -13170,13 +13056,13 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "baJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "baK" = ( /obj/structure/chair, /obj/machinery/camera{ @@ -13189,7 +13075,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "baL" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ @@ -13217,7 +13103,7 @@ dir = 4; icon_state = "whitecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "baO" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -13260,7 +13146,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "baZ" = ( /obj/structure/closet/crate, /obj/item/stack/packageWrap{ @@ -13295,7 +13181,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bbh" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -13306,7 +13192,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13345,14 +13231,12 @@ name = "north bump"; pixel_y = 24 }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbn" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -13363,7 +13247,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbo" = ( /obj/machinery/light{ dir = 1 @@ -13376,7 +13260,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbp" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Fore" @@ -13396,13 +13280,13 @@ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbq" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbr" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -13410,13 +13294,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbs" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbt" = ( /obj/machinery/alarm{ dir = 4; @@ -13427,7 +13311,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bbv" = ( /obj/structure/closet/wardrobe/xenos, /turf/simulated/floor/plasteel{ @@ -13479,7 +13363,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbC" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -13504,7 +13388,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bbE" = ( /obj/structure/table/reinforced, /obj/item/razor, @@ -13530,9 +13414,7 @@ }, /area/station/command/office/ce) "bbM" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, +/obj/item/kirbyplants/plant18, /obj/structure/sign/electricshock{ pixel_x = -32 }, @@ -13553,8 +13435,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/firealarm{ + name = "north bump"; + pixel_y = 24 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bbT" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13628,7 +13514,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bcf" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -13641,8 +13527,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bcj" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13676,11 +13567,7 @@ req_access = list(75) }, /obj/effect/landmark/start/cyborg, -/obj/machinery/power/apc{ - cell_type = 5000; - name = "south bump Important Area"; - pixel_y = -24 - }, +/obj/machinery/power/apc/important/directional/south, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -13702,7 +13589,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bco" = ( /obj/machinery/light/small{ dir = 4 @@ -13766,7 +13653,7 @@ "bcu" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "bcv" = ( @@ -13783,7 +13670,7 @@ dir = 10 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bcC" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -13809,13 +13696,11 @@ }, /area/station/supply/lobby) "bcH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" }, -/turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/aft/north) "bcI" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -13836,7 +13721,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bcJ" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -13856,7 +13741,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bcK" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -13868,7 +13753,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bcL" = ( /obj/machinery/computer/guestpass{ pixel_y = -30 @@ -13888,7 +13773,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bcN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -13908,27 +13793,27 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bcO" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -4; pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 4; pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 6; pixel_y = -1 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/machinery/newscaster{ name = "north bump"; pixel_y = 28 @@ -13950,6 +13835,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard) "bcR" = ( @@ -13957,11 +13847,11 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bcS" = ( /obj/effect/turf_decal/stripes/corner, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bcV" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, @@ -13982,7 +13872,7 @@ /area/station/supply/storage) "bcX" = ( /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "bcZ" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -13995,12 +13885,12 @@ /turf/simulated/floor/plasteel{ icon_state = "C7" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bdb" = ( /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "bdc" = ( /obj/structure/sign/poster/random{ pixel_x = 32 @@ -14008,7 +13898,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bde" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -14019,14 +13909,14 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bdi" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bdk" = ( /obj/machinery/door/poddoor/preopen{ id_tag = "Perma Gate"; @@ -14182,6 +14072,11 @@ pixel_x = 6; pixel_y = -6 }, +/obj/machinery/requests_console{ + department = "Tech Storage"; + name = "Tech Storage Requests Console"; + pixel_y = 30 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -14231,7 +14126,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bdC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -14289,7 +14184,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bdH" = ( /obj/machinery/status_display{ layer = 4; @@ -14302,7 +14197,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bdI" = ( /turf/simulated/wall/r_wall, /area/station/turret_protected/ai) @@ -14364,13 +14259,13 @@ dir = 5; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bdR" = ( /obj/machinery/door/airlock/external{ name = "Arrival Airlock" }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bdS" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -14383,7 +14278,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bdT" = ( /obj/machinery/door/airlock/security{ name = "Detective's Office" @@ -14433,7 +14328,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bdW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -14463,7 +14358,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bdZ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -14497,7 +14392,7 @@ dir = 6 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bei" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -14516,7 +14411,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bej" = ( /obj/structure/window/reinforced{ dir = 1 @@ -14537,7 +14432,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bel" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -14556,7 +14451,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "ben" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -14571,7 +14466,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "beo" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -14584,7 +14479,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bep" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -14603,7 +14498,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "beq" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -14619,7 +14514,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "ber" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -14639,7 +14534,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C6" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bes" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -14661,7 +14556,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C8" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "beu" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -14680,7 +14575,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bev" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -14698,7 +14593,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bex" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -14718,7 +14613,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bey" = ( /obj/machinery/light{ dir = 4 @@ -14735,7 +14630,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bez" = ( /turf/simulated/wall, /area/station/public/storage/tools/auxiliary) @@ -14760,7 +14655,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "beE" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -14811,7 +14706,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "beI" = ( /obj/machinery/door_control{ desc = "A remote control-switch for the engineering security doors."; @@ -14883,7 +14778,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "beQ" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -14896,15 +14791,13 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "beR" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; pixel_x = 27 }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, +/obj/item/kirbyplants/plant16, /obj/item/radio/intercom{ name = "north bump"; pixel_y = 28 @@ -14913,7 +14806,7 @@ dir = 5; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "beW" = ( /obj/structure/window/reinforced{ dir = 8 @@ -15001,16 +14894,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bfj" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -15026,11 +14914,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/item/kirbyplants{ - level = 4.1 - }, +/obj/item/kirbyplants, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bfn" = ( /obj/structure/closet/emcloset, /obj/machinery/firealarm{ @@ -15053,7 +14939,7 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plating, /area/station/supply/storage) "bfp" = ( @@ -15096,8 +14982,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bfv" = ( /obj/structure/closet/secure_closet/cargotech, /obj/structure/disposalpipe/segment, @@ -15164,7 +15055,7 @@ /area/station/turret_protected/ai) "bfG" = ( /turf/simulated/wall, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bfH" = ( /obj/machinery/light{ dir = 4 @@ -15186,7 +15077,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bfJ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -15195,7 +15086,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bfK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15203,7 +15094,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bfN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -15213,16 +15104,6 @@ }, /turf/simulated/floor/bluegrid, /area/station/turret_protected/ai) -"bfO" = ( -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central) "bfR" = ( /obj/machinery/firealarm{ dir = 1; @@ -15232,7 +15113,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bfS" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, @@ -15240,13 +15121,13 @@ "bfU" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bfV" = ( /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bfW" = ( /obj/machinery/firealarm{ dir = 1; @@ -15257,7 +15138,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bfX" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Fore - Courtroom"; @@ -15267,26 +15148,14 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bfY" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) -"bfZ" = ( -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bga" = ( /obj/structure/sign/vacuum/external{ pixel_y = -32 @@ -15294,7 +15163,7 @@ /obj/machinery/light, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bgb" = ( /obj/machinery/washing_machine, /turf/simulated/floor/plasteel{ @@ -15314,7 +15183,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bge" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plasteel{ @@ -15330,11 +15199,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellow" @@ -15363,7 +15228,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bgi" = ( /obj/structure/closet/toolcloset, /turf/simulated/floor/plasteel{ @@ -15390,16 +15255,11 @@ codes_txt = "patrol;next_patrol=3-Central-Port"; location = "2-Storage" }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "bgm" = ( /obj/structure/rack{ dir = 8; @@ -15650,7 +15510,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bgH" = ( /obj/machinery/ai_status_display{ pixel_y = 32 @@ -15659,7 +15519,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bgK" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -15688,7 +15548,7 @@ dir = 10; icon_state = "blueyellow" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bgO" = ( /obj/structure/rack{ dir = 8; @@ -15743,25 +15603,16 @@ /turf/space, /area/space/nearstation) "bgV" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /obj/effect/spawner/random_spawners/cobweb_left_rare, /turf/simulated/floor/wood{ icon_state = "wood-broken3" }, /area/station/maintenance/starboard) "bgW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" - }, -/area/station/hallway/secondary/entry) +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/south) "bgX" = ( /turf/simulated/wall, /area/station/security/checkpoint/secondary) @@ -15777,7 +15628,7 @@ /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bhc" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -15794,7 +15645,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bhd" = ( /obj/structure/table, /obj/item/flashlight{ @@ -15831,11 +15682,7 @@ pixel_x = 26; pixel_y = 26 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -15863,10 +15710,10 @@ /obj/machinery/economy/vending/coffee, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bhl" = ( /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bhm" = ( /obj/effect/landmark/start/shaft_miner, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -15897,7 +15744,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bhq" = ( /turf/simulated/wall, /area/station/service/janitor) @@ -16005,7 +15852,7 @@ dir = 1; icon_state = "red" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "bhH" = ( /obj/structure/cable{ d1 = 1; @@ -16118,12 +15965,12 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bhW" = ( /obj/machinery/economy/vending/cigarette, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bhY" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -16160,11 +16007,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -16336,21 +16179,12 @@ /turf/simulated/floor/plating, /area/shuttle/arrival/station) "bit" = ( -/obj/machinery/firealarm{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "biv" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law{ @@ -16367,11 +16201,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" @@ -16492,7 +16322,7 @@ }, /area/station/supply/storage) "biJ" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -16505,7 +16335,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "biL" = ( /obj/effect/turf_decal/delivery, /obj/machinery/flasher{ @@ -16518,7 +16348,7 @@ "biN" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "biO" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance, @@ -16529,11 +16359,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/bar, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "biU" = ( /obj/machinery/ai_slipper, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16559,7 +16394,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "biY" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/reagent_dispensers/spacecleanertank{ @@ -16649,13 +16484,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "bjh" = ( /obj/machinery/light{ dir = 1 @@ -16703,7 +16533,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "bjp" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, @@ -16841,7 +16671,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bjB" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -16882,7 +16712,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bjF" = ( /obj/structure/closet/toolcloset, /obj/item/radio/intercom{ @@ -17168,7 +16998,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "bkt" = ( /obj/machinery/camera{ c_tag = "Engineering - Entrance"; @@ -17182,7 +17012,7 @@ "bku" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, /turf/simulated/floor/plating, /area/station/supply/office) "bkw" = ( @@ -17203,8 +17033,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bkA" = ( /obj/structure/table/reinforced, /obj/machinery/light{ @@ -17258,14 +17093,14 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bkI" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "browncorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bkL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17344,7 +17179,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "bkT" = ( /obj/structure/closet/toolcloset, /obj/item/clothing/glasses/meson/engine, @@ -17366,8 +17201,13 @@ dir = 9; icon_state = "redyellow" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bkV" = ( +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "brown" @@ -17430,7 +17270,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "blk" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -17447,7 +17287,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bll" = ( /obj/structure/closet/emcloset, /obj/structure/sign/double/map/left{ @@ -17472,7 +17312,7 @@ /area/station/hallway/primary/starboard) "blo" = ( /turf/simulated/wall, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "blq" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ @@ -17490,7 +17330,6 @@ }, /area/station/engineering/tech_storage) "blr" = ( -/obj/machinery/suit_storage_unit/atmos, /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 1 }, @@ -17498,6 +17337,7 @@ name = "north bump"; pixel_y = 24 }, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -17610,7 +17450,7 @@ dir = 8; icon_state = "browncorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "blJ" = ( /obj/item/radio/intercom/custom{ pixel_y = 25 @@ -17747,16 +17587,11 @@ /obj/machinery/light{ dir = 4 }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "blX" = ( /obj/machinery/alarm{ dir = 4; @@ -17981,11 +17816,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "bms" = ( @@ -17995,6 +17826,9 @@ icon_state = "map-right-MS"; pixel_y = 32 }, +/obj/machinery/light{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/station/supply/lobby) "bmu" = ( @@ -18114,11 +17948,7 @@ }, /obj/item/key/janitor, /obj/item/reagent_containers/spray/cleaner, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/effect/decal/cleanable/dirt, /obj/item/storage/box/lights/mixed, /obj/item/storage/box/lights/mixed, @@ -18164,7 +17994,7 @@ pixel_y = -24 }, /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/reagent_containers/drinks/flask/gold, /obj/item/razor{ pixel_x = -4; pixel_y = 2 @@ -18209,7 +18039,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bnc" = ( /obj/machinery/door/airlock/maintenance{ name = "Hydroponics Garden" @@ -18255,7 +18085,11 @@ /area/station/hallway/primary/starboard) "bni" = ( /obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Tech Storage" + c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage" + }, +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -18284,7 +18118,7 @@ /turf/simulated/floor/plasteel{ icon_state = "blue" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bnm" = ( /obj/effect/turf_decal/stripes/white/line, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -18307,7 +18141,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bnp" = ( /obj/structure/sign/securearea{ pixel_y = 32 @@ -18316,7 +18150,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bnr" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -18332,7 +18166,7 @@ }, /obj/item/clothing/head/bearpelt, /obj/item/folder/documents, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/stack/spacecash/c1000, @@ -18525,17 +18359,11 @@ /turf/simulated/floor/plating, /area/station/supply/storage) "bnX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bnY" = ( /obj/structure/sign/pods, /turf/simulated/wall, @@ -18677,9 +18505,11 @@ /area/station/command/bridge) "bos" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel, /area/station/supply/lobby) "bou" = ( @@ -18863,7 +18693,7 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "boQ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -18936,8 +18766,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "boY" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -18972,7 +18807,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bpf" = ( /turf/simulated/floor/plasteel, /area/station/maintenance/fsmaint) @@ -19085,28 +18920,23 @@ /turf/simulated/floor/plasteel, /area/station/supply/office) "bpz" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bpA" = ( /turf/simulated/floor/plasteel{ dir = 5; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bpC" = ( /turf/simulated/floor/plasteel{ dir = 9; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bpD" = ( /obj/effect/turf_decal/loading_area{ dir = 4 @@ -19121,10 +18951,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/machinery/door/airlock/mining/glass{ name = "Mailroom" }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/office) "bpF" = ( @@ -19146,7 +18976,7 @@ dir = 9; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bpH" = ( /obj/structure/sign/double/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)."; @@ -19158,7 +18988,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bpI" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; @@ -19167,7 +18997,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bpJ" = ( /obj/machinery/conveyor{ dir = 1; @@ -19311,11 +19141,7 @@ "bpU" = ( /obj/structure/cable/yellow, /obj/effect/landmark/spawner/nukedisc_respawn, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "bpV" = ( @@ -19353,7 +19179,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "bqc" = ( /turf/simulated/wall/r_wall, /area/station/command/office/hop) @@ -19521,8 +19347,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bqw" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, @@ -19536,7 +19367,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bqA" = ( /turf/simulated/floor/plasteel{ icon_state = "redcorner" @@ -19551,14 +19382,14 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bqC" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bqD" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -19570,7 +19401,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bqE" = ( /obj/machinery/firealarm{ dir = 1; @@ -19578,13 +19409,13 @@ pixel_y = -24 }, /obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; + c_tag = "Starboard Primary Hallway - Tech Storage"; dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bqG" = ( /obj/structure/table/glass, /obj/machinery/photocopier/faxmachine{ @@ -19618,7 +19449,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bqQ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19641,7 +19472,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bqS" = ( /obj/effect/landmark/damageturf, /turf/simulated/floor/plating/airless, @@ -19813,11 +19644,6 @@ /turf/simulated/floor/plating/airless, /area/shuttle/arrival/station) "brv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19825,12 +19651,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "brw" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19843,11 +19669,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "brx" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19862,7 +19693,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bry" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19871,11 +19702,16 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "brz" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19891,7 +19727,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "brA" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19911,7 +19747,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "brB" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19930,7 +19766,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "brC" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19947,7 +19783,7 @@ dir = 6; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "brD" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19969,7 +19805,7 @@ dir = 10; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "brE" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -19987,13 +19823,13 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "brF" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "brG" = ( /obj/machinery/conveyor{ dir = 1; @@ -20021,7 +19857,7 @@ dir = 1; icon_state = "brown" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "brK" = ( /obj/machinery/conveyor_switch/oneway{ id = "packageExternal"; @@ -20050,7 +19886,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "brO" = ( /obj/machinery/light{ dir = 4 @@ -20064,7 +19900,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "brQ" = ( /obj/machinery/ai_status_display{ pixel_y = -32 @@ -20085,21 +19921,25 @@ /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "brU" = ( -/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "brV" = ( /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "brW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/binary/valve, @@ -20348,7 +20188,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bsX" = ( /obj/machinery/teleport/hub, /turf/simulated/floor/plasteel{ @@ -20380,7 +20220,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "btb" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -20404,45 +20244,55 @@ }, /area/station/aisat) "btm" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "btn" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ pixel_x = 1; pixel_y = 5 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bto" = ( /obj/structure/chair/comfy/beige, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "btp" = ( /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "btq" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, +/obj/item/food/snacks/chips, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "btr" = ( /obj/machinery/economy/vending/coffee, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bts" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -20456,13 +20306,13 @@ dir = 8; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "btt" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "btu" = ( /obj/machinery/firealarm{ name = "north bump"; @@ -20472,44 +20322,45 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "btv" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "btz" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/directional/north, /obj/machinery/camera{ - c_tag = "Port Primary Hallway - Middle" + c_tag = "Port Primary Hallway - West" }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "btA" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "btB" = ( /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "btD" = ( /obj/item/radio/intercom{ name = "north bump"; @@ -20525,13 +20376,13 @@ dir = 5; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "btF" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "btI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, @@ -20540,7 +20391,7 @@ dir = 1; icon_state = "brown" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "btK" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -20554,7 +20405,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "btM" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -20908,7 +20759,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "buw" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/preopen{ @@ -20985,8 +20836,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "buE" = ( /obj/machinery/requests_console{ announcementConsole = 1; @@ -21114,7 +20970,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "buX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ @@ -21283,19 +21139,19 @@ }, /area/station/command/bridge) "bvs" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = -32 - }, /obj/machinery/camera{ c_tag = "Central Primary Hallway - Starboard - Art Storage"; dir = 4 }, +/obj/item/radio/intercom{ + name = "west bump"; + pixel_x = -28 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "bvt" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21373,19 +21229,21 @@ dir = 4 }, /obj/effect/landmark/start/assistant, +/obj/structure/cable/yellow, +/obj/machinery/power/apc/important/directional/west, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bvB" = ( /turf/simulated/floor/carpet, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bvC" = ( /obj/machinery/hologram/holopad{ pixel_y = -16 }, /turf/simulated/floor/carpet, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bvD" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -21393,7 +21251,7 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bvE" = ( /obj/machinery/economy/vending/cola, /obj/machinery/newscaster{ @@ -21404,18 +21262,13 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bvF" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -21429,7 +21282,7 @@ dir = 8; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bvG" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21446,8 +21299,13 @@ dir = 8; icon_state = "pipe-j2" }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bvK" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21469,7 +21327,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bvL" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21487,7 +21345,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bvM" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21509,7 +21367,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bvN" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21526,7 +21384,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bvO" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21543,7 +21401,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bvQ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21560,7 +21418,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bvS" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21580,7 +21438,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bvU" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -21601,7 +21459,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bvW" = ( /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ @@ -21701,12 +21559,7 @@ c_tag = "Bridge - Port"; dir = 4 }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "west bump Important Area"; - pixel_x = -24 - }, +/obj/machinery/power/apc/important/directional/west, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -21768,7 +21621,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bwm" = ( /obj/machinery/status_display{ layer = 4; @@ -21804,11 +21657,9 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bwp" = ( -/obj/item/kirbyplants{ - level = 4.1 - }, +/obj/item/kirbyplants, /turf/simulated/floor/wood, /area/station/service/bar) "bwq" = ( @@ -21957,7 +21808,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bwV" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4; @@ -22110,8 +21961,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bxu" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -22271,40 +22127,18 @@ }, /area/station/service/barber) "bxJ" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/important/directional/east, +/obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bxK" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /obj/effect/landmark/lightsout, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bxL" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, /obj/machinery/newscaster{ dir = 8; name = "east bump"; @@ -22317,7 +22151,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bxM" = ( /obj/structure/chair/comfy/beige{ dir = 4 @@ -22325,7 +22159,7 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bxN" = ( /obj/machinery/atmospherics/binary/valve/open, /turf/simulated/floor/plating, @@ -22341,49 +22175,54 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bxP" = ( /obj/machinery/economy/vending/snack, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bxQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bxR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bxS" = ( /obj/item/radio/intercom{ name = "south bump"; pixel_y = -28 }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bxT" = ( /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bxX" = ( /obj/machinery/alarm{ dir = 1; @@ -22394,7 +22233,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bxY" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -22405,14 +22244,14 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bxZ" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bya" = ( /obj/item/radio/intercom{ name = "north bump"; @@ -22428,7 +22267,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "byc" = ( /obj/machinery/firealarm{ dir = 1; @@ -22439,17 +22278,17 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "byd" = ( /obj/machinery/camera{ - c_tag = "Port Primary Hallway - Starboard"; + c_tag = "Port Primary Hallway - East"; dir = 1 }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bye" = ( /obj/structure/bed/dogbed/ian, /mob/living/simple_animal/pet/dog/corgi/Ian, @@ -22467,7 +22306,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "byg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -22476,7 +22315,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "byi" = ( /obj/machinery/door_control{ id = "hop"; @@ -22500,7 +22339,7 @@ known_by = list("captain") }, /obj/item/gun/projectile/revolver/russian, -/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/obj/item/reagent_containers/drinks/bottle/absinthe/premium, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/toy/figure/crew/captain, @@ -22514,11 +22353,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/carpet, /area/station/command/office/hop) "bym" = ( @@ -22718,7 +22553,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "byJ" = ( /obj/machinery/light/small{ dir = 4 @@ -22925,43 +22760,28 @@ /area/station/aisat) "bzs" = ( /obj/machinery/hologram/holopad, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bzw" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bzy" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bzA" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, +/obj/item/kirbyplants/plant18, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) -"bzB" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/east) "bzC" = ( /obj/structure/chair/comfy/beige{ dir = 1 @@ -22969,7 +22789,7 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bzD" = ( /obj/machinery/camera{ c_tag = "Port Primary Hallway - Port"; @@ -22982,13 +22802,8 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bzE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -22997,7 +22812,7 @@ dir = 8; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bzF" = ( /obj/machinery/light{ dir = 4 @@ -23005,23 +22820,28 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bzG" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bzH" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bzJ" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -23068,7 +22888,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bzS" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -23267,6 +23087,17 @@ }, /turf/simulated/floor/carpet, /area/station/command/office/captain) +"bAt" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "purple" + }, +/area/station/hallway/primary/aft/south) "bAv" = ( /obj/structure/chair/stool{ dir = 4 @@ -23339,8 +23170,13 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bAL" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -23365,12 +23201,12 @@ /obj/item/radio/beacon, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bAR" = ( /obj/machinery/economy/vending/cola, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bAT" = ( /obj/machinery/light, /obj/machinery/computer/station_alert{ @@ -23411,10 +23247,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -23460,10 +23293,7 @@ /area/station/aisat) "bBd" = ( /obj/machinery/light/small, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ dir = 8; @@ -23524,17 +23354,6 @@ icon_state = "darkbluecorners" }, /area/station/turret_protected/aisat/interior) -"bBk" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/station/hallway/primary/central) "bBl" = ( /turf/simulated/wall/r_wall, /area/station/telecomms/computer) @@ -23580,16 +23399,14 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bBr" = ( -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bBs" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, @@ -23597,10 +23414,10 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bBt" = ( /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bBu" = ( /obj/machinery/status_display{ layer = 4; @@ -23610,13 +23427,13 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bBv" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bBx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -23624,8 +23441,13 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bBy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -23633,8 +23455,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bBz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23649,7 +23481,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bBE" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=6-Port-Central"; @@ -23659,24 +23491,19 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bBG" = ( /turf/simulated/floor/plasteel{ dir = 5; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bBI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bBK" = ( /obj/item/seeds/apple, /obj/item/seeds/banana, @@ -23936,12 +23763,6 @@ /obj/item/storage/box/ids, /turf/simulated/floor/wood, /area/station/command/office/hop) -"bCm" = ( -/obj/machinery/economy/vending/cigarette{ - products = list(/obj/item/storage/fancy/cigarettes/cigpack_syndicate=7,/obj/item/storage/fancy/cigarettes/cigpack_uplift=3,/obj/item/storage/fancy/cigarettes/cigpack_robust=2,/obj/item/storage/fancy/cigarettes/cigpack_carp=3,/obj/item/storage/fancy/cigarettes/cigpack_midori=1,/obj/item/storage/fancy/matches=10,/obj/item/lighter/random=4) - }, -/turf/simulated/floor/wood, -/area/station/command/office/captain) "bCo" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -23998,21 +23819,15 @@ /area/station/engineering/atmos/control) "bCx" = ( /obj/structure/table, -/obj/item/surgicaldrill{ - pixel_x = 17; - pixel_y = 4 - }, -/obj/item/stack/medical/bruise_pack/advanced{ - pixel_x = -4; - pixel_y = 4 - }, /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/cautery, /obj/machinery/light{ dir = 1 }, +/obj/item/storage/firstaid/machine, +/obj/item/storage/firstaid/machine, +/obj/item/robotanalyzer, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" @@ -24030,7 +23845,7 @@ /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "bCA" = ( /obj/item/radio/intercom{ name = "west bump"; @@ -24050,7 +23865,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bCC" = ( /obj/machinery/status_display{ pixel_y = 32 @@ -24137,10 +23952,7 @@ dir = 8; network = list("SS13","MiniSat") }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/light_switch{ dir = 8; name = "east bump"; @@ -24253,11 +24065,6 @@ /obj/effect/mapping_helpers/airlock/access/all/command/captain, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) -"bDm" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) "bDo" = ( /obj/structure/chair, /obj/structure/sign/vacuum/external{ @@ -24267,7 +24074,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bDq" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; @@ -24276,11 +24083,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bDr" = ( /obj/machinery/firealarm{ dir = 4; @@ -24310,10 +24122,15 @@ "bDt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bDu" = ( /obj/machinery/firealarm{ dir = 1; @@ -24323,7 +24140,7 @@ /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bDv" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -24333,7 +24150,7 @@ /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bDx" = ( /obj/machinery/alarm{ dir = 1; @@ -24344,7 +24161,7 @@ dir = 10; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bDy" = ( /obj/machinery/firealarm{ dir = 1; @@ -24354,7 +24171,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bDz" = ( /obj/machinery/hologram/holopad, /obj/machinery/status_display{ @@ -24381,7 +24198,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bDB" = ( /obj/machinery/alarm{ dir = 1; @@ -24392,11 +24209,11 @@ dir = 6; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bDC" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bDD" = ( /obj/structure/sign/double/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)."; @@ -24407,13 +24224,8 @@ dir = 10; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bDE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/structure/sign/double/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"; @@ -24422,13 +24234,8 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bDF" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -24436,11 +24243,16 @@ dir = 5 }, /obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bDG" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ @@ -24552,7 +24364,7 @@ /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bDV" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -24669,7 +24481,7 @@ /area/station/command/office/captain) "bEl" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24708,7 +24520,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bEr" = ( /obj/structure/dresser, /obj/structure/sign/poster/official/random{ @@ -24744,14 +24556,9 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bFd" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 4; - name = "Telecoms Control Room APC"; - pixel_x = 24 - }, +/obj/machinery/power/apc/important/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -24772,7 +24579,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bFf" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -24930,7 +24737,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bFB" = ( /turf/simulated/wall, /area/station/hallway/secondary/bridge) @@ -24947,7 +24754,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bFH" = ( /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, @@ -24964,7 +24771,7 @@ dir = 6; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bFK" = ( /obj/machinery/economy/vending/coffee{ pixel_x = -3 @@ -24989,7 +24796,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bFM" = ( /obj/structure/chair/comfy/teal{ dir = 4 @@ -25081,7 +24888,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "bFX" = ( /obj/structure/sign/poster/contraband/random{ pixel_x = 32 @@ -25121,10 +24928,7 @@ loot = list(/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes); name = "trash spawner" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating, /area/station/maintenance/port) "bGd" = ( @@ -25367,9 +25171,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/bridge) "bHx" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/wood, /area/station/service/library) "bHz" = ( @@ -25435,9 +25237,6 @@ pixel_y = -1 }, /obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -6 - }, /obj/machinery/reagentgrinder{ pixel_x = 6; pixel_y = 6 @@ -25446,6 +25245,10 @@ c_tag = "Bar - Counter"; dir = 1 }, +/obj/item/clothing/head/that{ + pixel_y = 7; + pixel_x = -6 + }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -25491,7 +25294,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bHM" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -25506,7 +25309,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bHN" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -25519,7 +25322,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "bHO" = ( /obj/structure/chair/stool/bar, /obj/effect/turf_decal/woodsiding{ @@ -25595,7 +25398,7 @@ /turf/simulated/floor/bluegrid, /area/station/maintenance/starboard) "bHY" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/bluespace, /area/station/maintenance/starboard) "bIf" = ( @@ -25650,9 +25453,7 @@ }, /area/station/telecomms/computer) "bIA" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -25692,6 +25493,16 @@ icon_state = "whitepurple" }, /area/station/science/research) +"bIH" = ( +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/south) "bIO" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -25714,7 +25525,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "bIT" = ( /obj/structure/table/wood, /obj/machinery/alarm{ @@ -25754,7 +25565,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bJd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -25771,7 +25582,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bJe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -26162,7 +25973,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bJM" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -26323,7 +26134,7 @@ locked = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bKv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -26399,7 +26210,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bKN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -26427,11 +26238,16 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bKS" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -26582,7 +26398,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bLu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -26602,9 +26418,7 @@ /area/station/security/brig) "bLA" = ( /obj/structure/table/reinforced, -/obj/machinery/door/window/classic/reversed{ - name = "Kitchen" - }, +/obj/machinery/door/window/classic/reversed, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -26616,6 +26430,12 @@ /obj/structure/window/reinforced{ dir = 4 }, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 3 + }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -26630,7 +26450,7 @@ /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bLD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26734,11 +26554,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -26786,16 +26602,15 @@ }, /area/station/aisat) "bMB" = ( -/obj/machinery/light{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow, +/obj/machinery/power/apc/important/directional/east, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bMC" = ( /obj/machinery/firealarm{ name = "north bump"; @@ -26808,7 +26623,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bMD" = ( /obj/structure/table/wood, /obj/item/folder, @@ -26913,7 +26728,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bMS" = ( /turf/simulated/wall/r_wall, /area/station/ai_monitored/storage/eva) @@ -26921,7 +26736,7 @@ /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bMU" = ( /obj/structure/sign/securearea{ pixel_y = -32 @@ -27033,11 +26848,19 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bNo" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable/yellow{ @@ -27054,7 +26877,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "bNx" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ @@ -27222,7 +27045,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bOh" = ( /obj/item/book/manual/wiki/security_space_law{ pixel_x = -3; @@ -27335,7 +27158,7 @@ /area/station/service/library) "bOx" = ( /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "bOy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/sink/kitchen{ @@ -27353,7 +27176,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "bOA" = ( /turf/simulated/floor/greengrid, /area/station/turret_protected/ai_upload) @@ -27368,7 +27191,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bOG" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -27477,7 +27300,7 @@ /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bOU" = ( /obj/structure/filingcabinet, /obj/structure/disposalpipe/segment{ @@ -27500,7 +27323,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bOX" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ @@ -27555,29 +27378,6 @@ icon_state = "neutral" }, /area/station/hallway/secondary/garden) -"bPe" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery"; - dir = 8; - location = "Kitchen" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/door/window/classic/normal{ - name = "Kitchen Delivery"; - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "bot" - }, -/area/station/service/kitchen) "bPg" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ @@ -27675,11 +27475,7 @@ pixel_x = -6; pixel_y = 24 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -27695,7 +27491,7 @@ /area/station/command/teleporter) "bPB" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/ale, +/obj/item/reagent_containers/drinks/cans/ale, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "bPE" = ( @@ -27733,9 +27529,9 @@ /area/station/public/vacant_office) "bPS" = ( /obj/structure/closet/secure_closet/blueshield, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood, /area/station/command/office/blueshield) "bPT" = ( @@ -27777,7 +27573,7 @@ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "bPZ" = ( /obj/structure/chair/office/dark{ dir = 1 @@ -27972,7 +27768,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "bQG" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -27984,7 +27780,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bQI" = ( /turf/simulated/wall, /area/station/service/kitchen) @@ -28023,7 +27819,7 @@ location = "13.1-Engineering-Enter" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "bQS" = ( /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -28054,7 +27850,7 @@ /turf/simulated/floor/plasteel{ icon_state = "escape" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "bQX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -28187,17 +27983,13 @@ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bRA" = ( /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/wood, /area/station/public/vacant_office) "bRB" = ( @@ -28301,7 +28093,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bRP" = ( /obj/machinery/status_display{ layer = 4; @@ -28317,11 +28109,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -28359,7 +28147,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bRX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -28649,7 +28437,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bSX" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -28727,11 +28515,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow, /turf/simulated/floor/wood, /area/station/command/office/ntrep) @@ -28752,7 +28536,7 @@ dir = 6; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bTn" = ( /obj/structure/chair/office/dark, /turf/simulated/floor/wood, @@ -28798,11 +28582,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/wood, /area/station/service/library) "bTt" = ( @@ -28881,22 +28661,23 @@ /obj/machinery/light{ dir = 4 }, +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bTD" = ( /obj/machinery/economy/vending/dinnerware, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -28926,7 +28707,7 @@ pixel_x = 5; pixel_y = -1 }, -/obj/item/reagent_containers/food/drinks/mug{ +/obj/item/reagent_containers/drinks/mug{ pixel_x = -4; pixel_y = 4 }, @@ -29034,17 +28815,10 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bTY" = ( /turf/simulated/floor/plating, /area/station/maintenance/port) -"bTZ" = ( -/obj/structure/table, -/obj/item/storage/bag/tray, -/turf/simulated/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/station/service/kitchen) "bUi" = ( /obj/machinery/gibber, /turf/simulated/floor/plasteel{ @@ -29061,8 +28835,6 @@ /area/station/service/hydroponics) "bUl" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -29176,12 +28948,12 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "bUN" = ( -/obj/machinery/suit_storage_unit/mime, /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/suit_storage_unit/mime/secure, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -29192,7 +28964,7 @@ locked = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bUP" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -29209,7 +28981,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bUR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -29231,7 +29003,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bUV" = ( /obj/machinery/photocopier, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -29286,7 +29058,6 @@ /turf/simulated/floor/engine, /area/station/command/office/rd) "bVb" = ( -/obj/machinery/suit_storage_unit/clown, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -29294,6 +29065,7 @@ c_tag = "E.V.A. Storage"; dir = 4 }, +/obj/machinery/suit_storage_unit/clown/secure, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -29393,7 +29165,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bVs" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -29449,11 +29221,7 @@ /turf/simulated/floor/wood, /area/station/maintenance/starboard) "bVM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -29504,14 +29272,12 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bVX" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, +/obj/item/kirbyplants/plant16, /obj/machinery/light{ dir = 4 }, @@ -29718,7 +29484,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bWA" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/stripes/line{ @@ -29865,11 +29631,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow, /obj/machinery/button/windowtint{ dir = 8; @@ -29893,11 +29655,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/table, /obj/item/storage/fancy/donut_box, /obj/item/storage/fancy/donut_box, @@ -29970,10 +29728,6 @@ "bXb" = ( /obj/machinery/plantgenes, /obj/effect/turf_decal/stripes/line, -/obj/structure/extinguisher_cabinet{ - name = "north bump"; - pixel_y = 30 - }, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) "bXi" = ( @@ -30088,9 +29842,7 @@ name = "west bump"; pixel_x = -28 }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -30123,9 +29875,7 @@ /area/station/supply/office) "bXF" = ( /obj/effect/turf_decal/stripes/corner, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /obj/machinery/door_control{ id = "mechbay"; name = "Mech Bay Shutters Control"; @@ -30204,7 +29954,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "bXQ" = ( /obj/machinery/camera{ c_tag = "Medbay Staff Entrance"; @@ -30252,7 +30002,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bXV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -30467,7 +30217,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bYv" = ( /obj/machinery/photocopier, /obj/machinery/computer/security/telescreen/entertainment{ @@ -30645,19 +30395,19 @@ /turf/simulated/floor/wood, /area/station/service/library) "bZh" = ( -/obj/machinery/firealarm{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "bZi" = ( /obj/structure/sign/directions/science{ pixel_y = 24 @@ -30672,7 +30422,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "bZl" = ( /turf/simulated/wall/r_wall, /area/station/command/office/blueshield) @@ -30691,15 +30441,15 @@ dir = 1; icon_state = "darkblue" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "bZt" = ( /turf/simulated/floor/plasteel{ icon_state = "greencorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bZu" = ( /turf/simulated/wall, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "bZv" = ( /turf/simulated/wall, /area/station/service/hydroponics) @@ -30907,28 +30657,24 @@ pixel_y = 24 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "car" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cas" = ( /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cax" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -30956,7 +30702,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "caC" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -30971,7 +30717,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "caD" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -30980,13 +30726,13 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "caF" = ( /turf/simulated/floor/plasteel{ dir = 4; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "caH" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ @@ -31028,20 +30774,20 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "caM" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "caN" = ( /obj/item/radio/intercom{ name = "north bump"; pixel_y = 28 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "caO" = ( /obj/machinery/light{ dir = 1 @@ -31054,7 +30800,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "caP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31065,7 +30811,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "caQ" = ( /obj/machinery/economy/vending/hydronutrients, /obj/machinery/light{ @@ -31086,7 +30832,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "caS" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31138,7 +30884,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C11" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cbb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -31193,7 +30939,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cbj" = ( /obj/structure/sign/securearea{ pixel_y = 32 @@ -31202,7 +30948,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cbl" = ( /turf/simulated/floor/engine/co2, /area/station/engineering/atmos) @@ -31291,7 +31037,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cby" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -31311,7 +31057,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cbC" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -31332,7 +31078,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cbD" = ( /obj/structure/chair/office/dark{ dir = 8 @@ -31374,7 +31120,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C7" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cbG" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -31393,7 +31139,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cbJ" = ( /obj/structure/morgue{ dir = 1 @@ -31423,12 +31169,12 @@ dir = 4; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cbL" = ( /turf/simulated/floor/plasteel{ icon_state = "greenfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cbX" = ( /obj/structure/sign/poster/random{ pixel_y = 32 @@ -31543,7 +31289,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C5" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cco" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -31563,7 +31309,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C9" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "ccp" = ( /obj/machinery/computer/pandemic, /turf/simulated/floor/plasteel{ @@ -31639,7 +31385,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "ccE" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -31654,7 +31400,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "ccF" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -31672,10 +31418,15 @@ dir = 8; icon_state = "pipe-c" }, +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "ccH" = ( /turf/simulated/floor/plasteel, /area/station/engineering/control) @@ -31706,7 +31457,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "ccR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -31731,7 +31482,7 @@ dir = 6; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "ccZ" = ( /obj/machinery/requests_console{ department = "Hydroponics"; @@ -31904,7 +31655,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cdF" = ( /obj/effect/landmark/spawner/xeno, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ @@ -31926,7 +31677,7 @@ /area/station/maintenance/apmaint) "cdJ" = ( /obj/structure/lattice, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, +/obj/item/reagent_containers/drinks/bottle/goldschlager, /turf/space, /area/space/nearstation) "cdM" = ( @@ -31976,7 +31727,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cdX" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -31990,7 +31741,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cdZ" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Aft-Port"; @@ -32000,7 +31751,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cea" = ( /obj/machinery/light/small, /obj/structure/sign/directions/security{ @@ -32019,7 +31770,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "ced" = ( /obj/machinery/light/small, /obj/structure/sign/directions/medical{ @@ -32036,12 +31787,12 @@ /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cee" = ( /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cef" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Aft-Starboard"; @@ -32050,7 +31801,7 @@ /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "ceh" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -32062,20 +31813,18 @@ /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cei" = ( /obj/machinery/firealarm{ dir = 4; name = "east bump"; pixel_x = 24 }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cej" = ( /obj/machinery/newscaster{ dir = 1; @@ -32089,7 +31838,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cek" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, @@ -32145,15 +31894,6 @@ icon_state = "green" }, /area/station/service/hydroponics) -"ceq" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j2s"; - name = "HoS Junction"; - sort_type_txt = "7" - }, -/turf/simulated/floor/plasteel, -/area/station/security/brig) "cer" = ( /obj/structure/window/reinforced{ dir = 8 @@ -32264,6 +32004,12 @@ icon_state = "whiteblue" }, /area/station/medical/paramedic) +"ceT" = ( +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry/lounge) "ceU" = ( /obj/structure/chair, /obj/item/radio/intercom/locked/confessional{ @@ -32283,7 +32029,7 @@ "ceW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/gin, +/obj/item/reagent_containers/drinks/bottle/gin, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "ceY" = ( @@ -32292,7 +32038,7 @@ }, /obj/machinery/economy/vending/cart, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "ceZ" = ( /obj/item/stack/rods{ amount = 4 @@ -32362,14 +32108,12 @@ name = "west bump"; pixel_x = -27 }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cfj" = ( /obj/machinery/light{ dir = 1 @@ -32425,7 +32169,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cfp" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -32437,14 +32181,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cfq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cfr" = ( /obj/structure/sign/directions/science{ pixel_x = -32; @@ -32461,7 +32205,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "cft" = ( /obj/structure/sign/science, /turf/simulated/wall, @@ -32517,13 +32261,13 @@ dir = 6; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cfB" = ( /turf/simulated/floor/plasteel{ dir = 10; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cfC" = ( /obj/machinery/door/airlock/public/glass, /obj/machinery/door/firedoor, @@ -32564,7 +32308,7 @@ dir = 8; icon_state = "brown" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "cfJ" = ( /obj/structure/table/wood, /obj/item/phone{ @@ -32602,9 +32346,7 @@ /area/station/maintenance/starboard) "cfV" = ( /obj/structure/sink/puddle, -/obj/structure/flora/junglebush/large{ - pixel_y = 0 - }, +/obj/structure/flora/junglebush/large, /turf/simulated/floor/grass/no_creep, /area/station/medical/virology) "cfW" = ( @@ -32613,11 +32355,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/carpet, /area/station/medical/psych) "cfY" = ( @@ -32733,7 +32471,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cgx" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -32742,13 +32480,18 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cgy" = ( /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cgz" = ( /obj/structure/table/glass, /obj/item/folder, @@ -32798,20 +32541,11 @@ /turf/simulated/wall/r_wall, /area/station/science/explab) "cgH" = ( -/obj/item/bonegel{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/cautery, -/obj/item/FixOVein{ - pixel_x = -6; - pixel_y = 6 - }, /obj/machinery/light{ dir = 1 }, +/obj/item/storage/surgical_tray, /obj/structure/table/tray, -/obj/item/scalpel, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkblue" @@ -32866,7 +32600,7 @@ /turf/simulated/floor/plasteel{ icon_state = "greenfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cgO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32885,7 +32619,7 @@ /turf/simulated/floor/plasteel{ icon_state = "greenfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cgP" = ( /obj/machinery/camera{ c_tag = "Hydroponics - Foyer" @@ -32907,7 +32641,7 @@ /turf/simulated/floor/plasteel{ icon_state = "greenfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cgQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -32927,7 +32661,7 @@ /turf/simulated/floor/plasteel{ icon_state = "greenfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cgT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, @@ -32985,7 +32719,7 @@ }, /obj/machinery/door_control{ id = "rdrnd"; - name = "Research and Development Containment Control"; + name = "Experi-mentor shutters"; pixel_y = 34; req_access_txt = "30" }, @@ -33050,7 +32784,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "chk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/girder, @@ -33164,7 +32898,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluefull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "chO" = ( /obj/machinery/door/airlock/public/glass{ name = "Hydroponics Storage" @@ -33181,7 +32915,7 @@ /turf/simulated/floor/plasteel{ icon_state = "greenfull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "chP" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -33208,11 +32942,7 @@ icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel, /area/station/maintenance/turbine) "chR" = ( @@ -33411,7 +33141,7 @@ dir = 1; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "ciu" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -33462,7 +33192,7 @@ dir = 9; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "ciD" = ( /obj/machinery/atmospherics/unary/thermomachine/heater/on, /turf/simulated/floor/plasteel{ @@ -33614,7 +33344,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "cjo" = ( /obj/structure/rack, /obj/item/stack/rods{ @@ -33756,7 +33486,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cjI" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -33770,7 +33500,7 @@ icon_state = "pipe-y" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cjM" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -33876,11 +33606,7 @@ dir = 4; name = "Gas to Chamber" }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "Engineering Engine Super APC"; - pixel_y = 24; +/obj/machinery/power/apc/critical/directional/north{ shock_proof = 1 }, /obj/structure/cable/yellow{ @@ -34097,18 +33823,6 @@ icon_state = "whitepurple" }, /area/station/science/research) -"clc" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/paicard, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "whitepurple" - }, -/area/station/science/research) "cle" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -34146,7 +33860,7 @@ "cli" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/wall, -/area/station/maintenance/fpmaint) +/area/station/supply/qm) "cll" = ( /obj/structure/sign/poster/random{ pixel_y = -32 @@ -34165,7 +33879,6 @@ }, /area/station/service/chapel/office) "cln" = ( -/obj/item/reagent_containers/food/snacks/monkeycube, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) @@ -34185,6 +33898,12 @@ icon_state = "white" }, /area/station/science/rnd) +"clv" = ( +/obj/item/food/snacks/monkeycube, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "cly" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/visible{ @@ -34379,10 +34098,11 @@ }, /area/station/medical/medbay) "cmm" = ( -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/area/station/hallway/primary/aft) +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "cmn" = ( /obj/machinery/door/morgue{ name = "Confession Booth (Chaplain)"; @@ -34423,7 +34143,7 @@ "cmu" = ( /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "cmv" = ( /turf/simulated/wall, /area/station/medical/cryo) @@ -34546,7 +34266,7 @@ dir = 10 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "cmX" = ( /turf/simulated/wall, /area/station/medical/exam_room) @@ -34596,7 +34316,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "cnm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, @@ -34657,7 +34377,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cnt" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -34692,7 +34412,7 @@ desc = ""; icon_state = "C14" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cnF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -34951,7 +34671,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "coA" = ( /obj/structure/chair/stool, /obj/effect/landmark/start/doctor, @@ -34987,11 +34707,7 @@ pixel_x = 24; pixel_y = 10 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" @@ -35221,11 +34937,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/light_switch{ name = "north bump"; pixel_y = 24 @@ -35265,7 +34977,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cpQ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, @@ -35287,7 +34999,7 @@ }, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ywflowers, -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -35572,11 +35284,6 @@ }, /area/station/medical/virology) "crd" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/item/radio/intercom{ name = "east bump"; pixel_x = 28 @@ -35585,13 +35292,17 @@ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "crf" = ( /turf/simulated/floor/plasteel{ dir = 9; icon_state = "whiteblue" }, /area/station/medical/exam_room) +"crg" = ( +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "crh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -35681,10 +35392,7 @@ icon_state = "0-8" }, /obj/machinery/atmospherics/portable/canister/oxygen, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating, /area/station/public/storage/emergency/port) "crB" = ( @@ -35738,7 +35446,7 @@ dir = 4; icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "crN" = ( /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, @@ -35990,7 +35698,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "csV" = ( /obj/structure/table/glass, /obj/item/reagent_containers/spray/plantbgone{ @@ -36014,7 +35722,6 @@ /area/station/maintenance/starboard2) "csW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/item/reagent_containers/food/snacks/monkeycube, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "csX" = ( @@ -36174,7 +35881,7 @@ }, /area/station/medical/cryo) "ctI" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkblue" @@ -36218,7 +35925,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "ctT" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -36334,7 +36041,7 @@ dir = 4; icon_state = "purple" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cue" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -36597,12 +36304,6 @@ /area/station/science/toxins/mixing) "cuS" = ( /obj/structure/table/glass, -/obj/item/circular_saw, -/obj/item/bonesetter{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/surgicaldrill, /obj/item/radio/intercom{ name = "west bump"; pixel_x = -28 @@ -36668,15 +36369,6 @@ icon_state = "whiteblue" }, /area/station/medical/exam_room) -"cve" = ( -/obj/structure/girder, -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/apmaint) "cvg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -36710,7 +36402,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C6" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cvo" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/medmaint) @@ -36757,11 +36449,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "darkgreycheck" }, @@ -36780,11 +36468,9 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cvJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /turf/simulated/floor/plasteel{ icon_state = "darkgreycheck" }, @@ -36851,7 +36537,7 @@ dir = 1; icon_state = "red" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "cvY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -37022,7 +36708,7 @@ /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cwG" = ( /turf/simulated/floor/plating, /area/station/maintenance/starboard2) @@ -37096,9 +36782,7 @@ name = "west bump"; pixel_x = -24 }, -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, +/obj/item/kirbyplants/plant11, /obj/machinery/light{ dir = 8 }, @@ -37132,7 +36816,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cxm" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -37192,9 +36876,7 @@ dir = 8 }, /obj/structure/window/reinforced, -/obj/structure/flora/junglebush/large{ - pixel_y = 0 - }, +/obj/structure/flora/junglebush/large, /turf/simulated/floor/grass/no_creep, /area/station/medical/exam_room) "cxz" = ( @@ -37317,9 +36999,7 @@ }, /area/station/medical/medbay) "cxL" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whiteblue" @@ -37459,7 +37139,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "cyu" = ( /obj/structure/sign/fire, /turf/simulated/wall/r_wall, @@ -37499,8 +37179,13 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "cyE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -37586,13 +37271,9 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cyM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -37601,7 +37282,7 @@ dir = 4; icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cyN" = ( /obj/structure/table/wood, /obj/item/storage/bible, @@ -37724,10 +37405,7 @@ /area/station/medical/morgue) "czo" = ( /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whiteblue" @@ -37735,10 +37413,7 @@ /area/station/medical/surgery/primary) "czs" = ( /obj/structure/closet/secure_closet/medical3, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ dir = 1; @@ -37857,13 +37532,13 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "czH" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "czJ" = ( /obj/effect/turf_decal/stripes/white/line, /turf/simulated/floor/plasteel{ @@ -38007,7 +37682,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C12" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cAA" = ( /obj/machinery/alarm{ dir = 8; @@ -38017,7 +37692,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cAB" = ( /obj/machinery/hologram/holopad, /obj/effect/turf_decal/delivery, @@ -38059,11 +37734,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -38077,9 +37748,6 @@ }, /area/station/engineering/gravitygenerator) "cAJ" = ( -/obj/structure/closet{ - name = "Evidence Closet 2" - }, /obj/machinery/alarm{ dir = 4; name = "west bump"; @@ -38091,6 +37759,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -38165,11 +37834,7 @@ icon_state = "0-8" }, /obj/item/stock_parts/cell/high, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel, /area/station/public/storage/tools) "cBb" = ( @@ -38431,19 +38096,12 @@ /area/station/science/server) "cBT" = ( /obj/structure/table, -/obj/item/retractor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/bonegel, -/obj/item/hemostat{ - pixel_x = 6 - }, /obj/machinery/firealarm{ name = "north bump"; pixel_y = 24 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/storage/surgical_tray, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" @@ -38576,11 +38234,11 @@ dir = 1 }, /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, /turf/simulated/floor/carpet, /area/station/service/chapel) "cCu" = ( @@ -38597,7 +38255,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "cCy" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, @@ -38718,7 +38376,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cCV" = ( /turf/simulated/floor/plasteel{ icon_state = "whitepurple" @@ -39099,7 +38757,7 @@ pixel_y = 2 }, /obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "cEk" = ( @@ -39132,7 +38790,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cEn" = ( /obj/structure/closet/secure_closet/scientist, /obj/machinery/newscaster{ @@ -39166,7 +38824,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cEz" = ( /obj/structure/table/glass, /obj/item/storage/box/bodybags{ @@ -39324,7 +38982,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cEY" = ( /turf/simulated/wall, /area/station/medical/surgery/secondary) @@ -39657,11 +39315,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/carpet, /area/station/service/chapel) "cGm" = ( @@ -39786,7 +39440,7 @@ dir = 4 }, /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -39857,7 +39511,7 @@ dir = 1; icon_state = "darkblue" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cGY" = ( /turf/simulated/floor/plasteel{ icon_state = "whiteblue" @@ -40043,11 +39697,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -40105,7 +39755,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C4" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cHJ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -40133,10 +39783,10 @@ /area/station/science/research) "cHO" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3 }, /turf/simulated/floor/plating, @@ -40358,7 +40008,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cIu" = ( /turf/simulated/wall/r_wall, /area/station/science/robotics/chargebay) @@ -40389,7 +40039,7 @@ "cIA" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "cIB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, @@ -40601,7 +40251,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -40634,11 +40284,7 @@ dir = 10 }, /obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -40825,7 +40471,7 @@ }, /area/station/security/permabrig) "cKm" = ( -/obj/machinery/suit_storage_unit/security/hos, +/obj/machinery/suit_storage_unit/security/hos/secure, /turf/simulated/floor/plasteel/dark, /area/station/command/office/hos) "cKn" = ( @@ -40877,7 +40523,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cKu" = ( /obj/machinery/r_n_d/experimentor, /turf/simulated/floor/engine, @@ -40897,7 +40543,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/suit_storage_unit/rd, +/obj/machinery/suit_storage_unit/rd/secure, /turf/simulated/floor/plasteel{ icon_state = "darkgreycheck" }, @@ -40920,7 +40566,7 @@ /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cKz" = ( /obj/machinery/computer/cloning{ dir = 1 @@ -40941,9 +40587,7 @@ }, /area/station/medical/cloning) "cKA" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, +/obj/item/kirbyplants/plant18, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkgreencorners" @@ -40975,7 +40619,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/rack, /obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -41050,10 +40694,7 @@ /area/station/maintenance/aft2) "cKV" = ( /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "whiteblue" @@ -41171,25 +40812,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/maintenance/aft2) -"cLm" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - name = "west bump"; - pixel_x = -27 - }, -/turf/simulated/floor/plasteel{ - dir = 9; - icon_state = "purple" - }, -/area/station/science/research) "cLn" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, @@ -41252,7 +40874,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "cLF" = ( /obj/structure/table_frame/wood, /turf/simulated/floor/plating, @@ -41390,7 +41012,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cMi" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -41419,20 +41041,11 @@ /turf/simulated/floor/plasteel, /area/station/science/robotics) "cMx" = ( -/obj/item/bonegel{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/cautery, -/obj/item/FixOVein{ - pixel_x = -6; - pixel_y = 6 - }, /obj/machinery/light{ dir = 1 }, +/obj/item/storage/surgical_tray, /obj/structure/table/tray, -/obj/item/scalpel, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkblue" @@ -41473,7 +41086,7 @@ /area/station/maintenance/portsolar) "cMF" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ +/obj/item/reagent_containers/drinks/bottle/holywater{ pixel_x = -2; pixel_y = 2 }, @@ -41500,8 +41113,8 @@ /area/station/medical/break_room) "cMK" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/enzyme{ layer = 5 }, /turf/simulated/floor/plating, @@ -41518,7 +41131,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/item/reagent_containers/drinks/bottle/tequila, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "cMP" = ( @@ -41544,7 +41157,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cMW" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -41599,11 +41212,7 @@ /area/station/maintenance/fore) "cNf" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -41906,7 +41515,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cNU" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -41948,13 +41557,11 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "escape" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cOh" = ( /obj/structure/closet/crate/freezer, /obj/effect/spawner/lootdrop/maintenance, @@ -41976,22 +41583,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/aft2) -"cOk" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plasteel{ - dir = 5; - icon_state = "purple" - }, -/area/station/science/research) "cOm" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -42093,7 +41684,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cOP" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=9.3-Escape-3"; @@ -42296,7 +41887,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cPF" = ( /obj/effect/landmark/start/doctor, /turf/simulated/floor/plasteel{ @@ -42325,7 +41916,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cPK" = ( /obj/structure/sign/poster/contraband/random{ pixel_x = 32 @@ -42462,11 +42053,7 @@ /obj/item/disk/tech_disk{ pixel_y = 6 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -42646,11 +42233,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "cQU" = ( @@ -42709,7 +42292,6 @@ /obj/machinery/optable{ name = "Robotics Operating Table" }, -/obj/item/storage/firstaid/machine, /obj/structure/extinguisher_cabinet{ name = "south bump"; pixel_y = -30 @@ -42721,12 +42303,6 @@ /area/station/science/robotics) "cRp" = ( /obj/structure/table/glass, -/obj/item/circular_saw, -/obj/item/bonesetter{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/surgicaldrill, /obj/item/radio/intercom{ name = "east bump"; pixel_x = 28 @@ -42926,7 +42502,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cRU" = ( /turf/simulated/wall, /area/station/medical/psych) @@ -43036,6 +42612,21 @@ }, /turf/simulated/wall, /area/space/nearstation) +"cSE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor{ + id_tag = "SecJusticeChamber"; + name = "Justice Vent" + }, +/turf/simulated/floor/plating, +/area/station/security/execution) "cSF" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -43133,11 +42724,11 @@ /area/station/maintenance/apmaint) "cSR" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -43257,9 +42848,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, +/obj/item/kirbyplants/plant24, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -43305,7 +42894,7 @@ /area/station/security/interrogation) "cTz" = ( /obj/structure/lattice/catwalk, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ pixel_x = -7; pixel_y = 2 }, @@ -43428,9 +43017,7 @@ name = "east bump"; pixel_x = 27 }, -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, +/obj/item/kirbyplants/plant14, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -43443,11 +43030,7 @@ }, /area/station/medical/medbay) "cUf" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -43819,11 +43402,7 @@ name = "north bump"; pixel_y = 24 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "cVw" = ( @@ -44203,11 +43782,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ icon_state = "darkgreycheck" }, @@ -44248,7 +43823,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "cXo" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -44568,7 +44143,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cYO" = ( /obj/machinery/iv_drip, /obj/machinery/firealarm{ @@ -44618,7 +44193,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "cZh" = ( /obj/machinery/optable, /turf/simulated/floor/plasteel{ @@ -44739,7 +44314,7 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "cZX" = ( /obj/machinery/light{ dir = 8 @@ -45056,7 +44631,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "dbc" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -45175,8 +44750,8 @@ /turf/simulated/floor/plating/airless, /area/station/science/toxins/test) "dce" = ( -/obj/structure/dispenser, -/turf/simulated/floor/plasteel, +/obj/structure/sign/poster/official/random, +/turf/simulated/wall/r_wall, /area/station/science/toxins/mixing) "dch" = ( /obj/structure/lattice/catwalk, @@ -45626,7 +45201,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "deE" = ( /obj/structure/sign/poster/random{ pixel_x = -32 @@ -45635,7 +45210,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "deF" = ( /obj/structure/sign/directions/evac{ pixel_x = 32 @@ -45643,7 +45218,7 @@ /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "deH" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -45803,10 +45378,7 @@ /area/station/service/chapel) "dfs" = ( /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -45873,7 +45445,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "dgb" = ( /obj/structure/sign/double/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)."; @@ -45889,7 +45461,7 @@ /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "dgg" = ( /obj/effect/landmark/burnturf, /obj/effect/spawner/lootdrop{ @@ -45900,12 +45472,12 @@ /area/station/maintenance/port) "dgj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "dgn" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, @@ -46104,11 +45676,7 @@ }, /obj/item/storage/box/beakers, /obj/item/reagent_containers/spray/cleaner, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -46207,11 +45775,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/light_switch{ dir = 8; name = "custom placement"; @@ -46287,6 +45851,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/station/security/brig) +"djR" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/security/brig) "djU" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, @@ -46430,6 +46003,17 @@ icon_state = "white" }, /area/station/science/xenobiology) +"dnj" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) "dnm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -46532,6 +46116,22 @@ /obj/machinery/light/small, /turf/simulated/floor/mineral/tranquillite, /area/station/service/mime) +"doE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/classic/reversed, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 2; + id_tag = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, +/obj/item/food/snacks/pie, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) "doV" = ( /obj/machinery/computer/mecha{ dir = 8 @@ -46809,7 +46409,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "dwC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -47169,7 +46769,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "dEG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -47178,22 +46778,29 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; + d1 = 4; d2 = 8; - icon_state = "2-8" + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) +"dEM" = ( +/turf/simulated/floor/plasteel{ + icon_state = "C9" }, +/area/station/hallway/primary/central/north) +"dFf" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) -"dEM" = ( -/turf/simulated/floor/plasteel{ - icon_state = "C9" - }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "dFD" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -47300,6 +46907,16 @@ icon_state = "grimy" }, /area/station/security/detective) +"dJB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) "dKd" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -47334,6 +46951,17 @@ icon_state = "red" }, /area/station/security/main) +"dKB" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) "dKK" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -47386,6 +47014,18 @@ /obj/machinery/atmospherics/binary/valve/open, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_north) +"dNt" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plasteel, +/area/station/security/brig) "dNU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47478,6 +47118,12 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) +"dPX" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) "dQb" = ( /turf/simulated/floor/plasteel{ icon_state = "darkgrey" @@ -47625,6 +47271,12 @@ icon_state = "white" }, /area/station/medical/reception) +"dSN" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard/east) "dTt" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -47677,19 +47329,10 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "dUF" = ( -/obj/machinery/door/airlock/external{ - id_tag = "soldock_door_ext"; - locked = 1; - name = "Arrivals External Access" - }, -/obj/machinery/access_button{ - autolink_id = "soldock_btn_ext"; - name = "exterior access button"; - pixel_x = -7; - pixel_y = -25 - }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/e_to_w/arrivals, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "dUG" = ( /obj/structure/chair/office/dark{ dir = 8 @@ -47800,7 +47443,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dXb" = ( /obj/machinery/atmospherics/meter, /obj/machinery/atmospherics/pipe/manifold/visible/cyan, @@ -47875,11 +47518,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/medmaint) "dYK" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -47979,25 +47618,12 @@ icon_state = "0-4" }, /obj/item/megaphone, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "north bump Important Area"; - pixel_y = 24 - }, +/obj/machinery/power/apc/important/directional/north, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "red" }, /area/station/security/warden) -"dZP" = ( -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/port) "dZZ" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel, @@ -48009,7 +47635,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "ebf" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -48021,7 +47647,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "ebs" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "BS" @@ -48174,6 +47800,7 @@ name = "east bump"; pixel_x = 27 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/security/brig) "efd" = ( @@ -48232,15 +47859,6 @@ icon_state = "whitepurple" }, /area/station/maintenance/asmaint) -"egC" = ( -/obj/item/slime_extract/oil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/station/maintenance/asmaint) "ehh" = ( /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; @@ -48376,7 +47994,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "eju" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -48793,6 +48411,18 @@ icon_state = "cult" }, /area/station/legal/lawoffice) +"etn" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "etp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ @@ -48806,7 +48436,7 @@ dir = 1; icon_state = "red" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "etB" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plasteel, @@ -48822,9 +48452,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "etR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -49234,7 +48862,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "eCH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -49444,7 +49072,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "eIa" = ( /mob/living/carbon/human/monkey, /obj/structure/cable/yellow{ @@ -49522,15 +49150,6 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/aft2) -"eIY" = ( -/obj/machinery/door/poddoor/preopen{ - name = "Biohazard Shutter"; - id_tag = "RnDChem" - }, -/obj/effect/spawner/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/simple/insulated, -/turf/simulated/floor/engine, -/area/station/science/test_chamber) "eJh" = ( /obj/machinery/atmospherics/unary/thermomachine/heater/on{ dir = 1 @@ -49622,6 +49241,17 @@ /obj/effect/spawner/random_spawners/wall_rusted_maybe, /turf/simulated/wall/r_wall, /area/station/science/test_chamber) +"eLW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) "eMh" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -49665,6 +49295,21 @@ /obj/effect/spawner/random_spawners/cobweb_left_frequent, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"eNa" = ( +/obj/machinery/alarm{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) +"eNp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore/east) "eNR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -49688,9 +49333,7 @@ name = "Kitchen Counter Shutters" }, /obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, -/obj/machinery/door/window/classic/normal{ - name = "Kitchen" - }, +/obj/machinery/door/window/classic/normal, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -49707,6 +49350,11 @@ icon_state = "darkgrey" }, /area/station/science/robotics) +"eOI" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) "eOZ" = ( /obj/effect/turf_decal/stripes/white/line, /obj/machinery/firealarm{ @@ -49739,7 +49387,7 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "ePK" = ( /turf/simulated/floor/wood{ icon_state = "wood-broken3" @@ -49750,6 +49398,11 @@ dir = 1 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -49802,6 +49455,29 @@ icon_state = "cafeteria" }, /area/station/science/break_room) +"eRh" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery"; + dir = 8; + location = "Kitchen" + }, +/obj/machinery/door/window/classic/normal{ + name = "Kitchen Delivery"; + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plasteel{ + icon_state = "bot" + }, +/area/station/service/kitchen) "eRy" = ( /obj/structure/table/glass, /obj/structure/cable/yellow{ @@ -49931,11 +49607,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -50137,7 +49809,7 @@ /area/station/science/research) "eVO" = ( /obj/machinery/light, -/obj/structure/closet/secure_closet/roboticist, +/obj/machinery/economy/vending/robodrobe, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -50210,6 +49882,28 @@ }, /turf/simulated/floor/plating, /area/station/science/rnd) +"eYD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id_tag = "executionfireblast" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/security/execution) "eYE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -50346,7 +50040,6 @@ /turf/simulated/floor/plating, /area/station/security/brig) "fbQ" = ( -/obj/item/reagent_containers/food/snacks/monkeycube, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -50390,7 +50083,6 @@ /turf/simulated/wall, /area/station/engineering/atmos) "fcB" = ( -/obj/machinery/suit_storage_unit/atmos, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 6 }, @@ -50404,11 +50096,8 @@ pixel_x = -24; pixel_y = -6 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -50448,9 +50137,8 @@ /area/station/engineering/secure_storage) "fdt" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/insulated, /turf/simulated/floor/engine/vacuum, /area/station/science/toxins/mixing) "fdu" = ( @@ -50463,16 +50151,11 @@ /turf/simulated/floor/plasteel, /area/station/security/brig) "fdz" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, +/obj/item/kirbyplants/plant11, /turf/simulated/floor/plasteel, /area/station/supply/office) "feu" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -50483,7 +50166,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C10" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "ffG" = ( /obj/structure/chair/office/dark{ dir = 1 @@ -50537,13 +50220,24 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "fgC" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"fgN" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "fgS" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -50561,7 +50255,7 @@ /turf/space, /area/station/engineering/solar/auxport) "fho" = ( -/obj/structure/chair/stool, +/obj/structure/closet/secure_closet/roboticist, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -50571,7 +50265,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bluefull" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "fhu" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -50582,14 +50276,12 @@ }, /area/station/engineering/atmos) "fhC" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "fhR" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -50620,11 +50312,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -50674,13 +50362,6 @@ icon_state = "cafeteria" }, /area/station/service/kitchen) -"fjU" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/simulated/floor/engine/vacuum, -/area/station/science/toxins/mixing) "fkr" = ( /obj/structure/table, /obj/item/flashlight/lamp, @@ -50789,11 +50470,7 @@ name = "north bump"; pixel_y = 24 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -50941,6 +50618,12 @@ icon_state = "darkgreycheck" }, /area/station/science/research) +"fpO" = ( +/obj/structure/sign/vacuum/external{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "fpR" = ( /obj/structure/sign/pods{ pixel_x = 32 @@ -51004,6 +50687,12 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) +"fqB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "fqO" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -51153,11 +50842,7 @@ icon_state = "0-4" }, /obj/effect/turf_decal/stripes/corner, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "caution" @@ -51190,13 +50875,23 @@ icon_state = "solarpanel" }, /area/station/engineering/solar/port) +"ftz" = ( +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port/east) "ftI" = ( /obj/machinery/computer/general_air_control/large_tank_control{ dir = 8; inlet_injector_autolink_id = "n2o_in"; name = "Nitrous Oxide Supply Control"; outlet_vent_autolink_id = "n2o_out"; - autolink_sensors = list("n2o_sensor"="Tank") + autolink_sensors = list("n2o_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/window/reinforced{ @@ -51248,11 +50943,7 @@ }, /area/station/security/range) "fuy" = ( -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, +/obj/effect/spawner/random_spawners/grille_often, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "fuC" = ( @@ -51415,10 +51106,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/firealarm{ dir = 8; name = "west bump"; @@ -51456,10 +51144,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ dir = 6; @@ -51507,11 +51192,11 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "fzW" = ( -/obj/machinery/suit_storage_unit/security, /obj/machinery/camera{ c_tag = "Armory - Internal"; dir = 8 }, +/obj/machinery/suit_storage_unit/security/secure, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -51592,6 +51277,19 @@ icon_state = "whiteyellow" }, /area/station/medical/chemistry) +"fBQ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) "fBW" = ( /obj/machinery/atmospherics/binary/valve/digital/open{ name = "Output Release" @@ -51611,7 +51309,7 @@ /area/station/engineering/control) "fCn" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/item/reagent_containers/glass/beaker/waterbottle{ @@ -51713,7 +51411,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "fEw" = ( /obj/effect/landmark/spawner/nukedisc_respawn, /turf/simulated/floor/plasteel{ @@ -51921,8 +51619,13 @@ sort_type_txt = "20" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "fHC" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 5 @@ -51966,7 +51669,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C12" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "fId" = ( /turf/simulated/wall/r_wall, /area/station/science/server) @@ -52022,7 +51725,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C3" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "fJr" = ( /obj/machinery/disposal, /obj/structure/cable/yellow{ @@ -52047,9 +51750,7 @@ }, /area/station/science/toxins/mixing) "fKW" = ( -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, +/obj/item/kirbyplants/plant16, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -52103,7 +51804,7 @@ dir = 4; icon_state = "browncorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "fMZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -52199,7 +51900,7 @@ /obj/structure/cable/yellow, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "fPa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -52259,25 +51960,36 @@ }, /area/station/engineering/break_room) "fQl" = ( -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, +/obj/item/kirbyplants/plant24, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, /area/station/science/break_room) "fQr" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"fQt" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) "fQQ" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -52344,6 +52056,20 @@ icon_state = "darkredcorners" }, /area/station/security/armory/secure) +"fSz" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) "fSW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -52451,6 +52177,16 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) +"fUo" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "fUI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -52584,6 +52320,9 @@ }, /turf/simulated/floor/wood, /area/station/service/bar) +"fXo" = ( +/turf/simulated/wall, +/area/station/hallway/primary/central/south) "fXy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -52593,6 +52332,12 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"fXz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) "fYb" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 @@ -52790,17 +52535,6 @@ /obj/item/deck/cards, /turf/simulated/floor/plasteel, /area/station/security/permabrig) -"gcW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - id_tag = "soldock_door_int"; - locked = 1; - name = "Arrivals External Access" - }, -/turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) "gdb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -52876,34 +52610,6 @@ icon_state = "darkgrey" }, /area/station/science/toxins/mixing) -"geC" = ( -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, -/obj/machinery/camera{ - c_tag = "Science Hallway - Research"; - network = list("Research","SS13") - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/station/science/research) "geG" = ( /obj/machinery/economy/vending/snack, /obj/machinery/camera{ @@ -52929,9 +52635,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -53097,6 +52800,13 @@ }, /turf/simulated/floor/plasteel, /area/station/science/robotics) +"ggQ" = ( +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/station/hallway/primary/central/se) "ggT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 6 @@ -53118,11 +52828,15 @@ pixel_x = 32; pixel_y = 32 }, +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "ghT" = ( /obj/machinery/computer/arcade/orion_trail{ dir = 8 @@ -53253,6 +52967,9 @@ }, /area/station/science/toxins/launch) "glS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "black" @@ -53294,10 +53011,7 @@ /obj/item/storage/firstaid/regular, /obj/machinery/light, /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, @@ -53536,6 +53250,11 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/security/prison/cell_block/A) +"gst" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) "gsM" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -53657,7 +53376,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/item/slime_extract/pink, +/obj/item/slime_extract, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable/yellow{ @@ -53712,7 +53431,7 @@ dir = 10 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "gzt" = ( /obj/structure/lattice, /obj/machinery/camera{ @@ -53721,18 +53440,6 @@ }, /turf/space, /area/space/nearstation) -"gzU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "purple" - }, -/area/station/science/xenobiology) "gAM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -53778,9 +53485,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -53791,6 +53495,16 @@ }, /turf/simulated/floor/plasteel, /area/station/security/brig) +"gBB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "gBG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ @@ -53868,6 +53582,16 @@ icon_state = "whiteyellowfull" }, /area/station/medical/chemistry) +"gCA" = ( +/obj/structure/extinguisher_cabinet{ + name = "west bump"; + pixel_x = -27 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) "gCX" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -54056,6 +53780,17 @@ icon_state = "darkgrey" }, /area/station/science/toxins/mixing) +"gFZ" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/directional/north, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard/north) "gGe" = ( /obj/effect/turf_decal/stripes/white/line, /obj/machinery/atmospherics/portable/pump, @@ -54257,11 +53992,7 @@ /area/station/security/permabrig) "gKP" = ( /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "red" @@ -54324,6 +54055,15 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard) +"gMn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "gMo" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /turf/simulated/floor/plating, @@ -54419,7 +54159,7 @@ /turf/simulated/floor/plasteel{ icon_state = "caution" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "gND" = ( /obj/machinery/alarm{ name = "north bump"; @@ -54559,16 +54299,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "gRF" = ( -/obj/structure/closet/secure_closet{ - anchored = 1; - name = "Evidence Storage"; - req_access_txt = "4" - }, /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, +/obj/structure/closet/secure_closet/evidence/detective, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -54715,7 +54448,7 @@ pixel_x = -32 }, /turf/simulated/floor/plating, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "gUk" = ( /obj/structure/chair{ dir = 1 @@ -54857,6 +54590,9 @@ /obj/effect/spawner/window/reinforced/tinted/grilled, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) +"gWO" = ( +/turf/simulated/floor/plasteel, +/area/station/science/toxins/mixing) "gXg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -54984,7 +54720,7 @@ }, /area/station/engineering/control) "gZT" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 }, /turf/simulated/floor/plasteel{ @@ -55067,9 +54803,7 @@ }, /area/station/medical/exam_room) "hcI" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/machinery/light/small{ dir = 1 }, @@ -55130,6 +54864,21 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"hdw" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "hdE" = ( /obj/structure/chair/stool{ dir = 4 @@ -55385,10 +55134,21 @@ d2 = 4; icon_state = "1-4" }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "darkred" }, /area/station/security/execution) +"hiC" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "hiO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -55444,15 +55204,18 @@ /area/station/command/office/cmo) "hjr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "hjx" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -55545,7 +55308,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "hlN" = ( /obj/structure/closet/secure_closet/security, /obj/structure/extinguisher_cabinet{ @@ -55815,17 +55578,23 @@ /area/station/security/permabrig) "hrf" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/wood, /area/station/service/bar) +"hrO" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft/south) "hrZ" = ( /obj/structure/table, /obj/effect/turf_decal/delivery/hollow, @@ -55886,27 +55655,25 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "hty" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard2) "htP" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/milk{ +/obj/item/reagent_containers/condiment/milk{ pixel_x = 6; pixel_y = 8 }, -/obj/item/reagent_containers/food/condiment/soymilk{ +/obj/item/reagent_containers/condiment/soymilk{ pixel_x = -6; pixel_y = 8 }, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/drinks/bottle/cream{ +/obj/item/reagent_containers/condiment/sugar, +/obj/item/reagent_containers/drinks/bottle/cream{ pixel_x = 6; pixel_y = -2 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = -5; pixel_y = -2 }, @@ -56068,12 +55835,13 @@ network = list("SS13","tcomm") }, /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel/dark, /area/station/telecomms/chamber) +"hxz" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating/airless, +/area/space/nearstation) "hxD" = ( /obj/structure/window/reinforced{ dir = 1 @@ -56241,7 +56009,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "hBH" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on{ dir = 8; @@ -56291,6 +56059,17 @@ }, /turf/simulated/floor/bluegrid/telecomms, /area/station/science/xenobiology) +"hCu" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) "hCA" = ( /obj/structure/closet/crate/secure/bin, /obj/item/paper/crumpled, @@ -56366,13 +56145,20 @@ "hDY" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/brig{ +/obj/machinery/door/window/reinforced/normal{ + name = "Security Desk"; + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ dir = 1 }, /turf/simulated/floor/plasteel, /area/station/security/checkpoint/secondary) "hEe" = ( /obj/effect/landmark/start/roboticist, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/science/robotics) "hEj" = ( @@ -56569,11 +56355,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -56786,11 +56568,11 @@ /area/station/turret_protected/ai) "hLT" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -56805,6 +56587,12 @@ icon_state = "cafeteria" }, /area/station/service/kitchen) +"hLZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "hMv" = ( /obj/effect/landmark/spawner/rev, /obj/structure/morgue{ @@ -56888,11 +56676,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore2) "hOA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -56997,7 +56781,7 @@ inlet_injector_autolink_id = "o2_in"; name = "Oxygen Supply Control"; outlet_vent_autolink_id = "o2_out"; - autolink_sensors = list("o2_sensor"="Tank") + autolink_sensors = list("o2_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -57181,7 +56965,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "hTS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -57215,10 +56999,6 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/garden) "hVw" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, /turf/simulated/floor/engine/vacuum, /area/station/science/toxins/mixing) "hVK" = ( @@ -57386,6 +57166,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/public/dorms) +"hZh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor{ + id_tag = "SecJusticeChamber"; + name = "Justice Vent" + }, +/turf/simulated/floor/plating, +/area/station/security/execution) "hZi" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/stripes/corner, @@ -57506,7 +57311,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "ibR" = ( /obj/structure/chair, /obj/machinery/light{ @@ -57517,7 +57322,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "icm" = ( /turf/simulated/floor/plasteel{ dir = 10; @@ -57867,6 +57672,20 @@ icon_state = "dark" }, /area/station/security/storage) +"ijn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/important/directional/north, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "ijt" = ( /obj/structure/window/reinforced{ dir = 1 @@ -57963,7 +57782,7 @@ dir = 1; name = "Delivery Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/mail_sorting{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -58045,7 +57864,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "inq" = ( /obj/structure/sink{ dir = 4; @@ -58080,12 +57899,6 @@ /turf/simulated/floor/plasteel, /area/station/science/robotics) "inw" = ( -/obj/machinery/access_button{ - autolink_id = "soldock_btn_int"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25 - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -58093,7 +57906,7 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "inB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plating, @@ -58155,7 +57968,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "ipj" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -58206,6 +58019,11 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"iqu" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "iqC" = ( /obj/structure/table, /obj/item/toy/plushie/face_hugger, @@ -58219,11 +58037,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos/distribution) "iqY" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -58384,6 +58198,9 @@ id = "toxinsigniter"; pixel_y = -25 }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, /turf/simulated/floor/engine/vacuum, /area/station/science/toxins/mixing) "iuU" = ( @@ -58464,6 +58281,10 @@ /area/station/public/vacant_office) "iwm" = ( /obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -58485,11 +58306,6 @@ /turf/simulated/floor/plating, /area/station/science/robotics/showroom) "iwB" = ( -/obj/machinery/camera{ - c_tag = "Science - Toxins Lab"; - dir = 1; - network = list("Research","SS13") - }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -58546,6 +58362,20 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"ixQ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) "ixU" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -58731,6 +58561,11 @@ /obj/item/storage/fancy/cigarettes, /obj/item/flash, /obj/item/reagent_containers/spray/pepper, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkred" @@ -58912,9 +58747,13 @@ icon_state = "whitehall" }, /area/station/science/research) +"iFx" = ( +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) "iFA" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/h_chocolate, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -58925,10 +58764,7 @@ name = "west bump"; pixel_x = -24 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -58968,7 +58804,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "iHo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ @@ -59053,6 +58889,9 @@ icon_state = "darkred" }, /area/station/security/storage) +"iJH" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore/east) "iKb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -59154,7 +58993,8 @@ icon_state = "4-8" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, +/obj/effect/mapping_helpers/airlock/access/any/supply/cargo_bay, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel, /area/station/supply/lobby) "iKZ" = ( @@ -59166,7 +59006,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "iLj" = ( /obj/effect/landmark/lightsout, /obj/machinery/hologram/holopad, @@ -59400,14 +59240,11 @@ /obj/structure/sign/poster/official/random{ pixel_x = -32 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "iQC" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -59516,6 +59353,21 @@ /obj/item/stack/cable_coil/blue, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"iSY" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "iTb" = ( /obj/structure/sign/poster/official/random{ pixel_y = 32 @@ -59554,11 +59406,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard) "iTB" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -59580,6 +59428,11 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "darkred" }, @@ -59642,7 +59495,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "iVP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -59743,6 +59596,17 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, /area/station/security/permabrig) +"iYA" = ( +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) "iZh" = ( /obj/effect/spawner/window/reinforced/polarized{ id = "Psych" @@ -59785,7 +59649,7 @@ /obj/machinery/door/airlock/mining{ name = "Warehouse" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/storage) "jau" = ( @@ -59799,11 +59663,7 @@ icon_state = "1-2" }, /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plating, /area/station/maintenance/fore2) "jbe" = ( @@ -59838,6 +59698,16 @@ /obj/structure/lattice, /turf/space, /area/space/nearstation) +"jcg" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft/north) "jcA" = ( /obj/machinery/light/small{ dir = 1 @@ -59869,6 +59739,20 @@ icon_state = "darkblue" }, /area/station/command/office/cmo) +"jdP" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/south) "jdX" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 @@ -59935,11 +59819,16 @@ "jfb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "jfk" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow{ @@ -59954,6 +59843,24 @@ }, /turf/simulated/floor/plating, /area/station/security/permabrig) +"jft" = ( +/obj/item/kirbyplants/plant10, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry/lounge) +"jfN" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"jgq" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/east) "jgD" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -59969,6 +59876,17 @@ icon_state = "dark" }, /area/station/turret_protected/ai) +"jgP" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft/north) "jiK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -59996,6 +59914,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/station/public/mrchangs) +"jjG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + id_tag = "ToxinsVenting"; + name = "Toxins Venting Bay Door"; + power_state = 0 + }, +/turf/space, +/area/station/science/toxins/mixing) "jjL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -60012,6 +59941,28 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/station/engineering/control) +"jkg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "jkB" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -60027,7 +59978,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C3" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "jkZ" = ( /obj/structure/window/reinforced{ dir = 8 @@ -60088,13 +60039,18 @@ /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "jms" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/simulated/floor/plasteel, /area/station/security/permabrig) +"jmL" = ( +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "jmV" = ( /obj/structure/falsewall, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -60133,9 +60089,7 @@ c_tag = "Detective's Office"; dir = 8 }, -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, +/obj/item/kirbyplants/plant24, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet, /area/station/security/detective) @@ -60270,7 +60224,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C4" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "jtB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -60333,7 +60287,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "juS" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, @@ -60441,6 +60395,11 @@ icon_state = "dark" }, /area/station/engineering/control) +"jyq" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/central/ne) "jyP" = ( /obj/effect/landmark/start/scientist, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -60461,7 +60420,7 @@ icon_state = "2-4" }, /obj/effect/spawner/window/reinforced/polarized/grilled{ - id = "Processing" + id = "qm" }, /turf/simulated/floor/plating, /area/station/supply/qm) @@ -60551,16 +60510,12 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "jCi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -60650,7 +60605,7 @@ "jDK" = ( /obj/effect/spawner/random_spawners/fungus_maybe, /turf/simulated/wall, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "jEw" = ( /obj/structure/transit_tube/horizontal, /obj/structure/lattice/catwalk, @@ -60744,7 +60699,7 @@ /obj/machinery/computer/general_air_control{ dir = 1; name = "Bomb Mix Monitor"; - autolink_sensors = list("burn_sensor"="Burn Mix") + autolink_sensors = list("burn_sensor" = "Burn Mix") }, /obj/machinery/door_control{ id = "ToxinsVenting"; @@ -60794,8 +60749,13 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "jFH" = ( /obj/structure/girder, /turf/simulated/floor/plating, @@ -60849,7 +60809,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "jGH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -60928,10 +60888,7 @@ /obj/effect/turf_decal/siding{ dir = 1 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/item/radio/intercom{ name = "west bump"; pixel_x = -28 @@ -60961,7 +60918,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "jIX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61086,6 +61043,15 @@ }, /turf/space, /area/space/nearstation) +"jLt" = ( +/obj/item/slime_extract/darkblue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/station/maintenance/asmaint) "jLJ" = ( /obj/structure/chair/office/light, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -61133,15 +61099,13 @@ "jMy" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "jNa" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/window/reinforced, -/obj/structure/flora/junglebush/large{ - pixel_y = 0 - }, +/obj/structure/flora/junglebush/large, /turf/simulated/floor/grass/no_creep, /area/station/medical/exam_room) "jNd" = ( @@ -61349,14 +61313,6 @@ /area/station/security/permabrig) "jOX" = ( /obj/structure/table/glass, -/obj/item/hemostat{ - pixel_x = 6 - }, -/obj/item/retractor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stack/medical/bruise_pack/advanced, /obj/item/reagent_containers/iv_bag/salglu, /obj/item/reagent_containers/spray/cleaner{ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; @@ -61414,7 +61370,7 @@ sort_type_txt = "22" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "jPT" = ( /obj/structure/chair, /turf/simulated/floor/plasteel{ @@ -61453,9 +61409,7 @@ /area/station/security/range) "jQx" = ( /obj/structure/table/reinforced, -/obj/machinery/door/window/classic/normal{ - name = "Kitchen" - }, +/obj/machinery/door/window/classic/normal, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -61654,6 +61608,17 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/simulated/floor/plating, /area/station/engineering/control) +"jUr" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/paicard, +/turf/simulated/floor/plasteel{ + icon_state = "whitepurple" + }, +/area/station/science/research) "jUK" = ( /obj/machinery/light_switch{ dir = 8; @@ -61832,7 +61797,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "jXR" = ( /obj/machinery/door/window/classic/reversed{ dir = 8 @@ -61939,7 +61904,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/ne) "kbr" = ( /obj/machinery/atmospherics/portable/canister/air, /obj/machinery/atmospherics/pipe/simple/hidden/purple{ @@ -62023,6 +61988,32 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/aft2) +"kej" = ( +/obj/item/kirbyplants/plant24, +/obj/machinery/camera{ + c_tag = "Science Hallway - Research"; + network = list("Research","SS13") + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/station/science/research) "ken" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance, @@ -62165,7 +62156,7 @@ dir = 4; icon_state = "purple" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "khy" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -62197,9 +62188,7 @@ }, /area/station/science/research) "kiq" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -62232,6 +62221,9 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel, /area/station/security/permabrig) +"kjg" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry/south) "kjo" = ( /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel{ @@ -62353,6 +62345,12 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) +"kmz" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/south) "kmO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, @@ -62424,7 +62422,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "kqd" = ( /obj/item/radio/intercom{ name = "west bump"; @@ -62453,11 +62451,7 @@ }, /area/station/science/research) "kqi" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -62658,7 +62652,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "kvh" = ( /obj/structure/closet/bombcloset, /obj/structure/extinguisher_cabinet{ @@ -62692,7 +62686,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "kwD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -62823,28 +62817,20 @@ /obj/machinery/camera{ c_tag = "Evidence Storage" }, -/obj/item/storage/secure/safe{ - name = "evidence safe"; - pixel_y = 32 - }, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, /area/station/security/evidence) "kzm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/extinguisher_cabinet{ + name = "west bump"; + pixel_x = -27 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" }, -/turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/aft/south) "kzx" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -62971,13 +62957,30 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/engine, /area/station/engineering/control) +"kBk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/lobby) "kBn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel, /area/station/supply/storage) "kCc" = ( @@ -63013,7 +63016,7 @@ dir = 9; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "kCP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -63121,11 +63124,7 @@ /turf/simulated/floor/engine, /area/station/science/xenobiology) "kEh" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -63503,6 +63502,17 @@ icon_state = "freezerfloor" }, /area/station/security/permabrig) +"kLW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) "kLY" = ( /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -63719,21 +63729,11 @@ }, /area/station/medical/medbay) "kPB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "kPK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63755,20 +63755,14 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/aft2) -"kQv" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/turf/simulated/floor/plating/airless, -/area/space/nearstation) "kQx" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, +/obj/item/kirbyplants/plant11, /turf/simulated/floor/wood, /area/station/legal/courtroom) +"kQB" = ( +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "kQD" = ( /obj/machinery/computer/secure_data, /obj/machinery/newscaster/security_unit{ @@ -63855,6 +63849,17 @@ icon_state = "whitegreen" }, /area/station/medical/virology) +"kSz" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) "kSA" = ( /obj/structure/table, /obj/structure/cable/yellow{ @@ -63875,11 +63880,7 @@ pixel_y = 7 }, /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "caution" @@ -63950,7 +63951,10 @@ "kVn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/door_assembly/door_assembly_fre{ - name = "broken freezer airlock" + name = "broken freezer airlock"; + move_force = 10000; + move_resist = 10000; + anchored = 1 }, /obj/structure/barricade/wooden/crude, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -64013,8 +64017,18 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "kWj" = ( /obj/item/stack/sheet/glass{ amount = 20; @@ -64041,11 +64055,7 @@ icon_state = "0-8" }, /obj/structure/table/reinforced, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel, /area/station/science/robotics) "kWt" = ( @@ -64236,12 +64246,7 @@ }, /area/station/medical/chemistry) "laH" = ( -/obj/structure/lattice, -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, +/obj/structure/grille, /turf/space, /area/space/nearstation) "laR" = ( @@ -64386,9 +64391,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -64511,7 +64514,7 @@ /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "lfU" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -64683,17 +64686,27 @@ "lid" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/turf_decal/tile/bar, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/effect/turf_decal/tile/bar, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/central/north) "lio" = ( /turf/simulated/floor/plating/airless, /area/station/engineering/solar/port) @@ -64910,6 +64923,17 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/control) +"llW" = ( +/obj/machinery/requests_console{ + department = "Locker Room"; + name = "Dorms Requests Console"; + pixel_x = -30 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/public/dorms) "lmi" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -65062,18 +65086,35 @@ icon_state = "white" }, /area/station/medical/medbay) +"loz" = ( +/obj/item/kirbyplants/plant18, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + name = "west bump"; + pixel_x = -27 + }, +/turf/simulated/floor/plasteel{ + dir = 9; + icon_state = "purple" + }, +/area/station/science/research) "lpp" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, -/obj/item/reagent_containers/food/snacks/muffin{ +/obj/item/food/snacks/muffin{ pixel_x = -4; pixel_y = 8 }, -/obj/item/reagent_containers/food/snacks/carrotcakeslice{ +/obj/item/food/snacks/carrotcakeslice{ pixel_x = 8; pixel_y = -2 }, -/obj/item/reagent_containers/food/snacks/poppypretzel{ +/obj/item/food/snacks/poppypretzel{ pixel_x = -8; pixel_y = -3 }, @@ -65155,11 +65196,11 @@ /area/station/command/office/captain) "lrA" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8; pixel_y = 1 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 11 }, @@ -65245,7 +65286,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "ltg" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -65405,6 +65446,19 @@ }, /turf/simulated/floor/plating, /area/station/science/xenobiology) +"lyp" = ( +/obj/structure/extinguisher_cabinet{ + name = "west bump"; + pixel_x = -27 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/south) "lzO" = ( /obj/machinery/light{ dir = 4 @@ -65481,7 +65535,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "lAX" = ( /turf/simulated/wall, /area/station/science/break_room) @@ -65598,7 +65652,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C11" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "lDq" = ( /obj/machinery/shower{ dir = 8; @@ -65622,7 +65676,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "lDG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -65660,7 +65714,7 @@ "lEw" = ( /obj/structure/closet/firecloset, /obj/machinery/light/small{ - dir = 4 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -65885,13 +65939,10 @@ }, /area/station/science/test_chamber) "lHZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "lIC" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; @@ -65977,6 +66028,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "black" @@ -66034,11 +66088,15 @@ /area/station/security/storage) "lKK" = ( /obj/machinery/light, +/obj/item/radio/intercom{ + name = "south bump"; + pixel_y = -28 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "lLb" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/yellow, @@ -66109,6 +66167,12 @@ icon_state = "white" }, /area/station/science/xenobiology) +"lMU" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port/east) "lNl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -66194,11 +66258,21 @@ dir = 4 }, /obj/effect/turf_decal/tile/bar, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/central/north) "lOv" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -66230,7 +66304,7 @@ sort_type_txt = "21" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "lOE" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -66389,11 +66463,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -66577,7 +66647,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "lVF" = ( /obj/machinery/r_n_d/circuit_imprinter, /turf/simulated/floor/plasteel{ @@ -66768,10 +66838,16 @@ name = "west bump"; pixel_x = -24 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/security/brig) "maV" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + name = "Security Junction"; + sort_type_txt = "8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "black" @@ -66874,10 +66950,6 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 4 }, -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "mcP" = ( @@ -66925,7 +66997,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "mdF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -67149,6 +67221,20 @@ icon_state = "darkblue" }, /area/station/command/office/cmo) +"mhA" = ( +/obj/item/kirbyplants/plant18, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 5; + icon_state = "purple" + }, +/area/station/science/research) "mhS" = ( /obj/structure/sign/poster/official/random{ pixel_y = 32 @@ -67375,7 +67461,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "mmB" = ( /obj/structure/closet/secure_closet/atmos_personal, /turf/simulated/floor/plasteel, @@ -67396,7 +67482,7 @@ /obj/structure/window/plasmareinforced{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/meter{ layer = 3.3 }, @@ -67680,7 +67766,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "muB" = ( /obj/structure/girder, /turf/simulated/floor/plating, @@ -67765,7 +67851,7 @@ desc = ""; icon_state = "C13" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "mxb" = ( /obj/machinery/door/airlock/freezer, /obj/effect/mapping_helpers/airlock/access/any/service/kitchen, @@ -67775,8 +67861,8 @@ /area/station/service/kitchen) "mxp" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "mxw" = ( @@ -67802,7 +67888,7 @@ "myY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "mzf" = ( /obj/structure/window/plasmareinforced{ dir = 1 @@ -67965,7 +68051,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "mBA" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -68161,7 +68247,7 @@ desc = ""; icon_state = "C14" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "mFQ" = ( /obj/machinery/light{ dir = 8 @@ -68192,11 +68278,16 @@ /obj/structure/sign/poster/official/random{ pixel_x = 32 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "mGk" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -68206,7 +68297,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "mGK" = ( /obj/machinery/door/firedoor, /obj/structure/sign/science{ @@ -68216,7 +68307,7 @@ dir = 4; icon_state = "purplecorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "mGT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ @@ -68231,7 +68322,7 @@ inlet_injector_autolink_id = "n2_in"; name = "Nitrogen Supply Control"; outlet_vent_autolink_id = "n2_out"; - autolink_sensors = list("n2_sensor"="Tank") + autolink_sensors = list("n2_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -68260,7 +68351,18 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) +"mIq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft/north) "mIC" = ( /obj/effect/spawner/window/reinforced/plasma/grilled, /obj/machinery/door/poddoor/preopen{ @@ -68450,7 +68552,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "mOs" = ( /obj/structure/bed, /obj/item/bedsheet, @@ -68708,6 +68810,10 @@ icon_state = "white" }, /area/station/medical/surgery/primary) +"mUd" = ( +/obj/effect/turf_decal/stripes/line, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/north) "mUf" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -68719,11 +68825,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -68752,7 +68854,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "mUv" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable/yellow{ @@ -68836,6 +68938,7 @@ /obj/machinery/light{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, @@ -68878,13 +68981,9 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "mVN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "redcorner" - }, -/area/station/hallway/primary/fore) +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/east) "mVO" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -68905,7 +69004,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "mVZ" = ( /obj/effect/spawner/random_spawners/fungus_probably, /turf/simulated/wall, @@ -68981,11 +69080,11 @@ /area/shuttle/arrival/station) "mXE" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = 5; pixel_y = 12 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = -3; pixel_y = 9 }, @@ -68996,11 +69095,7 @@ /obj/machinery/light{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/wood, /area/station/service/cafeteria) "mXQ" = ( @@ -69073,7 +69168,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "mZb" = ( /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -69089,11 +69184,7 @@ }, /area/station/science/rnd) "mZq" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/station/maintenance/aft2) @@ -69292,19 +69383,19 @@ name = "Outer Window"; dir = 8 }, -/obj/machinery/door/window/reinforced/normal{ - name = "Security Desk"; - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ - dir = 4 - }, /obj/item/folder/red, /obj/item/pen{ pixel_x = -3; pixel_y = 5 }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ + dir = 4 + }, +/obj/machinery/door/window/reinforced/normal{ + name = "Security Desk"; + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "ncG" = ( @@ -69341,7 +69432,15 @@ icon_state = "dark" }, /area/station/security/storage) +"ndN" = ( +/turf/simulated/wall, +/area/station/hallway/primary/port/west) "ndR" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel, /area/station/science/robotics) "ndS" = ( @@ -69400,7 +69499,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "neW" = ( /obj/machinery/light/small{ dir = 1 @@ -69430,7 +69529,7 @@ /area/station/public/construction) "nfj" = ( /obj/structure/closet, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ desc = "Takes you to a whole new level of thinking."; name = "Meta-Cider" }, @@ -69509,7 +69608,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "ngh" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/effect/spawner/window/reinforced/grilled, @@ -69556,12 +69655,17 @@ /area/station/medical/reception) "nhP" = ( /obj/structure/table, -/obj/item/book/manual/wiki/sop_service, +/obj/item/book/manual/wiki/sop_service{ + pixel_x = -6 + }, /obj/item/book/manual/barman_recipes{ - pixel_x = -4; - pixel_y = 7 + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_containers/drinks/shaker{ + pixel_x = 6; + pixel_y = 2 }, -/obj/item/clothing/head/that, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -69640,7 +69744,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "niQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -69657,7 +69761,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "niX" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -69714,6 +69818,11 @@ icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel, /area/station/science/robotics) "nln" = ( @@ -69734,18 +69843,6 @@ }, /area/station/science/xenobiology) "nlp" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - autolink_id = "soldock_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = -25; - vent_link_id = "soldock_vent"; - ext_door_link_id = "soldock_door_ext"; - int_door_link_id = "soldock_door_int"; - ext_button_link_id = "soldock_btn_ext"; - int_button_link_id = "soldock_btn_int" - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -69753,7 +69850,7 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "nls" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -69766,10 +69863,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, /turf/simulated/floor/plasteel, /area/station/security/brig) "nlw" = ( @@ -69873,7 +69966,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "noA" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -69884,7 +69977,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "noE" = ( /obj/structure/table, /turf/simulated/floor/plating, @@ -70054,12 +70147,6 @@ /area/station/engineering/control) "nsB" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -70117,6 +70204,12 @@ icon_state = "white" }, /area/station/medical/surgery/observation) +"nuz" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "nuC" = ( /obj/machinery/navbeacon{ codes_txt = "delivery"; @@ -70233,15 +70326,11 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "nxr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, +/obj/machinery/power/apc/important/directional/north, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -70320,6 +70409,23 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/distribution) +"nyR" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/north) "nyT" = ( /obj/machinery/light, /obj/item/radio/intercom{ @@ -70388,7 +70494,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "nzX" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/atmospherics/meter, @@ -70721,6 +70827,20 @@ icon_state = "vault" }, /area/station/maintenance/asmaint) +"nFj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "nFZ" = ( /obj/machinery/door/airlock/external{ id_tag = "engine_door_ext"; @@ -70762,6 +70882,9 @@ icon_state = "whiteblue" }, /area/station/medical/reception) +"nGC" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "nHi" = ( /obj/structure/cable{ d2 = 2; @@ -70978,11 +71101,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plating, /area/station/maintenance/fore) -"nNq" = ( -/turf/simulated/floor/plasteel{ - icon_state = "redcorner" - }, -/area/station/security/brig) "nOA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71293,6 +71411,14 @@ icon_state = "whitegreenfull" }, /area/station/public/sleep) +"nVp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/central/east) "nVQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10 @@ -71348,7 +71474,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "nWJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71454,7 +71580,7 @@ dir = 4; icon_state = "purple" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "nYH" = ( /obj/structure/closet/secure_closet/RD, /obj/machinery/newscaster{ @@ -71666,7 +71792,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "odO" = ( /obj/machinery/blackbox_recorder, /turf/simulated/floor/bluegrid, @@ -71713,11 +71839,7 @@ network = list("SS13","MiniSat"); start_active = 1 }, -/obj/machinery/power/apc{ - cell_type = 5000; - name = "south bump Important Area"; - pixel_y = -24 - }, +/obj/machinery/power/apc/important/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -71740,7 +71862,22 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) +"ofu" = ( +/obj/machinery/power/apc/directional/west, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Starboard - Bar"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) "ofD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -71846,12 +71983,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j2s"; - name = "Security Junction"; - sort_type_txt = "8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, @@ -71930,7 +72061,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C2" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "omG" = ( /obj/structure/table/reinforced, /obj/item/storage/bag/tray, @@ -71982,7 +72113,7 @@ dir = 9; icon_state = "blueyellow" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "ood" = ( /obj/machinery/door_control{ pixel_x = -26; @@ -72147,15 +72278,7 @@ /area/station/public/locker) "orV" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/machinery/door/window/classic/reversed{ - name = "Kitchen" - }, +/obj/machinery/door/window/classic/reversed, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -72356,6 +72479,23 @@ /obj/item/mecha_parts/core, /turf/simulated/floor/plasteel, /area/station/science/robotics) +"oAL" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/north) "oBh" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -72471,10 +72611,6 @@ "oDf" = ( /obj/item/paper, /obj/structure/table/reinforced, -/obj/machinery/door/window/reinforced/normal{ - name = "Arrivals Security Checkpoint"; - pixel_y = -8 - }, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -72604,10 +72740,7 @@ /turf/simulated/floor/wood, /area/station/maintenance/starboard2) "oFF" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "oFN" = ( @@ -72658,11 +72791,21 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "browncorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "oHv" = ( /mob/living/simple_animal/hostile/retaliate/goat/chef, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -72739,7 +72882,7 @@ "oJQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "oJW" = ( /obj/structure/dispenser, /obj/structure/sign/double/map/left{ @@ -72758,6 +72901,15 @@ }, /turf/simulated/floor/plasteel, /area/station/security/permabrig) +"oMj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) "oMk" = ( /obj/machinery/alarm{ dir = 4; @@ -72828,7 +72980,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "oNl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/plasteel, /area/station/science/robotics) "oNn" = ( @@ -72862,6 +73021,23 @@ }, /turf/simulated/floor/plasteel, /area/station/security/brig) +"oNy" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/starboard/east) "oNz" = ( /obj/machinery/atmospherics/unary/thermomachine/freezer/on{ dir = 1; @@ -72892,11 +73068,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -72916,15 +73088,20 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "oOu" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "NT" @@ -72996,7 +73173,7 @@ desc = ""; icon_state = "C13" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "oPh" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -73063,7 +73240,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -73164,7 +73342,7 @@ dir = 5; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "oSi" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, @@ -73183,7 +73361,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "oTc" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -73191,7 +73369,7 @@ "oTn" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "oTq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -73400,18 +73578,13 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "oWO" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "browncorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "oXd" = ( /obj/structure/rack, /obj/item/storage/box/seccarts{ @@ -73490,6 +73663,16 @@ /obj/effect/spawner/random_spawners/fungus_maybe, /turf/simulated/wall, /area/station/maintenance/starboard) +"oXP" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/obj/item/reagent_containers/condiment/enzyme{ + layer = 5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/station/service/kitchen) "oXS" = ( /obj/structure/chair/office/light{ dir = 4 @@ -73516,7 +73699,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C1" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "oZw" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -73525,6 +73708,13 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_south) +"oZT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard/east) "oZX" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, @@ -73535,10 +73725,6 @@ /obj/effect/turf_decal/woodsiding{ dir = 8 }, -/obj/structure/extinguisher_cabinet{ - name = "south bump"; - pixel_y = -30 - }, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -73621,12 +73807,7 @@ /obj/item/melee/chainofcommand, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "west bump Important Area"; - pixel_x = -24 - }, +/obj/machinery/power/apc/important/directional/west, /turf/simulated/floor/wood, /area/station/command/office/captain) "pcz" = ( @@ -73754,8 +73935,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/office) "peo" = ( @@ -73793,7 +73974,7 @@ /area/station/engineering/engine/supermatter) "pfa" = ( /obj/structure/table, -/obj/item/storage/belt, +/obj/item/storage/belt/utility, /obj/item/robotanalyzer, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plasteel, @@ -73894,7 +74075,7 @@ inlet_injector_autolink_id = "tox_in"; name = "Toxin Supply Control"; outlet_vent_autolink_id = "tox_out"; - autolink_sensors = list("tox_sensor"="Tank") + autolink_sensors = list("tox_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/window/reinforced{ @@ -73935,7 +74116,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "piB" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 @@ -74140,9 +74321,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/effect/turf_decal/stripes/line{ dir = 5 }, @@ -74321,9 +74500,6 @@ /area/station/aisat) "prI" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -74499,6 +74675,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) +"pwy" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry/south) "pwN" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -74512,7 +74695,7 @@ /turf/simulated/floor/plasteel{ icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "pwP" = ( /obj/machinery/light/small{ dir = 8 @@ -74537,6 +74720,19 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"pxk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) "pxr" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -74650,10 +74846,7 @@ /area/station/maintenance/asmaint) "pzw" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -74675,7 +74868,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C5" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "pzX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -74734,7 +74927,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "pBl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -74762,14 +74955,14 @@ pixel_y = -24 }, /obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Engineering"; + c_tag = "Starboard Primary Hallway - East"; dir = 1 }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "pBW" = ( /obj/item/wrench, /obj/structure/cable/yellow{ @@ -74839,6 +75032,20 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"pCy" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "pDA" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -74886,7 +75093,7 @@ dir = 8; icon_state = "brown" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "pFo" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -75048,11 +75255,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "pHF" = ( -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, +/obj/effect/spawner/random_spawners/grille_often, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_south) "pHM" = ( @@ -75329,6 +75532,11 @@ icon_state = "dark" }, /area/station/security/storage) +"pMV" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "pNo" = ( /obj/machinery/requests_console{ department = "Cargo Bay"; @@ -75428,7 +75636,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "pPA" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 6 @@ -75475,11 +75683,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/telecomms/chamber) "pQv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -75491,6 +75695,25 @@ "pQx" = ( /turf/simulated/floor/engine, /area/station/command/office/rd) +"pQD" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "pRp" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ @@ -75530,16 +75753,13 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "pRQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "pRT" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -75602,7 +75822,7 @@ dir = 5 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "pSM" = ( /obj/machinery/camera{ c_tag = "Head of Security's Office" @@ -75629,11 +75849,7 @@ pixel_y = 2 }, /obj/item/storage/box/syringes, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -75706,8 +75922,8 @@ name = "south bump"; pixel_y = -24 }, -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 }, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) @@ -75737,7 +75953,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "pUU" = ( /obj/structure/chair{ dir = 4 @@ -75867,7 +76083,7 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "pXO" = ( /obj/item/stack/cable_coil, /obj/structure/cable/yellow{ @@ -76015,7 +76231,6 @@ }, /area/station/turret_protected/ai_upload) "qaW" = ( -/obj/item/reagent_containers/food/snacks/monkeycube, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -76069,6 +76284,15 @@ }, /turf/simulated/floor/plasteel, /area/station/science/research) +"qbw" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "qbE" = ( /obj/structure/window/reinforced{ dir = 4 @@ -76395,6 +76619,17 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"qif" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/ne) "qig" = ( /obj/machinery/mech_bay_recharge_port{ dir = 2 @@ -76417,16 +76652,12 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "qiP" = ( +/obj/effect/spawner/random_spawners/grille_often, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/aft) @@ -76616,6 +76847,13 @@ "qmD" = ( /turf/simulated/wall/r_wall, /area/station/science/explab/chamber) +"qmI" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "qmL" = ( /obj/machinery/alarm{ name = "north bump"; @@ -76630,9 +76868,8 @@ }, /area/station/medical/exam_room) "qnp" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 + dir = 6 }, /turf/simulated/floor/engine/vacuum, /area/station/science/toxins/mixing) @@ -76694,11 +76931,6 @@ }, /area/station/public/dorms) "qpH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -76706,7 +76938,7 @@ dir = 1; icon_state = "browncorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "qpO" = ( /turf/simulated/wall, /area/station/engineering/equipmentstorage) @@ -76719,7 +76951,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "qqC" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 4 @@ -76736,7 +76968,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "qrd" = ( /obj/structure/chair/wood{ dir = 1 @@ -76768,7 +77000,7 @@ pixel_x = 32 }, /turf/simulated/floor/plating, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "qrT" = ( /obj/effect/landmark/start/explorer, /turf/simulated/floor/plasteel{ @@ -76829,7 +77061,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "qta" = ( /obj/machinery/camera{ c_tag = "Science Hallway - Research Director's Office"; @@ -76866,6 +77098,17 @@ icon_state = "dark" }, /area/station/engineering/control) +"qtp" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) "qtt" = ( /obj/structure/window/reinforced{ dir = 1 @@ -77008,21 +77251,21 @@ "qvp" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/onion, -/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/onion, +/obj/item/food/snacks/grown/onion, /obj/item/storage/box/donkpockets, /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ dir = 1 }, /obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/rice, /obj/machinery/light{ dir = 1 }, @@ -77030,6 +77273,17 @@ icon_state = "white" }, /area/station/security/permabrig) +"qvE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "qvN" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -77094,6 +77348,16 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/starboard) +"qxG" = ( +/obj/item/radio/intercom{ + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard/north) "qxW" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -77126,6 +77390,18 @@ }, /turf/simulated/floor/plating, /area/station/hallway/secondary/bridge) +"qyd" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop{ + loot = list(/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes); + name = "trash spawner" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/aft2) "qyo" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -77279,6 +77555,15 @@ icon_state = "whiteblue" }, /area/station/medical/surgery/secondary) +"qBb" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/aft/south) "qBO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -77303,7 +77588,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C8" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "qCm" = ( /obj/machinery/recharge_station, /turf/simulated/floor/plasteel, @@ -77420,6 +77705,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/structure/closet/secure_closet/roboticist, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -77439,6 +77725,9 @@ }, /turf/simulated/wall/r_wall, /area/station/engineering/atmos/control) +"qFK" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/east) "qGf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -77465,7 +77754,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/north) "qIh" = ( /obj/machinery/sparker{ id = "Xenobio"; @@ -77604,7 +77893,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "qLK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -77637,11 +77926,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "red" @@ -77739,6 +78024,15 @@ icon_state = "white" }, /area/station/science/xenobiology) +"qPh" = ( +/obj/machinery/door/poddoor/preopen{ + name = "Biohazard Shutter"; + id_tag = "RnDChem" + }, +/obj/effect/spawner/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/engine, +/area/station/science/test_chamber) "qPp" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -78097,7 +78391,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "qXr" = ( /obj/structure/window/reinforced{ dir = 4 @@ -78162,8 +78456,17 @@ icon_state = "purple" }, /area/station/science/xenobiology) +"qYD" = ( +/obj/structure/window/plasmareinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/station/science/toxins/mixing) "qYT" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/effect/spawner/random_spawners/cobweb_right_rare, /turf/simulated/floor/bluespace, /area/station/maintenance/starboard) @@ -78512,11 +78815,11 @@ }, /area/station/science/break_room) "rfK" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ - dir = 4 +/obj/item/radio/intercom{ + name = "south bump"; + pixel_y = -28 }, -/obj/effect/spawner/random_spawners/wall_rusted_probably, -/turf/simulated/wall/r_wall, +/turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "rgo" = ( /obj/machinery/hydroponics/soil, @@ -78641,11 +78944,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -78667,6 +78966,14 @@ icon_state = "cult" }, /area/station/maintenance/starboard) +"rjb" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/station/science/robotics) "rjA" = ( /obj/structure/extinguisher_cabinet{ name = "north bump"; @@ -78693,6 +79000,12 @@ icon_state = "darkbluecorners" }, /area/station/medical/surgery/observation) +"rjC" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard/north) "rjU" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/yellow{ @@ -78821,11 +79134,16 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "rmE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -78834,7 +79152,7 @@ dir = 8; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "rnM" = ( /obj/effect/turf_decal/delivery/white/hollow, /obj/item/mecha_parts/mecha_equipment/extinguisher, @@ -78846,7 +79164,7 @@ locked = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "roi" = ( /obj/structure/rack, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -79047,7 +79365,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "rsq" = ( /obj/machinery/drone_fabricator, /obj/machinery/camera{ @@ -79220,6 +79538,11 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/simulated/floor/plasteel, /area/station/supply/office) +"rve" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/starboard/north) "rvu" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -79255,13 +79578,23 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) +"rvX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Port"; + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) "rwh" = ( /obj/machinery/atmospherics/supermatter_crystal/engine, /turf/simulated/floor/engine, /area/station/engineering/engine/supermatter) "rwj" = ( /obj/structure/safe/floor, -/obj/item/reagent_containers/food/snacks/fortunecookie, +/obj/item/food/snacks/fortunecookie, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "rwk" = ( @@ -79656,7 +79989,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) +"rEF" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "rEK" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -79833,6 +80172,7 @@ c_tag = "Brig - Hallway - Starboard"; dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/security/brig) "rIj" = ( @@ -79940,7 +80280,7 @@ dir = 5; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "rJJ" = ( /obj/machinery/door/airlock/titanium{ name = "Arrivals Shuttle Airlock" @@ -80000,6 +80340,13 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/station/maintenance/aft2) +"rKV" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) "rLw" = ( /obj/machinery/atmospherics/air_sensor{ autolink_id = "waste_sensor"; @@ -80034,10 +80381,10 @@ }, /area/station/security/permabrig) "rLS" = ( -/obj/machinery/suit_storage_unit/cmo, /obj/machinery/light{ dir = 4 }, +/obj/machinery/suit_storage_unit/cmo/secure, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "darkblue" @@ -80181,7 +80528,7 @@ /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "rOY" = ( /obj/structure/table/glass, /obj/machinery/light_switch{ @@ -80261,12 +80608,15 @@ icon_state = "red" }, /area/station/security/prisonlockers) +"rSj" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/station/hallway/primary/central/north) "rSC" = ( /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel, /area/station/science/robotics/chargebay) "rSH" = ( @@ -80308,7 +80658,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "rTX" = ( /obj/machinery/computer/general_air_control/large_tank_control{ dir = 1; @@ -80316,7 +80666,7 @@ name = "Mixed Air Supply Control"; outlet_vent_autolink_id = "air_out"; outlet_setting = 2000; - autolink_sensors = list("air_sensor"="Tank") + autolink_sensors = list("air_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -80352,6 +80702,11 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "darkred" }, @@ -80403,7 +80758,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/sw) "rVg" = ( /obj/item/assembly/signaler{ pixel_x = 6; @@ -80545,7 +80900,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "rZt" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -80628,11 +80983,9 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "sbK" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -80825,7 +81178,7 @@ dir = 8; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "sgk" = ( /obj/machinery/smartfridge/foodcart, /obj/machinery/alarm{ @@ -80934,6 +81287,11 @@ dir = 1 }, /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -80945,11 +81303,7 @@ dir = 8 }, /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/newscaster{ dir = 1; name = "south bump"; @@ -81125,6 +81479,9 @@ icon_state = "white" }, /area/station/security/permabrig) +"smP" = ( +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/south) "smW" = ( /obj/machinery/space_heater, /obj/effect/landmark/damageturf, @@ -81377,6 +81734,12 @@ }, /turf/simulated/floor/plasteel, /area/station/security/range) +"suO" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plasteel{ + icon_state = "darkgrey" + }, +/area/station/hallway/primary/central/north) "svH" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -81392,7 +81755,10 @@ /turf/simulated/floor/plasteel{ icon_state = "C2" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) +"svM" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry/north) "svR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -81504,7 +81870,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "sxN" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -81548,7 +81914,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "syP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ @@ -81686,19 +82052,13 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_south) "sDf" = ( /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ icon_state = "neutral" }, @@ -82113,6 +82473,23 @@ icon_state = "dark" }, /area/station/engineering/control) +"sLH" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/east) "sLS" = ( /turf/simulated/floor/plasteel{ dir = 9; @@ -82125,6 +82502,21 @@ icon_state = "white" }, /area/station/medical/medbay) +"sMd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) +"sMg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "sMn" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -82229,13 +82621,11 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) "sNG" = ( -/obj/structure/closet{ - name = "Evidence Closet 4" - }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, /obj/effect/turf_decal/tile/neutral, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -82340,7 +82730,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "sPr" = ( /obj/machinery/photocopier, /obj/structure/disposalpipe/segment{ @@ -82396,7 +82786,7 @@ dir = 4; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "sQt" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -82473,7 +82863,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "sRU" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -82522,14 +82912,15 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/engimaint) +"sTC" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "sTF" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood, /area/station/service/bar) @@ -82537,6 +82928,19 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/engimaint) +"sUc" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/west) +"sUQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port/west) "sVy" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -82553,7 +82957,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "sVB" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -82586,6 +82990,12 @@ icon_state = "freezerfloor" }, /area/station/public/toilet/lockerroom) +"sVE" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) "sVG" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -82660,7 +83070,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "sXt" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, @@ -82760,20 +83170,30 @@ dir = 8; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "sZV" = ( +/obj/effect/spawner/random_spawners/grille_often, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, /turf/simulated/floor/plating, /area/station/maintenance/port) +"sZY" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/se) "taf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -82839,12 +83259,10 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "taW" = ( /obj/structure/window/reinforced{ dir = 4 @@ -82946,11 +83364,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "caution" @@ -83073,7 +83487,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plasteel, /area/station/service/hydroponics) "tfp" = ( /obj/structure/cable/yellow{ @@ -83085,7 +83499,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "tfD" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -83113,26 +83527,6 @@ icon_state = "red" }, /area/station/security/processing) -"tfV" = ( -/obj/structure/table/glass, -/obj/item/hemostat{ - pixel_x = 6 - }, -/obj/item/retractor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stack/medical/bruise_pack/advanced, -/obj/item/reagent_containers/iv_bag/salglu, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkblue" - }, -/area/station/medical/surgery/secondary) "tgu" = ( /obj/structure/table, /obj/machinery/recharger, @@ -83235,11 +83629,7 @@ /turf/simulated/floor/carpet/red, /area/station/command/office/hos) "tiq" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -83291,7 +83681,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "tjY" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/effect/turf_decal/stripes/line{ @@ -83332,6 +83722,18 @@ }, /turf/space, /area/space/nearstation) +"tkA" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_containers/iv_bag/salglu, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "darkblue" + }, +/area/station/medical/surgery/secondary) "tlh" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 @@ -83387,9 +83789,7 @@ /obj/effect/turf_decal/woodsiding{ dir = 1 }, -/obj/item/kirbyplants{ - level = 4.1 - }, +/obj/item/kirbyplants, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -31 }, @@ -83466,6 +83866,9 @@ /mob/living/simple_animal/mouse, /turf/simulated/floor/plating, /area/station/maintenance/starboard) +"toy" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/primary/central/north) "toD" = ( /obj/structure/sign/poster/official/random{ pixel_x = -32 @@ -83532,7 +83935,7 @@ "tpD" = ( /obj/effect/spawner/window, /turf/simulated/floor/plating, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "tpO" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -83614,11 +84017,21 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/mail_sorting{ dir = 4 }, /turf/simulated/floor/plasteel, /area/station/supply/office) +"trF" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "tsm" = ( /obj/machinery/atmospherics/portable/canister/air, /turf/simulated/floor/plating, @@ -83636,15 +84049,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) -"tsE" = ( -/obj/structure/girder, -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint) "ttA" = ( /obj/structure/rack, /obj/item/hand_labeler, @@ -83727,10 +84131,7 @@ /obj/machinery/photocopier/faxmachine{ department = "Head of Security's Office" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel/dark, /area/station/command/office/hos) @@ -83855,11 +84256,9 @@ /turf/simulated/floor/plasteel{ icon_state = "C10" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "tyW" = ( -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -83984,10 +84383,11 @@ }, /area/station/security/armory/secure) "tCf" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ - dir = 9 - }, /obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4; + initialize_directions = 11 + }, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "tCr" = ( @@ -84069,10 +84469,12 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "tFb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -84083,7 +84485,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "tFm" = ( /obj/structure/window/reinforced{ dir = 4 @@ -84160,11 +84562,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "tId" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -84211,6 +84609,22 @@ icon_state = "red" }, /area/station/security/brig) +"tJc" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/west) "tJB" = ( /obj/machinery/light/small{ dir = 4 @@ -84227,7 +84641,7 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/mail_sorting{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -84252,9 +84666,7 @@ }, /area/station/security/armory) "tKL" = ( -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, +/obj/item/kirbyplants/plant24, /obj/machinery/light_switch{ dir = 4; name = "custom placement"; @@ -84327,6 +84739,13 @@ /obj/effect/spawner/random_spawners/wall_rusted_probably, /turf/simulated/wall/r_wall, /area/station/maintenance/fore) +"tNg" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard/east) "tNh" = ( /obj/machinery/atmospherics/unary/portables_connector, /obj/machinery/atmospherics/portable/canister/air, @@ -84366,7 +84785,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "tPB" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -84561,10 +84980,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -84587,11 +85003,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plating, /area/station/maintenance/engimaint) "tVd" = ( @@ -84633,16 +85045,13 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "tVJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, /obj/structure/sign/directions/evac{ pixel_x = -32 }, /turf/simulated/floor/plasteel{ icon_state = "escape" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "tVX" = ( /obj/structure/cable{ d1 = 1; @@ -84710,14 +85119,6 @@ icon_state = "whitepurple" }, /area/station/science/robotics) -"tXA" = ( -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/station/service/bar) "tYb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -84771,12 +85172,12 @@ /area/station/security/permabrig) "tYV" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ pixel_x = -7; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/cans/beer, /obj/machinery/economy/vending/wallmed{ name = "Emergency NanoMed"; pixel_y = 28 @@ -84811,13 +85212,19 @@ icon_state = "bar" }, /area/station/service/bar) +"tZp" = ( +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/south) "tZG" = ( /obj/machinery/computer/general_air_control/large_tank_control{ dir = 8; inlet_injector_autolink_id = "waste_in"; name = "Gas Mix Tank Control"; outlet_vent_autolink_id = "waste_out"; - autolink_sensors = list("waste_sensor"="Tank") + autolink_sensors = list("waste_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plasteel{ @@ -84831,7 +85238,7 @@ }, /obj/structure/chair, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "uak" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, @@ -85082,7 +85489,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "uex" = ( /obj/machinery/light_switch{ dir = 4; @@ -85107,7 +85514,7 @@ icon_state = "1-2" }, /obj/effect/spawner/window/reinforced/polarized/grilled{ - id = "Processing" + id = "qm" }, /turf/simulated/floor/plating, /area/station/supply/qm) @@ -85187,11 +85594,9 @@ /turf/simulated/floor/carpet, /area/station/service/library) "ugy" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j2s"; - name = "Security Junction"; - sort_type_txt = "8" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, /area/station/security/brig) @@ -85298,7 +85703,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "uiK" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -85416,6 +85821,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "red" @@ -85690,18 +86096,18 @@ /area/station/command/office/captain) "uuG" = ( /obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, /obj/item/storage/box/bodybags{ pixel_x = -4; pixel_y = -4 }, +/obj/item/storage/box/masks, /obj/item/storage/box/gloves{ pixel_x = 4; pixel_y = 4 }, -/obj/item/storage/box/masks, -/obj/structure/window/reinforced{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whitepurple" @@ -85717,7 +86123,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "uwk" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, @@ -85824,6 +86230,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -85898,6 +86307,13 @@ "uzR" = ( /turf/simulated/floor/engine, /area/station/science/test_chamber) +"uzZ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" + }, +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry/north) "uAj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -85938,11 +86354,7 @@ /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "uBY" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - name = "south bump Important Area"; - pixel_y = -24 - }, +/obj/machinery/power/apc/important/directional/south, /obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -85987,6 +86399,11 @@ "uEa" = ( /obj/structure/chair/e_chair, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -86039,14 +86456,6 @@ /area/station/command/teleporter) "uEX" = ( /obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/bonesetter{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/circular_saw, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" @@ -86057,11 +86466,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -86085,6 +86490,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "redcorner" @@ -86176,6 +86582,16 @@ }, /turf/simulated/floor/bluegrid, /area/station/turret_protected/ai) +"uIA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft/north) "uIW" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, @@ -86231,7 +86647,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "uJL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -86438,7 +86854,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "uNf" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -86451,14 +86867,6 @@ }, /turf/simulated/floor/wood, /area/station/service/bar) -"uNk" = ( -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, -/turf/simulated/floor/plating/airless, -/area/space/nearstation) "uNl" = ( /obj/structure/toilet{ pixel_y = 8 @@ -86700,6 +87108,13 @@ icon_state = "whiteblue" }, /area/station/medical/exam_room) +"uSx" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "uSA" = ( /obj/structure/railing{ dir = 4 @@ -86771,7 +87186,7 @@ /turf/simulated/floor/plasteel{ icon_state = "C1" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "uUI" = ( /obj/machinery/door/airlock/public/glass, /obj/machinery/door/firedoor, @@ -86817,6 +87232,16 @@ icon_state = "dark" }, /area/station/turret_protected/ai) +"uVd" = ( +/obj/structure/extinguisher_cabinet{ + name = "south bump"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/port/west) "uVl" = ( /obj/machinery/light{ dir = 1 @@ -86874,7 +87299,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "uWQ" = ( /obj/machinery/door/window/classic/normal{ name = "Court Cell" @@ -87014,7 +87439,7 @@ dir = 4; icon_state = "blue" }, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "uXX" = ( /obj/structure/chair{ dir = 1 @@ -87044,6 +87469,7 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/security/brig) "uYo" = ( @@ -87199,10 +87625,10 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "vaO" = ( /turf/simulated/wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "vaP" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -87236,7 +87662,7 @@ dir = 6; icon_state = "caution" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "vbF" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; @@ -87303,7 +87729,7 @@ dir = 8; icon_state = "brown" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "vcW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9; @@ -87372,6 +87798,13 @@ /obj/machinery/atmospherics/portable/canister/air, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) +"veb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard/north) "vem" = ( /obj/machinery/status_display{ pixel_y = 32 @@ -87413,7 +87846,6 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "veO" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, /obj/machinery/light/small{ dir = 8 }, @@ -87424,6 +87856,7 @@ pixel_y = 8; req_access_txt = "8" }, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "vfd" = ( @@ -87619,7 +88052,7 @@ "vkL" = ( /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "vkO" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, @@ -87638,7 +88071,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "vkT" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Space Bridge" @@ -87695,7 +88128,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "vml" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -87768,7 +88201,7 @@ inlet_injector_autolink_id = "co2_in"; name = "Carbon Dioxide Supply Control"; outlet_vent_autolink_id = "co2_out"; - autolink_sensors = list("co2_sensor"="Tank") + autolink_sensors = list("co2_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/window/reinforced{ @@ -87799,7 +88232,7 @@ dir = 10; icon_state = "green" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/se) "vow" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -87854,35 +88287,8 @@ icon_state = "grimy" }, /area/station/security/detective) -"voT" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard2) -"voV" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/pie, -/obj/machinery/door/window/classic/normal{ - name = "Kitchen" - }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 2; - id_tag = "kitchen_counter"; - name = "Kitchen Counter Shutters" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, -/turf/simulated/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/station/service/kitchen) "vpj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4; - initialize_directions = 11 - }, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/meter, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) @@ -87908,6 +88314,12 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"vpZ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/nw) "vqm" = ( /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; @@ -87959,7 +88371,7 @@ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "vqS" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -88100,6 +88512,16 @@ }, /turf/simulated/floor/engine/n2, /area/station/engineering/atmos) +"vtx" = ( +/obj/item/radio/intercom{ + name = "north bump"; + pixel_y = 35 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard) "vtA" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -88122,7 +88544,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "vtO" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -88201,11 +88623,7 @@ }, /area/station/medical/surgery/secondary) "vuZ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump Important Area"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -88247,10 +88665,10 @@ /area/station/engineering/atmos) "vwA" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/chips{ +/obj/item/food/snacks/chips{ pixel_x = 8 }, -/obj/item/reagent_containers/food/drinks/cans/thirteenloko{ +/obj/item/reagent_containers/drinks/cans/thirteenloko{ pixel_x = -6; pixel_y = 6 }, @@ -88278,10 +88696,14 @@ /area/station/maintenance/asmaint) "vxc" = ( /obj/machinery/door/firedoor, -/obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/preopen{ id_tag = "executionfireblast" }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/execution) "vxi" = ( @@ -88290,11 +88712,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "vxx" = ( -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, +/obj/effect/spawner/random_spawners/grille_often, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "vxI" = ( @@ -88355,11 +88773,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -88697,9 +89111,6 @@ }, /area/station/science/rnd) "vJo" = ( -/obj/structure/closet{ - name = "Evidence Closet 5" - }, /obj/machinery/firealarm{ dir = 4; name = "east bump"; @@ -88709,6 +89120,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -88801,6 +89213,10 @@ pixel_y = 32 }, /obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "black" @@ -88811,10 +89227,14 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, +/obj/item/radio/intercom{ + name = "east bump"; + pixel_x = 28 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "vNe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -88823,7 +89243,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "vNw" = ( /obj/machinery/alarm{ dir = 8; @@ -88840,11 +89260,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/aft2) "vNV" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -88861,17 +89277,13 @@ /turf/simulated/floor/wood, /area/station/legal/courtroom) "vOJ" = ( +/obj/effect/spawner/random_spawners/grille_often, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, /turf/simulated/floor/plating, /area/station/maintenance/aft) "vPa" = ( @@ -88885,6 +89297,15 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"vPk" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -5 + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/service/kitchen) "vPx" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 5 @@ -88900,11 +89321,34 @@ icon_state = "dark" }, /area/station/engineering/atmos) +"vQf" = ( +/obj/structure/table, +/obj/item/reagent_containers/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/machinery/economy/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) "vQo" = ( /obj/item/stack/sheet/cardboard{ amount = 2 }, -/obj/item/reagent_containers/food/snacks/monkeycube, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/cleanable/blood/drip, /turf/simulated/floor/plasteel, @@ -88975,15 +89419,15 @@ "vSE" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, -/obj/item/reagent_containers/food/drinks/tea{ +/obj/item/reagent_containers/drinks/tea{ pixel_x = 7; pixel_y = 1 }, -/obj/item/reagent_containers/food/drinks/tea{ +/obj/item/reagent_containers/drinks/tea{ pixel_x = -5; pixel_y = 9 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = -5 }, /turf/simulated/floor/plasteel/dark, @@ -89164,6 +89608,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/security/brig) "vWq" = ( @@ -89171,11 +89616,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, @@ -89193,6 +89634,9 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) +"vXe" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/entry/east) "vXg" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -89256,7 +89700,7 @@ dir = 9; icon_state = "neutral" }, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "vZo" = ( /turf/simulated/floor/plating, /area/station/maintenance/aft2) @@ -89273,7 +89717,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "vZH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -89511,12 +89955,7 @@ }, /area/station/science/research) "wfa" = ( -/obj/structure/girder, -/obj/effect/spawner/lootdrop{ - icon_state = "grille"; - loot = list(/obj/structure/grille=8,/obj/structure/grille/broken=2); - name = "normal or broken grille spawner" - }, +/obj/effect/spawner/random_spawners/grille_often, /turf/simulated/floor/plating, /area/station/maintenance/port) "wfi" = ( @@ -89561,6 +90000,11 @@ /obj/effect/spawner/random_spawners/cobweb_right_rare, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard2) +"wgh" = ( +/turf/simulated/floor/plasteel{ + icon_state = "redcorner" + }, +/area/station/hallway/primary/central/east) "wgz" = ( /obj/effect/spawner/window/reinforced/plasma/grilled, /obj/machinery/door/poddoor/preopen{ @@ -89672,6 +90116,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel{ icon_state = "darkred" }, @@ -89737,6 +90186,12 @@ /obj/structure/girder, /turf/simulated/floor/plating, /area/station/maintenance/medmaint) +"wkn" = ( +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/north) "wku" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -89879,6 +90334,17 @@ }, /turf/simulated/floor/engine/vacuum, /area/station/science/toxins/mixing) +"wnn" = ( +/obj/machinery/power/apc/directional/north, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/starboard) "wnx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10 @@ -89890,7 +90356,7 @@ /area/station/security/prisonlockers) "wnD" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ dir = 1 @@ -90014,6 +90480,16 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"wsf" = ( +/obj/item/kirbyplants/plant10, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "purple" + }, +/area/station/science/xenobiology) "wsu" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -90056,12 +90532,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + name = "HoS Junction"; + sort_type_txt = "7" + }, /turf/simulated/floor/plasteel, /area/station/security/brig) "wtm" = ( @@ -90198,7 +90677,7 @@ pixel_y = 32 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "wvJ" = ( /turf/simulated/floor/plasteel{ icon_state = "whitepurple" @@ -90268,7 +90747,7 @@ dir = 1; icon_state = "darkblue" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/south) "wxE" = ( /obj/machinery/firealarm{ dir = 8; @@ -90496,6 +90975,17 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"wBR" = ( +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/ne) "wBW" = ( /obj/machinery/firealarm{ dir = 1; @@ -90513,11 +91003,7 @@ /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "wCm" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -90580,11 +91066,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -90647,7 +91129,6 @@ /obj/item/mmi, /obj/item/mmi, /obj/item/mmi, -/obj/item/robotanalyzer, /obj/machinery/alarm{ dir = 1; name = "south bump"; @@ -90808,15 +91289,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/aft2) -"wKS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plasteel, -/area/station/security/brig) "wLt" = ( /obj/structure/sign/biohazard, /turf/simulated/wall/r_wall, @@ -91242,6 +91714,17 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) +"wVL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/status_display{ + layer = 4; + pixel_x = -32 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/east) "wVO" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -91260,7 +91743,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/west) "wWl" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -91473,13 +91956,15 @@ name = "west bump"; pixel_x = -24 }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/fore/east) +"xaD" = ( +/obj/structure/sign/vacuum/external{ + pixel_y = -32 }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/supply/lobby) +/area/station/hallway/secondary/entry/east) "xaE" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6 @@ -91531,8 +92016,16 @@ /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "xbs" = ( -/obj/structure/sign/poster/official/random, -/turf/simulated/wall, +/obj/structure/dispenser, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Science - Toxins Lab"; + dir = 1; + network = list("Research","SS13") + }, +/turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "xbt" = ( /obj/machinery/atmospherics/portable/canister/nitrogen, @@ -91594,11 +92087,7 @@ }, /area/station/medical/exam_room) "xcw" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -91660,7 +92149,7 @@ dir = 4; pixel_y = -32 }, -/obj/machinery/atmospherics/unary/thermomachine/freezer{ +/obj/machinery/atmospherics/binary/valve{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -91669,7 +92158,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowfull" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "xdC" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Processing" @@ -91763,7 +92252,7 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "xfG" = ( /obj/machinery/firealarm{ dir = 4; @@ -91774,7 +92263,7 @@ dir = 8; level = 3; name = "Distribution and Waste Monitor"; - autolink_sensors = list("mair_in_meter"="Mixed Air In","air_sensor"="Mixed Air Supply Tank","mair_out_meter"="Mixed Air Out","dloop_atm_meter"="Distribution Loop","wloop_atm_meter"="Waste Loop") + autolink_sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") }, /turf/simulated/floor/plasteel{ dir = 4; @@ -91824,14 +92313,14 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/east) "xhF" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "xhL" = ( /obj/machinery/door/window/reinforced/normal{ name = "Justice Chamber" @@ -91950,6 +92439,12 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) +"xki" = ( +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central/se) "xkD" = ( /obj/effect/decal/snow, /obj/structure/snowman/built, @@ -92010,7 +92505,7 @@ "xlE" = ( /obj/structure/cable/yellow, /obj/effect/spawner/window/reinforced/polarized/grilled{ - id = "Processing" + id = "qm" }, /turf/simulated/floor/plating, /area/station/supply/qm) @@ -92176,7 +92671,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgrey" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/north) "xoI" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -92185,19 +92680,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/security/brig) "xoP" = ( @@ -92207,11 +92695,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -92251,7 +92735,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/east) "xpD" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -92389,11 +92873,7 @@ name = "educational injections"; pixel_x = 2 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkred" @@ -92462,6 +92942,20 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) +"xuG" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/north) "xvh" = ( /obj/machinery/status_display{ pixel_x = 32 @@ -92491,7 +92985,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "xvB" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -92607,11 +93101,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluecorners" @@ -92689,10 +93179,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/security/brig) "xAI" = ( @@ -92737,6 +93224,12 @@ }, /turf/simulated/floor/plasteel, /area/station/security/brig) +"xBw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "xBS" = ( /obj/machinery/light_switch{ dir = 4; @@ -92816,7 +93309,7 @@ dir = 10; icon_state = "redyellow" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "xCP" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/item/radio/intercom{ @@ -92839,11 +93332,7 @@ "xCY" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -92886,6 +93375,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/grille, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, /obj/machinery/door/poddoor{ id_tag = "SecJusticeChamber"; name = "Justice Vent" @@ -92923,30 +93417,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/primary/central) -"xFW" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/machinery/door/window/classic/reversed{ - name = "Kitchen" - }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 2; - id_tag = "kitchen_counter"; - name = "Kitchen Counter Shutters" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, -/turf/simulated/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/station/service/kitchen) +/area/station/hallway/primary/central/south) "xGg" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment{ @@ -92976,6 +93447,10 @@ name = "north bump"; pixel_y = 28 }, +/obj/machinery/camera{ + c_tag = "Cargo Lobby"; + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" @@ -93040,11 +93515,11 @@ /area/station/engineering/atmos) "xIx" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8; pixel_y = 1 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 11 }, @@ -93093,7 +93568,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/primary/central) +/area/station/hallway/primary/central/nw) "xKQ" = ( /obj/machinery/firealarm{ dir = 4; @@ -93106,22 +93581,22 @@ /turf/simulated/floor/plasteel, /area/station/security/permabrig) "xLd" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/central/north) "xLw" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -93236,11 +93711,16 @@ dir = 8 }, /obj/effect/turf_decal/tile/bar, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" }, -/area/station/supply/lobby) +/area/station/hallway/primary/fore/east) "xNy" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -93304,18 +93784,11 @@ /obj/item/stack/sheet/glass, /obj/item/stack/sheet/glass, /obj/item/stack/sheet/glass, -/obj/machinery/door_control{ - id = "rdrnd"; - name = "Primary Research Shutters Control"; - pixel_x = 24; - pixel_y = 6; - req_access_txt = "7" - }, /obj/machinery/door_control{ id = "rndlab2"; - name = "Secondary Research Shutters Control"; + name = "Research Shutters Control"; pixel_x = 24; - pixel_y = -6; + pixel_y = null; req_access_txt = "7" }, /obj/machinery/cell_charger, @@ -93374,7 +93847,7 @@ /obj/machinery/computer/general_air_control{ dir = 4; name = "Tank Monitor"; - autolink_sensors = list("n2_sensor"="Nitrogen","o2_sensor"="Oxygen","co2_sensor"="Carbon Dioxide","tox_sensor"="Toxins","n2o_sensor"="Nitrous Oxide","waste_sensor"="Gas Mix Tank") + autolink_sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") }, /turf/simulated/floor/plasteel{ dir = 9; @@ -93400,6 +93873,13 @@ /area/station/medical/surgery/observation) "xPE" = ( /obj/structure/table, +/obj/machinery/door_control{ + id = "rdrnd"; + name = "Experi-mentor shutters"; + pixel_x = -25; + pixel_y = null; + req_access_txt = "7" + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -93528,6 +94008,9 @@ name = "south bump"; pixel_y = -28 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/security/brig) "xVd" = ( @@ -93551,7 +94034,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) "xVB" = ( /obj/structure/kitchenspike_frame, /obj/effect/decal/cleanable/blood/old, @@ -93940,6 +94423,17 @@ icon_state = "white" }, /area/station/medical/medbay) +"ycb" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/east) "ycj" = ( /obj/machinery/cooker/deepfryer, /obj/structure/extinguisher_cabinet{ @@ -93984,7 +94478,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/fore) +/area/station/hallway/primary/fore/north) "ydH" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/light{ @@ -93999,10 +94493,7 @@ /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/window/reinforced{ dir = 1 }, @@ -94045,19 +94536,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/port) -"yev" = ( -/obj/structure/closet{ - name = "Evidence Closet 6" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "darkred" - }, -/area/station/security/evidence) "yew" = ( /obj/structure/girder, /obj/item/stack/sheet/metal, @@ -94127,7 +94605,7 @@ icon_state = "1-2" }, /turf/simulated/floor/carpet, -/area/station/hallway/primary/port) +/area/station/hallway/secondary/entry/lounge) "yge" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -94189,6 +94667,21 @@ }, /turf/simulated/floor/wood, /area/station/science/robotics/showroom) +"yhF" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/nw) "yhM" = ( /obj/structure/cable{ d2 = 4; @@ -94319,7 +94812,7 @@ dir = 4; icon_state = "cautioncorner" }, -/area/station/hallway/primary/starboard) +/area/station/hallway/primary/starboard/east) (1,1,1) = {" aaa @@ -102911,9 +103404,9 @@ aaa aaa ajo abq -aug +uzZ +bOx dUF -oTn abq ajo aaa @@ -102935,9 +103428,9 @@ aaa aaa aaa aaa -oTn +bgW bUO -oTn +bgW aaa aaa abq @@ -103168,7 +103661,7 @@ abq vaO vaO vaO -aJv +svM nlp oTn aaa @@ -103192,9 +103685,9 @@ ajo aef ajo abq -oTn +bgW vZD -oTn +bgW abq abq abq @@ -103425,8 +103918,8 @@ aSq aSq aWG ayC -aJv -gcW +svM +bOx oTn oTn oTn @@ -103439,20 +103932,20 @@ aaa aaa aaa aaa -oTn -oTn -oTn -oTn -oTn +mVN +mVN +mVN +mVN +mVN aaa aaa aaa aaa aaa -oTn +bgW bUO -oTn -oTn +bgW +bgW aaa abq aaa @@ -103697,21 +104190,21 @@ bin aaa aaa abq -oTn +mVN bBr -bcy -oTn +hLZ +mVN aaa aaa aaa aaa aaa -oTn -fgo +bgW +sMg bfl -oTn -oTn -oTn +bgW +bgW +bgW aaa aaa aaa @@ -103940,9 +104433,9 @@ aSq aWG cyt aZj -baJ -cmu -aug +xBw +crg +uzZ abq aaa aaa @@ -103963,9 +104456,9 @@ aaa aaa aaa aaa -vaO +aRu cjn -cmu +kQB rnY vkL rnY @@ -104198,7 +104691,7 @@ aXS bOx vaO wuT -cmu +crg oTn abq aaa @@ -104211,18 +104704,18 @@ bin aaa aaa abq -oTn -baI +mVN +aje cmu -oTn +mVN aaa aaa aaa aaa aaa -oTn +bgW baI -cmu +kQB rnY vkL rnY @@ -104470,19 +104963,19 @@ aaa abq aJv bDo -bDm +iqu aug aaa aaa aaa aaa aaa -aug +pwy ibR -cmu -oTn -oTn -oTn +kQB +bgW +bgW +bgW aaa aaa aaa @@ -104712,7 +105205,7 @@ aLB aXT vaO baK -cmu +crg oTn oTn oTn @@ -104723,21 +105216,21 @@ mXy mXy brp bin -oTn -oTn -oTn +mVN +mVN +mVN bBs cmu -oTn +mVN aaa aaa aaa aaa aaa -oTn +bgW tZW -cmu -oTn +kQB +bgW aaa abq aaa @@ -104922,7 +105415,7 @@ laH laH laH laH -laH +aup laH laH laH @@ -104969,9 +105462,9 @@ aUY aUY aZk myY -cmu +crg bdR -vkL +mUd bdR bip bkb @@ -104980,9 +105473,9 @@ blS blS bkb bip -bdR +jgq bzw -bdR +jgq eGG bFe aJv @@ -104991,10 +105484,10 @@ aaa aaa aaa aaa -aJv -baJ +kjg +cmm juN -oTn +bgW aaa abq aaa @@ -105226,7 +105719,7 @@ aML aXU vaO baX -cmu +crg oTn oTn oTn @@ -105237,21 +105730,21 @@ bkb bkb brq bin -oTn -oTn -oTn +mVN +mVN +mVN bOz cmu -oTn +mVN aaa aaa aaa aaa aaa -oTn -baJ +bgW +cmm cZf -aJv +kjg abq abq aaa @@ -105448,7 +105941,7 @@ laH laH laH laH -laH +aup laH laH aaa @@ -105482,7 +105975,7 @@ aLB aML aXV vaO -bOz +sMd bcR bcy bhb @@ -105494,21 +105987,21 @@ blS blS bkb biq -oTn +mVN bAR fgo tjR cmu -oTn +mVN aaa aaa aaa aaa aaa -oTn -baJ +bgW +cmm bUS -oTn +bgW aaa abq aaa @@ -105739,9 +106232,9 @@ aLB aML aXW aZm -bOz +sMd bBt -cmu +crg bhb oTn bin @@ -105751,21 +106244,21 @@ bkb bkb brr bin -oTn +mVN bAQ baJ xhx cmu -oTn +mVN aaa aaa aaa aaa aaa -oTn -baJ +bgW +cmm bUS -oTn +bgW aaa abq aaa @@ -105996,9 +106489,9 @@ aLB aLB aSw aZm -bOz +sMd bBt -cmu +crg bhW oTn bin @@ -106008,21 +106501,21 @@ blS blS brs bin -oTn -bhb +mVN +pMV baJ xhx -bhV -vaO +xaD +vXe aaa aaa aaa aaa aaa -vaO +aRu cjn odF -aJv +kjg abq abq aaa @@ -106078,7 +106571,7 @@ laH laH laH laH -laH +aup laH laH iju @@ -106265,21 +106758,21 @@ bkb bkb bkb biq -oTn +mVN bDU bzy -baX +gMn cmu -oTn +mVN aaa aaa bKt aaa aaa -oTn +bgW neT rTO -oTn +bgW aaa abq aaa @@ -106511,7 +107004,7 @@ aLB aML vaO bdH -cmu +crg oTn oTn oTn @@ -106522,21 +107015,21 @@ blS blS brt bin -oTn -oTn -oTn +mVN +mVN +mVN bOz -bDm +iqu aJv abq -oTn +bgW bKu -oTn +bgW abq -aJv +kjg bRV uep -oTn +bgW aaa abq aaa @@ -106767,10 +107260,10 @@ aLB aLB aXX vaO -tjR -cmu +ijn +crg bdR -vkL +mUd bdR bip bkb @@ -106779,18 +107272,18 @@ mXy mXy bkb bip -bdR +jgq bzw -bdR +jgq bOz bFG aJv -oTn -oTn -bOx -oTn -oTn -aJv +bgW +bgW +smP +bgW +bgW +kjg cjn dfZ cdT @@ -107025,7 +107518,7 @@ uAA aXY aZn bcf -cmu +crg oTn oTn oTn @@ -107036,19 +107529,19 @@ blU blU bin bin -oTn -oTn -oTn +mVN +mVN +mVN bOz bES -vaO +vXe bMT -oTn +bgW bKu -oTn +bgW bOT -vaO -baJ +aRu +cmm bLC bLD nbG @@ -107294,10 +107787,10 @@ bnF bru bin abq -oTn +mVN bzA pSL -bcR +fqB niH uWq uWq @@ -107541,18 +108034,18 @@ aOB baM bBt bhV +svM +svM aJv -aJv -aJv -oTn -oTn -oTn -oTn -oTn +mVN +mVN +mVN +mVN +mVN aJv aJv aJv -cjn +qbw bBx bDt rmz @@ -107800,15 +108293,15 @@ bcn beQ bfu bky -bky -bky -bky +nFj +brU +brU +brU brU -bky kWi buD bxr -bky +brU bAE bBy bDu @@ -107822,7 +108315,7 @@ lvE cdT cdT cRV -dZP +wfa bBz bWm cdT @@ -108058,15 +108551,15 @@ bdX bfi crd bit -bgW +bnX blW bnX bpz brv -dgj +qFK bzs bxK -dgj +qFK dgj bDv bFo @@ -108323,8 +108816,8 @@ brw btm bxJ bxL -btm -btm +bnX +bnX bFJ bNi cdn @@ -108336,10 +108829,10 @@ eBk aoX auC bTY -dZP +wfa bVR rvu -dZP +wfa clT bTY cQb @@ -108837,8 +109330,8 @@ bry btn bvA bxM -bzB -bpC +jft +ceT bDx bNi bNi @@ -108851,7 +109344,7 @@ cdT cdT cdT cdT -dZP +wfa rvu cdT cKB @@ -109865,7 +110358,7 @@ brC btq bvD bxO -bzB +jft bBG bDB bFp @@ -109937,7 +110430,7 @@ abq abq abq aaa -laH +aup aaa aaa aaa @@ -110194,7 +110687,7 @@ aaa aaa abq aaa -laH +abq aaa aaa aaa @@ -110451,7 +110944,7 @@ abq abq abq abq -laH +abq aaa aaa aaa @@ -110570,7 +111063,7 @@ aaa aaa aaa aaa -laH +aup aaa abq aaa @@ -110658,7 +111151,7 @@ bZP bZP bZP bZP -cve +vxx bZP bZP bZP @@ -110827,7 +111320,7 @@ aaa aaa aaa aaa -laH +aup aaa abq abq @@ -111150,7 +111643,7 @@ bfw btu bVW bxS -bfG +ndN aNQ bDG aRZ @@ -111404,7 +111897,7 @@ tJK tqK bpJ brG -btv +bBI bVW bxT bzG @@ -111661,7 +112154,7 @@ bpD brK bpK aXi -btv +bBI bVW bxT bzH @@ -111686,9 +112179,9 @@ crG wjL fkr bZP -cve -cve -cve +vxx +vxx +vxx clK cSg bZP @@ -111918,7 +112411,7 @@ bmk boh bpL ilJ -btv +bBI bVW bxT bzH @@ -112175,9 +112668,9 @@ bpp boh bpM aXi -btv -bVW -bBp +sUQ +iSY +uVd cdT cdT cdT @@ -112192,10 +112685,10 @@ bRI bRH bWm cdT -dZP +wfa avU bTY -dZP +wfa naY bZP cQu @@ -112412,7 +112905,7 @@ aVl aVl jyW ueF -aCH +xlE aYl aKi aRo @@ -112433,7 +112926,7 @@ boh bpN bfw btz -bVW +jkg bxX cdT arK @@ -112915,14 +113408,14 @@ adY aKy aDB fuy -tsE +fuy aOB aOB aMq aOB aOB aOB -aOB +aVl aPw aMW azN @@ -112952,7 +113445,7 @@ bxZ cdT bBN cms -dZP +wfa bHp bWi bTY @@ -112961,11 +113454,11 @@ bTY cms auC bTr -dZP +wfa aqB cdG -dZP -dZP +wfa +wfa piE avU bZP @@ -113179,7 +113672,7 @@ bgA bmi fuy rwj -aOB +aVl aLS aMZ aNm @@ -113648,7 +114141,7 @@ aaa aaa aaa aaa -laH +aup aaa aaa aaa @@ -113693,11 +114186,11 @@ aEM aDz pGU aAP -aOB -aOB -aOB -aOB -aOB +aVl +aVl +aVl +aVl +aVl aZt uKy aUt @@ -113717,9 +114210,9 @@ bbT boh bhn bfw -btv -bVW -bxT +ftz +sLH +lMU bai bBP bPZ @@ -113975,8 +114468,8 @@ boh fjl bfw btv -bVW -bxT +sLH +lMU bzM bBQ bBQ @@ -114489,8 +114982,8 @@ bcL bfw bkH bhl -bVW -bxT +sLH +lMU bai bBS bBS @@ -114734,7 +115227,7 @@ aVo aZt aZt bos -msj +kBk aOy niB aZH @@ -114746,7 +115239,7 @@ bXD bfw aXt bhl -bVW +sLH byc bzK bzK @@ -115260,8 +115753,8 @@ mqG bfw bfw fMe -bVW -bxT +sLH +lMU bzK mRL bDP @@ -115281,7 +115774,7 @@ bzK cdT cdT bqQ -dZP +wfa cdT cel cJR @@ -115517,7 +116010,7 @@ fdz aux aXi btF -bVW +sLH bBp bzK bzK @@ -115536,7 +116029,7 @@ bXy nBj cgt cdT -dZP +wfa oDZ cCj cdT @@ -115751,7 +116244,7 @@ aGq aBb pXH rrq -wpu +eNp aRG aZt jap @@ -115775,7 +116268,7 @@ nig ruZ brJ bvQ -bxT +lMU bzK bBT bDO @@ -115823,7 +116316,7 @@ cKX cNa cNs cnd -tfV +tkA cyE tSj cry @@ -116008,7 +116501,7 @@ bnv aBb aaa bkS -hDK +iJH bjf oWO kPB @@ -116017,10 +116510,10 @@ qpH xaA aYj aUw -aLV -aRu +nGC +nGC dEG -bcH +nGC aWT ceY bfw @@ -116032,7 +116525,7 @@ uwv aXi btF bUP -bxT +lMU bzK mRL bDP @@ -116278,8 +116771,8 @@ aWu lid lOd xLd -bcX -bcX +nGC +nGC bfw aXi aXi @@ -116546,20 +117039,20 @@ pET pET bkI bhc -bfV +sVE cLE -bfV +sVE bFL bFA -byg -bfV -bfV -bfV -bfV -bfV -bfV -bfV -bjm +oMj +jfN +jfN +jfN +dKB +jfN +jfN +jfN +rKV bfV bsV bZh @@ -116793,32 +117286,32 @@ aMc bTq bcJ bei -mOc +fUo uvM -mOc +dJB mIo -mOc -mOc -mOc +yhF +dJB +dJB kuf btK bvU jPQ eCF -bfI +qtp bOB -bfI -cyB +hCu +fBQ bJc bKL -bfI -bfI -bfI -jFF -bfI +hCu +tJc +hCu +pxk +hCu bQG -bfI -bfI +kLW +kLW cyB caC cby @@ -117049,28 +117542,28 @@ oiC aEQ bTq aFE -bek +xuG bfJ ibQ biX -bhp -bhp +rvX +eLW xKg bXP brO -bhp +vpZ vNb biK bzR sWV -bqb +dPX wWh brN bJd -bdb +gst aZS -bMR -bMR +iYA +sUc bRO bTC bUM @@ -117306,7 +117799,7 @@ rkX mXE lSa aFE -bek +xuG bfK bhq bhq @@ -117510,11 +118003,11 @@ aaa aaa aaa aaa -xFu +hZh ePT uEa ato -vxc +eYD iAY sjz wjq @@ -117563,7 +118056,7 @@ lIM lIM lIM bMC -bek +xuG bfK bhq biY @@ -117767,7 +118260,7 @@ aaa aaa aaa aaa -xFu +cSE wQE xIe kis @@ -118019,10 +118512,10 @@ aaa aaa aaa aaa -kQv -uNk -uNk -uNk +hxz +laH +laH +laH kbN kbN kbN @@ -118076,9 +118569,9 @@ gYO mtd gYO gYO -bQF -ben -bqb +sTC +hdw +hiC bhq bja bkM @@ -118331,10 +118824,10 @@ aaa aaa abq aaa -aZJ -bbg -bNp -bek +toy +suO +nuz +xuG bjA bhq bhK @@ -118592,7 +119085,7 @@ sPp bbh bcM bel -bfO +jmL bhq bhq bkO @@ -118834,7 +119327,7 @@ xbo lXV cvX aJe -aKC +pRQ aMf aaa aOG @@ -118845,9 +119338,9 @@ aUj aXE aOG aaa -aZJ -dbb -bNp +toy +rSj +nuz qWN acw bht @@ -119134,8 +119627,8 @@ bWC bXY bZl can -bek -bfV +jdP +kmz cfi chE eVn @@ -119348,7 +119841,7 @@ dcY lAG aHM aJd -aKC +pRQ aMf aaa aOG @@ -119362,7 +119855,7 @@ aOG bcl aZL bgF -bek +xuG bfR bht bje @@ -119391,7 +119884,7 @@ bWD cBo bZl caN -bek +jdP bcX cdW oHR @@ -119620,7 +120113,7 @@ aZN bbk bdS beq -bdb +jmL jMy abq abq @@ -119648,7 +120141,7 @@ bQn bZw ebs bcX -nWH +fSz bcX cdW chE @@ -119876,8 +120369,8 @@ aOG bco aZL bgH -bek -bdb +xuG +jmL jMy abq abq @@ -120133,8 +120626,8 @@ aOG aZL aZL bdU -bek -bdb +xuG +jmL jMy abq aBV @@ -120162,7 +120655,7 @@ bZl bZl bZl caO -bek +jdP bcX cdW oqO @@ -120387,11 +120880,11 @@ aUn aXG aOG aaa -aZJ +toy bbm -bNp -bek -bdb +nuz +xuG +jmL jMy abq aCV @@ -120418,8 +120911,8 @@ bWb bWG bYb iwv -bMR -bek +tZp +jdP bcX cdW chE @@ -120614,7 +121107,7 @@ kli abW abq tsn -yev +sNG vJo sNG rZA @@ -120648,7 +121141,7 @@ sPp bbn bbr bwn -bdb +jmL jMy abq aBY @@ -120676,7 +121169,7 @@ adP bYJ bSc aoi -bek +jdP bcX cdZ oHR @@ -120901,7 +121394,7 @@ aaa aaa abq aaa -aZJ +toy bbo oYO svH @@ -121146,7 +121639,7 @@ thW pvo aqu aKD -kzm +aJk pRQ aMf ydv @@ -121162,7 +121655,7 @@ aMf bbp fJp jtg -bdb +jmL jMy abq bkW @@ -121404,22 +121897,22 @@ tDc ehh aHM aJk -aKC -aKC +pRQ +pRQ aKw -aKC +pRQ aQp aRC -aKC -aKC +pRQ +pRQ aXR -aKC +pRQ aKw aZP bbq pzV ber -bdb +jmL jMy abq aEh @@ -121456,9 +121949,9 @@ cgw cjH cgw coz -cns -cns -cns +bcH +bcH +bcH ctQ sfS sZI @@ -121467,9 +121960,9 @@ rmE cYL qLo czF -cEX cns -coz +cns +qBb cEm mBr cKq @@ -121478,14 +121971,14 @@ cMT iQm cns cns -ctQ +lyp cns cNS mBr cns cns cEX -ctQ +kzm qqM tVJ cPN @@ -121673,7 +122166,7 @@ kpn aKG aYz aZQ -kuf +gBB bcZ bes bfU @@ -121708,20 +122201,20 @@ cbE qBP mOc cfp -tEL -cgx +jcg +uIA cjI -tPc +jgP niU niU aet xvi -tPc -tPc -tPc -noA +jgP +jgP +jgP +mIq noy -tPc +jgP cyL rEw tPc @@ -121739,7 +122232,7 @@ tEL cgx pPn sbG -tEL +hrO cOO cOO lVz @@ -121933,7 +122426,7 @@ aZR bbs dEM tyF -bfV +wkn jMy abq aDK @@ -121981,22 +122474,22 @@ cuc cuc cyM czH -cAA -cmm +lHZ +lHZ sxv cEv -cmm -cmm -cmm +lHZ +lHZ +lHZ cRS cIt -cPI +bIH cKx khl -cuc +bAt mGK lHZ -cmm +lHZ eaG cxl oSr @@ -122190,7 +122683,7 @@ aMk bZi lDm fHQ -bfV +wkn jMy abq bkW @@ -122414,13 +122907,13 @@ amx amx amx amx -apP -liR +wRx +djR aCu maC -apP +oSi uYf -apP +oSi xAz ugy apP @@ -122432,7 +122925,7 @@ dDn swL aHM aJm -mVN +aNt aMk aNu uWQ @@ -122511,7 +123004,7 @@ tmz qKY lYB avs -cUL +clv lCO coG ech @@ -122665,21 +123158,21 @@ aSm aqd aSm alm -wRx -oSi -oSi oSi oSi oSi oSi -wKS -oSi -oSi -oSi oSi oSi +ugy +liR +apP +apP +apP +apP +apP nls -ceq +apP apP apP apP @@ -122702,9 +123195,9 @@ mZH aYC aMk beD -bcX -bek -bfV +nGC +xuG +wkn jMy abq boe @@ -122732,7 +123225,7 @@ bWN bYN bSc jXC -bek +jdP bcX cef cft @@ -122923,11 +123416,11 @@ uQU uOh glS aGV -sQt -sQt -sQt -sQt -sQt +dNt +xkX +xkX +xkX +xkX mVB ule uFZ @@ -122959,9 +123452,9 @@ sYp baO aMk beR -bMR -bek -bfV +rEF +xuG +wkn jMy abq boe @@ -122989,7 +123482,7 @@ bWQ bYj iwv bNp -bek +jdP bcX cee cHM @@ -123216,9 +123709,9 @@ sYp baL aMk aMk -bMR -bek -bfV +rEF +xuG +wkn jMy abq aEt @@ -123246,7 +123739,7 @@ bZn bZn aZJ caR -nWH +fSz bcX cee cfu @@ -123422,7 +123915,7 @@ aaa aaa aaa aaa -laH +aup aaa apO eXK @@ -123437,7 +123930,7 @@ gRG oXw maV oiX -nNq +aFz iBR hlN eVZ @@ -123473,9 +123966,9 @@ aXd aNC aZT aMk -bMR -bek -bfV +fgN +pQD +wkn jMy abq abq @@ -123730,9 +124223,9 @@ xxA aNC aZU aYA -bMR -bek -bfV +rEF +xuG +wkn jMy abq abq @@ -123760,7 +124253,7 @@ bXW bZn cGX bcX -bek +jdP bcX cee cHM @@ -123782,7 +124275,7 @@ cJp oUU pzC rWk -dQb +rjb eVO cJp cFY @@ -123807,8 +124300,8 @@ tba mZq vZo coG -coG -dif +aaa +abq aef abq abq @@ -124001,7 +124494,7 @@ qgk qgk qgk bAl -bCm +abb bEi bFV qgk @@ -124017,14 +124510,14 @@ bYo bZn bZo bcX -bek +jdP bcX cee cft cgF rFe cjN -clb +jUr cmz fwz daG @@ -124051,9 +124544,9 @@ mAA qbe veO aox -fdt -fjU saM +qnp +fdt cOp rKH vZo @@ -124062,10 +124555,10 @@ jKP jDv xHR cSY -tNn -vZo -vZo vZo +coG +aaa +abq aef abq aaa @@ -124244,8 +124737,8 @@ sjx erv aNC aYA -bMR -nWH +rEF +pCy bfX bhw boM @@ -124274,7 +124767,7 @@ bNh bNh bNh caN -bek +jdP bdb cei cHM @@ -124308,7 +124801,7 @@ klo hQB jFo vZA -wwR +hVw uZk iuI cOp @@ -124319,10 +124812,10 @@ kQj coG coG cUL -clN -coG -coG +cUL coG +aaa +abq aef abq aaa @@ -124501,8 +124994,8 @@ krK aNC aZW aMk -bMR -bek +rEF +xuG bfY bhw bnA @@ -124533,12 +125026,12 @@ bNh cbi ben bqb -bZu +fXo cfw cgu qnt qnt -clc +oic uxR cic bVj @@ -124565,9 +125058,9 @@ mAA kRQ oFF mmG -qnp -hVw wnf +wwR +wwR cOp hqx lYB @@ -124758,9 +125251,9 @@ vrH aYA aMk aMk -bUM -ben -bfZ +qmI +hdw +uSx bhw bjh byk @@ -124787,9 +125280,9 @@ ccl bWW qrT iSE -caM -bek -bdb +fXz +ixQ +eOI bbg cmo bUu @@ -124820,11 +125313,11 @@ cFH cFH bMg mcw +rfK cEK -cEK -nec -agK +jjG agK +nec cOp mtr lYB @@ -125015,9 +125508,9 @@ orm fOf eUz ayu -bMR +rEF bev -bfV +wkn bhw bji rtY @@ -125044,9 +125537,9 @@ cdB bWX tST vtR -caM -nWH -bdb +fXz +sZY +eOI dbb cmo mZe @@ -125079,9 +125572,9 @@ iRd iwB xbs dce -rfK -gQc cQd +gQc +qYD gty coG coG @@ -125303,7 +125796,7 @@ bZD bZX cPD uhY -bdb +eOI dbb cmo hYA @@ -125336,7 +125829,7 @@ hhN cOB jlU hQB -nbM +gWO nbM xdo cOp @@ -125348,7 +125841,7 @@ lTS coG abq aaa -aaa +abq aaa abq aef @@ -125530,7 +126023,7 @@ aRX aRX bbz fEr -uhY +trF bfW bhw bjk @@ -125574,7 +126067,7 @@ gvN bYq qxW cvl -geC +kej lGC nqw eZW @@ -125604,9 +126097,9 @@ kQj avs wSg coG -abq -abq -abq +coG +dif +aef arA arA bcb @@ -125786,9 +126279,9 @@ aTo aYJ aZY ayu -bMR -bek -bfV +rEF +xuG +wkn bhw bnE ble @@ -125859,11 +126352,11 @@ rVg coG wWu vZo +tNn vZo -hXg -abq -aaa -aaa +fpO +vZo +aef abq aef abq @@ -126043,9 +126536,9 @@ paZ aYK aZZ bbA -bMR -bek -bfV +rEF +xuG +wkn bhw bhw bhw @@ -126072,7 +126565,7 @@ bht bht bht bht -bNp +xki cXn bqR cek @@ -126116,11 +126609,11 @@ cKS wxV gWk lYB -vZo +qyd hXg -aaa -aaa -aaa +hXg +hXg +aef abq aef abq @@ -126300,20 +126793,20 @@ ayu cdP aZZ bbB -bMR -nWH -bfV +rEF +pCy +wkn bwl -bjm -bCB -bfV -bsV -bfV +uSx +eNa +wBR +gCA +aUM bvs -bjm +wVL mdE byF -bfV +ofu bCB bEp deE @@ -126322,14 +126815,14 @@ bcN byg cfr bQF -bNp +xki bSW bTW bVn -bNp +kSz bYr bbt -bNp +xki sVy pRL cte @@ -126373,7 +126866,7 @@ dXZ coG kQj mlV -cUL +clN coG abq aaa @@ -126559,21 +127052,21 @@ aZZ xoq bdi bex -hBq +qvE beo -bQG -hlD +etn +dnj bnb boO bqu -bOV -bOB +qif +dFf hlD xpC fHy qsN hlD -bfI +ycb bHM bJF bLt @@ -126818,23 +127311,23 @@ ejd bey bgd oWL -bUM +qmI kaK blg blk -lsQ +jyq deD dwp -lsQ -rOT +wgh +nVp pUF ipa -lsQ -lsQ -lsQ -lsQ -lsQ -lsQ +wgh +wgh +wgh +wgh +wgh +wgh bwS bpI lsQ @@ -126849,7 +127342,7 @@ ccW chO cfA cgN -bBk +ggQ bZu bZu ppH @@ -127334,7 +127827,7 @@ bge blM bjp bez -bnr +vtx boY bqA aHe @@ -127861,9 +128354,9 @@ bEv sTF mBe bHO -voV +jQx nic -bTZ +oXP dnI bVs nic @@ -128118,7 +128611,7 @@ bEv omK udl bHO -xFW +doE nic bQJ aRy @@ -129370,7 +129863,7 @@ bgb aHV iKF aIk -aFG +llW aLd aMt aGM @@ -129390,7 +129883,7 @@ avA alb aLl aLl -bnr +wnn bcP bqA bsp @@ -129659,7 +130152,7 @@ sqp sqp sqp fsh -tXA +bEv bQI soT tRb @@ -130161,9 +130654,9 @@ aaa aaa aaa blo -bnr -hfi -bqA +aIr +nyR +rve blC bxI iGf @@ -130418,7 +130911,7 @@ vuo aZK beC beC -bnr +gFZ boX bqD bsq @@ -130472,7 +130965,7 @@ lLx qEh iKT qTJ -egC +jLt uGh imh sXt @@ -130675,9 +131168,9 @@ bgm bhI bjv beC -bnf +veb cCu -bqA +rve blC xam bbE @@ -130704,7 +131197,7 @@ caS bZv bZv clC -ipj +iFx cte lXi xmO @@ -130933,7 +131426,7 @@ beE bjw beC bnn -boY +oAL bqE bsm bsm @@ -131189,7 +131682,7 @@ beC bbx beC beC -bnr +qxG bQR buV bsp @@ -131235,7 +131728,7 @@ cmB cOR rMb cSl -cLm +loz xXD gqQ mMv @@ -131446,9 +131939,9 @@ bgo bhL bjx bbH -bnr -boY -bqx +aIr +oAL +rjC bsp mwH hvW @@ -131460,9 +131953,9 @@ mpr bTd bJO bQI +vPk bQI -bPe -bQI +eRh bQI bQI bVA @@ -131703,7 +132196,7 @@ bgp bhM bjy bbH -bnr +aIr mUq qIg bsp @@ -131716,9 +132209,9 @@ aoG aoG aoG aoG -aoG -oXK -asJ +bQI +bQI +bQI aNR bEG bZv @@ -131960,7 +132453,7 @@ bgq bhJ bjz bbH -bnk +tNg bpb bqC bsp @@ -131974,7 +132467,7 @@ bHW bHX kZl xbt -aoG +oXK bPg dnm bTP @@ -132009,7 +132502,7 @@ cUQ uOY mfA gZT -eIY +qPh cAS uzR qyw @@ -132166,7 +132659,7 @@ aaa aaa aaa aaa -laH +aup aaa aaa aaa @@ -132217,8 +132710,8 @@ bgr bhJ bnJ bbH -bnr -boY +dSN +fQt bqx aoG aoG @@ -132520,7 +133013,7 @@ cmB cVo cvW cSl -cOk +mhA rHl cRH mMv @@ -132732,7 +133225,7 @@ bhQ bjC bbH bnp -hfi +oNy bqx aoG cZD @@ -132766,7 +133259,7 @@ cYB gSO csV cte -voT +vQf cqi fNl ool @@ -132989,7 +133482,7 @@ bam bam bam bqB -boY +fQt bqx aoG aoG @@ -133245,8 +133738,8 @@ bgu bmm bnM bam -bnr -boY +dSN +fQt bqx aoG aMh @@ -133502,7 +133995,7 @@ bgv bhU aGX bam -bnr +dSN xVd lDD aoG @@ -133759,7 +134252,7 @@ bgw bhU bom bam -bnf +oZT vkR pBB aoG @@ -134273,7 +134766,7 @@ cfd bhU bjH bam -bnr +dSN bsY mGk bHN @@ -137408,7 +137901,7 @@ uQm uQm uQm uQm -gzU +wsf iUe cDI mCu @@ -141414,7 +141907,7 @@ aaa aaa aaa aaa -laH +aup aaa aaa cke @@ -142452,11 +142945,11 @@ laH laH laH laH +aup laH laH laH -laH -laH +abq laH laH aaa @@ -147618,266 +148111,266 @@ aaa aaa aaa aaa -laH -aaa -aaa -aUU -bxl -cko -arA -abq -abq -aXL -aaa -aXL -aXL -aXL -aXL -aXL -aXL -aXL -aXL -aXL -wxE -bvw -bxz -bBn -aXL -aXL -aaa -aXL -aaa -aaa -aaa -aaa -aXL -abq -arA -aUV -wri -aQF -aaa -aaa -laH -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 -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 -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 -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -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 -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 -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +laH aaa aaa +aUU +bxl +cko +arA +abq +abq +aXL aaa +aXL +aXL +aXL +aXL +aXL +aXL +aXL +aXL +aXL +wxE +bvw +bxz +bBn +aXL +aXL aaa +aXL aaa aaa aaa aaa +aXL +abq +arA +aUV +wri +aQF aaa aaa laH 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 +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +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 +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aup +aaa +aaa aUU bxl fbS @@ -147915,7 +148408,7 @@ wri aQF aaa aaa -laH +aup aaa aaa aaa @@ -150445,7 +150938,7 @@ aaa aaa aaa aaa -laH +aup aaa aaa aUU @@ -152776,8 +153269,8 @@ laH laH cKI laH -laH -laH +abq +aup laH laH laH @@ -152791,7 +153284,7 @@ laH laH laH laH -laH +aup laH laH cKI diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm index 1295070c312c..3433ee2ffdd7 100644 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm @@ -979,7 +979,7 @@ /turf/simulated/floor/mineral/bananium/lubed, /area/ruin/powered/clownplanet) "bL" = ( -/obj/item/reagent_containers/food/drinks/trophy/gold_cup, +/obj/item/reagent_containers/drinks/trophy/gold_cup, /obj/structure/table/glass, /turf/simulated/floor/carpet, /area/ruin/powered/clownplanet) diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_winter.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_winter.dmm index f1b2e315b9ee..3ee31c383d40 100644 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_winter.dmm +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_winter.dmm @@ -36,7 +36,7 @@ /turf/simulated/floor/plating, /area/ruin/powered/snow_biodome) "ah" = ( -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/plating, /area/ruin/powered/snow_biodome) "ai" = ( @@ -102,7 +102,7 @@ /area/ruin/powered/snow_cabin) "ax" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, /turf/simulated/floor/wood, /area/ruin/powered/snow_cabin) "ay" = ( @@ -141,7 +141,7 @@ /area/ruin/powered/snow_cabin) "aF" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/h_chocolate, +/obj/item/reagent_containers/drinks/h_chocolate, /turf/simulated/floor/wood, /area/ruin/powered/snow_cabin) "aG" = ( diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_excavation.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_excavation.dmm index 08d65ad3cf4a..c0fe43694a66 100644 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_excavation.dmm +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_excavation.dmm @@ -20,9 +20,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/railing/corner, /obj/effect/landmark/damageturf, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/corner, /obj/effect/mapping_helpers/no_lava, /turf/simulated/floor/pod/light{ oxygen = 0; @@ -257,9 +255,7 @@ "aN" = ( /obj/structure/railing, /obj/effect/landmark/damageturf, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/no_lava, /turf/simulated/floor/plating/airless, /area/lavaland/surface/outdoors) @@ -272,9 +268,7 @@ /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/damageturf, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/no_lava, /turf/simulated/floor/pod/light{ oxygen = 0; @@ -518,9 +512,7 @@ /obj/structure/railing/corner, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/corner, /obj/effect/mapping_helpers/no_lava, /turf/simulated/floor/pod/light{ oxygen = 0; @@ -673,7 +665,7 @@ /area/lavaland/surface/outdoors) "ie" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/badrecipe, +/obj/item/food/snacks/badrecipe, /turf/simulated/floor/plating/airless, /area/ruin/unpowered/althland_excavation) "iv" = ( @@ -825,9 +817,7 @@ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/off_station/empty_charge{ - pixel_y = 24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/north, /turf/simulated/floor/plating/airless, /area/ruin/unpowered/althland_excavation) "pI" = ( @@ -907,9 +897,7 @@ /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/damageturf, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/no_lava, /turf/simulated/floor/plating/airless, /area/lavaland/surface/outdoors) @@ -959,7 +947,7 @@ "wi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /obj/machinery/constructable_frame, /turf/simulated/floor/pod/light{ oxygen = 0; @@ -1014,9 +1002,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/railing, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/no_lava, /turf/simulated/floor/plating/airless, /area/lavaland/surface/outdoors) @@ -1032,9 +1018,7 @@ "yz" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/no_lava, /turf/simulated/floor/plating/airless, /area/lavaland/surface/outdoors) @@ -1101,8 +1085,8 @@ "Cs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table_frame, -/obj/item/reagent_containers/food/snacks/badrecipe, -/obj/item/reagent_containers/food/snacks/badrecipe{ +/obj/item/food/snacks/badrecipe, +/obj/item/food/snacks/badrecipe{ pixel_y = 14; pixel_x = 14 }, @@ -1145,12 +1129,9 @@ /area/lavaland/surface/outdoors) "Es" = ( /obj/structure/lattice/catwalk/mining, -/obj/structure/ladder/unbreakable/dive_point{ - desc = "The shattered remnants of a ladder hanging over the pitch-black chasm, providing no safe route to the abyss beneath. Its fractured rungs suggest an inevitable plunge, as if the remainder might soon join the void."; - name = "shattered ladder" - }, /obj/effect/baseturf_helper/lava_land/surface, /obj/effect/mapping_helpers/no_lava, +/obj/structure/ladder/unusable, /turf/simulated/floor/chasm, /area/lavaland/surface/outdoors) "Et" = ( @@ -1327,7 +1308,7 @@ /area/lavaland/surface/outdoors) "OX" = ( /obj/structure/table_frame, -/obj/item/reagent_containers/food/snacks/badrecipe, +/obj/item/food/snacks/badrecipe, /turf/simulated/floor/plating/airless, /area/ruin/unpowered/althland_excavation) "Pe" = ( @@ -1533,9 +1514,7 @@ "Ya" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/no_lava, /turf/simulated/floor/pod/light{ oxygen = 0; diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_facility.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_facility.dmm index bb91ea362faa..87e12be1426b 100644 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_facility.dmm +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_althland_facility.dmm @@ -37,10 +37,7 @@ /area/lavaland/surface/outdoors) "au" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor{ temperature = 300; oxygen = 14; @@ -181,10 +178,7 @@ "eV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor{ temperature = 300; @@ -1435,11 +1429,11 @@ /area/ruin/unpowered/althland_processing) "Jw" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 8; pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ temperature = 300; @@ -1903,10 +1897,7 @@ /area/lavaland/surface/outdoors) "Xw" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /obj/item/paper/fluff/ruins/althland/geology, /turf/simulated/floor/plasteel{ temperature = 300; diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm index 899178dd7177..4cd633eeba32 100644 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm @@ -60,7 +60,7 @@ /obj/item/seeds/reishi, /obj/item/seeds/plump, /obj/item/seeds/plump, -/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, +/obj/item/food/snacks/grown/mushroom/glowshroom, /turf/simulated/floor/plating/asteroid/basalt, /area/ruin/powered) "n" = ( diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm index 4f64ee076493..c3df51e78744 100644 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm @@ -56,7 +56,7 @@ }, /area/ruin/unpowered/misc_lavaruin) "j" = ( -/obj/item/reagent_containers/food/snacks/mushroompizzaslice, +/obj/item/food/snacks/mushroompizzaslice, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating{ nitrogen = 23; @@ -243,7 +243,7 @@ /area/ruin/unpowered/misc_lavaruin) "D" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/margheritapizzaslice, +/obj/item/food/snacks/margheritapizzaslice, /obj/item/trash/plate, /turf/simulated/floor/wood{ nitrogen = 23; @@ -253,7 +253,7 @@ /area/ruin/unpowered/misc_lavaruin) "E" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/meatpizzaslice, +/obj/item/food/snacks/meatpizzaslice, /turf/simulated/floor/wood{ nitrogen = 23; oxygen = 14; @@ -262,7 +262,7 @@ /area/ruin/unpowered/misc_lavaruin) "F" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/sliceable/birthdaycake, +/obj/item/food/snacks/sliceable/birthdaycake, /turf/simulated/floor/wood{ nitrogen = 23; oxygen = 14; diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm index 8e9f26c16a23..01936b0ab7a6 100644 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm @@ -115,7 +115,7 @@ /obj/effect/mapping_helpers/no_lava, /obj/effect/mob_spawn/human/corpse/seed_vault_diona, /obj/item/pickaxe/mini, -/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom{ +/obj/item/food/snacks/grown/mushroom/glowshroom{ pixel_x = 8; pixel_y = -8 }, @@ -338,14 +338,14 @@ /turf/simulated/floor/plasteel/freezer, /area/ruin/powered/seedvault) "IJ" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4; name = "Ship Auto-Pilot Console" }, /turf/simulated/floor/plasteel/freezer, /area/ruin/powered/seedvault) "JL" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4; name = "Auto-Pilot Traveling Logs" }, diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm index 5607f14a46e8..c6a81c6289b1 100644 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm @@ -25,7 +25,7 @@ /area/ruin/unpowered/misc_lavaruin) "f" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, +/obj/item/food/snacks/grown/citrus/orange, /turf/simulated/floor/sepia{ slowdown = 10 }, diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_watcher_grave.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_watcher_grave.dmm index 94b3daeba793..d87396e356f8 100644 --- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_watcher_grave.dmm +++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_watcher_grave.dmm @@ -34,7 +34,7 @@ /obj/structure/stone_tile{ dir = 1 }, -/obj/item/reagent_containers/food/snacks/egg/watcher, +/obj/item/food/snacks/egg/watcher, /obj/effect/mapping_helpers/no_lava, /obj/effect/mapping_helpers/no_lava, /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, diff --git a/_maps/map_files/RandomRuins/SpaceRuins/abandoned_engi_sat.dmm b/_maps/map_files/RandomRuins/SpaceRuins/abandoned_engi_sat.dmm index 40cb7ab08a1e..9c6403deaf1b 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/abandoned_engi_sat.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/abandoned_engi_sat.dmm @@ -8,7 +8,7 @@ /turf/simulated/floor/plasteel, /area/ruin/space/abandoned_engi_sat) "aN" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -53,8 +53,7 @@ "cz" = ( /obj/machinery/status_display{ mode = 0; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel{ icon_state = "delivery" @@ -72,7 +71,6 @@ }, /obj/machinery/status_display{ mode = 0; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -90,9 +88,7 @@ /area/ruin/space/abandoned_engi_sat) "dk" = ( /obj/machinery/power/solar, -/obj/structure/cable{ - icon_state = "0-1" - }, +/obj/structure/cable, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel"; name = "floor" @@ -154,7 +150,6 @@ "ex" = ( /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel, @@ -193,9 +188,7 @@ icon_state = "0-4"; d2 = 4 }, -/obj/machinery/power/apc/off_station/empty_charge{ - pixel_y = -24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/south, /obj/effect/landmark/burnturf, /turf/simulated/floor/plating, /area/ruin/space/abandoned_engi_sat) @@ -212,7 +205,6 @@ /area/ruin/space/abandoned_engi_sat) "gi" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cmo" }, /area/ruin/space/abandoned_engi_sat) @@ -260,7 +252,6 @@ "hP" = ( /obj/machinery/status_display{ mode = 0; - pixel_x = 0; pixel_y = 32 }, /obj/effect/landmark/damageturf, @@ -283,12 +274,10 @@ "jk" = ( /obj/machinery/shower{ dir = 4; - icon_state = "shower"; pixel_x = 5 }, /obj/structure/curtain/open/shower/engineering, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cmo" }, /area/ruin/space/abandoned_engi_sat) @@ -324,7 +313,6 @@ /obj/machinery/light, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel, @@ -336,8 +324,7 @@ "kg" = ( /obj/structure/cable{ d2 = 2; - icon_state = "0-2"; - pixel_y = 0 + icon_state = "0-2" }, /obj/machinery/constructable_frame/machine_frame, /turf/simulated/floor/plasteel{ @@ -520,8 +507,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -548,9 +534,9 @@ /obj/item/poster/random_contraband, /obj/item/poster/random_contraband, /obj/item/poster/random_contraband, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, /turf/simulated/floor/plasteel, /area/ruin/space/abandoned_engi_sat) "pb" = ( @@ -612,7 +598,6 @@ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -670,16 +655,14 @@ /turf/simulated/floor/wood/airless, /area/ruin/space/abandoned_engi_sat) "to" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/effect/landmark/damageturf, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/ruin/space/abandoned_engi_sat) "tO" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -696,7 +679,6 @@ /obj/machinery/light, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plating, @@ -707,7 +689,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -746,27 +727,22 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; d2 = 8; icon_state = "1-8" }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/space/abandoned_engi_sat) "xp" = ( /obj/machinery/light{ - icon_state = "tube1"; dir = 1 }, /obj/machinery/status_display{ mode = 0; - pixel_x = 0; pixel_y = 32 }, /obj/structure/closet/crate/internals, @@ -839,9 +815,7 @@ "zb" = ( /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; - pixel_x = -28; - pixel_y = 0 + pixel_x = -28 }, /turf/simulated/floor/plasteel, /area/ruin/space/abandoned_engi_sat) @@ -941,15 +915,13 @@ /turf/template_noop, /area/ruin/space/abandoned_engi_sat) "CY" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /turf/simulated/floor/plasteel, /area/ruin/space/abandoned_engi_sat) "Db" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -1045,8 +1017,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -1061,8 +1032,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/ruin/space/abandoned_engi_sat) @@ -1084,7 +1054,6 @@ "Ha" = ( /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plating, @@ -1093,7 +1062,6 @@ /obj/machinery/light, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -1108,9 +1076,7 @@ }, /area/ruin/space/abandoned_engi_sat) "HX" = ( -/obj/structure/cable{ - icon_state = "0-1" - }, +/obj/structure/cable, /turf/simulated/floor/plasteel/airless{ icon_state = "solarpanel"; name = "floor" @@ -1136,7 +1102,7 @@ pixel_y = 1; d2 = 2 }, -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -1152,7 +1118,6 @@ }, /obj/item/soap/nanotrasen, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cmo" }, /area/ruin/space/abandoned_engi_sat) @@ -1263,8 +1228,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; @@ -1293,8 +1257,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; @@ -1308,8 +1271,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, @@ -1332,9 +1294,7 @@ "QJ" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /turf/simulated/floor/plasteel{ icon_state = "vault"; @@ -1501,12 +1461,10 @@ dir = 1 }, /obj/structure/window/reinforced/tinted{ - dir = 4; - icon_state = "twindow" + dir = 4 }, /obj/item/bikehorn/rubberducky, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cmo" }, /area/ruin/space/abandoned_engi_sat) @@ -1544,17 +1502,14 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/ruin/space/abandoned_engi_sat) "ZS" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/structure/sign/poster/random{ pixel_x = 32 diff --git a/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm index 390bf2401ea0..610d51e3c23d 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm @@ -345,10 +345,7 @@ }, /area/ruin/space/unpowered) "aS" = ( -/obj/machinery/power/apc/worn_out{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/power/apc/worn_out/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -545,7 +542,7 @@ /area/ruin/space/unpowered) "bn" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/carrotfries, +/obj/item/food/snacks/carrotfries, /turf/simulated/floor/plasteel{ icon_state = "dark" }, diff --git a/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm b/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm index 1ea6c1179145..525a0d85a8a9 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm @@ -338,9 +338,7 @@ /turf/template_noop, /area/space/nearstation) "tr" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/ruin/space/tcommsat) @@ -584,7 +582,7 @@ /turf/simulated/wall/r_wall, /area/space/nearstation) "Nw" = ( -/obj/item/reagent_containers/food/snacks/xenomeatbreadslice{ +/obj/item/food/snacks/xenomeatbreadslice{ name = "green mold bread slice" }, /turf/simulated/floor/plating/airless, @@ -812,9 +810,7 @@ /turf/template_noop, /area/space/nearstation) "Yt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/ruin/space/tcommsat) "Yu" = ( @@ -827,11 +823,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/tcommsat) "YN" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Worn-out APC"; - pixel_y = 24 - }, +/obj/machinery/power/apc/worn_out/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-2" diff --git a/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm b/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm index 672218a60d90..67ff96e0ad2c 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm @@ -122,9 +122,7 @@ /turf/space, /area/space) "O" = ( -/obj/machinery/power/apc/worn_out{ - pixel_y = -24 - }, +/obj/machinery/power/apc/worn_out/directional/south, /obj/structure/cable, /turf/simulated/floor/plating/airless, /area/space) diff --git a/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm index 0559b278a5d4..2338e405ac25 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm @@ -318,20 +318,20 @@ /area/ruin/space/unpowered) "aF" = ( /obj/structure/closet/cardboard, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, /turf/simulated/floor/plasteel, /area/ruin/space/unpowered) "aG" = ( /obj/structure/closet/cardboard, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /turf/simulated/floor/plasteel, /area/ruin/space/unpowered) "aH" = ( @@ -390,11 +390,11 @@ /area/ruin/space/unpowered) "aP" = ( /obj/structure/closet/cardboard, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /obj/machinery/light{ dir = 4 }, @@ -649,7 +649,7 @@ /area/ruin/space/unpowered) "bD" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -667,11 +667,9 @@ /turf/simulated/floor/plasteel, /area/ruin/space/unpowered) "bG" = ( -/obj/machinery/power/apc/off_station{ - dir = 8; +/obj/machinery/power/apc/off_station/directional/west{ keep_preset_name = 1; - name = "Bunker APC"; - pixel_x = -24 + name = "Bunker APC" }, /obj/structure/cable{ d2 = 4; diff --git a/_maps/map_files/RandomRuins/SpaceRuins/derelict5.dmm b/_maps/map_files/RandomRuins/SpaceRuins/derelict5.dmm index b7b7e3bc1845..96be2fc177cf 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/derelict5.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/derelict5.dmm @@ -261,10 +261,10 @@ /area/ruin/space/unpowered) "SX" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/beans{ +/obj/item/food/snacks/beans{ pixel_x = 10 }, -/obj/item/reagent_containers/food/snacks/beans{ +/obj/item/food/snacks/beans{ pixel_x = -5 }, /turf/simulated/floor/plasteel, diff --git a/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm b/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm index c633cc96f1d4..8858774e8665 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm @@ -7,10 +7,7 @@ /turf/template_noop, /area/space/nearstation) "ac" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/template_noop, /area/space/nearstation) "ad" = ( @@ -43,10 +40,7 @@ /turf/template_noop, /area/ruin/space/djstation/solars) "ag" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/structure/lattice, /turf/template_noop, /area/space/nearstation) @@ -64,10 +58,7 @@ /area/ruin/space/djstation) "aj" = ( /obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/template_noop, /area/space/nearstation) "al" = ( @@ -284,10 +275,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc/off_station{ - name = "Worn-out APC"; - pixel_y = -24 - }, +/obj/machinery/power/apc/worn_out/directional/south, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/ruin/space/djstation) @@ -565,15 +553,15 @@ /area/ruin/space/djstation) "bw" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ +/obj/item/reagent_containers/drinks/bottle/vodka{ pixel_x = 7; pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 28; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "darkblue" diff --git a/_maps/map_files/RandomRuins/SpaceRuins/druglab.dmm b/_maps/map_files/RandomRuins/SpaceRuins/druglab.dmm index 4b707a0c38e7..6e07362ccb41 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/druglab.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/druglab.dmm @@ -51,7 +51,7 @@ /area/ruin/space/methlab) "l" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/chips, +/obj/item/food/snacks/chips, /turf/simulated/floor/plating, /area/ruin/space/methlab) "m" = ( @@ -80,11 +80,8 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 4; - layer = 5; - name = "east bump"; - pixel_x = 24 +/obj/machinery/power/apc/directional/east{ + layer = 5 }, /turf/simulated/floor/plating, /area/ruin/space/methlab) diff --git a/_maps/map_files/RandomRuins/SpaceRuins/listeningpost.dmm b/_maps/map_files/RandomRuins/SpaceRuins/listeningpost.dmm index 62bb34219c95..cd0277ea77cc 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/listeningpost.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/listeningpost.dmm @@ -199,6 +199,7 @@ name = "mission briefing" }, /obj/effect/decal/cleanable/dirt, +/obj/item/paper/monitorkey, /turf/simulated/floor/plasteel/dark, /area/ruin/space/syndicate_listening_station) "un" = ( @@ -618,11 +619,7 @@ /turf/simulated/floor/plating, /area/ruin/space/syndicate_listening_station) "Ya" = ( -/obj/machinery/power/apc/off_station{ - dir = 4; - pixel_x = 24; - req_access = list(150) - }, +/obj/machinery/power/apc/syndicate/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" diff --git a/_maps/map_files/RandomRuins/SpaceRuins/meatpackers.dmm b/_maps/map_files/RandomRuins/SpaceRuins/meatpackers.dmm index 89a5ba26557e..b91380534d3c 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/meatpackers.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/meatpackers.dmm @@ -95,8 +95,8 @@ /area/ruin/unpowered/BMPship/Delta) "ax" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -104,7 +104,7 @@ /area/ruin/unpowered/BMPship/Delta) "ay" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -140,14 +140,11 @@ icon_state = "0-2"; pixel_y = 1 }, -/obj/machinery/power/apc/off_station{ - dir = 1; +/obj/machinery/power/apc/off_station/directional/north{ environment_channel = 2; equipment_channel = 0; lighting_channel = 0; - locked = 0; - pixel_y = 24; - req_access = "" + locked = 0 }, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -340,16 +337,12 @@ }, /area/ruin/unpowered/BMPship/Fore) "br" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Fore) "bs" = ( /obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Fore) "bt" = ( @@ -407,50 +400,31 @@ /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Delta) "bI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Delta) "bJ" = ( /obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Delta) "bK" = ( /obj/structure/kitchenspike, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Delta) "bL" = ( /obj/structure/closet/crate, /obj/item/analyzer, /obj/item/stack/spacecash/c10, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Delta) "bM" = ( /obj/structure/closet/crate, /obj/item/stack/spacecash/c100, /obj/item/stack/spacecash/c50, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/ruin/unpowered/BMPship/Delta) -"bN" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/hugemushroomslice, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Delta) "bO" = ( @@ -459,9 +433,7 @@ pixel_y = -24 }, /obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Delta) "bP" = ( @@ -471,9 +443,7 @@ icon_state = "1-2"; tag = "" }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Delta) "bQ" = ( @@ -487,14 +457,11 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc/off_station{ - dir = 1; +/obj/machinery/power/apc/off_station/directional/north{ equipment_channel = 0; lighting_channel = 0; locked = 0; - operating = 0; - pixel_y = 24; - req_access = "" + operating = 0 }, /turf/simulated/floor/carpet, /area/ruin/unpowered/BMPship/Fore) @@ -564,7 +531,7 @@ "cb" = ( /obj/structure/table, /obj/item/kitchen/knife/butcher, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/plasteel{ icon_state = "barber" }, @@ -648,7 +615,7 @@ /turf/simulated/wall/mineral/titanium, /area/ruin/unpowered/BMPship/Aft) "cp" = ( -/obj/item/reagent_containers/food/snacks/hugemushroomslice, +/obj/item/food/snacks/hugemushroomslice, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -750,7 +717,7 @@ /turf/simulated/floor/carpet, /area/ruin/unpowered/BMPship/Fore) "cH" = ( -/obj/item/reagent_containers/food/snacks/hugemushroomslice, +/obj/item/food/snacks/hugemushroomslice, /turf/simulated/floor/plasteel, /area/ruin/unpowered/BMPship/Midship) "cI" = ( @@ -766,9 +733,7 @@ }, /area/ruin/unpowered/BMPship/Midship) "cL" = ( -/obj/machinery/door/window{ - dir = 2 - }, +/obj/machinery/door/window, /turf/simulated/floor/plasteel{ icon_state = "barber" }, @@ -792,8 +757,8 @@ /area/ruin/unpowered/BMPship/Aft) "cP" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -827,13 +792,10 @@ icon_state = "0-2"; pixel_y = 1 }, -/obj/machinery/power/apc/off_station{ - dir = 1; +/obj/machinery/power/apc/off_station/directional/north{ environment_channel = 0; locked = 0; - operating = 0; - pixel_y = 24; - req_access = "" + operating = 0 }, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Aft) @@ -898,7 +860,7 @@ }, /area/ruin/unpowered/BMPship/Midship) "di" = ( -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -1194,12 +1156,9 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc/off_station{ - dir = 1; +/obj/machinery/power/apc/off_station/directional/north{ locked = 0; - operating = 0; - pixel_y = 24; - req_access = "" + operating = 0 }, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -1944,7 +1903,7 @@ /area/ruin/unpowered/BMPship/Fore) "fS" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -2234,7 +2193,7 @@ /area/ruin/powered) "gO" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /obj/item/grenade/chem_grenade/drugs, /turf/simulated/floor/plating/airless, /area/ruin/powered) @@ -2389,7 +2348,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/powered) "hn" = ( -/obj/item/reagent_containers/food/snacks/chips, +/obj/item/food/snacks/chips, /turf/simulated/floor/plating/airless, /area/ruin/powered) "ho" = ( @@ -2448,6 +2407,15 @@ }, /turf/simulated/floor/plating, /area/ruin/unpowered/BMPship/Aft) +"IM" = ( +/obj/structure/closet/crate/freezer, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/hugemushroomslice, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/ruin/unpowered/BMPship/Delta) "PP" = ( /obj/structure/computerframe{ dir = 4 @@ -4968,7 +4936,7 @@ aj aj aj aj -bN +IM ad cl cl diff --git a/_maps/map_files/RandomRuins/SpaceRuins/mechtransport.dmm b/_maps/map_files/RandomRuins/SpaceRuins/mechtransport.dmm index 2a8053abb9da..48f6692898da 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/mechtransport.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/mechtransport.dmm @@ -20,9 +20,8 @@ /turf/simulated/floor/plating/airless, /area/template_noop) "fr" = ( -/obj/machinery/computer{ - name = "shuttle control console"; - desc = "The screen dims greens with an ERROR message. It looks completely unusable." +/obj/machinery/computer/nonfunctional{ + name = "shuttle control console" }, /turf/simulated/floor/mineral/titanium/blue/airless, /area/ruin/space/powered) @@ -286,13 +285,11 @@ /turf/simulated/floor/mineral/titanium/airless, /area/ruin/space/powered) "Nm" = ( -/obj/machinery/computer{ - name = "exosuit control console"; - desc = "The screen dims green with a bright ERROR message. It looks completely unusable." +/obj/machinery/computer/nonfunctional{ + name = "exosuit control console" }, -/obj/machinery/computer{ - name = "shuttle control console"; - desc = "The screen dims green with an ERROR message. It looks completely unusable." +/obj/machinery/computer/nonfunctional{ + name = "shuttle control console" }, /turf/simulated/floor/mineral/titanium/blue/airless, /area/ruin/space/powered) diff --git a/_maps/map_files/RandomRuins/SpaceRuins/moonoutpost19.dmm b/_maps/map_files/RandomRuins/SpaceRuins/moonoutpost19.dmm index 9346dea8c35e..7afde38c1526 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/moonoutpost19.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/moonoutpost19.dmm @@ -1071,7 +1071,7 @@ /turf/simulated/wall/mineral/titanium, /area/ruin/space/powered) "dh" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/mineral/titanium, /area/ruin/space/powered) @@ -2061,10 +2061,10 @@ }, /area/ruin/space/moonbase19) "gy" = ( -/obj/item/reagent_containers/food/snacks/xenomeatbreadslice{ +/obj/item/food/snacks/xenomeatbreadslice{ pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 10; pixel_x = 10 }, @@ -2307,7 +2307,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/plasteel{ @@ -2575,7 +2575,7 @@ "hV" = ( /obj/structure/railing, /obj/structure/closet/secure_closet, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -3; pixel_y = -2 }, @@ -3170,7 +3170,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -3723,16 +3723,16 @@ }, /area/ruin/space/moonbase19) "lC" = ( -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans{ +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans{ pixel_y = 6; pixel_x = 9 }, -/obj/item/reagent_containers/food/snacks/beans{ +/obj/item/food/snacks/beans{ pixel_y = 3; pixel_x = 3 }, -/obj/item/reagent_containers/food/snacks/beans{ +/obj/item/food/snacks/beans{ pixel_y = 1; pixel_x = -5 }, @@ -4917,7 +4917,7 @@ /area/ruin/space/moonbase19) "pZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/badrecipe, +/obj/item/food/snacks/badrecipe, /turf/simulated/floor/plasteel, /area/ruin/space/moonbase19) "qa" = ( @@ -5792,6 +5792,23 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/plasteel, /area/ruin/space/moonbase19) +"ts" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/obj/item/hemostat, +/obj/item/retractor, +/obj/item/stack/cable_coil, +/obj/structure/table/glass, +/turf/simulated/floor/plasteel{ + icon_state = "darkblue"; + dir = 1 + }, +/area/ruin/space/moonbase19) "tv" = ( /obj/structure/largecrate, /turf/simulated/floor/plating/asteroid/ancient, @@ -6124,8 +6141,8 @@ "vh" = ( /obj/structure/rack, /obj/item/mecha_parts/core, -/obj/item/stock_parts/cell/infinite, /obj/effect/turf_decal/delivery/hollow, +/obj/item/stock_parts/cell/infinite/abductor, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -6350,7 +6367,7 @@ }, /area/ruin/space/moonbase19) "wk" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plating/asteroid/ancient, /area/ruin/space/moonbase19) "wl" = ( @@ -6414,7 +6431,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /turf/simulated/floor/plasteel{ @@ -6430,7 +6447,7 @@ }, /area/ruin/space/moonbase19) "wL" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /obj/structure/table, /turf/simulated/floor/plasteel, /area/ruin/space/moonbase19) @@ -6719,7 +6736,7 @@ /turf/simulated/floor/carpet, /area/ruin/space/moonbase19) "yc" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /turf/simulated/floor/plasteel{ @@ -6935,12 +6952,12 @@ }, /area/ruin/space/moonbase19) "yR" = ( -/obj/item/reagent_containers/food/snacks/xenomeatbreadslice, -/obj/item/reagent_containers/food/snacks/xenomeatbreadslice{ +/obj/item/food/snacks/xenomeatbreadslice, +/obj/item/food/snacks/xenomeatbreadslice{ pixel_y = 7; pixel_x = 6 }, -/obj/item/reagent_containers/food/snacks/xenomeatbreadslice{ +/obj/item/food/snacks/xenomeatbreadslice{ pixel_y = 9; pixel_x = -5 }, @@ -6954,7 +6971,7 @@ }, /area/ruin/space/moonbase19) "yU" = ( -/obj/item/reagent_containers/food/snacks/candy, +/obj/item/food/snacks/candy, /obj/structure/table, /turf/simulated/floor/plasteel, /area/ruin/space/moonbase19) @@ -6978,7 +6995,7 @@ /turf/simulated/floor/carpet, /area/ruin/space/moonbase19) "zh" = ( -/obj/item/reagent_containers/food/snacks/badrecipe, +/obj/item/food/snacks/badrecipe, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor"; temperature = 273.15 @@ -7051,7 +7068,7 @@ /area/ruin/space/moonbase19) "zv" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/snacks/cornchips, +/obj/item/food/snacks/cornchips, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "escape" @@ -7943,8 +7960,8 @@ /obj/structure/closet/crate, /obj/item/reagent_containers/glass/beaker/waterbottle, /obj/item/reagent_containers/glass/beaker/waterbottle, -/obj/item/reagent_containers/food/snacks/syndicake, -/obj/item/reagent_containers/food/snacks/syndicake, +/obj/item/food/snacks/syndicake, +/obj/item/food/snacks/syndicake, /turf/simulated/floor/plating{ icon_state = "asteroidplating" }, @@ -8137,7 +8154,7 @@ /area/ruin/space/moonbase19) "DV" = ( /obj/structure/closet/crate, -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, /turf/simulated/floor/plasteel, /area/ruin/space/moonbase19) "Ef" = ( @@ -8269,7 +8286,7 @@ /area/ruin/space/moonbase19) "Ex" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/sliceable/xenomeatbread{ +/obj/item/food/snacks/sliceable/xenomeatbread{ pixel_y = 5 }, /obj/effect/turf_decal/delivery, @@ -8424,7 +8441,7 @@ /turf/simulated/floor/engine, /area/ruin/space/moonbase19) "Ff" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plasteel{ @@ -8799,7 +8816,7 @@ }, /area/ruin/space/moonbase19) "GP" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/window/reinforced{ dir = 8 }, @@ -8860,11 +8877,11 @@ /obj/machinery/door/poddoor/shutters/preopen{ id_tag = "awaykitchen" }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_y = 10; pixel_x = -1 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 7; pixel_x = 11 }, @@ -9459,13 +9476,9 @@ /area/ruin/space/moonbase19) "JU" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/off_station/empty_charge{ +/obj/machinery/power/apc/off_station/empty_charge/directional/north{ cell_type = 15000; - locked = 0; - name = "Outpost APC"; - req_access = null; - pixel_y = 24; - dir = 1 + locked = 0 }, /obj/structure/cable{ d2 = 4; @@ -9914,7 +9927,7 @@ pixel_x = 6; pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 3; pixel_x = -7 }, @@ -10643,23 +10656,6 @@ dir = 4 }, /area/ruin/space/moonbase19) -"OR" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/structure/table/tray, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/hemostat, -/obj/item/retractor, -/obj/item/stack/cable_coil, -/turf/simulated/floor/plasteel{ - icon_state = "darkblue"; - dir = 1 - }, -/area/ruin/space/moonbase19) "OT" = ( /obj/effect/turf_decal/delivery/partial{ dir = 4 @@ -10805,7 +10801,7 @@ /area/ruin/space/moonbase19) "PE" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/badrecipe, +/obj/item/food/snacks/badrecipe, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor"; temperature = 273.15 @@ -11565,7 +11561,7 @@ }, /area/ruin/space/moonbase19) "Tc" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -12230,7 +12226,7 @@ /turf/simulated/wall/r_wall, /area/ruin/space/moonbase19) "VO" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/catwalk, /area/ruin/space/moonbase19) @@ -12402,7 +12398,7 @@ /obj/item/cigbutt{ pixel_y = 7 }, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/catwalk, /area/ruin/space/moonbase19) "WF" = ( @@ -12545,7 +12541,7 @@ }, /area/ruin/space/moonbase19) "Xi" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/window/reinforced{ dir = 1 }, @@ -12618,7 +12614,7 @@ /area/ruin/space/moonbase19) "Xv" = ( /obj/machinery/reagentgrinder, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_y = 4; pixel_x = -12 }, @@ -13121,7 +13117,7 @@ /turf/simulated/floor/carpet/royalblue, /area/ruin/space/moonbase19) "Zu" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/window/reinforced{ dir = 4 }, @@ -13548,7 +13544,7 @@ vN af dd QI -OR +ts Wd Am Ci diff --git a/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm index 7393ce0c198e..eb49ebcb8e13 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm @@ -94,27 +94,18 @@ /area/ruin/ancientstation/comm) "au" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/comm) "av" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /obj/item/paper/fluff/ruins/oldstation/damagereport, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/comm) "aw" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /obj/item/paper/fluff/ruins/oldstation/report, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/comm) @@ -164,11 +155,7 @@ /area/ruin/ancientstation/hivebot) "aE" = ( /obj/structure/cable, -/obj/machinery/power/apc/off_station/empty_charge{ - dir = 4; - name = "Beta Engineering APC"; - pixel_x = 24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/east, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel/airless, /area/ruin/ancientstation/atmo) @@ -272,7 +259,7 @@ /obj/structure/table, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, -/obj/item/coin, +/obj/item/coin/gold, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/comm) "aU" = ( @@ -372,10 +359,7 @@ /area/ruin/ancientstation/comm) "bi" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "blue" @@ -383,10 +367,7 @@ /area/ruin/ancientstation/comm) "bj" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "blue" @@ -524,9 +505,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/ruin/ancientstation) @@ -566,9 +545,7 @@ /turf/simulated/floor/plasteel, /area/ruin/ancientstation) "bK" = ( -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/ruin/ancientstation) @@ -813,9 +790,7 @@ /turf/simulated/floor/plasteel, /area/ruin/ancientstation/thetacorridor) "ct" = ( -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -1020,11 +995,7 @@ icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/off_station/empty_charge{ - dir = 1; - name = "Theta Prototype Lab APC"; - pixel_y = 24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/north, /turf/simulated/floor/plasteel/white, /area/ruin/ancientstation/proto) "cW" = ( @@ -1076,11 +1047,7 @@ /area/ruin/ancientstation/comm) "dd" = ( /obj/structure/cable, -/obj/machinery/power/apc/off_station/empty_charge{ - dir = 4; - name = "Charlie Main Corridor APC"; - pixel_x = 24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/east, /obj/structure/closet/crate, /obj/item/storage/backpack/old, /obj/item/storage/backpack/old, @@ -1223,10 +1190,7 @@ }, /area/ruin/ancientstation/comm) "dy" = ( -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/sec) @@ -1300,9 +1264,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/hostile/hivebot/strong, @@ -1416,11 +1378,7 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/off_station/empty_charge{ - dir = 4; - name = "Charlie Command APC"; - pixel_x = 24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/east, /turf/simulated/floor/plating, /area/ruin/ancientstation/comm) "dY" = ( @@ -1428,10 +1386,7 @@ /turf/simulated/floor/plasteel, /area/ruin/ancientstation/sec) "dZ" = ( -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ dir = 1; @@ -1538,9 +1493,7 @@ name = "west bump"; pixel_x = -24 }, -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ dir = 9; @@ -1707,9 +1660,7 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ dir = 5; @@ -2491,11 +2442,7 @@ icon_state = "0-2"; pixel_y = 1 }, -/obj/machinery/power/apc/off_station/empty_charge{ - dir = 8; - name = "Charlie Security APC"; - pixel_x = -24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/west, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ dir = 9; @@ -2612,7 +2559,7 @@ /area/ruin/ancientstation/kitchen) "gu" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/sec) @@ -2840,10 +2787,7 @@ /turf/simulated/floor/plasteel, /area/ruin/ancientstation/thetacorridor) "gX" = ( -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /obj/item/card/id/away/old/apc, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -3366,11 +3310,11 @@ /area/ruin/ancientstation/kitchen) "ia" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -2; pixel_y = 2 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 5; pixel_y = -2 }, @@ -3406,11 +3350,7 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/off_station/empty_charge{ - dir = 1; - name = "Theta Main Corridor APC"; - pixel_y = 24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/north, /turf/simulated/floor/plating, /area/ruin/ancientstation/thetacorridor) "ie" = ( @@ -3781,11 +3721,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/power/apc/off_station/empty_charge{ - dir = 1; - name = "Charlie Hydroponics APC"; - pixel_y = 24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/north, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/ruin/ancientstation/hydroponics) @@ -3831,9 +3767,7 @@ icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /turf/simulated/floor/plasteel, /area/ruin/ancientstation) "jd" = ( @@ -3858,9 +3792,7 @@ /area/ruin/ancientstation) "jg" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /turf/simulated/floor/plasteel, /area/ruin/ancientstation) "jh" = ( @@ -3871,9 +3803,7 @@ tag = "90Curve" }, /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/thetacorridor) "ji" = ( @@ -3928,9 +3858,7 @@ /area/ruin/ancientstation/thetacorridor) "jo" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-dead" - }, +/obj/item/kirbyplants/dead, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/thetacorridor) "jp" = ( @@ -4066,10 +3994,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc/off_station/empty_charge{ - name = "Charlie Kitchen APC"; - pixel_y = -24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/south, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/ruin/ancientstation/kitchen) @@ -4095,11 +4020,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc/off_station/empty_charge{ - dir = 4; - name = "Theta RnD APC"; - pixel_x = 24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/east, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/rnd) @@ -4281,10 +4202,7 @@ /area/ruin/ancientstation) "kf" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel, /area/ruin/ancientstation/powered) "kg" = ( @@ -4326,9 +4244,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/corner, /turf/simulated/floor/plasteel/white, /area/ruin/ancientstation/proto) "kk" = ( @@ -4460,10 +4376,7 @@ /turf/simulated/floor/plasteel/white, /area/ruin/ancientstation/proto) "kA" = ( -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - name = "Broken Computer" - }, +/obj/machinery/computer/nonfunctional, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel/white, /area/ruin/ancientstation/proto) @@ -4665,11 +4578,7 @@ /obj/structure/rack, /obj/item/stack/cable_coil, /obj/structure/cable, -/obj/machinery/power/apc/off_station/empty_charge{ - dir = 4; - name = "Charlie Engineering APC"; - pixel_x = 24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/east, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ dir = 6; diff --git a/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm index 0cbdaba9c8e1..41eef9d8d152 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/onehalf.dmm @@ -254,11 +254,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/off_station{ - keep_preset_name = 1; - name = "Hallway APC"; - pixel_y = -24 - }, +/obj/machinery/power/apc/off_station/directional/south, /turf/simulated/floor/plasteel/airless, /area/ruin/space/onehalf/hallway) "aM" = ( @@ -370,9 +366,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/onehalf/hallway) "aV" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "airlock" - }, +/obj/machinery/door/airlock/medical/glass, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -1290,12 +1284,7 @@ /obj/item/healthanalyzer, /obj/item/reagent_containers/iv_bag/blood/OMinus, /obj/item/reagent_containers/iv_bag/blood/OMinus, -/obj/machinery/power/apc/off_station{ - dir = 4; - keep_preset_name = 1; - name = "Crew Quarters APC"; - pixel_x = 24 - }, +/obj/machinery/power/apc/off_station/directional/east, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -1305,12 +1294,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc/off_station{ - dir = 1; - keep_preset_name = 1; - name = "Mining Drone Bay APC"; - pixel_y = 24 - }, +/obj/machinery/power/apc/off_station/directional/north, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -1321,8 +1305,8 @@ /obj/item/tank/internals/oxygen/red, /obj/item/clothing/mask/gas/syndicate, /obj/item/mod/control/pre_equipped/traitor, -/obj/item/reagent_containers/food/drinks/bottle/rum, -/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/item/reagent_containers/drinks/bottle/rum, +/obj/item/reagent_containers/drinks/bottle/rum, /obj/item/folder/syndicate/blue, /turf/simulated/floor/plating, /area/ruin/space/onehalf/abandonedbridge) @@ -1331,12 +1315,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc/off_station{ - dir = 1; - keep_preset_name = 1; - name = "Bridge APC"; - pixel_y = 24 - }, +/obj/machinery/power/apc/off_station/directional/north, /turf/simulated/floor/plasteel, /area/ruin/space/onehalf/abandonedbridge) diff --git a/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm b/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm index bbafdde4db70..68bca8457f62 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/spacebar.dmm @@ -336,9 +336,7 @@ /turf/template_noop, /area/space/nearstation) "bt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/space/powered) "bF" = ( @@ -371,7 +369,7 @@ pixel_y = -3 }, /obj/item/clothing/suit/hgpirate, -/obj/item/reagent_containers/food/drinks/cans/beer/sleepy_beer, +/obj/item/reagent_containers/drinks/cans/beer/sleepy_beer, /obj/item/clothing/gloves/ring/gold, /obj/item/id_decal/gold, /obj/item/screwdriver, @@ -468,7 +466,7 @@ /area/space/nearstation) "mb" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /turf/simulated/floor/wood, /area/ruin/space/powered/bar) "mu" = ( @@ -544,7 +542,7 @@ /area/ruin/space/powered/bar) "vD" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/wood, /area/ruin/space/powered/bar) "vE" = ( @@ -666,9 +664,7 @@ id_tag = "pod cycle"; name = "airlock dock" }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -899,9 +895,7 @@ /turf/simulated/floor/plating, /area/ruin/space/powered/bar) "RX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/structure/marker_beacon/dock_marker, /turf/simulated/floor/plating, /area/ruin/space/powered) @@ -970,9 +964,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating/airless, /area/ruin/space/powered) "ZM" = ( diff --git a/_maps/map_files/RandomRuins/SpaceRuins/syndicatedruglab.dmm b/_maps/map_files/RandomRuins/SpaceRuins/syndicatedruglab.dmm index d0d197efa6fd..90f121818c81 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/syndicatedruglab.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/syndicatedruglab.dmm @@ -60,10 +60,7 @@ /turf/simulated/floor/pod/dark, /area/ruin/space/syndicate_druglab) "mA" = ( -/obj/machinery/power/apc/syndicate/off{ - pixel_x = 24; - dir = 4 - }, +/obj/machinery/power/apc/syndicate/off/directional/east, /turf/simulated/floor/plating, /area/ruin/space/syndicate_druglab) "mO" = ( @@ -317,9 +314,7 @@ /turf/simulated/floor/pod/dark, /area/ruin/space/syndicate_druglab) "II" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -328,7 +323,7 @@ /area/ruin/space/syndicate_druglab) "JP" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5; pixel_y = 7 }, @@ -336,15 +331,11 @@ /turf/simulated/floor/pod/dark, /area/ruin/space/syndicate_druglab) "KI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plating, /area/ruin/space/syndicate_druglab) "LQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/corner, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -409,9 +400,7 @@ /turf/simulated/floor/carpet/black, /area/ruin/space/syndicate_druglab) "TJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/blood/oil/streak, /turf/simulated/floor/plating, /area/ruin/space/syndicate_druglab) diff --git a/_maps/map_files/RandomRuins/SpaceRuins/syndie_space_base.dmm b/_maps/map_files/RandomRuins/SpaceRuins/syndie_space_base.dmm index 0afd68199276..6f5702e29ba4 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/syndie_space_base.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/syndie_space_base.dmm @@ -66,7 +66,7 @@ d2 = 2; icon_state = "0-4" }, -/obj/machinery/power/apc/syndicate/south, +/obj/machinery/power/apc/syndicate/directional/south, /turf/simulated/floor/engine, /area/ruin/unpowered/syndicate_space_base/testlab) "aq" = ( @@ -742,7 +742,7 @@ d2 = 2; icon_state = "0-8" }, -/obj/machinery/power/apc/syndicate/east, +/obj/machinery/power/apc/syndicate/directional/east, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkpurple" @@ -1021,7 +1021,7 @@ d2 = 2; icon_state = "0-4" }, -/obj/machinery/power/apc/syndicate/west, +/obj/machinery/power/apc/syndicate/directional/west, /turf/simulated/floor/plating, /area/ruin/unpowered/syndicate_space_base/engineering) "fF" = ( @@ -1665,9 +1665,7 @@ /obj/effect/turf_decal/woodsiding{ dir = 5 }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -1895,7 +1893,7 @@ d2 = 2; icon_state = "0-8" }, -/obj/machinery/power/apc/syndicate/north, +/obj/machinery/power/apc/syndicate/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -1934,7 +1932,7 @@ /obj/machinery/atmospherics/meter{ layer = 3.3 }, -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/plating, @@ -1988,7 +1986,7 @@ /turf/simulated/floor/engine, /area/ruin/unpowered/syndicate_space_base/testlab) "kK" = ( -/obj/machinery/power/apc/syndicate/south, +/obj/machinery/power/apc/syndicate/directional/south, /obj/structure/cable/green, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -2121,7 +2119,7 @@ d2 = 2; icon_state = "0-8" }, -/obj/machinery/power/apc/syndicate/east, +/obj/machinery/power/apc/syndicate/directional/east, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -2164,7 +2162,7 @@ /turf/simulated/floor/plating, /area/ruin/unpowered/syndicate_space_base/atmos) "lW" = ( -/obj/machinery/power/apc/syndicate/north, +/obj/machinery/power/apc/syndicate/directional/north, /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -2948,7 +2946,7 @@ /area/ruin/unpowered/syndicate_space_base/chemistry) "pH" = ( /obj/structure/cable/green, -/obj/machinery/power/apc/syndicate/west, +/obj/machinery/power/apc/syndicate/directional/west, /turf/simulated/floor/plating, /area/ruin/unpowered/syndicate_space_base/atmos) "pM" = ( @@ -3771,7 +3769,7 @@ d2 = 2; icon_state = "0-8" }, -/obj/machinery/power/apc/syndicate/north, +/obj/machinery/power/apc/syndicate/directional/north, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -3971,7 +3969,7 @@ /area/ruin/unpowered/syndicate_space_base/main) "vO" = ( /obj/structure/cable/green, -/obj/machinery/power/apc/syndicate/west, +/obj/machinery/power/apc/syndicate/directional/west, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -4012,8 +4010,8 @@ }, /obj/item/book/manual/barman_recipes, /obj/item/lighter/zippo, -/obj/item/reagent_containers/food/drinks/flask/barflask, -/obj/item/reagent_containers/food/drinks/flask/barflask, +/obj/item/reagent_containers/drinks/flask/barflask, +/obj/item/reagent_containers/drinks/flask/barflask, /obj/structure/table/wood, /obj/machinery/alarm/syndicate{ pixel_x = -24; @@ -4493,9 +4491,7 @@ }, /area/ruin/unpowered/syndicate_space_base/arrivals) "yR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/grass, /area/ruin/unpowered/syndicate_space_base/service) "za" = ( @@ -4703,7 +4699,7 @@ /obj/machinery/computer/general_air_control/large_tank_control{ inlet_injector_autolink_id = "syndiebase_mix_in"; outlet_vent_autolink_id = "syndiebase_mix_out"; - autolink_sensors = list("syndiebase_mix_sensor"="Burn Mix"); + autolink_sensors = list("syndiebase_mix_sensor" = "Burn Mix"); dir = 8 }, /turf/simulated/floor/plating, @@ -4747,7 +4743,7 @@ /area/ruin/unpowered/syndicate_space_base/telecomms) "Af" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ layer = 5 }, /turf/simulated/floor/plasteel{ @@ -4791,12 +4787,12 @@ /obj/machinery/atmospherics/meter{ layer = 3.3 }, -/obj/machinery/atmospherics/pipe/simple/insulated{ - dir = 4 - }, /obj/machinery/light{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /turf/simulated/floor/plating, /area/ruin/unpowered/syndicate_space_base/atmos) "Ao" = ( @@ -5185,7 +5181,7 @@ /area/ruin/unpowered/syndicate_space_base/service) "CC" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/machinery/light_switch{ dir = 4; pixel_x = -24; @@ -5223,7 +5219,7 @@ /area/ruin/unpowered/syndicate_space_base/arrivals) "CS" = ( /obj/structure/cable/green, -/obj/machinery/power/apc/syndicate/east, +/obj/machinery/power/apc/syndicate/directional/east, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -5275,7 +5271,7 @@ d2 = 2; icon_state = "0-8" }, -/obj/machinery/power/apc/syndicate/south, +/obj/machinery/power/apc/syndicate/directional/south, /turf/simulated/floor/catwalk, /area/ruin/unpowered/syndicate_space_base/toxtest) "Dl" = ( @@ -5412,7 +5408,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc/syndicate/north, +/obj/machinery/power/apc/syndicate/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkblue" @@ -5964,7 +5960,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc/syndicate/west, +/obj/machinery/power/apc/syndicate/directional/west, /turf/simulated/floor/plasteel{ icon_state = "darkgreen"; dir = 8 @@ -6049,7 +6045,7 @@ d2 = 2; icon_state = "0-8" }, -/obj/machinery/power/apc/syndicate/east, +/obj/machinery/power/apc/syndicate/directional/east, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "brown" @@ -6076,7 +6072,7 @@ /area/ruin/unpowered/syndicate_space_base/arrivals) "HC" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -6100,7 +6096,7 @@ /area/ruin/unpowered/syndicate_space_base/atmos) "HO" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -7070,10 +7066,10 @@ /turf/simulated/floor/plating, /area/ruin/unpowered/syndicate_space_base/atmos) "Nm" = ( -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3 }, /obj/structure/table, @@ -8456,7 +8452,7 @@ d2 = 2; icon_state = "0-8" }, -/obj/machinery/power/apc/syndicate/east, +/obj/machinery/power/apc/syndicate/directional/east, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -8576,9 +8572,7 @@ /obj/effect/turf_decal/woodsiding{ dir = 9 }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, diff --git a/_maps/map_files/RandomRuins/SpaceRuins/syndiecakesfactory.dmm b/_maps/map_files/RandomRuins/SpaceRuins/syndiecakesfactory.dmm index 062f5ecf81b9..eebd64133f93 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/syndiecakesfactory.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/syndiecakesfactory.dmm @@ -16,7 +16,7 @@ /area/ruin/space/unpowered) "bk" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, @@ -111,11 +111,11 @@ /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -32 }, -/obj/item/reagent_containers/food/snacks/donut/sprinkles{ +/obj/item/food/snacks/donut/sprinkles{ pixel_y = 8; pixel_x = -9 }, -/obj/item/reagent_containers/food/snacks/donut/sprinkles{ +/obj/item/food/snacks/donut/sprinkles{ pixel_y = -1; pixel_x = 5 }, @@ -123,8 +123,8 @@ /area/ruin/space/unpowered) "fq" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/meat/corgi, -/obj/item/reagent_containers/food/snacks/meat/corgi{ +/obj/item/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi{ pixel_y = 6 }, /turf/simulated/floor/plasteel{ @@ -133,14 +133,14 @@ /area/ruin/space/unpowered) "fs" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_y = 7 }, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_x = 15; pixel_y = 7 }, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_y = -10 }, /obj/machinery/light/small{ @@ -152,7 +152,7 @@ /area/ruin/space/unpowered) "fE" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake, +/obj/item/food/snacks/syndicake, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -275,11 +275,11 @@ /area/ruin/space/unpowered) "ke" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_x = 15; pixel_y = 7 }, -/obj/item/reagent_containers/food/snacks/syndicake, +/obj/item/food/snacks/syndicake, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -369,11 +369,11 @@ /area/ruin/space/unpowered) "qd" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice{ +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice{ pixel_y = 4 }, -/obj/item/reagent_containers/food/snacks/breadslice{ +/obj/item/food/snacks/breadslice{ pixel_y = 8 }, /obj/machinery/light/small{ @@ -395,7 +395,7 @@ animal_species = /mob/living/simple_animal/pet/dog; attack_sound = 'sound/weapons/bite.ogg'; attacktext = "bites"; - damage_coeff = list("brute"=1,"fire"=1,"tox"=1,"clone"=1,"stamina"=1,"oxy"=1); + damage_coeff = list("brute" = 1, "fire" = 1, "tox" = 1, "clone" = 1, "stamina" = 1, "oxy" = 1); death_sound = null; deathmessage = ""; desc = "This is no longer a goodboy. Not anymore. He has seen too much."; @@ -480,12 +480,12 @@ /area/ruin/space/unpowered) "tf" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake, +/obj/item/food/snacks/syndicake{ pixel_x = 15; pixel_y = 7 }, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_x = 15 }, /turf/simulated/floor/plasteel{ @@ -692,10 +692,10 @@ /area/ruin/space/unpowered) "Bh" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_y = 7 }, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_y = -10 }, /turf/simulated/floor/plasteel{ @@ -747,7 +747,7 @@ /area/ruin/space/unpowered) "Do" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -770,11 +770,11 @@ /area/ruin/space/unpowered) "DY" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/condiment/milk{ +/obj/item/reagent_containers/condiment/milk{ pixel_y = 5; pixel_x = 6 }, -/obj/item/reagent_containers/food/condiment/milk{ +/obj/item/reagent_containers/condiment/milk{ pixel_y = 5; pixel_x = -5 }, @@ -831,8 +831,8 @@ /area/ruin/space/unpowered) "Gn" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/syndicake, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake, +/obj/item/food/snacks/syndicake{ pixel_y = 7 }, /turf/simulated/floor/engine, @@ -876,7 +876,7 @@ /turf/simulated/floor/engine, /area/ruin/space/unpowered) "Iz" = ( -/obj/item/reagent_containers/food/snacks/meat/corgi{ +/obj/item/food/snacks/meat/corgi{ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, @@ -946,10 +946,10 @@ /area/ruin/space/unpowered) "Lt" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_y = 7 }, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_x = 15 }, /turf/simulated/floor/plasteel{ @@ -976,8 +976,8 @@ /area/ruin/space/unpowered) "Mw" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake, +/obj/item/food/snacks/syndicake{ pixel_x = 15; pixel_y = 7 }, @@ -1002,10 +1002,10 @@ /area/ruin/space/unpowered) "MY" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_y = 7 }, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_x = 15 }, /turf/simulated/floor/plasteel{ @@ -1034,21 +1034,21 @@ /area/template_noop) "Ov" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/donkpocket{ +/obj/item/food/snacks/donkpocket{ pixel_x = 8 }, -/obj/item/reagent_containers/food/snacks/donkpocket{ +/obj/item/food/snacks/donkpocket{ pixel_x = -8 }, -/obj/item/reagent_containers/food/snacks/donkpocket{ +/obj/item/food/snacks/donkpocket{ pixel_x = -8; pixel_y = 8 }, -/obj/item/reagent_containers/food/snacks/donkpocket{ +/obj/item/food/snacks/donkpocket{ pixel_x = 8; pixel_y = 8 }, -/obj/item/reagent_containers/food/snacks/birthdaycakeslice, +/obj/item/food/snacks/birthdaycakeslice, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -1078,7 +1078,7 @@ animal_species = /mob/living/simple_animal/pet/dog; attack_sound = 'sound/weapons/bite.ogg'; attacktext = "bites"; - damage_coeff = list("brute"=1,"fire"=1,"tox"=1,"clone"=1,"stamina"=1,"oxy"=1); + damage_coeff = list("brute" = 1, "fire" = 1, "tox" = 1, "clone" = 1, "stamina" = 1, "oxy" = 1); death_sound = null; deathmessage = ""; desc = "This is no longer a goodboy. Not anymore. He has seen too much."; @@ -1115,12 +1115,12 @@ /area/ruin/space/unpowered) "QF" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake, +/obj/item/food/snacks/syndicake{ pixel_x = 15; pixel_y = 7 }, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_x = 15 }, /obj/machinery/light/small{ @@ -1161,7 +1161,7 @@ }, /area/ruin/space/unpowered) "SS" = ( -/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi, /turf/simulated/floor/grass, /area/ruin/space/unpowered) "TG" = ( @@ -1193,8 +1193,8 @@ /area/ruin/space/unpowered) "Vt" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/saltshaker, +/obj/item/reagent_containers/condiment/peppermill{ pixel_y = 12 }, /turf/simulated/floor/plasteel{ @@ -1202,7 +1202,7 @@ }, /area/ruin/space/unpowered) "VI" = ( -/obj/item/reagent_containers/food/snacks/meat/corgi{ +/obj/item/food/snacks/meat/corgi{ pixel_y = 6 }, /turf/simulated/floor/plasteel{ @@ -1237,7 +1237,7 @@ /area/ruin/space/unpowered) "XZ" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ pixel_y = 10; pixel_x = 5 }, @@ -1258,9 +1258,7 @@ /turf/simulated/floor/engine, /area/ruin/space/unpowered) "YE" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/grass, /area/ruin/space/unpowered) "YQ" = ( @@ -1276,7 +1274,7 @@ animal_species = /mob/living/simple_animal/pet/dog; attack_sound = 'sound/weapons/bite.ogg'; attacktext = "bites"; - damage_coeff = list("brute"=1,"fire"=1,"tox"=1,"clone"=1,"stamina"=1,"oxy"=1); + damage_coeff = list("brute" = 1, "fire" = 1, "tox" = 1, "clone" = 1, "stamina" = 1, "oxy" = 1); death_sound = null; deathmessage = ""; desc = "This is no longer a goodboy. Not anymore. He has seen too much."; @@ -1290,14 +1288,14 @@ /turf/simulated/floor/grass, /area/ruin/space/unpowered) "Zs" = ( -/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/condiment/flour, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, /area/ruin/space/unpowered) "Zw" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/snacks/syndicake{ +/obj/item/food/snacks/syndicake{ pixel_y = 7 }, /turf/simulated/floor/plasteel{ diff --git a/_maps/map_files/RandomRuins/SpaceRuins/syndiedepot.dmm b/_maps/map_files/RandomRuins/SpaceRuins/syndiedepot.dmm index 6888c9dfd94d..fc3e95325ab7 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/syndiedepot.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/syndiedepot.dmm @@ -53,7 +53,7 @@ }, /area/syndicate_depot/outer) "al" = ( -/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/item/food/snacks/monstermeat/spiderleg, /obj/structure/spider, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -85,7 +85,7 @@ /area/syndicate_depot/outer) "ar" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -128,7 +128,7 @@ }, /area/syndicate_depot/core) "ay" = ( -/obj/item/reagent_containers/food/drinks/flask/barflask, +/obj/item/reagent_containers/drinks/flask/barflask, /obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -614,7 +614,7 @@ /area/syndicate_depot/core) "bO" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/syndicake, +/obj/item/food/snacks/syndicake, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -986,11 +986,7 @@ /area/syndicate_depot/core) "cJ" = ( /obj/structure/cable, -/obj/machinery/power/apc/off_station{ - dir = 4; - pixel_x = 24; - req_access = list(150) - }, +/obj/machinery/power/apc/syndicate/directional/east, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -1155,10 +1151,7 @@ }, /area/syndicate_depot/core) "de" = ( -/obj/machinery/power/apc/off_station{ - dir = 4; - pixel_x = 24 - }, +/obj/machinery/power/apc/off_station/directional/east, /obj/structure/cable, /turf/simulated/floor/plating/airless, /area/syndicate_depot/outer) diff --git a/_maps/map_files/RandomRuins/SpaceRuins/turretedoutpost.dmm b/_maps/map_files/RandomRuins/SpaceRuins/turretedoutpost.dmm index d444f1809b69..fb0523287cb3 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/turretedoutpost.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/turretedoutpost.dmm @@ -104,11 +104,7 @@ /turf/simulated/floor/plasteel, /area/ruin/space/unpowered) "w" = ( -/obj/machinery/power/apc/off_station{ - keep_preset_name = 1; - name = "Outpost APC"; - pixel_y = -24 - }, +/obj/machinery/power/apc/off_station/directional/south, /turf/simulated/floor/plasteel, /area/ruin/space/unpowered) "x" = ( @@ -231,11 +227,11 @@ /area/ruin/space/unpowered) "P" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ +/obj/item/reagent_containers/drinks/bottle/vodka{ pixel_x = -4; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ +/obj/item/reagent_containers/drinks/bottle/vodka{ pixel_x = 3 }, /turf/simulated/floor/plasteel, @@ -259,7 +255,7 @@ /area/ruin/space/unpowered) "S" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, /obj/machinery/light{ dir = 8 }, diff --git a/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm b/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm index b1d1eacd3ca9..c0a150801e61 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/ussp.dmm @@ -2,7 +2,7 @@ "aa" = ( /obj/effect/landmark/burnturf, /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="cautionfull"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "cautionfull"); icon_state = "4-i" }, /area/ruin/space/derelict/hallway/primary) @@ -479,10 +479,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc/off_station{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/power/apc/off_station/directional/west, /turf/simulated/floor/wood, /area/ruin/space/derelict/bridge) "bp" = ( @@ -621,7 +618,7 @@ /area/ruin/space/derelict/bridge) "bE" = ( /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="dark"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "dark"); icon_state = "4-i" }, /area/ruin/space/derelict/arrival) @@ -912,13 +909,13 @@ /area/ruin/space/derelict/bridge) "cr" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/ruin/space/derelict/bridge) "cs" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood{ broken = 1; @@ -1160,7 +1157,7 @@ /area/ruin/space/derelict/bridge) "cV" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "darkblue" @@ -1347,10 +1344,7 @@ }, /area/ruin/space/derelict/arrival) "du" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plasteel/airless{ icon_state = "floorscorched2" }, @@ -1411,9 +1405,7 @@ /area/ruin/space/derelict/arrival) "dC" = ( /obj/structure/table/reinforced, -/obj/machinery/door/window/classic/reversed{ - dir = 2 - }, +/obj/machinery/door/window/classic/reversed, /obj/item/folder{ pixel_x = 31; pixel_y = 1 @@ -1463,10 +1455,7 @@ /turf/simulated/floor/plating, /area/ruin/space/derelict/arrival) "dG" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/shard{ icon_state = "small" }, @@ -1543,10 +1532,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc/off_station{ - dir = 1; - pixel_y = 24 - }, +/obj/machinery/power/apc/off_station/directional/north, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "darkred" @@ -1712,10 +1698,7 @@ pixel_y = 1 }, /obj/structure/musician/piano, -/obj/machinery/power/apc/off_station{ - dir = 1; - pixel_y = 24 - }, +/obj/machinery/power/apc/off_station/directional/north, /turf/simulated/floor/wood, /area/ruin/space/derelict/crew_quarters) "em" = ( @@ -1851,7 +1834,7 @@ /area/space/nearstation) "eB" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/peanuts, +/obj/item/food/snacks/grown/peanuts, /obj/structure/sign/poster/contraband/random{ pixel_y = 32 }, @@ -1950,7 +1933,7 @@ /area/ruin/space/derelict/hallway/primary) "eM" = ( /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="purplefull"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "purplefull"); icon_state = "4-i" }, /area/ruin/space/derelict/hallway/primary) @@ -1965,10 +1948,10 @@ }, /area/ruin/space/derelict/hallway/primary) "eO" = ( -/obj/structure/table/tray, /obj/item/scalpel{ pixel_y = 12 }, +/obj/structure/table, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "purple" @@ -2063,7 +2046,7 @@ /area/ruin/space/derelict/hallway/primary) "eZ" = ( /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="cautionfull"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "cautionfull"); icon_state = "4-i" }, /area/ruin/space/derelict/hallway/primary) @@ -2385,10 +2368,10 @@ }, /area/ruin/space/derelict/hallway/primary) "fI" = ( -/obj/structure/table/tray, /obj/item/circular_saw{ pixel_y = 10 }, +/obj/structure/table, /turf/simulated/floor/plasteel, /area/ruin/space/derelict/hallway/primary) "fJ" = ( @@ -2742,10 +2725,7 @@ icon_state = "0-2"; pixel_y = 1 }, -/obj/machinery/power/apc/off_station{ - dir = 1; - pixel_y = 24 - }, +/obj/machinery/power/apc/off_station/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "caution" @@ -2785,11 +2765,11 @@ /area/ruin/space/derelict/crew_quarters) "gI" = ( /obj/structure/closet/secure_closet/bar, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/reagent_containers/food/drinks/bottle/rum, -/obj/item/reagent_containers/food/drinks/bottle/kahlua, +/obj/item/reagent_containers/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/rum, +/obj/item/reagent_containers/drinks/bottle/kahlua, /turf/simulated/floor/plasteel/grimy, /area/ruin/space/derelict/crew_quarters) "gJ" = ( @@ -2977,7 +2957,7 @@ dir = 1 }, /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="whiteredfull"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "whiteredfull"); icon_state = "4-i" }, /area/ruin/space/derelict/hallway/primary) @@ -3019,7 +2999,7 @@ /area/ruin/space/derelict/crew_quarters) "hn" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/plasteel/grimy, /area/ruin/space/derelict/crew_quarters) "ho" = ( @@ -3537,7 +3517,7 @@ /area/ruin/space/derelict/hallway/primary) "iD" = ( /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="engine"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "engine"); icon_state = "4-i" }, /area/ruin/space/derelict/hallway/primary) @@ -3750,9 +3730,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/corner, /turf/simulated/floor/wood, /area/ruin/space/derelict/crew_quarters) "jh" = ( @@ -3962,21 +3940,6 @@ }, /turf/simulated/floor/wood, /area/ruin/space/derelict/crew_quarters) -"jK" = ( -/obj/machinery/door/airlock/external{ - id_tag = "rus2_door_int"; - name = "External Airlock" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/ruin/space/derelict/crew_quarters) "jL" = ( /obj/structure/cable{ d1 = 4; @@ -3984,23 +3947,6 @@ icon_state = "4-8" }, /obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - autolink_id = "rus2_vent"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/ruin/space/derelict/crew_quarters) -"jM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - id_tag = "rus2_door_ext"; - locked = 1; - name = "External Airlock" - }, /turf/simulated/floor/plating, /area/ruin/space/derelict/crew_quarters) "jN" = ( @@ -4500,11 +4446,6 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/access_button{ - autolink_id = "rus2_btn_ext"; - name = "exterior access button"; - pixel_x = -25 - }, /turf/template_noop, /area/ruin/space/derelict/crew_quarters) "kJ" = ( @@ -4739,13 +4680,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - id_tag = "rus2_door_int"; - name = "External Airlock" - }, /turf/simulated/floor/plating, /area/ruin/space/derelict/crew_quarters) "lp" = ( @@ -4757,31 +4691,6 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/airlock_controller/air_cycler{ - ext_door_link_id = "rus2_door_ext"; - ext_button_link_id = "rus2_btn_ext"; - int_door_link_id = "rus2_door_int"; - int_button_link_id = "rus2_btn_int"; - pixel_y = -25; - vent_link_id = "rus2_vent" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - autolink_id = "rus2_vent" - }, -/turf/simulated/floor/plating, -/area/ruin/space/derelict/crew_quarters) -"lq" = ( -/obj/machinery/door/airlock/external{ - id_tag = "rus2_door_ext"; - locked = 1; - name = "External Airlock" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/plating, /area/ruin/space/derelict/crew_quarters) "lr" = ( @@ -4920,11 +4829,6 @@ /obj/machinery/light/spot{ dir = 4 }, -/obj/machinery/access_button{ - autolink_id = "rus2_btn_int"; - name = "interior access button"; - pixel_x = 25 - }, /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -5574,9 +5478,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/door/window/classic/reversed{ - dir = 2 - }, +/obj/machinery/door/window/classic/reversed, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -5623,7 +5525,7 @@ dir = 8 }, /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="whiteredfull"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "whiteredfull"); icon_state = "4-i" }, /area/ruin/space/derelict/hallway/primary) @@ -5762,7 +5664,7 @@ /area/ruin/space/derelict/hallway/primary) "nS" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/soup/beetsoup, +/obj/item/food/snacks/soup/beetsoup, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -5793,7 +5695,7 @@ /area/ruin/space/derelict/hallway/primary) "nU" = ( /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="hydrofloor"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "hydrofloor"); icon_state = "4-i" }, /area/ruin/space/derelict/crew_quarters) @@ -6037,8 +5939,8 @@ /area/ruin/space/derelict/hallway/primary) "oA" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour, /turf/simulated/floor/plasteel/white, /area/ruin/space/derelict/hallway/primary) "oB" = ( @@ -6280,7 +6182,7 @@ /area/ruin/space/derelict/crew_quarters) "pj" = ( /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="orangefull"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "orangefull"); icon_state = "4-i" }, /area/ruin/space/derelict/crew_quarters) @@ -6536,11 +6438,11 @@ layer = 2.9 }, /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -6652,7 +6554,7 @@ /area/ruin/space/derelict/arrival) "qk" = ( /turf/simulated/wall/mineral/titanium/nodecon/tileblend{ - fixed_underlay = list("icon"='icons/turf/floors.dmi',"icon_state"="redfull"); + fixed_underlay = list("icon" = 'icons/turf/floors.dmi', "icon_state" = "redfull"); icon_state = "4-i" }, /area/ruin/space/derelict/arrival) @@ -6843,7 +6745,7 @@ /obj/item/trash/tapetrash, /obj/item/trash/pistachios, /obj/item/reagent_containers/syringe/charcoal{ - list_reagents = list("charcoal"=13,"salmonella"=2) + list_reagents = list("charcoal" = 13, "salmonella" = 2) }, /turf/simulated/floor/plasteel{ icon_state = "redfull" @@ -7196,9 +7098,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/grass, /area/ruin/space/derelict/arrival) "rz" = ( @@ -7210,9 +7110,7 @@ name = "Cygni Commemorative Statue"; pixel_y = 16 }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /obj/structure/flora/ausbushes/fullgrass{ pixel_y = 5 }, @@ -7231,9 +7129,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/grass, /area/ruin/space/derelict/arrival) "rB" = ( @@ -7356,9 +7252,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/corner, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "red" @@ -7378,9 +7272,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -7394,14 +7286,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/machinery/access_button{ - autolink_id = "rus1_btn_int"; - name = "interior access button"; - pixel_y = -25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -7417,9 +7302,7 @@ dir = 10; initialize_directions = 10 }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -7490,32 +7373,6 @@ /obj/structure/sign/vacuum, /turf/simulated/wall/mineral/titanium/nodecon/nodiagonal, /area/ruin/space/derelict/arrival) -"sa" = ( -/obj/machinery/door/airlock/external{ - id_tag = "rus1_door_int"; - name = "External Airlock" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/ruin/space/derelict/arrival) -"sb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - id_tag = "rus1_door_int"; - name = "External Airlock" - }, -/turf/simulated/floor/plating, -/area/ruin/space/derelict/arrival) "sc" = ( /obj/structure/cable{ d1 = 1; @@ -7525,18 +7382,6 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - autolink_id = "rus1_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = -25; - ext_button_link_id = "rus1_btn_ext"; - ext_door_link_id = "rus1_door_ext"; - int_button_link_id = "rus1_btn_int"; - int_door_link_id = "rus1_door_int"; - vent_link_id = "rus1_vent" - }, /turf/simulated/floor/plating, /area/ruin/space/derelict/arrival) "sd" = ( @@ -7548,31 +7393,9 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - autolink_id = "rus1_vent" - }, /turf/simulated/floor/plating, /area/ruin/space/derelict/arrival) "se" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - id_tag = "rus1_door_ext"; - locked = 1; - name = "External Airlock" - }, -/turf/simulated/floor/plating, -/area/ruin/space/derelict/arrival) -"sf" = ( -/obj/machinery/door/airlock/external{ - id_tag = "rus1_door_ext"; - locked = 1; - name = "External Airlock" - }, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7590,11 +7413,6 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/access_button{ - autolink_id = "rus1_btn_ext"; - name = "exterior access button"; - pixel_y = 25 - }, /turf/template_noop, /area/ruin/space/derelict/arrival) "si" = ( @@ -7751,9 +7569,27 @@ }, /turf/simulated/wall/mineral/titanium/nodecon/nodiagonal, /area/ruin/space/derelict/arrival) +"Nv" = ( +/obj/effect/spawner/airlock{ + req_access_txt = 0 + }, +/turf/simulated/wall/mineral/titanium/nodecon/nodiagonal, +/area/ruin/space/derelict/arrival) +"Oh" = ( +/obj/effect/spawner/airlock/w_to_e{ + req_access_txt = 0 + }, +/turf/simulated/wall/mineral/titanium/nodecon/nodiagonal, +/area/ruin/space/derelict/crew_quarters) "QN" = ( /turf/simulated/wall/mineral/titanium/nodecon/nosmooth, /area/ruin/space/derelict/arrival) +"Ud" = ( +/obj/effect/spawner/airlock{ + req_access_txt = 0 + }, +/turf/simulated/wall/mineral/titanium/nodecon, +/area/ruin/space/derelict/arrival) "Xn" = ( /obj/structure/cable{ d1 = 1; @@ -11154,9 +10990,9 @@ rq rq hY rO -rZ bn -aW +bn +Ud ac ac jO @@ -11246,7 +11082,7 @@ rr ry rE rP -sa +se sc se jx @@ -11340,7 +11176,7 @@ qu rQ bn bn -bn +Nv sh ac kJ @@ -11430,9 +11266,9 @@ rt rA qu rR -sb +se sd -sf +se jx jx sk @@ -14157,11 +13993,11 @@ aV bm dH dH -bm -jK kG lo -bm +Oh +lo +Oh dH dH bm @@ -14342,9 +14178,9 @@ ac ac ac aV -jM +lo bm -lq +lo aV ag ag diff --git a/_maps/map_files/RandomRuins/SpaceRuins/ussp_tele.dmm b/_maps/map_files/RandomRuins/SpaceRuins/ussp_tele.dmm index 9f24bfbf844a..12d6318b4d53 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/ussp_tele.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/ussp_tele.dmm @@ -38,10 +38,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/derelict/teleporter) "i" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plating/airless, /area/ruin/space/derelict/teleporter) "j" = ( @@ -156,8 +153,7 @@ /obj/effect/landmark/damageturf, /obj/item/kirbyplants/dead{ desc = "A dead potted plant. Must have died from lack of EVA equipment."; - item_state = "plant-dead"; - name = "potted plant" + item_state = "plant-dead" }, /turf/simulated/floor/plasteel/airless{ dir = 6; @@ -169,10 +165,7 @@ /turf/simulated/wall, /area/ruin/space/derelict/teleporter) "B" = ( -/obj/machinery/power/apc/off_station{ - name = "Worn-out APC"; - pixel_y = -24 - }, +/obj/machinery/power/apc/worn_out/directional/south, /turf/simulated/floor/plasteel/airless{ icon_state = "floorgrime" }, diff --git a/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm b/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm index 96093d445c81..9fb046586bdf 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm @@ -117,7 +117,6 @@ height = 35; id = "whiteship"; name = "NT Medical Ship"; - roundstart_move = null; width = 21 }, /obj/docking_port/stationary/whiteship{ diff --git a/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm b/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm index a443506ad956..d1f0175e1f43 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm @@ -9,10 +9,7 @@ /turf/simulated/mineral, /area/ruin/space/unpowered) "ad" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/shard{ icon_state = "small" }, @@ -21,7 +18,7 @@ }, /area/ruin/space/unpowered) "ae" = ( -/turf/simulated/wall/mineral/titanium, +/turf/simulated/wall/mineral/titanium/nodecon, /area/ruin/space/unpowered) "af" = ( /obj/structure/computerframe, @@ -35,10 +32,7 @@ }, /area/ruin/space/unpowered) "ah" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/shard, /turf/simulated/floor/wood{ icon_state = "wood-broken3" @@ -230,7 +224,7 @@ /turf/simulated/floor/wood, /area/ruin/space/unpowered) "aP" = ( -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /obj/structure/window/reinforced{ dir = 8 }, @@ -296,7 +290,7 @@ /area/ruin/space/unpowered) "bc" = ( /obj/effect/decal/remains/human, -/obj/item/reagent_containers/food/snacks/meat/monkey, +/obj/item/food/snacks/meat/monkey, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "bd" = ( @@ -307,10 +301,7 @@ }, /area/ruin/space/unpowered) "be" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/blood/old, /turf/simulated/floor/wood, /area/ruin/space/unpowered) @@ -321,7 +312,7 @@ /turf/simulated/floor/plating, /area/ruin/space/unpowered) "bg" = ( -/obj/item/reagent_containers/food/snacks/meat/monkey, +/obj/item/food/snacks/meat/monkey, /turf/simulated/floor/plating, /area/ruin/space/unpowered) "bh" = ( @@ -337,7 +328,7 @@ }, /area/ruin/space/unpowered) "bj" = ( -/obj/item/reagent_containers/food/snacks/meat/human, +/obj/item/food/snacks/meat/human, /obj/effect/decal/cleanable/blood/old, /turf/simulated/floor/plasteel{ icon_state = "chapel" @@ -438,7 +429,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/structure/window/reinforced, +/obj/structure/window/plasmareinforced, /turf/simulated/floor/mineral/plasma, /area/ruin/space/unpowered) "bC" = ( @@ -477,14 +468,14 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/unpowered) "bH" = ( -/turf/simulated/wall/mineral/titanium, +/turf/simulated/wall/mineral/titanium/nodecon, /area/space/nearstation) "bI" = ( -/obj/structure/window/reinforced, +/obj/structure/window/plasmareinforced, /turf/simulated/floor/mineral/plasma, /area/ruin/space/unpowered) "bJ" = ( -/obj/structure/window/reinforced{ +/obj/structure/window/plasmareinforced{ dir = 4 }, /turf/simulated/floor/mineral/plasma, @@ -494,15 +485,14 @@ /turf/space, /area/ruin/space/unpowered) "bL" = ( -/obj/structure/window/reinforced{ +/obj/structure/window/plasmareinforced{ dir = 8 }, /turf/simulated/floor/mineral/plasma, /area/ruin/space/unpowered) "bM" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 +/obj/structure/window/plasmareinforced{ + dir = 1 }, /turf/simulated/floor/mineral/plasma, /area/ruin/space/unpowered) diff --git a/_maps/map_files/RandomRuins/SpaceRuins/wreckedcargoship.dmm b/_maps/map_files/RandomRuins/SpaceRuins/wreckedcargoship.dmm index 6314508d4d22..ce3aad34e220 100644 --- a/_maps/map_files/RandomRuins/SpaceRuins/wreckedcargoship.dmm +++ b/_maps/map_files/RandomRuins/SpaceRuins/wreckedcargoship.dmm @@ -57,9 +57,7 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, +/obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, /obj/structure/rack, @@ -225,8 +223,8 @@ /area/ruin/space/wreck_cargoship) "jm" = ( /obj/item/toy/plushie/ipcplushie, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, /obj/item/paper/crumpled{ name = "unintelligible scribbles"; info = "toast... i must... the plushie..." @@ -411,9 +409,7 @@ /area/ruin/space/wreck_cargoship) "nH" = ( /obj/machinery/light/small, -/obj/machinery/power/apc/off_station/empty_charge{ - pixel_y = -24 - }, +/obj/machinery/power/apc/off_station/empty_charge/directional/south, /turf/simulated/floor/plating, /area/ruin/space/wreck_cargoship) "oE" = ( @@ -1116,7 +1112,7 @@ /obj/machinery/light{ dir = 4 }, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /obj/structure/railing, @@ -1210,7 +1206,7 @@ /turf/simulated/floor/plasteel, /area/ruin/space/wreck_cargoship) "VF" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /turf/simulated/floor/plasteel{ diff --git a/_maps/map_files/RandomZLevels/beach.dmm b/_maps/map_files/RandomZLevels/beach.dmm index ad143c5af716..ccfb284c8eac 100644 --- a/_maps/map_files/RandomZLevels/beach.dmm +++ b/_maps/map_files/RandomZLevels/beach.dmm @@ -474,7 +474,7 @@ /area/awaymission/beach) "cX" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /turf/simulated/floor/wood, /area/awaymission/beach) "cY" = ( @@ -728,7 +728,7 @@ /turf/simulated/floor/mineral/titanium/blue, /area/awaymission/beach) "ec" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/mineral/titanium/blue, /area/awaymission/beach) "ed" = ( @@ -827,7 +827,7 @@ /area/awaymission/beach) "ev" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/pie, +/obj/item/food/snacks/pie, /turf/simulated/floor/beach/away/sand, /area/awaymission/beach) "ew" = ( diff --git a/_maps/map_files/cerestation/cerestation.dmm b/_maps/map_files/cerestation/cerestation.dmm index b05add31b3b5..9c21aef6a5d0 100644 --- a/_maps/map_files/cerestation/cerestation.dmm +++ b/_maps/map_files/cerestation/cerestation.dmm @@ -236,10 +236,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/north) "abJ" = ( @@ -548,11 +545,7 @@ /area/station/hallway/secondary/entry/south) "adb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange, /turf/simulated/floor/plasteel{ icon_regular_floor = "yellowsiding"; @@ -1138,19 +1131,6 @@ }, /turf/simulated/floor/plating, /area/station/turret_protected/ai) -"ahc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating" - }, -/area/station/maintenance/starboard) "ahr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -1345,12 +1325,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/machinery/newscaster{ pixel_y = -28; name = "south bump"; @@ -1968,11 +1943,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/security/prisonershuttle) @@ -2019,12 +1990,7 @@ /turf/simulated/floor/plating/airless, /area/station/maintenance/disposal/north) "amy" = ( -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -2622,7 +2588,7 @@ }, /obj/structure/railing, /turf/simulated/floor/plating/airless, -/area/space/nearstation) +/area/space/nearstation/disposals) "aqb" = ( /obj/machinery/door/airlock/maintenance{ name = "Disposals Maintenance" @@ -2677,7 +2643,7 @@ }, /obj/structure/railing, /turf/simulated/floor/plating/airless, -/area/space/nearstation) +/area/space/nearstation/disposals) "aqn" = ( /obj/structure/disposaloutlet{ dir = 8 @@ -2733,7 +2699,7 @@ }, /obj/structure/railing, /turf/simulated/floor/plating/airless, -/area/space/nearstation) +/area/space/nearstation/disposals) "aqO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2832,11 +2798,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel, /area/station/security/prisonlockers) "ars" = ( @@ -3088,7 +3050,7 @@ pixel_y = 24; name = "north bump" }, -/obj/machinery/suit_storage_unit/security/hos, +/obj/machinery/suit_storage_unit/security/hos/secure, /turf/simulated/floor/wood, /area/station/command/office/hos) "ate" = ( @@ -3282,11 +3244,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -3900,7 +3858,7 @@ /area/station/turret_protected/aisat/interior) "axU" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/hos, +/obj/item/reagent_containers/drinks/mug/hos, /obj/item/radio{ pixel_x = 5 }, @@ -4014,11 +3972,7 @@ /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/fore) "ayH" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -4083,11 +4037,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/effect/turf_decal/stripes/asteroid/end, /turf/simulated/floor/plating{ icon_state = "asteroidplating" @@ -4168,11 +4118,7 @@ /obj/structure/disposalpipe/segment/corner{ dir = 8 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -4230,9 +4176,7 @@ /turf/simulated/wall, /area/station/command/office/hos) "azX" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/item/radio/intercom{ pixel_y = -28; name = "custom placement" @@ -4326,11 +4270,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -4364,6 +4304,11 @@ /obj/structure/sign/pods, /turf/simulated/wall, /area/station/maintenance/port) +"aBg" = ( +/obj/effect/turf_decal/delivery/hollow, +/obj/structure/closet/crate/miningcar, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "aBj" = ( /obj/machinery/newscaster/security_unit{ dir = 8; @@ -4985,11 +4930,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -5027,11 +4968,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/effect/turf_decal/stripes/end{ dir = 4 }, @@ -5088,7 +5025,7 @@ locked = 1; name = "Cargo Docking Hatch" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/supply_shuttle, /turf/simulated/floor/plating, /area/station/supply/office) "aGx" = ( @@ -5303,6 +5240,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/public/locker) +"aIi" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal/external/southeast) "aIv" = ( /obj/machinery/door/window/classic/reversed{ dir = 1 @@ -5391,9 +5334,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -5461,11 +5402,7 @@ }, /area/station/public/sleep/secondary) "aJo" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -5488,10 +5425,10 @@ /turf/simulated/floor/plating, /area/station/supply/miningdock) "aJz" = ( -/obj/structure/closet, /obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -5514,7 +5451,7 @@ /area/station/supply/miningdock) "aJM" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/item/reagent_containers/glass/beaker/waterbottle{ @@ -5659,9 +5596,7 @@ }, /area/station/security/main) "aKx" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "redcorner" @@ -5683,7 +5618,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "aKI" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/window/reinforced{ dir = 4 }, @@ -5748,11 +5683,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "redcorner" @@ -5977,7 +5908,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/electrical_shop) "aMS" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/window/reinforced{ dir = 4 }, @@ -6278,10 +6209,7 @@ /area/station/security/warden) "aOJ" = ( /obj/structure/cable/orange, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "darkred" @@ -6312,7 +6240,7 @@ }, /area/station/security/armory/secure) "aOO" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -6358,11 +6286,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore2) "aPd" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -6476,9 +6400,7 @@ }, /area/station/engineering/atmos) "aPA" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -6557,9 +6479,7 @@ /area/station/security/lobby) "aPW" = ( /obj/machinery/light, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ icon_state = "redcorner" }, @@ -6764,6 +6684,11 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/disposal) +"aRh" = ( +/obj/structure/lattice, +/obj/structure/railing, +/turf/space, +/area/space/nearstation/disposals) "aRi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/multi_tile/glass{ @@ -6779,11 +6704,7 @@ }, /area/station/turret_protected/aisat/interior/secondary) "aRn" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -6869,9 +6790,7 @@ /area/station/public/locker) "aSf" = ( /obj/machinery/light, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ icon_state = "darkblue" }, @@ -6989,11 +6908,7 @@ }, /area/station/command/bridge) "aSG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -7780,10 +7695,7 @@ }, /area/station/telecomms/computer) "aWT" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -8058,10 +7970,7 @@ /turf/simulated/wall, /area/mine/unexplored/cere/engineering) "aYk" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange, /obj/effect/turf_decal/stripes/end{ dir = 1 @@ -8291,23 +8200,6 @@ "aZu" = ( /turf/simulated/floor/plating/asteroid/ancient/airless, /area/mine/unexplored/cere/medical) -"aZD" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating" - }, -/area/station/maintenance/starboard) "aZF" = ( /turf/simulated/wall, /area/station/maintenance/port2) @@ -8512,11 +8404,7 @@ /turf/simulated/floor/transparent/glass/reinforced, /area/station/maintenance/port) "bax" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -8594,11 +8482,7 @@ /turf/simulated/floor/grass/jungle, /area/station/hallway/secondary/garden) "baK" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -8752,9 +8636,7 @@ c_tag = "Rehabilitation Dome Lobby East"; dir = 8 }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central) "bbS" = ( @@ -8882,9 +8764,7 @@ /turf/simulated/floor/grass/jungle, /area/station/hallway/secondary/garden) "bcy" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /obj/machinery/light/small{ dir = 1 }, @@ -9039,12 +8919,7 @@ /turf/simulated/floor/plating, /area/station/supply/office) "bcV" = ( -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -9629,9 +9504,7 @@ c_tag = "Rehabilitation Dome Lobby South"; dir = 1 }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central) "bfW" = ( @@ -9914,9 +9787,7 @@ c_tag = "Dorm Commons North"; dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /obj/machinery/economy/vending/wallmed{ name = "Emergency NanoMed"; pixel_y = 28 @@ -10398,18 +10269,6 @@ icon_state = "white" }, /area/station/medical/surgery/primary) -"bjL" = ( -/obj/structure/table, -/obj/item/stack/medical/bruise_pack/advanced, -/obj/item/reagent_containers/iv_bag/salglu, -/obj/machinery/alarm{ - pixel_y = 24; - name = "north bump" - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/station/medical/surgery/primary) "bjN" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, @@ -10557,30 +10416,14 @@ }, /area/station/medical/morgue) "bkI" = ( -/obj/structure/table/tray, -/obj/item/scalpel, -/obj/item/bonegel{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/FixOVein{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/cautery, -/obj/item/hemostat{ - pixel_x = 6 - }, -/obj/item/retractor{ - pixel_x = -6; - pixel_y = 6 - }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/machinery/light{ dir = 4 }, +/obj/item/storage/surgical_tray, +/obj/structure/table/tray, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -10618,11 +10461,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -10989,9 +10828,7 @@ pixel_x = 24; name = "east bump" }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "neutral" @@ -11093,11 +10930,7 @@ /turf/simulated/floor/plasteel/white, /area/station/medical/virology) "bmX" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/machinery/bodyscanner{ dir = 4 }, @@ -11254,7 +11087,6 @@ /turf/simulated/floor/plating/airless, /area/station/maintenance/starboard) "bnv" = ( -/obj/structure/closet, /obj/structure/window/reinforced{ dir = 4 }, @@ -11262,17 +11094,18 @@ pixel_y = -28; name = "custom placement" }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/security/evidence) "bnw" = ( -/obj/structure/closet, /obj/machinery/light_switch{ dir = 1; pixel_y = -24; name = "south bump" }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -11333,11 +11166,7 @@ }, /area/station/public/storage/tools) "bnM" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/effect/turf_decal/stripes/asteroid/end, /obj/structure/cable/orange{ d2 = 2; @@ -12007,10 +11836,7 @@ }, /area/station/medical/virology) "brh" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -12082,9 +11908,7 @@ }, /area/station/supply/office) "brs" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -12379,6 +12203,12 @@ icon_state = "asteroidplating" }, /area/station/maintenance/port) +"bsy" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "bsz" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/railing{ @@ -12512,6 +12342,13 @@ "bti" = ( /turf/simulated/floor/carpet/blue, /area/station/command/office/hop) +"btj" = ( +/obj/machinery/atmospherics/portable/canister/air, +/obj/machinery/atmospherics/unary/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "btn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -13260,6 +13097,12 @@ }, /turf/simulated/floor/plating, /area/station/engineering/break_room) +"bwl" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "bwm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -13504,9 +13347,7 @@ }, /area/station/engineering/break_room) "bxv" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkyellowcorners" @@ -13584,9 +13425,7 @@ /area/station/command/office/hop) "bxG" = ( /obj/structure/disposalpipe/segment, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkyellowcorners" @@ -15243,11 +15082,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint2) "bEP" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d1 = 1; d2 = 2; @@ -15323,11 +15158,7 @@ "bFb" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -15865,11 +15696,7 @@ }, /area/station/maintenance/asmaint) "bGk" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d1 = 1; d2 = 8; @@ -16294,9 +16121,7 @@ name = "Atmospherics Desk Shutters"; pixel_x = 24 }, -/obj/item/kirbyplants{ - icon_state = "plant-13" - }, +/obj/item/kirbyplants/plant13, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkyellow" @@ -16457,11 +16282,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "red" @@ -16746,7 +16567,7 @@ /obj/machinery/computer/general_air_control{ dir = 4; name = "Tank Monitor"; - autolink_sensors = list("n2_sensor"="Nitrogen","o2_sensor"="Oxygen","co2_sensor"="Carbon Dioxide","tox_sensor"="Toxins","n2o_sensor"="Nitrous Oxide","waste_sensor"="Gas Mix Tank") + autolink_sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) @@ -17609,7 +17430,7 @@ }, /area/station/engineering/atmos) "bOu" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -17844,14 +17665,14 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/engineering/atmos) "bPz" = ( /obj/machinery/light, -/obj/machinery/suit_storage_unit/ce, +/obj/machinery/suit_storage_unit/ce/secure, /obj/machinery/computer/guestpass{ pixel_x = -28; pixel_y = null @@ -17891,11 +17712,7 @@ /turf/simulated/floor/plasteel, /area/station/command/office/ce) "bPD" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -17922,9 +17739,7 @@ /turf/simulated/floor/plasteel, /area/station/command/office/ce) "bPE" = ( -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, +/obj/item/kirbyplants/plant25, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -18002,11 +17817,7 @@ }, /area/station/engineering/smes) "bPN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -18485,21 +18296,21 @@ }, /area/station/engineering/smes) "bRK" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "darkyellow" }, /area/station/engineering/smes) "bRL" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/machinery/light, /turf/simulated/floor/plasteel{ icon_state = "darkyellow" }, /area/station/engineering/smes) "bRM" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "darkyellow" @@ -19021,9 +18832,7 @@ }, /area/station/service/chapel) "bTX" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/machinery/recharger/wallcharger{ pixel_y = -25 }, @@ -19368,7 +19177,7 @@ }, /area/station/security/armory/secure) "bVp" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/window/reinforced{ dir = 4 }, @@ -19473,7 +19282,7 @@ inlet_injector_autolink_id = "co2_in"; name = "Carbon Dioxide Supply Control"; outlet_vent_autolink_id = "co2_out"; - autolink_sensors = list("co2_sensor"="Tank"); + autolink_sensors = list("co2_sensor" = "Tank"); dir = 1 }, /obj/machinery/atmospherics/pipe/simple/visible/green{ @@ -19652,7 +19461,7 @@ inlet_injector_autolink_id = "waste_in"; name = "Gas Mix Tank Control"; outlet_vent_autolink_id = "waste_out"; - autolink_sensors = list("waste_sensor"="Tank") + autolink_sensors = list("waste_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -20066,9 +19875,7 @@ }, /area/station/maintenance/fore2) "bYn" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -20082,9 +19889,7 @@ /turf/simulated/wall, /area/station/maintenance/disposal/south) "bYG" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/structure/cable/orange{ d1 = 2; d2 = 4; @@ -20140,11 +19945,7 @@ pixel_y = 6 }, /obj/item/storage/toolbox/electrical, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -20282,11 +20083,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -20628,11 +20425,7 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -20863,11 +20656,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "cet" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -20947,9 +20736,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "ceR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ icon_state = "bcircuit" }, @@ -21216,12 +21003,6 @@ name = "custom placement" }, /obj/structure/table, -/obj/item/circular_saw, -/obj/item/bonesetter{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/surgicaldrill, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -21474,6 +21255,10 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/fore/west) +"chW" = ( +/obj/effect/turf_decal/delivery/hollow, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "chX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21922,7 +21707,7 @@ /area/station/service/hydroponics) "cld" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/condiment/peppermill, /turf/simulated/floor/wood, /area/station/maintenance/starboard) "clh" = ( @@ -22285,11 +22070,7 @@ }, /area/station/maintenance/fsmaint) "cnt" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -22387,9 +22168,7 @@ /turf/simulated/wall/mineral/titanium, /area/shuttle/pod_2) "cnT" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whitepurple" @@ -23001,9 +22780,7 @@ }, /area/station/science/hallway) "cry" = ( -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, +/obj/item/kirbyplants/plant25, /turf/simulated/floor/plasteel{ icon_state = "whitepurple" }, @@ -23069,7 +22846,7 @@ }, /area/station/security/warden) "crV" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -23314,7 +23091,7 @@ /obj/item/reagent_containers/glass/beaker/waterbottle{ pixel_x = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /turf/simulated/floor/wood, @@ -23391,11 +23168,7 @@ }, /area/station/maintenance/apmaint) "cuz" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -23661,6 +23434,25 @@ /obj/machinery/chem_heater, /turf/simulated/floor/engine, /area/station/science/misc_lab) +"cvT" = ( +/obj/structure/table, +/obj/machinery/alarm{ + pixel_y = 24; + name = "north bump" + }, +/obj/item/reagent_containers/iv_bag/salglu, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/surgery/secondary) +"cvV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "cvW" = ( /mob/living/simple_animal/slime, /turf/simulated/floor/engine, @@ -23752,11 +23544,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange, /turf/simulated/floor/plasteel{ dir = 4; @@ -24112,11 +23900,7 @@ }, /area/station/hallway/spacebridge/cargocom) "czA" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -24889,9 +24673,10 @@ "cEm" = ( /obj/machinery/requests_console{ department = "Cargo Bay"; - departmentType = 2; - name = "Quartermaster RC"; - pixel_x = 30 + departmentType = 5; + name = "Quartermaster Requests Console"; + pixel_x = 30; + announcementConsole = 1 }, /obj/machinery/photocopier, /turf/simulated/floor/plasteel{ @@ -24978,6 +24763,12 @@ /obj/machinery/computer/guestpass{ pixel_y = -28 }, +/obj/machinery/requests_console{ + department = "Warden"; + departmentType = 7; + name = "Warden's Requests Console"; + pixel_x = -30 + }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "darkred" @@ -25123,11 +24914,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d1 = 2; d2 = 8; @@ -25458,6 +25245,10 @@ icon_state = "darkblue" }, /area/station/command/bridge) +"cHb" = ( +/obj/effect/spawner/airlock, +/turf/simulated/wall, +/area/station/maintenance/disposal/east) "cHh" = ( /obj/structure/cable/orange{ d1 = 4; @@ -25686,11 +25477,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/effect/turf_decal/stripes/end{ dir = 8 }, @@ -25891,11 +25678,7 @@ }, /area/station/hallway/primary/central) "cJf" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -25925,11 +25708,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -26243,11 +26022,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -26381,8 +26156,8 @@ locked = 1; name = "Cargo Docking Hatch" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/all/supply/supply_shuttle, /turf/simulated/floor/plating, /area/station/supply/office) "cLz" = ( @@ -26570,6 +26345,15 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"cMv" = ( +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "cMw" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, @@ -26687,11 +26471,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -26779,7 +26559,7 @@ /area/station/maintenance/port) "cNg" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/food/snacks/baguette, /obj/structure/sign/poster/official/the_owl{ pixel_y = 32 }, @@ -28137,11 +27917,7 @@ /obj/effect/turf_decal/stripes/asteroid/end{ dir = 8 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plating, /area/station/legal/lawoffice) "cSW" = ( @@ -28655,11 +28431,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/maintenance/turbine) @@ -29864,7 +29636,7 @@ pixel_x = -24; name = "custom placement" }, -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel{ icon_state = "darkyellow"; dir = 8 @@ -29971,7 +29743,7 @@ inlet_injector_autolink_id = "n2_in"; name = "Nitrogen Supply Control"; outlet_vent_autolink_id = "n2_out"; - autolink_sensors = list("n2_sensor"="Tank") + autolink_sensors = list("n2_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/window/reinforced{ @@ -30047,7 +29819,7 @@ inlet_injector_autolink_id = "o2_in"; name = "Oxygen Supply Control"; outlet_vent_autolink_id = "o2_out"; - autolink_sensors = list("o2_sensor"="Tank") + autolink_sensors = list("o2_sensor" = "Tank") }, /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/window/reinforced{ @@ -30199,7 +29971,7 @@ name = "Mixed Air Supply Control"; outlet_vent_autolink_id = "air_out"; outlet_setting = 2000; - autolink_sensors = list("air_sensor"="Tank") + autolink_sensors = list("air_sensor" = "Tank") }, /obj/structure/window/reinforced{ dir = 8 @@ -30251,7 +30023,7 @@ inlet_injector_autolink_id = "tox_in"; name = "Toxin Supply Control"; outlet_vent_autolink_id = "tox_out"; - autolink_sensors = list("tox_sensor"="Tank") + autolink_sensors = list("tox_sensor" = "Tank") }, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel, @@ -30286,7 +30058,7 @@ inlet_injector_autolink_id = "n2o_in"; name = "Nitrous Oxide Supply Control"; outlet_vent_autolink_id = "n2o_out"; - autolink_sensors = list("n2o_sensor"="Tank") + autolink_sensors = list("n2o_sensor" = "Tank") }, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel, @@ -30429,9 +30201,10 @@ "dgl" = ( /obj/machinery/door/airlock/mining/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plasteel{ icon_state = "darkbrownfull" }, @@ -30589,6 +30362,12 @@ icon_state = "darkbrown" }, /area/station/supply/office) +"dhq" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "dhr" = ( /obj/item/solar_assembly, /obj/item/stack/sheet/glass, @@ -30776,10 +30555,7 @@ }, /area/station/command/bridge) "dji" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/effect/turf_decal/stripes/end{ dir = 1 }, @@ -31115,9 +30891,7 @@ }, /area/station/public/quantum/cargo) "dkK" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -31245,11 +31019,7 @@ }, /area/station/security/lobby) "dlq" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -31373,7 +31143,7 @@ /turf/simulated/wall/r_wall, /area/station/hallway/primary/fore) "dmB" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 }, /turf/simulated/floor/plasteel{ @@ -32092,10 +31862,6 @@ /obj/item/stock_parts/micro_laser/high, /obj/item/stock_parts/micro_laser/high, /obj/item/stock_parts/micro_laser/high, -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_y = -32 - }, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "drr" = ( @@ -32168,11 +31934,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -32645,7 +32407,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "duk" = ( -/obj/structure/closet, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -32719,11 +32481,7 @@ }, /area/station/hallway/primary/fore) "duF" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -32804,13 +32562,6 @@ }, /turf/simulated/floor/plasteel, /area/station/command/office/hop) -"dvc" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/plating/airless, -/area/station/maintenance/disposal/external/east) "dvd" = ( /turf/simulated/floor/plasteel{ icon_state = "darkyellow"; @@ -32978,11 +32729,7 @@ /turf/simulated/floor/plating/airless, /area/station/maintenance/disposal/northwest) "dvT" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -34049,11 +33796,7 @@ }, /area/station/medical/medbay) "dBq" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -34254,11 +33997,7 @@ dir = 4 }, /obj/machinery/door/firedoor, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -34372,6 +34111,11 @@ /obj/item/clothing/gloves/color/yellow, /obj/item/t_scanner, /obj/item/multitool, +/obj/machinery/requests_console{ + department = "Tech Storage"; + name = "Tech Storage Requests Console"; + pixel_x = -30 + }, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "dDB" = ( @@ -34516,6 +34260,18 @@ icon_state = "asteroidplating" }, /area/station/hallway/spacebridge/servsci) +"dFD" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "dFU" = ( /obj/structure/table, /obj/machinery/recharger, @@ -34860,9 +34616,7 @@ }, /area/station/hallway/primary/fore/west) "dKY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/machinery/light/small{ dir = 1 }, @@ -34937,10 +34691,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/engine{ slowdown = -0.3 }, @@ -35093,6 +34844,20 @@ /obj/structure/closet/firecloset/full, /turf/simulated/floor/plating, /area/station/maintenance/disposal/east) +"dOa" = ( +/obj/structure/disposalpipe/segment/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/east) "dOb" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -35259,10 +35024,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "dQv" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange, /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -35409,11 +35171,7 @@ }, /area/station/hallway/primary/fore) "dSA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange{ d1 = 1; d2 = 2; @@ -35540,11 +35298,7 @@ }, /area/station/security/brig) "dUM" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -35956,13 +35710,6 @@ /obj/structure/girder, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) -"edM" = ( -/obj/structure/disposalpipe/segment/corner, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "edT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ @@ -36053,10 +35800,7 @@ /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -36129,14 +35873,6 @@ icon_state = "red" }, /area/station/hallway/secondary/exit) -"ehH" = ( -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/airless, -/area/station/maintenance/disposal/external/east) "ehV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -36485,11 +36221,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -36849,11 +36581,7 @@ pixel_y = -24; name = "south bump" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -37404,10 +37132,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "eGS" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/light/small{ dir = 8 }, @@ -37571,10 +37296,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "eJF" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange, /obj/effect/turf_decal/stripes/end{ dir = 1 @@ -37825,18 +37547,6 @@ }, /turf/simulated/floor/plating/asteroid/ancient/airless, /area/mine/unexplored/cere/cargo) -"eNW" = ( -/obj/structure/cable/orange{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "eOf" = ( /obj/structure/chair/sofa/corp, /turf/simulated/floor/plasteel, @@ -37907,10 +37617,7 @@ }, /area/station/hallway/spacebridge/scidock) "ePG" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/effect/turf_decal/stripes/asteroid/end{ dir = 1 }, @@ -37920,9 +37627,7 @@ }, /area/station/public/vacant_office) "eQt" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -37941,11 +37646,7 @@ /turf/simulated/wall, /area/station/maintenance/apmaint) "eRT" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -38229,19 +37930,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" }, /area/station/service/bar) "eXY" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -38383,7 +38078,7 @@ /area/station/hallway/primary/port/south) "eZY" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/item/reagent_containers/drinks/bottle/holywater, /obj/item/lighter/zippo/black, /turf/simulated/floor/carpet/black, /area/station/service/chapel) @@ -38807,7 +38502,7 @@ }, /obj/structure/lattice, /turf/space, -/area/space/nearstation) +/area/space/nearstation/disposals) "fka" = ( /obj/structure/cable{ d1 = 2; @@ -39451,6 +39146,11 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/disposal/east) +"fwi" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation/disposals) "fwJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -39662,6 +39362,12 @@ }, /turf/simulated/floor/plasteel, /area/station/supply/office) +"fBr" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/machinery/door/airlock/maintenance/glass, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "fCc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -39742,6 +39448,19 @@ icon_state = "neutralcorner" }, /area/station/hallway/primary/port/north) +"fEe" = ( +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "fEl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 8 @@ -39894,11 +39613,7 @@ name = "Gas to Chamber"; dir = 1 }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "Engineering Engine Super APC"; - pixel_x = 24; +/obj/machinery/power/apc/critical/directional/east{ shock_proof = 1 }, /turf/simulated/floor/engine, @@ -40003,7 +39718,7 @@ /obj/machinery/door/airlock/mining{ name = "Cargo Warehouse" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel{ icon_state = "darkbrownfull" }, @@ -40387,6 +40102,11 @@ icon_state = "darkblue" }, /area/station/command/bridge) +"fPZ" = ( +/obj/item/stack/ore/glass, +/obj/effect/turf_decal/box, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "fQd" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -40545,6 +40265,25 @@ /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/plasteel, /area/station/supply/office) +"fSN" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_y = 32 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "fSQ" = ( /obj/machinery/door/airlock/maintenance{ name = "Fore Asteroid Maintenance Access" @@ -40672,9 +40411,7 @@ }, /area/station/medical/cloning) "fUT" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" @@ -40776,6 +40513,12 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior/secondary) +"fXl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "fXo" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -40996,10 +40739,10 @@ /area/station/hallway/primary/starboard/south) "fZO" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_x = 10 }, -/obj/item/reagent_containers/food/snacks/chips{ +/obj/item/food/snacks/chips{ pixel_x = -5 }, /obj/structure/railing, @@ -41220,6 +40963,9 @@ pixel_y = 28; name = "custom placement" }, +/obj/item/hand_labeler{ + pixel_y = 6 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -41731,12 +41477,17 @@ }, /area/station/maintenance/asmaint) "gpV" = ( -/obj/structure/disposalpipe/segment/corner, /obj/structure/cable/orange{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "gpZ" = ( @@ -41801,10 +41552,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating{ icon_state = "asteroidplating" }, @@ -41946,9 +41694,7 @@ c_tag = "Telecomms Control Room"; dir = 6 }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -42247,11 +41993,7 @@ pixel_x = 3; pixel_y = 2 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -42538,7 +42280,7 @@ /area/station/hallway/primary/fore) "gDk" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/britcup, +/obj/item/reagent_containers/drinks/britcup, /obj/item/paper_bin, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -42595,24 +42337,12 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) -"gEl" = ( -/turf/simulated/wall/r_wall, -/area/station/maintenance/disposal/external/east) "gEn" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) -"gEv" = ( -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 4 - }, -/obj/machinery/atmospherics/portable/canister/air, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating" - }, -/area/station/maintenance/starboard) "gEz" = ( /obj/structure/chair/office/light{ dir = 4 @@ -42628,11 +42358,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/effect/decal/cleanable/cobweb, /obj/effect/turf_decal/stripes/end, /turf/simulated/floor/plating, @@ -42675,11 +42401,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/effect/turf_decal/stripes/asteroid/end{ dir = 8 }, @@ -42951,12 +42673,6 @@ dir = 4 }, /obj/structure/table, -/obj/item/surgicaldrill, -/obj/item/circular_saw, -/obj/item/bonesetter{ - pixel_x = 5; - pixel_y = 5 - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -43159,11 +42875,7 @@ }, /area/station/turret_protected/ai_upload) "gNc" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -43316,9 +43028,7 @@ }, /area/station/hallway/primary/fore) "gQP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/machinery/light_switch{ dir = 1; pixel_y = -24; @@ -43969,11 +43679,7 @@ layer = 4; pixel_y = 32 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -44146,11 +43852,7 @@ }, /area/station/science/robotics) "hfi" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/effect/turf_decal/stripes/asteroid/end, /obj/structure/cable/orange{ d1 = 4; @@ -44270,6 +43972,24 @@ icon_state = "white" }, /area/station/science/misc_lab) +"hiA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/east) +"hiC" = ( +/obj/structure/lattice, +/turf/space, +/area/space/nearstation/disposals) "hiI" = ( /obj/structure/chair/sofa/corp{ dir = 8 @@ -44329,11 +44049,7 @@ }, /area/station/hallway/secondary/exit) "hjJ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -44390,11 +44106,7 @@ pixel_y = 32 }, /obj/item/kirbyplants, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -44603,9 +44315,7 @@ }, /area/station/medical/medbay) "hoM" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/wood, /area/station/service/library) "hoU" = ( @@ -44881,9 +44591,7 @@ /turf/simulated/floor/plating, /area/station/hallway/secondary/entry/north) "htq" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /obj/structure/cable/orange{ d1 = 1; d2 = 2; @@ -45198,11 +44906,7 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange, /obj/effect/turf_decal/stripes/asteroid/end{ dir = 4 @@ -45213,11 +44917,7 @@ }, /area/station/service/kitchen) "hzs" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -45369,9 +45069,7 @@ }, /area/station/supply/office) "hDf" = ( -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, +/obj/item/kirbyplants/plant25, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, @@ -45819,10 +45517,7 @@ /area/station/maintenance/storage) "hIU" = ( /obj/structure/cable/orange, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/wood{ icon_state = "wood-broken" }, @@ -45874,14 +45569,6 @@ icon_state = "dark" }, /area/station/service/hydroponics) -"hJX" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random_spawners/dirt_often, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "hKc" = ( /obj/machinery/light/small{ dir = 4 @@ -46004,11 +45691,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -46193,11 +45876,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -46501,13 +46180,10 @@ }, /area/station/medical/storage/secondary) "hUN" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/unary/portables_connector{ dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Asteroid Maintenance Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/portable/canister/air, /turf/simulated/floor/plating, /area/station/maintenance/disposal/east) "hUO" = ( @@ -47169,11 +46845,7 @@ /turf/simulated/floor/wood, /area/station/service/bar) "ifx" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/effect/turf_decal/stripes/asteroid/end{ dir = 4 }, @@ -47484,16 +47156,6 @@ /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/plating, /area/station/hallway/primary/fore) -"ilq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/wirecutters, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "ilR" = ( /obj/docking_port/stationary/whiteship{ dir = 8; @@ -47757,7 +47419,7 @@ /area/station/turret_protected/aisat/interior/secondary) "ipE" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/mint, +/obj/item/food/snacks/mint, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -48043,11 +47705,7 @@ /turf/simulated/wall, /area/station/hallway/primary/central) "isE" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -48174,11 +47832,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -48582,11 +48236,7 @@ }, /area/station/hallway/primary/port/south) "iBy" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -48635,11 +48285,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -48683,21 +48329,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating/airless, /area/station/maintenance/disposal/external/north) -"iDO" = ( -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/item/radio/intercom{ - pixel_y = 28; - name = "custom placement" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "iDY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -49101,11 +48732,7 @@ "iKs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/effect/turf_decal/stripes/end{ dir = 4 }, @@ -49756,11 +49383,7 @@ /area/station/hallway/primary/port/east) "iVJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -49851,11 +49474,7 @@ dir = 1 }, /obj/effect/landmark/start/clown, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -50272,11 +49891,11 @@ }, /area/station/hallway/secondary/exit) "jcx" = ( -/obj/structure/closet, /obj/machinery/alarm{ pixel_y = 24; name = "north bump" }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -50318,12 +49937,17 @@ pixel_x = -32; pixel_y = 40 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "redcorner" @@ -50439,7 +50063,7 @@ /area/space) "jgd" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 2; pixel_y = 6 }, @@ -50504,11 +50128,6 @@ icon_state = "cafeteria" }, /area/station/medical/break_room) -"jhp" = ( -/obj/effect/turf_decal/stripes/line, -/obj/item/wrench, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "jht" = ( /obj/machinery/status_display{ layer = 4 @@ -50639,9 +50258,6 @@ network = list("SS13","RD") }, /obj/machinery/optable, -/obj/item/storage/firstaid/machine, -/obj/item/storage/firstaid/machine, -/obj/item/storage/backpack/duffel/medical, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkpurple" @@ -51201,7 +50817,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/table, /obj/item/kitchen/knife, -/obj/item/reagent_containers/food/snacks/meat/human, +/obj/item/food/snacks/meat/human, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "jtF" = ( @@ -51210,13 +50826,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) -"jtJ" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "jtN" = ( /obj/structure/cable{ d1 = 4; @@ -51300,11 +50909,6 @@ }, /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/maintcentral) -"juL" = ( -/obj/structure/railing, -/obj/structure/lattice, -/turf/space, -/area/space/nearstation) "juY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -51587,13 +51191,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) -"jzL" = ( -/obj/machinery/conveyor/auto{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "jzO" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable/orange{ @@ -51802,11 +51399,7 @@ }, /area/station/maintenance/apmaint) "jCg" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -52027,6 +51620,13 @@ icon_state = "whitepurple" }, /area/station/science/hallway) +"jFx" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/wirecutters, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "jFG" = ( /obj/structure/closet/secure_closet/blueshield, /turf/simulated/floor/wood, @@ -52158,9 +51758,9 @@ /area/station/command/office/blueshield) "jHz" = ( /obj/structure/closet/cabinet, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /obj/machinery/firealarm{ dir = 4; pixel_x = 24; @@ -53057,11 +52657,7 @@ /turf/simulated/floor/plasteel/white, /area/station/science/robotics) "jWj" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) @@ -53342,6 +52938,13 @@ icon_state = "dark" }, /area/station/maintenance/disposal) +"kcc" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "kcw" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -53351,11 +52954,7 @@ }, /area/station/service/hydroponics) "kcF" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -53617,9 +53216,7 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "kgd" = ( -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "darkred" @@ -53810,18 +53407,18 @@ name = "Cargo Desk"; dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mining{ - dir = 1 - }, /obj/machinery/door/firedoor, /obj/item/desk_bell{ pixel_x = 7; pixel_y = 7; anchored = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/general{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mining{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "darkbrownfull" }, @@ -54024,7 +53621,7 @@ "knI" = ( /obj/structure/table, /obj/item/book/manual/wiki/chef_recipes, -/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/condiment/peppermill, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -54337,7 +53934,7 @@ "ksD" = ( /obj/structure/safe, /obj/item/clothing/head/bearpelt, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, /obj/item/dice/d20{ desc = "A die with twenty sides. You feel absolutely normal while looking at this."; name = "Die of Mediocre Rolling Capability" @@ -54352,6 +53949,15 @@ icon_state = "bcircuit" }, /area/station/command/vault) +"ksG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/east) "ksK" = ( /obj/structure/cable/orange{ d1 = 4; @@ -54680,7 +54286,6 @@ "kxy" = ( /obj/structure/table, /obj/item/weldingtool/mini, -/obj/item/clothing/suit/space/eva, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/southeast) "kxH" = ( @@ -54954,21 +54559,6 @@ icon_state = "neutralcorner" }, /area/station/hallway/primary/port/east) -"kBm" = ( -/obj/structure/cable/orange{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating" - }, -/area/station/maintenance/starboard) "kBo" = ( /obj/machinery/power/terminal, /obj/structure/cable, @@ -55020,7 +54610,7 @@ "kCC" = ( /obj/structure/table, /obj/item/kitchen/knife, -/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/condiment/saltshaker, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -55105,11 +54695,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -55569,17 +55155,13 @@ }, /area/station/hallway/primary/port/south) "kMa" = ( -/obj/structure/table/tray, -/obj/item/robotanalyzer, -/obj/item/stack/medical/bruise_pack/advanced{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/obj/item/storage/box/bodybags, /obj/machinery/light{ dir = 4 }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/machine, +/obj/item/storage/firstaid/machine, +/obj/item/robotanalyzer, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "darkpurple" @@ -55736,12 +55318,12 @@ /area/station/engineering/control) "kNJ" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 8; pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/wood, /area/station/command/office/ntrep) "kOb" = ( @@ -55825,9 +55407,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "kPx" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/wood, /area/station/command/office/ntrep) "kQc" = ( @@ -55857,9 +55437,7 @@ /turf/simulated/floor/wood, /area/station/command/office/ntrep) "kQz" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "darkgreen" @@ -56030,6 +55608,15 @@ }, /turf/simulated/floor/plating, /area/station/medical/break_room) +"kTa" = ( +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "kTd" = ( /obj/machinery/door/poddoor{ density = 0; @@ -56174,12 +55761,12 @@ pixel_x = -24; name = "west bump" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -56301,12 +55888,7 @@ }, /area/station/hallway/primary/fore/east) "kVY" = ( -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -56390,12 +55972,12 @@ "kYz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -56751,6 +56333,10 @@ }, /turf/simulated/floor/engine, /area/station/engineering/control) +"lez" = ( +/obj/structure/railing, +/turf/space, +/area/space/nearstation/disposals) "leM" = ( /turf/simulated/wall, /area/station/hallway/spacebridge/sercom) @@ -56815,8 +56401,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "lfX" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, /obj/effect/turf_decal/delivery/hollow, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "darkblue" @@ -56973,14 +56559,6 @@ /obj/structure/railing, /turf/space, /area/station/hallway/spacebridge/serveng) -"lhU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/portable/canister/air, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "lhX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -57090,7 +56668,7 @@ }, /area/station/service/barber) "liT" = ( -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/structure/table/wood, /turf/simulated/floor/wood, /area/station/maintenance/gambling_den) @@ -57426,7 +57004,7 @@ pixel_x = 4; pixel_y = -4 }, -/obj/item/reagent_containers/food/drinks/trophy/bronze_cup{ +/obj/item/reagent_containers/drinks/trophy/bronze_cup{ name = "Rage Cage Champion" }, /turf/simulated/floor/plating/asteroid/ancient, @@ -57623,6 +57201,13 @@ icon_state = "whiteyellow" }, /area/station/science/robotics/chargebay) +"lqC" = ( +/obj/item/radio/intercom{ + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal/external/southeast) "lqP" = ( /obj/effect/turf_decal/stripes/corner, /obj/item/radio/intercom{ @@ -57637,14 +57222,6 @@ icon_state = "neutralfull" }, /area/station/hallway/secondary/entry) -"lra" = ( -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "lrd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -57811,18 +57388,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) -"lua" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/orange{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "luv" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "process" @@ -58076,11 +57641,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/fore) @@ -58127,6 +57688,10 @@ icon_state = "asteroidplating" }, /area/station/maintenance/starboard) +"lyl" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plasteel, +/area/station/maintenance/disposal/external/southeast) "lym" = ( /obj/structure/ore_box, /obj/effect/turf_decal/delivery, @@ -58215,6 +57780,9 @@ }, /turf/simulated/floor/transparent/glass/reinforced, /area/station/maintenance/fsmaint) +"lzf" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/east) "lzo" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "process" @@ -58374,11 +57942,6 @@ /turf/simulated/mineral/ancient/outer, /area/station/maintenance/auxsolarport) "lBr" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/light/small{ dir = 8 }, @@ -58426,9 +57989,7 @@ "lBJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel, /area/station/public/locker) "lBX" = ( @@ -58508,9 +58069,9 @@ }, /area/station/hallway/spacebridge/sercom) "lCV" = ( -/obj/structure/disposalpipe/segment/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 }, /turf/simulated/floor/plating, /area/station/maintenance/disposal/east) @@ -58692,9 +58253,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/black, /area/station/command/bridge) -"lGk" = ( -/turf/space, -/area/mine/unexplored/cere/civilian) "lHa" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 8 @@ -58710,6 +58268,9 @@ icon_state = "bcircuit" }, /area/station/command/vault) +"lHw" = ( +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "lHC" = ( /obj/item/flashlight/lantern, /turf/simulated/floor/plating{ @@ -58820,15 +58381,16 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard/south) -"lJs" = ( -/obj/effect/spawner/random_spawners/wall_rusted_always, -/turf/simulated/wall, -/area/station/maintenance/disposal/external/east) "lJL" = ( /turf/simulated/floor/wood{ icon_state = "wood-broken3" }, /area/station/maintenance/asmaint) +"lJM" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "lJN" = ( /obj/structure/cable/orange{ d1 = 2; @@ -59143,7 +58705,7 @@ "lPU" = ( /obj/structure/table, /obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/condiment/enzyme, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59228,10 +58790,7 @@ /obj/structure/disposalpipe/segment/corner{ dir = 1 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange, /turf/simulated/floor/plasteel{ icon_state = "barber" @@ -59363,10 +58922,6 @@ }, /turf/simulated/wall, /area/station/hallway/primary/starboard/south) -"lSP" = ( -/obj/effect/spawner/airlock/e_to_w, -/turf/simulated/wall/r_wall, -/area/station/maintenance/disposal/external/east) "lSZ" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/disposalpipe/segment, @@ -59687,7 +59242,7 @@ /area/station/service/hydroponics) "lYT" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/fried_vox, +/obj/item/food/snacks/fried_vox, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "lYX" = ( @@ -59850,6 +59405,17 @@ /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/plating, /area/station/hallway/primary/starboard/north) +"mbr" = ( +/obj/structure/table, +/obj/item/reagent_containers/iv_bag/salglu, +/obj/machinery/alarm{ + pixel_y = 24; + name = "north bump" + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/medical/surgery/primary) "mbw" = ( /obj/machinery/computer/crew{ dir = 1 @@ -59859,15 +59425,6 @@ icon_state = "whitebluefull" }, /area/station/medical/paramedic) -"mbI" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/orange{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/space, -/area/space/nearstation) "mbM" = ( /obj/structure/window/reinforced{ dir = 8 @@ -61522,9 +61079,7 @@ pixel_y = 24; name = "north bump" }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/wood, /area/station/service/library) "mHk" = ( @@ -61565,7 +61120,7 @@ dir = 4 }, /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -2; pixel_y = 4 }, @@ -62677,11 +62232,7 @@ }, /area/station/maintenance/asmaint) "mZP" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating/airless, @@ -62795,11 +62346,11 @@ dir = 1; layer = 2.9 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -2; pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 2; pixel_y = 6 }, @@ -62874,11 +62425,7 @@ /turf/simulated/floor/plating, /area/station/command/office/rd) "ndn" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -63297,11 +62844,7 @@ }, /area/station/public/locker) "nkf" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -63363,13 +62906,6 @@ icon_state = "white" }, /area/station/medical/cloning) -"nll" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/plating/airless, -/area/station/maintenance/disposal/external/east) "nln" = ( /obj/structure/cable/orange{ d1 = 2; @@ -63441,10 +62977,7 @@ /obj/effect/turf_decal/stripes/asteroid/end{ dir = 1 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating{ icon_state = "asteroidplating" }, @@ -63466,11 +62999,7 @@ }, /area/station/hallway/spacebridge/sercom) "nna" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -64428,11 +63957,7 @@ }, /area/station/science/toxins/mixing) "nEh" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -65093,7 +64618,7 @@ pixel_y = 11 }, /turf/space, -/area/space/nearstation) +/area/space/nearstation/disposals) "nPG" = ( /obj/structure/cable{ d1 = 4; @@ -65225,10 +64750,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/engine{ slowdown = -0.3 }, @@ -65371,19 +64893,12 @@ /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/arrival/station) "nWt" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange, /turf/simulated/floor/plasteel, /area/station/science/toxins/launch) "nWA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/effect/turf_decal/stripes/end{ dir = 4 }, @@ -66235,6 +65750,22 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) +"olr" = ( +/obj/structure/table, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/paper{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "olz" = ( /obj/machinery/light/small{ dir = 4 @@ -66452,11 +65983,7 @@ }, /area/station/hallway/spacebridge/cargocom) "onY" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -66576,6 +66103,11 @@ "opl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "escape" @@ -66698,11 +66230,7 @@ /area/station/science/server/coldroom) "oqZ" = ( /obj/effect/turf_decal/stripes/end, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -67047,11 +66575,7 @@ /area/station/maintenance/portsolar) "oyo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable, /turf/simulated/floor/engine{ slowdown = -0.3 @@ -67140,10 +66664,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -67152,6 +66673,12 @@ /area/station/maintenance/storage) "ozW" = ( /obj/structure/closet/secure_closet/freezer/kitchen, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + name = "Kitchen Requests Console"; + pixel_y = -30 + }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -67264,6 +66791,12 @@ /obj/structure/table, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 3; + name = "Engineering Requests Console"; + pixel_x = 30 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkyellow" @@ -67615,19 +67148,6 @@ icon_state = "whitebluecorner" }, /area/station/medical/storage/secondary) -"oJD" = ( -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - pixel_y = 28; - name = "custom placement" - }, -/obj/effect/spawner/random_spawners/dirt_often, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "oJH" = ( /obj/structure/closet/crate, /obj/item/pickaxe/emergency, @@ -67643,10 +67163,11 @@ }, /area/station/service/hydroponics) "oKi" = ( -/obj/structure/disposalpipe/segment/corner{ - dir = 1 +/obj/machinery/door/airlock/maintenance{ + name = "Starboard Asteroid Maintenance Access" }, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/orange{ @@ -67655,7 +67176,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/station/maintenance/starboard) +/area/station/maintenance/disposal/east) "oKk" = ( /obj/machinery/door/airlock/command{ name = "Expedition Access" @@ -67855,7 +67376,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel{ icon_state = "darkyellow"; dir = 1 @@ -67920,10 +67441,7 @@ /turf/simulated/wall, /area/station/service/barber) "oOh" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -68054,11 +67572,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -68496,11 +68010,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -68652,15 +68162,6 @@ "oYZ" = ( /turf/simulated/floor/plasteel/white, /area/station/science/rnd) -"oZn" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/portable/canister/air, -/obj/machinery/atmospherics/unary/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "oZo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68827,8 +68328,9 @@ /obj/machinery/door/airlock/mining/glass{ name = "Cargo Bay" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/cargo_bay, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ icon_state = "darkbrownfull" }, @@ -68840,11 +68342,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -68953,7 +68451,7 @@ "per" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, -/obj/item/reagent_containers/food/drinks/britcup, +/obj/item/reagent_containers/drinks/britcup, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "peB" = ( @@ -69039,11 +68537,7 @@ /turf/simulated/floor/plating, /area/station/hallway/primary/starboard/north) "pfM" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange, /turf/simulated/floor/transparent/glass/reinforced, /area/station/hallway/primary/starboard/north) @@ -69061,7 +68555,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal/northeast) "pgO" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 }, /turf/simulated/floor/plasteel{ @@ -69240,15 +68734,6 @@ icon_state = "cafeteria" }, /area/station/service/kitchen) -"pjN" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/spawner/random_spawners/dirt_often, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "pjU" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/disposal/deliveryChute{ @@ -69384,11 +68869,6 @@ slowdown = -0.3 }, /area/station/hallway/spacebridge/dockmed) -"pmQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "pmS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -69556,7 +69036,7 @@ /obj/machinery/computer/general_air_control{ dir = 8; name = "Distribution and Waste Monitor"; - autolink_sensors = list("mair_in_meter"="Mixed Air In","air_sensor"="Mixed Air Supply Tank","mair_out_meter"="Mixed Air Out","dloop_atm_meter"="Distribution Loop","wloop_atm_meter"="Waste Loop") + autolink_sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") }, /obj/item/radio/intercom{ pixel_x = 28; @@ -69876,6 +69356,10 @@ icon_state = "cafeteria" }, /area/station/service/kitchen) +"ptT" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "pue" = ( /obj/structure/cable/orange{ d1 = 2; @@ -70145,17 +69629,12 @@ /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/starboard) "pyz" = ( -/obj/structure/disposalpipe/segment/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, /obj/structure/cable/orange{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/structure/disposalpipe/segment/corner, /turf/simulated/floor/plating, /area/station/maintenance/disposal/east) "pyE" = ( @@ -70501,11 +69980,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel, /area/station/security/range) "pEA" = ( @@ -70773,7 +70248,7 @@ }, /area/station/medical/morgue) "pII" = ( -/obj/machinery/suit_storage_unit/rd, +/obj/machinery/suit_storage_unit/rd/secure, /obj/machinery/alarm{ dir = 8; name = "east bump"; @@ -70824,7 +70299,7 @@ /turf/simulated/floor/wood, /area/station/service/clown) "pJS" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel{ icon_state = "darkyellow"; dir = 8 @@ -70881,6 +70356,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -70919,13 +70399,6 @@ icon_state = "bcircuit" }, /area/station/turret_protected/ai_upload) -"pLe" = ( -/obj/machinery/conveyor/auto{ - dir = 4 - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "pLh" = ( /obj/effect/landmark/start/cargo_technician, /obj/structure/disposalpipe/segment, @@ -71038,11 +70511,6 @@ }, /turf/simulated/floor/plating, /area/station/engineering/smes) -"pNi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "pNo" = ( /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/carpet, @@ -71127,15 +70595,6 @@ icon_state = "dark" }, /area/station/command/bridge) -"pOG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/orange{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/space, -/area/space/nearstation) "pOU" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -71157,9 +70616,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "pOY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" }, @@ -71294,16 +70751,12 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, +/obj/effect/turf_decal/caution/stand_clear, /obj/structure/cable{ d2 = 2; icon_state = "0-2" }, -/obj/effect/turf_decal/caution/stand_clear, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkgreen" @@ -71468,12 +70921,6 @@ icon_state = "floorgrime" }, /area/station/security/permabrig) -"pUe" = ( -/obj/machinery/conveyor/auto{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "pUg" = ( /obj/structure/cable{ d1 = 1; @@ -71642,11 +71089,7 @@ /obj/effect/turf_decal/stripes/end{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -71675,7 +71118,7 @@ "pXp" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, -/obj/item/reagent_containers/food/snacks/donkpocket, +/obj/item/food/snacks/donkpocket, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "pXq" = ( @@ -72222,7 +71665,7 @@ }, /area/station/engineering/gravitygenerator) "qeX" = ( -/obj/item/reagent_containers/food/drinks/bottle/patron, +/obj/item/reagent_containers/drinks/bottle/patron, /obj/structure/table/wood, /obj/item/lighter/random, /obj/item/storage/fancy/cigarettes/cigpack_shadyjims, @@ -72272,7 +71715,7 @@ }, /area/station/security/checkpoint/secondary) "qgu" = ( -/obj/machinery/suit_storage_unit/clown, +/obj/machinery/suit_storage_unit/clown/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -72683,6 +72126,11 @@ pixel_x = 32; pixel_y = 32 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -72978,8 +72426,8 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, /obj/effect/turf_decal/delivery/hollow, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ icon_state = "darkbluefull" }, @@ -74545,15 +73993,15 @@ "qQb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_often, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -75156,6 +74604,12 @@ /obj/structure/grille/broken, /turf/simulated/floor/plating, /area/station/maintenance/port) +"rdl" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/spawner/random_spawners/dirt_frequent, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "rdq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -75230,11 +74684,6 @@ icon_state = "neutralcorner" }, /area/station/hallway/primary/central) -"rec" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random_spawners/dirt_often, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "rez" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -75552,10 +75001,7 @@ }, /area/station/public/storage/tools) "rmq" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/effect/turf_decal/stripes/end{ dir = 1 }, @@ -75659,12 +75105,13 @@ /obj/machinery/door/airlock/mining/glass{ name = "Cargo Bay" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, /obj/structure/cable/orange{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/supply/cargo_bay, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ icon_state = "darkbrownfull" }, @@ -75803,10 +75250,8 @@ /turf/simulated/floor/wood, /area/station/service/clown) "rpK" = ( -/obj/machinery/suit_storage_unit/cmo{ - name = "chief medical officer's suit storage unit" - }, /obj/effect/turf_decal/delivery/hollow, +/obj/machinery/suit_storage_unit/cmo/secure, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "darkblue" @@ -75925,24 +75370,8 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/aft/west) -"rrV" = ( -/obj/structure/table, -/obj/machinery/alarm{ - pixel_y = 24; - name = "north bump" - }, -/obj/item/stack/medical/bruise_pack/advanced, -/obj/item/reagent_containers/iv_bag/salglu, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/station/medical/surgery/secondary) "rsj" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -75977,11 +75406,7 @@ /turf/simulated/floor/plating/airless, /area/station/science/toxins/test) "rtt" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/effect/turf_decal/stripes/asteroid/end{ dir = 8 }, @@ -76318,16 +75743,16 @@ /turf/simulated/floor/carpet/black, /area/station/command/office/captain) "rAM" = ( -/obj/item/bonegel, -/obj/item/surgicaldrill, -/obj/item/bonesetter, -/obj/item/FixOVein, -/obj/item/cautery, -/obj/item/scalpel, -/obj/item/circular_saw, -/obj/item/hemostat, -/obj/item/retractor, -/obj/structure/table/tray, +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "darkpurple" }, @@ -76336,6 +75761,11 @@ /obj/effect/spawner/random_spawners/wall_rusted_always, /turf/simulated/wall, /area/station/maintenance/fore2) +"rBc" = ( +/obj/effect/turf_decal/box, +/obj/item/stack/ore/plasma, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "rBg" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -76619,9 +76049,7 @@ /turf/simulated/floor/wood, /area/station/service/theatre) "rGm" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /obj/machinery/light_switch{ dir = 4; pixel_x = -24; @@ -76668,7 +76096,7 @@ "rHk" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, -/obj/item/reagent_containers/food/drinks/flask/detflask, +/obj/item/reagent_containers/drinks/flask/detflask, /obj/structure/cable/orange{ d1 = 1; d2 = 4; @@ -76677,10 +76105,7 @@ /turf/simulated/floor/carpet, /area/station/security/detective) "rHo" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/station/maintenance/disposal/southwest) @@ -77251,6 +76676,10 @@ /obj/effect/spawner/airlock/e_to_w, /turf/simulated/wall, /area/station/hallway/primary/starboard/south) +"rQM" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "rQO" = ( /obj/structure/cable/orange{ d1 = 2; @@ -77278,27 +76707,11 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/item/hemostat{ - pixel_x = 6 - }, -/obj/item/retractor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/cautery, -/obj/item/scalpel, -/obj/item/FixOVein{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/bonegel{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/table/tray, /obj/machinery/light{ dir = 8 }, +/obj/item/storage/surgical_tray, +/obj/structure/table/tray, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -77352,11 +76765,7 @@ }, /area/station/engineering/atmos) "rRE" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -77467,6 +76876,11 @@ /obj/effect/landmark/spawner/nukedisc_respawn, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"rUd" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "rUo" = ( /obj/structure/cable/orange{ d1 = 4; @@ -77505,6 +76919,10 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/southeast) +"rVj" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/east) "rVm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -77558,19 +76976,9 @@ name = "Disposals" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/general, /obj/effect/spawner/random_spawners/dirt_frequent, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint2) -"rVH" = ( -/obj/machinery/light/small, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "rVL" = ( /mob/living/simple_animal/mouse/gray, /turf/simulated/floor/plating/asteroid/ancient, @@ -77591,6 +76999,15 @@ "rWb" = ( /turf/simulated/mineral/ancient, /area/station/maintenance/fsmaint) +"rWp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "rWs" = ( /obj/machinery/light, /obj/structure/disposalpipe/segment{ @@ -77651,12 +77068,12 @@ "rYf" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -77913,12 +77330,6 @@ icon_state = "dark" }, /area/station/security/warden) -"sbG" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/space, -/area/space/nearstation) "scx" = ( /obj/structure/girder, /obj/item/stack/sheet/metal, @@ -77939,11 +77350,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -78152,11 +77559,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /mob/living/simple_animal/hostile/retaliate/kangaroo{ name = "Darwin" }, @@ -78253,17 +77656,12 @@ }, /area/station/turret_protected/aisat/interior) "shk" = ( -/obj/structure/table/tray, /obj/item/clothing/mask/breath/medical, /obj/item/tank/internals/anesthetic, /obj/item/reagent_containers/spray/cleaner{ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, /obj/machinery/button/windowtint{ dir = 1; pixel_y = -24 @@ -78271,6 +77669,7 @@ /obj/structure/window/reinforced/polarized{ dir = 8 }, +/obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ icon_state = "darkpurple" }, @@ -78467,11 +77866,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d1 = 2; d2 = 8; @@ -78636,10 +78031,6 @@ icon_state = "asteroidplating" }, /area/station/maintenance/port) -"smT" = ( -/obj/effect/spawner/airlock/w_to_e, -/turf/simulated/mineral/ancient, -/area/mine/unexplored/cere/medical) "smX" = ( /obj/machinery/door/window/classic/normal{ name = "Bar"; @@ -78769,11 +78160,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry/north) @@ -78794,11 +78181,7 @@ /turf/simulated/wall, /area/station/hallway/secondary/entry) "srr" = ( -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "Engineering Engine Super APC"; - pixel_y = 24; +/obj/machinery/power/apc/critical/directional/north{ shock_proof = 1 }, /obj/structure/cable{ @@ -79328,7 +78711,7 @@ dir = 4 }, /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -2; pixel_y = 4 }, @@ -79626,7 +79009,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel{ icon_state = "darkyellow"; dir = 1 @@ -79841,23 +79224,6 @@ }, /turf/simulated/floor/grass/jungle, /area/station/hallway/secondary/garden) -"sGf" = ( -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) -"sGo" = ( -/obj/machinery/conveyor/auto{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "sGY" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -79980,10 +79346,7 @@ /turf/simulated/floor/plating, /area/station/command/office/rd) "sJY" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4; @@ -80038,6 +79401,8 @@ }, /area/station/hallway/spacebridge/sercom) "sLj" = ( +/obj/structure/table/reinforced, +/obj/item/storage/surgical_tray, /turf/simulated/floor/plasteel{ icon_state = "darkpurple" }, @@ -80084,7 +79449,7 @@ dir = 8 }, /turf/space, -/area/space/nearstation) +/area/space/nearstation/disposals) "sMt" = ( /obj/structure/cable{ d1 = 1; @@ -80268,11 +79633,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -80321,11 +79682,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -80488,10 +79845,7 @@ }, /area/station/public/storage/tools) "sSj" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -80665,13 +80019,6 @@ icon_state = "wood-broken" }, /area/station/maintenance/gambling_den) -"sUG" = ( -/obj/structure/grille/broken, -/obj/structure/disposalpipe/segment/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/east) "sUK" = ( /obj/machinery/conveyor/auto{ dir = 8 @@ -80703,8 +80050,8 @@ }, /area/station/legal/lawoffice) "sVv" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, /obj/effect/turf_decal/delivery/hollow, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "darkblue" @@ -80868,9 +80215,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/plasteel{ dir = 9; @@ -81342,6 +80687,9 @@ icon_state = "neutralcorner" }, /area/station/hallway/secondary/entry/north) +"tgW" = ( +/turf/simulated/wall/r_wall, +/area/mine/unexplored/cere/orbiting) "thf" = ( /obj/structure/flora/ausbushes/sunnybush, /mob/living/simple_animal/chicken/clucky, @@ -81672,10 +81020,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange{ d1 = 1; d2 = 8; @@ -81696,7 +81041,7 @@ dir = 8 }, /turf/space, -/area/space/nearstation) +/area/space/nearstation/disposals) "tly" = ( /obj/structure/cable/orange{ d1 = 1; @@ -81718,11 +81063,7 @@ /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/starboard) "tlN" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -81830,7 +81171,7 @@ "tnY" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/bananalamp, -/obj/item/reagent_containers/food/snacks/pie, +/obj/item/food/snacks/pie, /obj/machinery/light_switch{ dir = 8; pixel_x = 24; @@ -81957,6 +81298,10 @@ icon_state = "asteroidplating" }, /area/station/maintenance/asmaint) +"tqc" = ( +/obj/structure/chair, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "tqm" = ( /obj/structure/disposalpipe/sortjunction/reversed{ dir = 1; @@ -82135,11 +81480,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -82556,15 +81897,6 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/port/east) -"tBd" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "tBo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -82638,11 +81970,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -82654,9 +81982,7 @@ }, /area/station/engineering/gravitygenerator) "tCV" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, @@ -82959,10 +82285,7 @@ /area/station/engineering/control) "tJd" = ( /obj/structure/closet/crate/freezer/iv_storage, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -83333,12 +82656,6 @@ icon_state = "redcorner" }, /area/station/security/main) -"tRT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "tRV" = ( /obj/machinery/door/airlock/medical/glass, /obj/effect/mapping_helpers/airlock/autoname, @@ -83374,19 +82691,20 @@ icon_state = "dark" }, /area/station/service/expedition) -"tTD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/lootdrop/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "tTE" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, /turf/simulated/floor/wood, /area/station/service/library) +"tTF" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable/orange{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "tTH" = ( /obj/structure/flora/ausbushes/stalkybush, /turf/simulated/floor/grass, @@ -84085,6 +83403,13 @@ icon_state = "cafeteria" }, /area/station/service/kitchen) +"udx" = ( +/obj/machinery/conveyor/auto{ + dir = 1 + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "uep" = ( /obj/machinery/economy/vending/snack, /turf/simulated/floor/plating, @@ -84224,11 +83549,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 2; pixel_y = 6 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -2; pixel_y = 4 }, @@ -84759,11 +84084,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel/freezer, /area/station/public/toilet) "upd" = ( @@ -84967,10 +84288,7 @@ }, /area/station/maintenance/disposal) "urU" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -85337,11 +84655,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) "uxM" = ( @@ -85536,7 +84850,7 @@ }, /area/station/medical/virology) "uBe" = ( -/obj/machinery/suit_storage_unit/captain, +/obj/machinery/suit_storage_unit/captain/secure, /turf/simulated/floor/wood, /area/station/command/office/captain) "uBs" = ( @@ -85571,6 +84885,9 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "uBC" = ( @@ -85587,9 +84904,7 @@ /turf/simulated/floor/plating, /area/station/security/warden) "uBY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, +/obj/item/kirbyplants/plant25, /turf/simulated/floor/plasteel{ icon_state = "whitegreen" }, @@ -86183,11 +85498,7 @@ }, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/item/multitool, /turf/simulated/floor/plasteel{ dir = 8; @@ -86361,11 +85672,7 @@ /obj/structure/table/wood, /obj/item/storage/bible, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 8; icon_state = "0-8" @@ -86387,11 +85694,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/effect/turf_decal/stripes/asteroid/end, /obj/structure/cable/orange{ d2 = 8; @@ -87114,6 +86417,11 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry/north) +"vap" = ( +/obj/item/stack/ore/iron, +/obj/effect/turf_decal/box, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "vav" = ( /obj/machinery/door/airlock{ name = "Crematorium" @@ -87187,12 +86495,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/starboard) -"vbl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/girder, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/east) "vbn" = ( /obj/structure/disposalpipe/junction/reversed, /turf/simulated/floor/plating, @@ -87253,11 +86555,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable, /turf/simulated/floor/plating, /area/station/hallway/primary/aft/west) @@ -87277,11 +86575,11 @@ /obj/machinery/door/airlock/glass{ name = "Disposals" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -87343,11 +86641,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "vdF" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -87360,10 +86654,7 @@ }, /area/station/medical/virology) "vdN" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/effect/turf_decal/stripes/end{ dir = 1 }, @@ -87512,6 +86803,15 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/electrical_shop) +"vfN" = ( +/obj/effect/spawner/random_spawners/dirt_often, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "vfQ" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, @@ -87645,7 +86945,7 @@ }, /area/station/maintenance/asmaint) "vjI" = ( -/obj/machinery/suit_storage_unit/mime, +/obj/machinery/suit_storage_unit/mime/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -87811,9 +87111,7 @@ pixel_x = 24; name = "east bump" }, -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, +/obj/item/kirbyplants/plant25, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "darkpurple" @@ -88012,7 +87310,7 @@ /obj/structure/closet/wardrobe/white, /obj/item/clothing/shoes/jackboots, /obj/item/reagent_containers/iv_bag/blood/OMinus, -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "vpt" = ( @@ -88038,15 +87336,6 @@ }, /turf/simulated/floor/plating, /area/station/hallway/primary/starboard/south) -"vpA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "vpB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -88284,11 +87573,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/plating, /area/station/maintenance/disposal/external/southwest) @@ -88582,9 +87867,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore2) "vwo" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/machinery/light{ dir = 1 }, @@ -88634,6 +87917,15 @@ icon_state = "redyellowfull" }, /area/station/service/bar) +"vxH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/space/nearstation) "vxJ" = ( /obj/structure/cable/orange{ d1 = 4; @@ -88944,21 +88236,8 @@ icon_state = "white" }, /area/station/science/misc_lab) -"vDy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/space, -/area/space/nearstation) "vDK" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -88976,7 +88255,7 @@ /area/station/medical/medbay) "vDS" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/britcup, +/obj/item/reagent_containers/drinks/britcup, /obj/machinery/door/window/classic/normal{ dir = 8; name = "Medical Reception" @@ -89115,8 +88394,8 @@ /area/station/hallway/primary/fore/east) "vFa" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/chili, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/chili, /obj/item/seeds/grape, /turf/simulated/floor/plasteel{ icon_state = "darkgreenfull" @@ -89347,9 +88626,7 @@ pixel_y = 24; name = "north bump" }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/wood, /area/station/legal/magistrate) "vIG" = ( @@ -89404,11 +88681,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/engine{ slowdown = -0.3 }, @@ -90511,13 +89784,6 @@ dir = 4 }, /area/station/medical/reception) -"wdb" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/lattice, -/turf/space, -/area/space/nearstation) "wdl" = ( /obj/machinery/door/airlock/maintenance{ name = "Port Asteroid Maintenance" @@ -90813,11 +90079,7 @@ /turf/simulated/floor/plating, /area/station/supply/miningdock) "whS" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -91068,11 +90330,7 @@ }, /area/station/hallway/secondary/entry/north) "wkS" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/effect/turf_decal/stripes/asteroid/end, /obj/structure/cable/orange{ d2 = 8; @@ -91407,6 +90665,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "escape" @@ -91810,6 +91073,11 @@ }, /turf/simulated/floor/plasteel, /area/station/security/prisonlockers) +"wuV" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/box, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "wuW" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -91900,6 +91168,23 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/port/south) +"wwh" = ( +/obj/structure/cable/orange{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console"; + pixel_x = 30 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "darkredcorners" + }, +/area/station/security/brig) "wwl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -92052,6 +91337,23 @@ icon_state = "whiteblue" }, /area/station/medical/cloning) +"wxE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "escape" + }, +/area/station/hallway/secondary/entry) "wxI" = ( /obj/structure/morgue, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -92199,7 +91501,7 @@ /area/station/public/storage/tools) "wzA" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 2; pixel_y = 6 }, @@ -92304,16 +91606,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/port) -"wAE" = ( -/obj/machinery/conveyor/auto{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "wAG" = ( /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) @@ -92355,11 +91647,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/table, /obj/item/storage/fancy/donut_box, /turf/simulated/floor/plasteel{ @@ -92379,9 +91667,7 @@ pixel_x = 24; name = "east bump" }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "neutral" @@ -92523,11 +91809,7 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "wDL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/effect/turf_decal/stripes/asteroid/end{ dir = 4 }, @@ -92568,15 +91850,6 @@ icon_state = "neutralcorner" }, /area/station/hallway/primary/port/south) -"wEk" = ( -/obj/machinery/light/small, -/obj/structure/cable/orange{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/southeast) "wEo" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -93436,6 +92709,10 @@ }, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior/secondary) +"wTe" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/external/southeast) "wTg" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -93699,12 +92976,6 @@ icon_state = "redcorner" }, /area/station/security/prison/cell_block/A) -"wYo" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/grille/broken, -/obj/effect/spawner/random_spawners/dirt_often, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "wYt" = ( /obj/machinery/light{ dir = 1 @@ -93726,19 +92997,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) -"wYO" = ( -/obj/structure/cable/orange{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating" - }, -/area/station/maintenance/starboard) "wYY" = ( /obj/machinery/door/airlock/public/glass{ name = "Walkway" @@ -93900,11 +93158,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/wood, /area/station/command/office/hos) "xaD" = ( @@ -93986,6 +93240,12 @@ icon_state = "whiteyellow" }, /area/station/medical/reception) +"xbH" = ( +/obj/structure/disposalpipe/segment/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/disposal/east) "xbJ" = ( /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/arrival/station) @@ -94097,10 +93357,7 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "xdw" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/station/maintenance/disposal/south) @@ -94224,6 +93481,13 @@ /obj/structure/sink/puddle, /turf/simulated/floor/plating/asteroid/ancient, /area/station/maintenance/gambling_den) +"xhf" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space, +/area/space/nearstation/disposals) "xhk" = ( /turf/simulated/floor/carpet, /area/station/legal/courtroom) @@ -94299,11 +93563,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/clonepod, /turf/simulated/floor/plasteel{ dir = 4; @@ -94547,12 +93807,12 @@ pixel_x = -24; name = "west bump" }, -/obj/item/reagent_containers/food/drinks/flask/barflask, +/obj/item/reagent_containers/drinks/flask/barflask, /obj/item/clothing/head/that{ pixel_x = 4; pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/structure/table/wood, /turf/simulated/floor/wood, /area/station/service/bar) @@ -95066,10 +94326,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar/aft) -"xxs" = ( -/obj/effect/turf_decal/stripes/line, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "xxt" = ( /obj/structure/cable{ d1 = 2; @@ -95163,8 +94419,8 @@ /turf/simulated/floor/wood, /area/station/service/bar) "xyF" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, /obj/effect/turf_decal/delivery/hollow, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkblue" @@ -95364,6 +94620,12 @@ icon_state = "asteroidplating" }, /area/station/maintenance/starboard) +"xBm" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space/nearstation/disposals) "xBq" = ( /obj/structure/cable{ d1 = 1; @@ -96006,9 +95268,7 @@ pixel_y = 24; name = "north bump" }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/item/radio/intercom{ pixel_x = 28; name = "custom placement" @@ -96101,12 +95361,16 @@ /turf/simulated/floor/carpet/royalblack, /area/station/command/office/captain) "xNF" = ( -/obj/machinery/door/window{ +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/polarized, +/obj/machinery/door/window/classic/normal{ dir = 8; name = "Robotics Surgery" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -96250,7 +95514,7 @@ }, /obj/machinery/light, /obj/structure/table, -/obj/item/reagent_containers/food/drinks/britcup{ +/obj/item/reagent_containers/drinks/britcup{ pixel_x = 9; pixel_y = 9 }, @@ -96745,6 +96009,14 @@ "xYM" = ( /turf/simulated/wall/mineral/titanium, /area/shuttle/pod_1) +"xYV" = ( +/obj/machinery/requests_console{ + department = "Locker Room"; + name = "Locker Room Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel, +/area/station/public/locker) "xYZ" = ( /turf/simulated/wall, /area/station/command/bridge) @@ -97203,10 +96475,7 @@ }, /area/station/medical/patients_rooms) "ygF" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable/orange{ d2 = 4; icon_state = "0-4" @@ -97254,12 +96523,6 @@ icon_state = "wood-broken" }, /area/station/maintenance/asmaint) -"yhs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/station/maintenance/disposal/external/east) "yhz" = ( /obj/structure/window/reinforced/polarized, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -97524,11 +96787,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable/orange{ d2 = 2; icon_state = "0-2" @@ -104059,19 +103318,19 @@ abd abd mBD abY -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf cXq vuL dom @@ -104316,19 +103575,19 @@ abe abe csP csP -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm fiK fiK don @@ -105124,60 +104383,60 @@ mAJ mAJ vUp nkV -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf utB tOo bZB @@ -105189,55 +104448,55 @@ rpk pWj tOo qtO -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf tlq -wdb -lzH +xhf +hiC rNK -lzH +hiC fjq nPu -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf tlq pjU qyy @@ -105338,8 +104597,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -105360,8 +104619,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi fDu lRR lRR @@ -105381,32 +104640,32 @@ mBK mBK mfN mfN -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm eYp eYp eYp eYp -sbG -sbG -sbG +xBm +xBm +xBm eYp eYp eYp @@ -105417,24 +104676,24 @@ hUU eYp eYp eYp -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm gRZ bTp ycr @@ -105446,56 +104705,56 @@ cCg gRZ gRZ gRZ -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm tlq -sbG -sbG +xBm +xBm rNK rNK rNK tlq sMa tlq -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm cZN cZN tmT @@ -105595,8 +104854,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -105617,8 +104876,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK lRR @@ -105852,8 +105111,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -105874,8 +105133,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -106109,8 +105368,8 @@ psw psw lBh rNK -euP -juL +lez +fwi rNK abE cRv @@ -106131,8 +105390,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -106366,8 +105625,8 @@ iKu cdV lBh ciC -euP -juL +lez +fwi rNK cRv cRv @@ -106388,8 +105647,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -106403,8 +105662,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -106525,7 +105784,7 @@ rNK rNK rNK rNK -vDy +vxH cZN jVU qyy @@ -106645,8 +105904,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -106660,8 +105919,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -106782,7 +106041,7 @@ rNK rNK rNK rNK -vDy +vxH cZN gAG cZN @@ -106902,8 +106161,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -106917,8 +106176,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -107039,9 +106298,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -107159,8 +106418,8 @@ cRv rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -107174,8 +106433,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -107296,9 +106555,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -107416,8 +106675,8 @@ cRv rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -107431,8 +106690,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -107553,9 +106812,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -107673,8 +106932,8 @@ cRv rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -107688,8 +106947,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -107810,9 +107069,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -107930,8 +107189,8 @@ cRv rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -108067,9 +107326,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -108139,27 +107398,27 @@ abd abd mBD abY -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -sbG +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xBm xbm mBD aIR @@ -108324,9 +107583,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -108396,27 +107655,27 @@ abe abe xIX xIX -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm csP ciC ciC @@ -108581,9 +107840,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -108838,9 +108097,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -109095,9 +108354,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -109223,8 +108482,8 @@ dom imT vuL jQH -wdb -wdb +xhf +xhf led vUp lPs @@ -109352,9 +108611,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -109418,8 +108677,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -109480,8 +108739,8 @@ ucE gnu gnu fiK -sbG -sbG +xBm +xBm iCE iCE iCE @@ -109609,9 +108868,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -109675,8 +108934,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -109866,9 +109125,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -109932,8 +109191,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -110123,9 +109382,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -110189,8 +109448,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -110380,9 +109639,9 @@ rNK rNK rNK rNK -vDy -euP -juL +vxH +lez +fwi rNK rNK rNK @@ -110446,8 +109705,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -110638,8 +109897,8 @@ rNK rNK rNK ylg -euP -juL +lez +fwi rNK rNK rNK @@ -110703,8 +109962,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -110895,8 +110154,8 @@ rNK rNK rNK ylg -euP -juL +lez +fwi rNK rNK rNK @@ -110960,8 +110219,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -111153,7 +110412,7 @@ rNK cTh rLA bYF -juL +fwi rNK rNK rNK @@ -111217,8 +110476,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -111474,8 +110733,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -111731,8 +110990,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -111988,8 +111247,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -112245,8 +111504,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -112502,8 +111761,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -112759,8 +112018,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -113016,8 +112275,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -113273,8 +112532,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -113530,8 +112789,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -113787,8 +113046,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -113981,8 +113240,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -114044,8 +113303,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -114238,8 +113497,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -114301,8 +113560,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -114495,8 +113754,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -114558,8 +113817,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK cRv @@ -114752,8 +114011,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -114815,8 +114074,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK cRv @@ -115009,8 +114268,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -115072,8 +114331,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK cRv @@ -115266,8 +114525,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -115329,8 +114588,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK cRv @@ -115523,8 +114782,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -115586,8 +114845,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK afd @@ -115780,8 +115039,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -115843,8 +115102,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK fxt @@ -115876,7 +115135,7 @@ rZn rZn rZn rZn -rZn +wwh hRW owb rZn @@ -116037,8 +115296,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK lRR @@ -116100,8 +115359,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK pGX @@ -116294,8 +115553,8 @@ cdb oUM rNK rNK -euP -juL +lez +fwi rNK ayb lRR @@ -116357,8 +115616,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK pGX @@ -116551,8 +115810,8 @@ uyl tDF uyl uyl -euP -juL +lez +fwi rNK rNK lRR @@ -116614,8 +115873,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK pGX @@ -116808,8 +116067,8 @@ cCw wVS yex uyl -euP -juL +lez +fwi rNK lRR lRR @@ -116871,8 +116130,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK yed @@ -117065,8 +116324,8 @@ vRR sAB ipr uyl -euP -juL +lez +fwi rNK lRR jft @@ -117128,8 +116387,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK cRv afd @@ -117322,8 +116581,8 @@ cCc cCw wzl uyl -euP -juL +lez +fwi rNK lRR jft @@ -117385,8 +116644,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK cRv abW @@ -117579,8 +116838,8 @@ vpB cCw baa uyl -euP -juL +lez +fwi rNK lRR jft @@ -117642,8 +116901,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK cRv abW @@ -117836,8 +117095,8 @@ vpB cCw hJz uyl -euP -juL +lez +fwi rNK lRR lRR @@ -117899,8 +117158,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv cRv abW @@ -118093,8 +117352,8 @@ nGd nXw oqO uyl -euP -juL +lez +fwi rNK rNK rNK @@ -118156,8 +117415,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv cRv abW @@ -118350,8 +117609,8 @@ rBg gGM gKO pon -euP -juL +lez +fwi rNK rNK rNK @@ -118413,8 +117672,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK cRv abW @@ -118607,8 +117866,8 @@ pAr vlu qvk pon -euP -juL +lez +fwi rNK rNK rNK @@ -118670,8 +117929,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK cRv cRv @@ -118864,8 +118123,8 @@ oqN hmk vDm pon -euP -juL +lez +fwi rNK rNK rNK @@ -118927,8 +118186,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK cRv @@ -119121,8 +118380,8 @@ gYT pqm hiu pon -euP -juL +lez +fwi rNK rNK rNK @@ -119184,8 +118443,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK cRv @@ -119378,8 +118637,8 @@ pon pon pon pon -euP -juL +lez +fwi rNK rNK rNK @@ -119441,8 +118700,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -119635,8 +118894,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -119892,8 +119151,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -120149,8 +119408,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -120406,8 +119665,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -120663,8 +119922,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -120920,8 +120179,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -121177,8 +120436,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -121434,8 +120693,8 @@ cdb rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -121691,8 +120950,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -121948,8 +121207,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -122017,16 +121276,16 @@ utt utt utt utt -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm shU lEz anW @@ -122205,8 +121464,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -122462,8 +121721,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -122719,8 +121978,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -122976,8 +122235,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -123233,8 +122492,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -123336,7 +122595,7 @@ pNo mmS ksl ksl -qSK +xYV aqC aqC fQm @@ -123490,8 +122749,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -123747,8 +123006,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -124004,8 +123263,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -124261,8 +123520,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -124518,8 +123777,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -124775,8 +124034,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -125032,8 +124291,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -125289,8 +124548,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -125546,8 +124805,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -125803,8 +125062,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -126060,8 +125319,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -126317,8 +125576,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -126574,8 +125833,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -126831,8 +126090,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -127088,8 +126347,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -127168,8 +126427,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -127345,8 +126604,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -127425,8 +126684,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -127602,8 +126861,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -127682,8 +126941,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -127859,8 +127118,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -127939,8 +127198,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -128116,8 +127375,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -128196,8 +127455,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -128373,8 +127632,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -128453,8 +127712,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -128630,8 +127889,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -128710,8 +127969,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -128887,8 +128146,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -128967,8 +128226,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -129144,8 +128403,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -129224,8 +128483,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -129401,8 +128660,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -129481,8 +128740,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -129658,8 +128917,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -129738,8 +128997,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -129915,8 +129174,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -129995,8 +129254,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -130172,8 +129431,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -130252,8 +129511,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -130429,8 +129688,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -130509,8 +129768,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv abW abW @@ -130686,8 +129945,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -130766,8 +130025,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv cRv abW @@ -130943,8 +130202,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -131023,8 +130282,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK cRv abW @@ -131200,8 +130459,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -131280,8 +130539,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK cRv abW @@ -131457,8 +130716,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -131537,8 +130796,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv cRv abW @@ -131714,8 +130973,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -131794,8 +131053,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi cRv cRv cRv @@ -131971,8 +131230,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -132051,8 +131310,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi abE abE abE @@ -132228,8 +131487,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -132308,8 +131567,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK abE @@ -132485,8 +131744,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -132565,8 +131824,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -132742,8 +132001,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -132822,8 +132081,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -132999,8 +132258,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -133256,8 +132515,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -133513,8 +132772,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -133770,8 +133029,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -134027,8 +133286,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -134284,8 +133543,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -134541,8 +133800,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -134798,8 +134057,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -135055,8 +134314,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -135312,8 +134571,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -135569,8 +134828,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -135826,8 +135085,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -135910,8 +135169,8 @@ rNK rNK rNK rNK -ebk -juL +aRh +fwi rNK rNK rNK @@ -136083,8 +135342,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -136167,8 +135426,8 @@ rNK rNK rNK rNK -ebk -juL +aRh +fwi rNK rNK rNK @@ -136340,8 +135599,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -136424,8 +135683,8 @@ rNK rNK rNK rNK -ebk -juL +aRh +fwi rNK rNK rNK @@ -136597,8 +135856,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -136681,8 +135940,8 @@ ahF ahF rNK rNK -ebk -juL +aRh +fwi rNK rNK rNK @@ -136854,8 +136113,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -136939,7 +136198,7 @@ aaf ahF ahF pFc -juL +fwi rNK rNK wIp @@ -137111,8 +136370,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -137196,7 +136455,7 @@ ahF ahF ahF aaf -juL +fwi rNK rNK wIp @@ -137368,8 +136627,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -137453,7 +136712,7 @@ aaf aaf aaf pFc -juL +fwi rNK wIp wIp @@ -137625,8 +136884,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -137710,7 +136969,7 @@ aaf aaf ahF pFc -juL +fwi rNK wIp rRM @@ -137882,8 +137141,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -137967,7 +137226,7 @@ aaf aaf ahF aaf -juL +fwi rNK wIp rRM @@ -138139,8 +137398,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -138224,7 +137483,7 @@ aaf aaf aaf aaf -juL +fwi rNK wIp rRM @@ -138396,8 +137655,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -138481,7 +137740,7 @@ aaf aaf aaf aaf -juL +fwi rNK wIp rRM @@ -138653,8 +137912,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -138738,7 +137997,7 @@ aaf aaf aaf aaf -juL +fwi wIp wIp rRM @@ -138910,8 +138169,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -138995,7 +138254,7 @@ aaf aaf aaf aaf -juL +fwi wIp wIp atJ @@ -139167,8 +138426,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -139424,8 +138683,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK ayb rNK @@ -139681,8 +138940,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK jft ayb @@ -139938,8 +139197,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -140195,8 +139454,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -140452,8 +139711,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -140709,8 +139968,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -140966,8 +140225,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -141223,8 +140482,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -141480,8 +140739,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -141737,8 +140996,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -141994,8 +141253,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -142251,8 +141510,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -142508,8 +141767,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -142765,8 +142024,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -143022,8 +142281,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -143107,7 +142366,7 @@ aaf aaf aaf pFc -juL +fwi rNK ahF mmW @@ -143279,8 +142538,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -143364,7 +142623,7 @@ aaf aaf aaf pFc -juL +fwi rNK ahF mmW @@ -143504,7 +142763,7 @@ eJd rrt hNb pLr -daX +wxE djw sla xMQ @@ -143536,8 +142795,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -143620,8 +142879,8 @@ aaf aaf ahF ahF -euP -juL +lez +fwi rNK ahF aaf @@ -143793,8 +143052,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -143877,8 +143136,8 @@ aaf ahF aaf ahF -euP -juL +lez +fwi rNK ahF ahF @@ -144050,8 +143309,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -144134,8 +143393,8 @@ ahF ahF ahF aaf -euP -juL +lez +fwi rNK rzh rzh @@ -144307,8 +143566,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -144391,8 +143650,8 @@ rNK ahF rNK rNK -euP -juL +lez +fwi rzh rzh lCC @@ -144564,8 +143823,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -144821,8 +144080,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -145078,8 +144337,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -145302,7 +144561,7 @@ imG qds mJk iYL -dJG +oxO sSf nYM jUc @@ -145335,8 +144594,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -145592,8 +144851,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -145849,8 +145108,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -146106,8 +145365,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -146363,8 +145622,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -146620,8 +145879,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -146877,8 +146136,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -147028,7 +146287,7 @@ qGo bhp qCT dzw -bjL +mbr bkI cOO cPa @@ -147134,8 +146393,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -147391,8 +146650,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -147648,8 +146907,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -147732,8 +146991,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rzh rzh @@ -147905,8 +147164,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -147989,8 +147248,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK lzH @@ -148162,8 +147421,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -148246,8 +147505,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK lzH @@ -148419,8 +147678,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -148503,8 +147762,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK lzH @@ -148570,7 +147829,7 @@ kuE gFg itf dzy -rrV +cvT rRb sin syk @@ -148676,8 +147935,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -148760,8 +148019,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK lzH @@ -148933,8 +148192,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -149017,8 +148276,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK lzH @@ -149190,8 +148449,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -149274,8 +148533,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK lzH @@ -149447,8 +148706,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -149531,8 +148790,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK lzH @@ -149704,8 +148963,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK jft @@ -149788,7 +149047,7 @@ rNK rNK rNK rNK -euP +lez apY rNK rzh @@ -149961,8 +149220,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -150045,7 +149304,7 @@ rNK rNK rNK rNK -euP +lez aqM brX brX @@ -150151,10 +149410,10 @@ hFn aZN aZM aZM -gEv -fMl +aZM fMl fMl +aZN lzH lzH lzH @@ -150201,25 +149460,25 @@ rNK lzH ylg lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH rNK -euP -juL +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +lez +fwi rNK rNK rNK @@ -150302,7 +149561,7 @@ rNK rNK rNK rNK -euP +lez aqm rzh rzh @@ -150403,12 +149662,12 @@ vHH swV bbw itf -kBm -ahc -aZD -vFQ +dCS +xAV +gFg +gFg lBr -wYO +aZM aZM fMl aZu @@ -150456,27 +149715,27 @@ rNK rNK rNK lzH -pOG -cBw -cBw -cBw -cBw -cBw -cBw -cBw -cBw -cBw -cBw -cBw -cBw -cBw -cBw -cBw -mbI +ylg lzH rNK -euP -juL +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +lez +fwi rNK rNK rNK @@ -150559,8 +149818,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rzh rzh lCC @@ -150663,10 +149922,10 @@ itf dCS xAV ozK +gFg +gFg aZM aZM -dCS -smT fMl aZu rNK @@ -150713,27 +149972,27 @@ rNK rNK rNK lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH -lzH ylg lzH rNK -euP -juL +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +lez +fwi rNK rNK rNK @@ -150816,8 +150075,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rzh rzh lCC @@ -150922,8 +150181,8 @@ xAV aLH aZM aZM -utF -fMl +aZM +aZM fMl aZu rNK @@ -150969,6 +150228,9 @@ rNK rNK rNK rNK +lzH +ylg +lzH rNK rNK rNK @@ -150985,12 +150247,9 @@ rNK rNK rNK rNK -lzH -ylg -lzH rNK -euP -juL +lez +fwi rNK rNK rNK @@ -151073,8 +150332,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rzh lCC lCC @@ -151179,9 +150438,9 @@ egq aLH aZM fMl -utF fMl -aZN +fMl +fMl aZM rNK rNK @@ -151226,6 +150485,9 @@ rNK rNK rNK rNK +lzH +ylg +lzH rNK rNK rNK @@ -151242,12 +150504,9 @@ rNK rNK rNK rNK -lzH -ylg -lzH rNK -euP -juL +lez +fwi rNK rNK rNK @@ -151330,8 +150589,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rzh rzh lCC @@ -151436,9 +150695,9 @@ qgX aZM fMl fMl -vDy rNK -lzH +rNK +rNK rNK rNK rNK @@ -151469,7 +150728,6 @@ rNK rNK rNK rNK -lGk rNK rNK rNK @@ -151484,6 +150742,9 @@ rNK rNK rNK rNK +lzH +ylg +lzH rNK rNK rNK @@ -151499,13 +150760,11 @@ rNK rNK rNK rNK -lzH -ylg -lzH rNK -cBe -uCU -cBe +rNK +lez +fwi +rNK rNK rNK rNK @@ -151587,8 +150846,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rzh lCC @@ -151693,9 +150952,9 @@ fMl fMl fMl rNK -vDy rNK -lzH +rNK +rNK rNK rNK rNK @@ -151740,6 +150999,9 @@ rNK rNK rNK rNK +lzH +ylg +lzH rNK rNK rNK @@ -151756,13 +151018,10 @@ rNK rNK rNK rNK -cBe -sJv -jwa -cBe -cBe -akY -cBe +rNK +lez +fwi +rNK rNK rNK ayb @@ -151844,8 +151103,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -151950,9 +151209,9 @@ rNK rNK rNK rNK -vDy rNK -lzH +rNK +rNK rNK rNK rNK @@ -151997,6 +151256,11 @@ rNK rNK rNK rNK +lzH +ylg +lzH +rNK +rNK rNK rNK rNK @@ -152012,14 +151276,9 @@ rNK rNK rNK rNK +lez +fwi rNK -cBe -wEk -fyo -kxy -xcn -bqd -cBe rNK rNK lRR @@ -152101,8 +151360,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -152207,9 +151466,7 @@ rNK rNK rNK rNK -vDy rNK -lzH rNK rNK rNK @@ -152256,6 +151513,9 @@ rNK rNK rNK rNK +lzH +ylg +lzH rNK rNK rNK @@ -152270,13 +151530,12 @@ rNK rNK rNK rNK -cBe -wYi -cBe -eCe -hPj -qyY -fyo +rNK +rNK +rNK +lez +fwi +rNK rNK lRR lRR @@ -152358,8 +151617,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rzh rzh @@ -152459,14 +151718,7 @@ rtW itf gSQ itf -aZN -lzH -lzH -lzH -gEl -ehH -lSP -lzH +fMl rNK rNK rNK @@ -152518,6 +151770,9 @@ rNK rNK rNK rNK +lzH +ylg +lzH rNK rNK rNK @@ -152526,14 +151781,18 @@ rNK rNK rNK rNK -fyo -cBe -iDO -oZn -gTd -rdv -jVa -cBe +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +lez +fwi +rNK rNK lRR jft @@ -152615,8 +151874,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rzh lCC @@ -152720,10 +151979,6 @@ fMl fMl rNK rNK -gEl -rVH -gEl -lzH rNK rNK rNK @@ -152772,6 +152027,9 @@ rNK rNK rNK rNK +lzH +ylg +lzH rNK rNK rNK @@ -152783,14 +152041,15 @@ rNK rNK rNK rNK -cBe -lua -pjN -jhp -pUe -rUX -rZc -cBe +rNK +rNK +rNK +rNK +rNK +rNK +lez +fwi +rNK jft ayb lRR @@ -152872,8 +152131,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rzh rzh lCC @@ -152977,12 +152236,6 @@ sTj fMl rNK rNK -gEl -lra -gEl -lJs -lJs -gEl rNK rNK rNK @@ -153031,6 +152284,13 @@ rNK rNK rNK rNK +lzH +ylg +lzH +rNK +rNK +rNK +rNK rNK rNK rNK @@ -153039,15 +152299,14 @@ rNK rNK rNK rNK -cBe -cBe -ilq -gTd -tRT -jVa -cBe -cBe -cBe +rNK +rNK +rNK +rNK +rNK +lez +fwi +rNK rNK jft rNK @@ -153129,8 +152388,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rzh lCC lCC @@ -153234,75 +152493,6 @@ gvx fMl rNK rNK -gEl -sGf -lhU -jtJ -pmQ -nll -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -qBS -mxA -dYn -wAE -rUX -rZc -cBe rNK rNK rNK @@ -153334,6 +152524,75 @@ rNK rNK rNK rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +lzH +ylg +lzH +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +lez +fwi +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK "} (218,1,1) = {" rNK @@ -153386,8 +152645,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK lCC lCC @@ -153491,75 +152750,6 @@ hMs fMl rNK rNK -gEl -oJD -xxs -jzL -gEl -gEl -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -cBe -cBe -cBe -fyo -fyo -fyo -cBe rNK rNK rNK @@ -153591,6 +152781,75 @@ rNK rNK rNK rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +lzH +ylg +lzH +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +lez +fwi +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK "} (219,1,1) = {" rNK @@ -153643,8 +152902,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -153748,11 +153007,6 @@ kwq fMl rNK rNK -gEl -eNW -xxs -sGo -gEl rNK rNK rNK @@ -153798,12 +153052,15 @@ rNK rNK rNK rNK +rNK +rNK +rNK +cBe +sJv +jwa lRR lRR lRR -lRR -rNK -rNK rNK rNK rNK @@ -153818,6 +153075,8 @@ rNK rNK rNK rNK +lez +fwi rNK rNK rNK @@ -153900,8 +153159,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -154005,11 +153264,6 @@ jsE bDv rNK rNK -gEl -gEl -wYo -sGo -gEl rNK rNK rNK @@ -154054,8 +153308,13 @@ rNK rNK rNK rNK -lRR -lRR +rNK +rNK +rNK +rNK +cBe +wYi +fyo jft jft lRR @@ -154073,8 +153332,8 @@ rNK rNK rNK rNK -rNK -rNK +lez +fwi rNK rNK rNK @@ -154157,8 +153416,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -154263,10 +153522,6 @@ bDv rNK rNK rNK -lJs -tTD -sGo -gEl rNK rNK rNK @@ -154310,9 +153565,13 @@ rNK rNK rNK rNK -lRR -lRR -jft +rNK +rNK +rNK +rNK +cBe +wYi +fyo jft jft jft @@ -154330,8 +153589,8 @@ rNK rNK rNK rNK -rNK -rNK +lez +fwi rNK rNK rNK @@ -154414,8 +153673,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -154520,10 +153779,9 @@ bDv rNK rNK rNK -lJs -xxs -sGo -gEl +rNK +rNK +rNK rNK rNK rNK @@ -154568,13 +153826,14 @@ rNK rNK rNK lRR +cBe +fSN +fyo jft -jft -jft -jft -jft -jft -jft +fyo +fyo +fyo +fyo lRR lRR lRR @@ -154587,8 +153846,8 @@ rNK rNK rNK rNK -rNK -rNK +lez +fwi rNK rNK rNK @@ -154671,8 +153930,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -154777,10 +154036,10 @@ fMl rNK rNK rNK -lJs -rec -sGo -gEl +rNK +rNK +rNK +rNK rNK rNK rNK @@ -154824,15 +154083,15 @@ rNK rNK rNK lRR -lRR -jft -jft -jft -jft -jft -jft jft +fEe +fyo jft +fyo +lqC +tqc +olr +fyo jft lRR lRR @@ -154844,8 +154103,8 @@ rNK rNK rNK rNK -rNK -rNK +lez +fwi rNK rNK rNK @@ -154928,8 +154187,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -155034,10 +154293,10 @@ fMl rNK rNK rNK -gEl -pNi -sGo -lJs +rNK +rNK +rNK +rNK rNK rNK rNK @@ -155082,14 +154341,14 @@ rNK lRR lRR jft -jft -jft -jft -jft -jft -jft -jft -jft +dFD +fBr +btj +fyo +lHw +aIi +lyl +fyo jft jft lRR @@ -155101,8 +154360,8 @@ rNK rNK rNK rNK -rNK -rNK +lez +fwi rNK rNK rNK @@ -155185,8 +154444,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -155291,10 +154550,10 @@ rNK rNK rNK rNK -gEl -yhs -sGo -gEl +rNK +rNK +rNK +rNK rNK rNK rNK @@ -155339,13 +154598,13 @@ lRR lRR jft jft +vfN jft jft -jft -jft -jft -jft -jft +fyo +rdl +fyo +fyo jft jft jft @@ -155358,8 +154617,8 @@ rNK rNK rNK rNK -rNK -rNK +lez +fwi rNK rNK rNK @@ -155442,8 +154701,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -155533,12 +154792,12 @@ aZM aZM uBA gpV -eQu +vHH aLH mNd gFg vHH -xiQ +fMl fMl rNK rNK @@ -155548,10 +154807,10 @@ rNK rNK rNK rNK -gEl -xxs -sGo -gEl +rNK +rNK +rNK +rNK rNK rNK rNK @@ -155596,28 +154855,28 @@ lRR jft jft jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft +vfN +rUd +wTe +lHw +bwl +fyo +vap +fPZ +vap +rBc +wuV jft lRR lRR lRR lRR +lRR +lRR rNK -rNK -rNK -rNK -rNK -rNK +cBe +uCU +cBe rNK rNK rNK @@ -155699,8 +154958,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -155788,14 +155047,18 @@ kZs aZM aZM aZM -edM +aUA oKi -vpA +aLH aLH gBM ngw kAz -xiQ +fMl +rNK +rNK +rNK +rNK rNK rNK rNK @@ -155805,10 +155068,6 @@ rNK rNK rNK rNK -gEl -hJX -sGo -gEl rNK rNK rNK @@ -155852,29 +155111,29 @@ rNK lRR jft jft +tgW +tTF +ptT +lHw +lHw +rQM +fyo +dhq +dhq +dhq +dhq +kcc +fyo jft jft jft jft jft jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -lRR -lRR -lRR -rNK -rNK -rNK -rNK +cBe +cBe +akY +cBe rNK rNK rNK @@ -155956,8 +155215,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -156045,14 +155304,18 @@ vZg vZg kZs kZs -kZs -aUA +ksG +hiA hUN kZs dQj -xiQ -xiQ -xiQ +dQj +cHb +fMl +rNK +rNK +rNK +rNK rNK rNK rNK @@ -156062,10 +155325,6 @@ rNK rNK rNK rNK -gEl -wYo -sGo -gEl rNK rNK rNK @@ -156110,28 +155369,28 @@ lRR jft jft jft +aBg +lHw +lHw +lHw +lHw +lHw +lHw +lHw +lHw +lHw +lHw +kxy +jFx +lJM +fyo jft jft jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -lRR -lRR -lRR -rNK -rNK +bsy +xcn +bqd +cBe rNK rNK rNK @@ -156213,8 +155472,8 @@ rNK rNK rNK rNK -euP -juL +lez +fwi rNK rNK rNK @@ -156301,40 +155560,15 @@ fMl vZg ohc mlu -vbl xcF +xbH pyz lCV -kZm -kzK -rNK -rNK -fMl -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -gEl -yhs -sGo -gEl -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK +dOa +lzf +lzf +lzf +qJG rNK rNK rNK @@ -156363,30 +155597,6 @@ rNK rNK rNK rNK -lRR -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -lRR rNK rNK rNK @@ -156412,6 +155622,55 @@ rNK rNK rNK rNK +lRR +jft +jft +jft +chW +lHw +lHw +ptT +ptT +ptT +ptT +ptT +ptT +ptT +lHw +lHw +lHw +rQM +fyo +jft +jft +jft +eCe +hPj +qyY +fyo +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK +rNK rNK rNK rNK @@ -156565,6 +155824,7 @@ gwO dNV kzK dQj +dQj rNK rNK rNK @@ -156576,10 +155836,6 @@ rNK rNK rNK rNK -gEl -gEl -pLe -gEl rNK rNK rNK @@ -156620,32 +155876,35 @@ rNK rNK rNK rNK -lRR -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -lRR -lRR -lRR +rNK +rNK +rNK +cBe +cBe +cBe +fyo +rWp +gTd +gTd +gTd +gTd +gTd +gTd +gTd +gTd +cvV +cvV +gTd +fXl +fXl +fXl +fXl +fXl +fXl +gTd +rdv +jVa +cBe rNK rNK rNK @@ -156820,89 +156079,89 @@ rCJ gZc exL kWC +rVj wxn rBn -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -sbG -dvc -pmQ -tBd -gEl -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -dcv -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -lRR -lRR -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -lRR +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +qBS +mxA +dYn +udx +rUX +rUX +cMv +rUX +rUX +rUX +kTa +cMv +rUX +rUX +rUX +rUX +cMv +rUX +rUX +rUX +rUX +cMv +rUX +rUX +rZc +cBe lRR rNK rNK @@ -157072,94 +156331,94 @@ lUv gTx mcX knc -sUG +kZm kZs lUv lUv lUv dQj dQj -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -gEl -gEl -gEl -gEl -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK -rNK +dQj rNK -lRR -lRR -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft -jft +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +fyo +fyo +fyo +fyo +fyo +fyo +fyo +fyo jft +fyo +fyo +fyo +fyo jft jft +fyo +fyo +fyo +fyo +fyo +fyo +fyo +fyo +cBe +cBe +cBe lRR rNK rNK @@ -157393,8 +156652,8 @@ rNK rNK rNK rNK -lRR -lRR +jft +jft jft jft jft @@ -157504,83 +156763,83 @@ asX pga auy awo -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -rNK -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb -wdb +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +rNK +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf +xhf ycO wxn cNN @@ -157761,83 +157020,83 @@ aqT aqT aoR aoR -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -rNK -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG -sbG +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +rNK +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm +xBm dQj dQj dQj diff --git a/_maps/map_files/cyberiad/cyberiad.dmm b/_maps/map_files/cyberiad/cyberiad.dmm index 959c1ccbfcc3..6fd1463aa6d9 100644 --- a/_maps/map_files/cyberiad/cyberiad.dmm +++ b/_maps/map_files/cyberiad/cyberiad.dmm @@ -108,7 +108,7 @@ }, /area/station/security/armory/secure) "abP" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -393,7 +393,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "adb" = ( /obj/structure/rack, /obj/item/storage/lockbox/mindshield, @@ -423,7 +423,7 @@ }, /area/station/security/armory/secure) "adh" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -531,13 +531,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/item/radio/intercom/department/security{ + pixel_y = -28 + }, /turf/simulated/floor/plasteel, /area/station/security/range) "adE" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -556,7 +556,7 @@ /turf/simulated/floor/plasteel, /area/station/security/range) "adH" = ( -/obj/machinery/suit_storage_unit/security/hos, +/obj/machinery/suit_storage_unit/security/hos/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -776,7 +776,7 @@ /area/station/security/main) "aeC" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/hos, +/obj/item/reagent_containers/drinks/mug/hos, /turf/simulated/floor/carpet, /area/station/command/office/hos) "aeD" = ( @@ -804,7 +804,7 @@ "aeF" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "aeG" = ( /obj/structure/cable{ d1 = 4; @@ -812,7 +812,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "aeH" = ( /obj/machinery/computer/secure_data{ dir = 8 @@ -821,7 +821,7 @@ dir = 5; icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "aeI" = ( /obj/structure/chair/office/dark{ dir = 4 @@ -835,7 +835,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "aeP" = ( /obj/machinery/light/small{ dir = 1 @@ -965,7 +965,7 @@ /area/station/command/office/hos) "afa" = ( /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "afc" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable{ @@ -974,7 +974,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "afe" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -997,12 +997,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "west bump Important Area"; - pixel_x = -24 - }, +/obj/machinery/power/apc/important/directional/west, /obj/machinery/photocopier, /turf/simulated/floor/plasteel{ dir = 8; @@ -1038,11 +1033,16 @@ /obj/machinery/light{ dir = 4 }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "afp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1053,8 +1053,13 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "afq" = ( /turf/simulated/floor/carpet/black, /area/station/command/meeting_room) @@ -1124,11 +1129,7 @@ dir = 1 }, /obj/effect/landmark/start/mime, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -1151,14 +1152,14 @@ icon_state = "4-8" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/all/security/doors, /turf/simulated/floor/plasteel{ icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "afV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1181,14 +1182,14 @@ icon_state = "2-8" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/all/security/doors, /turf/simulated/floor/plasteel{ icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "afX" = ( /obj/structure/grille, /turf/simulated/floor/plating/airless, @@ -1204,7 +1205,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "ago" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -1356,11 +1357,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/camera{ c_tag = "Brig Main Hall Center" }, @@ -1573,10 +1570,6 @@ }, /area/station/security/armory/secure) "ahQ" = ( -/obj/machinery/alarm{ - name = "north bump"; - pixel_y = 24 - }, /obj/machinery/camera{ c_tag = "Brig Main Hall East 1" }, @@ -1636,11 +1629,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump Important Area"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -2693,11 +2682,7 @@ }, /area/station/security/brig) "akF" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -3086,11 +3071,11 @@ }, /area/station/security/prison/cell_block/A) "alS" = ( -/obj/structure/closet, /obj/item/radio/intercom{ name = "west bump"; pixel_x = -28 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -3108,17 +3093,17 @@ }, /area/station/security/armory/secure) "ama" = ( -/obj/structure/closet, /obj/structure/window/reinforced{ dir = 8 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/security/evidence) "amb" = ( -/obj/structure/closet, /obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -3138,10 +3123,6 @@ /area/station/security/main) "amd" = ( /obj/structure/closet/secure_closet/security, -/obj/machinery/alarm{ - name = "north bump"; - pixel_y = 24 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" @@ -3329,6 +3310,11 @@ }, /obj/item/flash, /obj/effect/turf_decal/delivery/red/hollow, +/obj/machinery/light_switch{ + name = "north bump"; + pixel_y = 24; + pixel_x = 10 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" @@ -3502,7 +3488,7 @@ /turf/simulated/floor/plasteel{ icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "ann" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, @@ -4249,7 +4235,6 @@ /turf/simulated/floor/plasteel, /area/station/security/processing) "apd" = ( -/obj/structure/closet, /obj/machinery/alarm{ dir = 4; name = "west bump"; @@ -4258,6 +4243,7 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -4448,10 +4434,7 @@ /obj/item/reagent_containers/spray/pepper{ pixel_y = -4 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -4558,10 +4541,7 @@ /area/station/security/storage) "apU" = ( /obj/structure/table/wood, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -4701,12 +4681,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -4719,12 +4694,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aqQ" = ( -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/critical/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -5076,11 +5046,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "arK" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -5933,7 +5899,7 @@ dir = 8; icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "atO" = ( /obj/machinery/door/airlock/public/glass{ name = "Prison Forestry" @@ -6157,7 +6123,7 @@ dir = 1; icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "auB" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plating, @@ -6170,7 +6136,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "auF" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -6179,7 +6145,7 @@ }, /area/station/security/lobby) "auI" = ( -/obj/structure/closet, +/obj/structure/closet/secure_closet/evidence, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -6197,11 +6163,7 @@ }, /area/station/security/lobby) "auM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -6215,11 +6177,7 @@ }, /area/station/security/lobby) "auR" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -6294,13 +6252,9 @@ dir = 4; icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "auW" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable, /turf/simulated/floor/plasteel, /area/station/security/processing) @@ -6804,7 +6758,7 @@ dir = 5 }, /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "awC" = ( /obj/structure/chair, /obj/structure/cable{ @@ -7302,7 +7256,7 @@ /obj/item/radio{ pixel_x = 5 }, -/obj/item/reagent_containers/food/drinks/mug/sec, +/obj/item/reagent_containers/drinks/mug/sec, /turf/simulated/floor/plating, /area/station/maintenance/fore) "axX" = ( @@ -7392,7 +7346,7 @@ dir = 8; icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "ayp" = ( /obj/structure/chair{ dir = 4 @@ -7472,7 +7426,7 @@ pixel_y = 7 }, /obj/item/pen/multi, -/obj/item/reagent_containers/food/drinks/flask/detflask, +/obj/item/reagent_containers/drinks/flask/detflask, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -7563,7 +7517,7 @@ /obj/machinery/ai_status_display{ pixel_y = -32 }, -/obj/item/reagent_containers/food/drinks/mug/sec, +/obj/item/reagent_containers/drinks/mug/sec, /obj/structure/table, /turf/simulated/floor/plasteel{ dir = 8; @@ -7837,11 +7791,7 @@ }, /area/station/legal/lawoffice) "azB" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -8032,7 +7982,7 @@ dir = 1; icon_state = "redcorner" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "azW" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 5"; @@ -8482,11 +8432,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -8557,7 +8503,7 @@ "aBA" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "aBG" = ( /obj/structure/cable{ d1 = 4; @@ -8579,7 +8525,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "aBI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -9027,7 +8973,7 @@ /area/station/maintenance/abandonedbar) "aCW" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/patron, +/obj/item/reagent_containers/drinks/bottle/patron, /obj/item/storage/fancy/cigarettes/cigpack_shadyjims, /turf/simulated/floor/plating, /area/station/maintenance/abandonedbar) @@ -9163,11 +9109,7 @@ /area/station/hallway/primary/fore) "aDm" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -9282,7 +9224,7 @@ /obj/item/clothing/suit/wcoat, /obj/item/clothing/suit/blacktrenchcoat, /obj/item/clothing/under/suit/tan, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "aDD" = ( @@ -9469,11 +9411,7 @@ name = "west bump"; pixel_x = -24 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -9665,16 +9603,6 @@ /obj/structure/chair, /turf/simulated/floor/wood, /area/station/maintenance/fpmaint2) -"aEM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - id_tag = "evamaint_door_int"; - locked = 1; - name = "EVA Internal Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint2) "aEN" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, @@ -9762,8 +9690,8 @@ /area/station/maintenance/abandonedbar) "aFb" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/condiment/saltshaker, +/obj/item/reagent_containers/condiment/peppermill, /turf/simulated/floor/plating, /area/station/maintenance/abandonedbar) "aFc" = ( @@ -9807,10 +9735,7 @@ /obj/structure/table, /obj/item/gavelblock, /obj/item/gavelhammer, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "cult" @@ -9903,6 +9828,12 @@ name = "south bump"; pixel_y = -28 }, +/obj/machinery/requests_console{ + department = "Internal Affairs Office"; + name = "Magistrate Requests Console"; + pixel_x = 30; + departmentType = 5 + }, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -10024,10 +9955,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump Engineering"; - pixel_x = -24; +/obj/machinery/power/apc/directional/west{ shock_proof = 1 }, /turf/simulated/floor/plating, @@ -10222,6 +10150,11 @@ /area/station/legal/courtroom) "aGu" = ( /obj/item/kirbyplants, +/obj/machinery/requests_console{ + department = "Internal Affairs Office"; + name = "Courtroom Requests Console"; + pixel_x = 30 + }, /turf/simulated/floor/wood, /area/station/legal/courtroom) "aGw" = ( @@ -10327,11 +10260,7 @@ }, /area/station/security/detective) "aGG" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -10368,9 +10297,6 @@ d2 = 4; icon_state = "0-4" }, -/obj/structure/sign/vacuum/external{ - pixel_y = 32 - }, /obj/machinery/power/solar_control{ name = "Fore Starboard Solar Control" }, @@ -10395,6 +10321,9 @@ dir = 8 }, /obj/machinery/atmospherics/portable/canister/air, +/obj/structure/sign/vacuum/external{ + pixel_y = 32 + }, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "aGX" = ( @@ -10505,7 +10434,7 @@ /area/station/maintenance/fpmaint) "aHx" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /obj/item/radio/intercom{ name = "west bump"; pixel_x = -28 @@ -10534,7 +10463,7 @@ id = "Courtroom" }, /turf/simulated/floor/plating, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aHB" = ( /obj/structure/chair{ dir = 8 @@ -10550,7 +10479,7 @@ dir = 5; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aHC" = ( /obj/structure/chair{ dir = 8 @@ -10562,14 +10491,14 @@ dir = 9; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aHD" = ( /obj/structure/chair, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkblue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aHE" = ( /turf/simulated/wall/r_wall, /area/station/security/detective) @@ -10582,7 +10511,7 @@ dir = 1; icon_state = "darkblue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aHG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -10592,10 +10521,15 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/requests_console{ + department = "Internal Affairs Office"; + name = "Courtroom Gallery Requests Console"; + pixel_x = 30 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aHH" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -10804,11 +10738,7 @@ /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "aIu" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -10849,10 +10779,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump Engineering"; - pixel_x = -24; +/obj/machinery/power/apc/directional/west{ shock_proof = 1 }, /turf/simulated/floor/plating, @@ -10991,7 +10918,7 @@ /obj/item/reagent_containers/glass/beaker/waterbottle{ pixel_x = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/structure/window/reinforced, @@ -11022,16 +10949,21 @@ dir = 4; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aJc" = ( /obj/structure/chair{ dir = 8 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aJd" = ( /obj/structure/window/reinforced{ dir = 8 @@ -11039,7 +10971,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aJe" = ( /obj/structure/table, /obj/item/book/manual/wiki/security_space_law, @@ -11119,14 +11051,10 @@ name = "south bump"; pixel_y = -24 }, -/obj/structure/closet/secure_closet{ - anchored = 1; - name = "Evidence Storage"; - req_access_txt = "4" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/closet/secure_closet/evidence/detective, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -11213,7 +11141,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aJH" = ( /obj/structure/sign/electricshock, /turf/simulated/wall/r_wall, @@ -11232,7 +11160,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aJK" = ( /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/plating, @@ -11390,7 +11318,7 @@ dir = 4; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aKs" = ( /turf/simulated/floor/plasteel{ icon_state = "cult" @@ -11404,12 +11332,12 @@ dir = 4; icon_state = "rampbottom" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aKu" = ( /turf/simulated/floor/plasteel{ icon_state = "rampbottom" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aKv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -11422,7 +11350,7 @@ /turf/simulated/floor/plasteel{ icon_state = "rampbottom" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aKw" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/plasteel{ @@ -11554,11 +11482,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aKT" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -11806,7 +11730,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aLG" = ( -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -11904,7 +11828,7 @@ dir = 4; icon_state = "bluecorner" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aLU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -11916,7 +11840,7 @@ dir = 4; icon_state = "rampbottom" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aLV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -11933,7 +11857,7 @@ dir = 1; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aLW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11945,7 +11869,7 @@ dir = 1; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aLX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/disposalpipe/segment, @@ -11959,7 +11883,7 @@ dir = 1; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aLY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11976,7 +11900,7 @@ dir = 1; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aLZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -12001,7 +11925,7 @@ dir = 1; icon_state = "bluecorner" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aMb" = ( /obj/structure/cable{ d1 = 4; @@ -12035,7 +11959,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aMe" = ( /obj/structure/cable{ d1 = 4; @@ -12066,7 +11990,7 @@ /area/station/maintenance/fore) "aMl" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/donut, +/obj/item/food/snacks/donut, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aMo" = ( @@ -12134,7 +12058,7 @@ /obj/machinery/atmospherics/portable/canister/air, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aMC" = ( /obj/structure/table, /obj/machinery/computer/mob_healer_terminal, @@ -12147,13 +12071,13 @@ }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aME" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aMF" = ( /obj/structure/cable{ d1 = 1; @@ -12258,7 +12182,7 @@ /area/station/maintenance/fpmaint) "aMT" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -12307,7 +12231,7 @@ /area/station/legal/courtroom) "aNb" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/item/reagent_containers/glass/beaker/waterbottle{ @@ -12447,7 +12371,7 @@ "aNu" = ( /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aNv" = ( /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, @@ -12455,7 +12379,7 @@ "aNw" = ( /obj/effect/spawner/random_spawners/fungus_maybe, /turf/simulated/wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aNx" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, @@ -12515,7 +12439,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aNH" = ( /obj/structure/chair/stool{ dir = 8 @@ -12539,11 +12463,16 @@ d2 = 8; icon_state = "4-8" }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "rampbottom" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aNK" = ( /obj/machinery/light{ dir = 8 @@ -12571,14 +12500,14 @@ /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aNN" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aNO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12597,7 +12526,7 @@ dir = 8; icon_state = "bluecorner" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aNQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ @@ -12672,7 +12601,7 @@ /area/station/maintenance/fpmaint2) "aOo" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -12728,7 +12657,7 @@ /obj/item/reagent_containers/glass/beaker/waterbottle{ pixel_x = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/structure/window/reinforced{ @@ -12765,7 +12694,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aOA" = ( /obj/structure/cable{ d1 = 1; @@ -12773,10 +12702,10 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aOB" = ( /turf/simulated/floor/plasteel, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aOC" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, @@ -12816,7 +12745,7 @@ "aOH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aOI" = ( /turf/simulated/wall, /area/station/public/dorms) @@ -12867,14 +12796,14 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aOQ" = ( /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "aOR" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aOS" = ( /obj/machinery/light{ dir = 4 @@ -12933,7 +12862,7 @@ "aPa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random_spawners/blood_maybe, -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /obj/item/clothing/mask/face/fox, /turf/simulated/floor/plasteel, /area/station/maintenance/fpmaint2) @@ -13072,16 +13001,18 @@ /turf/simulated/floor/plasteel{ icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aPC" = ( /obj/structure/chair{ dir = 8 }, +/obj/structure/cable, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aPD" = ( /obj/structure/cable{ d1 = 1; @@ -13091,24 +13022,29 @@ /turf/simulated/floor/plasteel{ icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aPE" = ( /obj/item/radio/intercom{ name = "south bump"; pixel_y = -28 }, -/obj/machinery/light, +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -35 + }, /turf/simulated/floor/plasteel{ icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aPF" = ( /obj/machinery/economy/vending/cola, +/obj/machinery/light, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aPG" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -13122,7 +13058,7 @@ /turf/simulated/floor/plasteel{ icon_state = "blue" }, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "aPH" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -13138,7 +13074,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aPK" = ( /obj/machinery/door/poddoor/preopen{ id_tag = "maint3"; @@ -13163,7 +13099,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aPR" = ( /obj/machinery/light{ dir = 1 @@ -13175,16 +13111,13 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aPS" = ( /obj/structure/cable{ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump Engineering"; - pixel_y = 24; +/obj/machinery/power/apc/directional/north{ shock_proof = 1 }, /turf/simulated/floor/plating, @@ -13201,7 +13134,7 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aPW" = ( /obj/structure/mirror{ icon_state = "mirror_broke"; @@ -13221,21 +13154,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/firealarm{ + name = "north bump"; + pixel_y = 24 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aPZ" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod" }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aQa" = ( /obj/structure/sign/pods, /turf/simulated/wall, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aQb" = ( /obj/item/wrench, /turf/simulated/floor/plating, @@ -13394,16 +13331,21 @@ dir = 1; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aQy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/important/directional/east, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aQA" = ( /obj/machinery/economy/vending/snack, /turf/simulated/floor/plasteel{ @@ -13586,29 +13528,34 @@ c_tag = "Arrivals Escape Pods" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aRd" = ( /obj/effect/turf_decal/stripes/corner, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aRe" = ( /obj/structure/sign/vacuum/external{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aRf" = ( /obj/structure/extinguisher_cabinet{ name = "east bump"; pixel_x = 27 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aRg" = ( /mob/living/simple_animal/mouse, /turf/simulated/floor/plating, @@ -13835,11 +13782,7 @@ /obj/structure/chair/comfy/brown{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/carpet, /area/station/service/bar) "aRM" = ( @@ -13869,17 +13812,14 @@ dir = 10 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aRP" = ( /obj/machinery/economy/vending/coffee, /obj/machinery/light, /turf/simulated/floor/wood, /area/station/legal/courtroom) "aRQ" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/wood, /area/station/legal/courtroom) @@ -13895,14 +13835,14 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aRT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aRU" = ( /obj/machinery/door/airlock/external{ name = "Arrival Airlock" @@ -13922,11 +13862,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aRX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13961,7 +13906,7 @@ "aSd" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aSe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -14022,19 +13967,14 @@ }, /area/station/public/dorms) "aSn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "arrival" - }, -/area/station/hallway/secondary/entry) +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/south) "aSo" = ( /obj/structure/closet/wardrobe/white, /obj/item/clothing/shoes/jackboots, /obj/item/reagent_containers/iv_bag/blood/OMinus, -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "aSp" = ( @@ -14142,7 +14082,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "aSG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -14242,22 +14182,27 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aSX" = ( /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aSY" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ pixel_x = 1; pixel_y = 5 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aTa" = ( /obj/machinery/firealarm{ name = "north bump"; @@ -14361,11 +14306,16 @@ "aTt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aTu" = ( /turf/simulated/wall, /area/station/hallway/secondary/garden) @@ -14689,7 +14639,7 @@ /area/station/public/dorms) "aUe" = ( /obj/structure/closet, -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /obj/effect/landmark/spawner/nukedisc_respawn, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, @@ -14744,21 +14694,21 @@ /obj/structure/closet/emcloset, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aUl" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "aUm" = ( /obj/machinery/economy/vending/coffee, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aUn" = ( /obj/machinery/camera{ c_tag = "Arrivals North"; @@ -14767,14 +14717,14 @@ /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aUo" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" }, -/turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry/south) "aUp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -14927,7 +14877,7 @@ /obj/item/roller{ pixel_y = 9 }, -/obj/item/reagent_containers/food/drinks/britcup, +/obj/item/reagent_containers/drinks/britcup, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitehall" @@ -14981,14 +14931,11 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aUV" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "aUW" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, @@ -15011,12 +14958,14 @@ /turf/simulated/wall, /area/station/security/checkpoint/secondary) "aVd" = ( -/obj/machinery/camera{ - c_tag = "Arrivals East"; - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" @@ -15059,11 +15008,7 @@ }, /area/station/command/vault) "aVl" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -15358,11 +15303,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aWc" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -15496,11 +15437,7 @@ /turf/simulated/floor/plasteel, /area/station/public/storage/tools) "aWp" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -15852,10 +15789,6 @@ }, /area/station/service/chapel/office) "aXk" = ( -/obj/machinery/alarm{ - name = "north bump"; - pixel_y = 24 - }, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -15889,14 +15822,18 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 4; - name = "Cryo and Arrivals Super APC"; - pixel_x = 24 - }, +/obj/machinery/power/apc/important/directional/east, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Arrivals East"; + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" @@ -16256,11 +16193,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -16289,6 +16222,12 @@ /obj/machinery/camera{ c_tag = "Medbay Paramedic" }, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Paramedic Requests Console"; + pixel_y = 30 + }, /turf/simulated/floor/plasteel, /area/station/medical/paramedic) "aYx" = ( @@ -16345,8 +16284,13 @@ d2 = 4; icon_state = "2-4" }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel/goonplaque, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "aYE" = ( /obj/structure/chair/stool{ dir = 4 @@ -16509,10 +16453,7 @@ /area/station/security/checkpoint/secondary) "aZc" = ( /obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/garden) "aZd" = ( @@ -16642,7 +16583,7 @@ }, /obj/item/clothing/head/bearpelt, /obj/item/folder/documents, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/stack/spacecash/c1000, @@ -16779,6 +16720,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" @@ -16861,7 +16805,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "baa" = ( -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "bab" = ( @@ -16905,7 +16849,7 @@ }, /area/station/ai_monitored/storage/eva) "bai" = ( -/obj/machinery/suit_storage_unit/mime, +/obj/machinery/suit_storage_unit/mime/secure, /obj/effect/turf_decal/delivery/blue/hollow, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -17034,11 +16978,7 @@ /turf/simulated/floor/wood, /area/station/service/library) "baw" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -17266,6 +17206,10 @@ /turf/simulated/wall/r_wall, /area/station/command/vault) "bbr" = ( +/obj/item/radio/intercom{ + name = "west bump"; + pixel_x = -28 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" @@ -17358,7 +17302,7 @@ /area/station/maintenance/fpmaint) "bbH" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/food/snacks/baguette, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "bbI" = ( @@ -17379,7 +17323,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "bbJ" = ( -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /obj/item/storage/backpack/duffel/clown, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) @@ -17623,7 +17567,7 @@ "bcu" = ( /obj/structure/table/wood, /obj/item/pen, -/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/item/reagent_containers/drinks/bottle/holywater, /obj/machinery/light{ dir = 1 }, @@ -17745,14 +17689,14 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bcM" = ( /obj/structure/extinguisher_cabinet{ name = "north bump"; pixel_y = 30 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bcN" = ( /obj/machinery/light, /obj/structure/chair/comfy/shuttle{ @@ -17854,7 +17798,7 @@ dir = 5; icon_state = "vault" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bda" = ( /obj/structure/cable{ d1 = 2; @@ -17961,7 +17905,7 @@ "bdp" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/bananalamp, -/obj/item/reagent_containers/food/snacks/pie, +/obj/item/food/snacks/pie, /obj/machinery/alarm{ name = "north bump"; pixel_y = 24 @@ -17983,7 +17927,7 @@ c_tag = "Port Hallway 2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bdr" = ( /obj/structure/table/wood, /obj/item/stamp/clown, @@ -18178,11 +18122,6 @@ }, /area/station/service/kitchen) "bdK" = ( -/obj/machinery/access_button{ - autolink_id = "evamaint_btn_int"; - pixel_y = 25; - req_access_txt = "13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -18284,11 +18223,7 @@ icon_state = "0-2" }, /obj/machinery/reagentgrinder, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -18353,10 +18288,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -18555,7 +18487,7 @@ dir = 5; icon_state = "vault" }, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "beP" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -18659,10 +18591,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 @@ -18856,21 +18785,8 @@ }, /area/station/public/dorms) "bfx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralcorner" - }, -/area/station/public/dorms) +/turf/simulated/wall, +/area/station/supply/sorting) "bfy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -18906,11 +18822,7 @@ /obj/structure/chair/office/dark{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -19092,11 +19004,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -19152,10 +19060,10 @@ /area/station/service/chapel) "bgj" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/food/snacks/chips, +/obj/item/reagent_containers/drinks/cans/cola, /turf/simulated/floor/carpet, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgk" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -19164,7 +19072,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgl" = ( /obj/structure/cable{ d1 = 1; @@ -19198,26 +19106,22 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgq" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bgr" = ( /obj/machinery/status_display{ layer = 4; pixel_y = 32 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bgs" = ( /obj/item/kirbyplants, /obj/machinery/camera{ @@ -19237,7 +19141,7 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgu" = ( /obj/structure/cable{ d1 = 1; @@ -19248,13 +19152,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgv" = ( /obj/machinery/economy/vending/cigarette, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgw" = ( /obj/item/radio/intercom{ name = "north bump"; @@ -19267,7 +19171,7 @@ }, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgx" = ( /obj/structure/table, /obj/item/camera_film{ @@ -19283,29 +19187,29 @@ /area/station/public/storage/office) "bgz" = ( /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bgA" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bgB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgC" = ( /obj/structure/sign/double/map/left{ pixel_y = 31 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgD" = ( /obj/structure/sign/double/map/right{ pixel_y = 31 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bgE" = ( /obj/structure/sign/electricshock{ pixel_y = 32 @@ -19314,11 +19218,11 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bgF" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bgG" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, @@ -19355,7 +19259,7 @@ pixel_y = 24 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bgK" = ( /obj/structure/chair/stool{ dir = 8 @@ -19566,7 +19470,7 @@ /area/station/service/mime) "bhm" = ( /turf/simulated/floor/carpet, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bhn" = ( /obj/item/stack/sheet/metal{ amount = 10 @@ -19602,10 +19506,15 @@ /obj/structure/chair/comfy/beige{ dir = 8 }, +/obj/machinery/power/apc/important/directional/east, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bhw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -19670,7 +19579,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bhF" = ( /obj/structure/table, /obj/item/vending_refill/snack{ @@ -19689,6 +19598,10 @@ /obj/machinery/recharger{ pixel_y = 4 }, +/obj/machinery/light_switch{ + name = "north bump"; + pixel_y = 24 + }, /turf/simulated/floor/plasteel{ icon_state = "darkbluefull" }, @@ -19729,7 +19642,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bhM" = ( /obj/machinery/light{ dir = 1 @@ -19750,7 +19663,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bhO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19759,7 +19672,7 @@ /turf/simulated/floor/plasteel{ icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bhP" = ( /obj/machinery/ai_status_display{ pixel_x = 32 @@ -19782,7 +19695,7 @@ dir = 8; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bhR" = ( /obj/machinery/chem_master, /turf/simulated/floor/plasteel{ @@ -19904,11 +19817,6 @@ }, /area/station/service/hydroponics) "bih" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, /obj/machinery/light{ dir = 8 }, @@ -20012,7 +19920,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "biw" = ( /obj/machinery/newscaster{ dir = 1; @@ -20063,7 +19971,7 @@ dir = 8; icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "biC" = ( /obj/structure/cable{ d1 = 1; @@ -20071,7 +19979,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "biD" = ( /obj/structure/cable{ d1 = 1; @@ -20084,7 +19992,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "biE" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/generic, @@ -20099,7 +20007,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "biG" = ( /obj/structure/cable{ d1 = 4; @@ -20113,7 +20021,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "biH" = ( /obj/structure/cable{ d1 = 1; @@ -20150,7 +20058,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "biK" = ( /turf/simulated/floor/plasteel{ icon_state = "L9" @@ -20350,10 +20258,6 @@ }, /area/station/service/bar) "bjc" = ( -/obj/machinery/alarm{ - name = "north bump"; - pixel_y = 24 - }, /obj/structure/closet/secure_closet/bar{ req_access_txt = "25" }, @@ -20540,14 +20444,14 @@ "bjO" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bjP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bjQ" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; @@ -20638,7 +20542,7 @@ pixel_y = -30 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bjZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -20667,7 +20571,7 @@ pixel_y = -28 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bkc" = ( /obj/structure/table/wood, /obj/item/storage/fancy/cigarettes{ @@ -20680,13 +20584,13 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bkd" = ( /obj/machinery/economy/vending/cola, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bke" = ( /obj/machinery/firealarm{ dir = 1; @@ -20716,24 +20620,24 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bkg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bkh" = ( /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-j2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bki" = ( /obj/machinery/light, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bkj" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -20761,7 +20665,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bkl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20772,7 +20676,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bkn" = ( /obj/structure/chair/office/dark{ dir = 1 @@ -20792,7 +20696,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bkp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -21088,11 +20992,7 @@ pixel_y = 2 }, /obj/item/vending_refill/coffee, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -21180,11 +21080,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/closet/secure_closet/personal, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel{ @@ -21208,11 +21104,16 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bli" = ( /obj/structure/bookcase{ name = "bookcase (Religious)" @@ -21263,6 +21164,19 @@ }, /turf/simulated/floor/wood, /area/station/service/library) +"blq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry/lounge) "blr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21280,7 +21194,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "blt" = ( /obj/machinery/economy/vending/cigarette, /turf/simulated/floor/carpet, @@ -21318,7 +21232,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "blz" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, @@ -21350,7 +21264,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "blG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -21378,13 +21292,13 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "blJ" = ( /obj/machinery/economy/vending/snack, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "blK" = ( /obj/structure/grille/broken, /obj/item/stack/rods, @@ -21414,7 +21328,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "blP" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -21432,7 +21346,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "blQ" = ( /turf/simulated/wall, /area/station/maintenance/port) @@ -21451,15 +21365,15 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "blW" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "blX" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bmc" = ( /turf/simulated/wall/r_wall, /area/station/command/bridge) @@ -21480,7 +21394,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bmf" = ( /obj/structure/cable{ d1 = 4; @@ -21497,7 +21411,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bmg" = ( /obj/machinery/door/morgue{ name = "Confession Booth" @@ -21542,7 +21456,7 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bmp" = ( /obj/structure/chair/sofa/pew/left{ dir = 1 @@ -21578,7 +21492,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bmt" = ( /obj/structure/sink/kitchen{ pixel_y = 25 @@ -21617,7 +21531,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bmy" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -21687,11 +21601,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -22010,7 +21920,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bnv" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/portable/pump, @@ -22390,7 +22300,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "boy" = ( /obj/machinery/door/morgue{ name = "Private Study"; @@ -22517,8 +22427,13 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "boS" = ( /obj/structure/closet/crate/freezer, /turf/simulated/floor/plasteel{ @@ -22532,7 +22447,7 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "boU" = ( /turf/simulated/floor/carpet, /area/station/public/mrchangs) @@ -22553,7 +22468,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "boX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22593,7 +22508,7 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bpd" = ( /obj/effect/landmark/lightsout, /turf/simulated/floor/plasteel, @@ -22627,7 +22542,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bpi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -22645,7 +22560,7 @@ icon_state = "pipe-y" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bpk" = ( /obj/structure/cable{ d1 = 1; @@ -22656,7 +22571,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bpl" = ( /obj/structure/rack{ dir = 1 @@ -22740,12 +22655,12 @@ "bpu" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/sop_command, -/obj/item/aicard, -/obj/item/multitool/command, /obj/machinery/keycard_auth{ pixel_x = -6; pixel_y = 8 }, +/obj/item/aicard, +/obj/item/multitool/command, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "blue" @@ -22830,7 +22745,7 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bpG" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bucket, @@ -23065,7 +22980,7 @@ pixel_x = 32 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "bqm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -23322,7 +23237,7 @@ dir = 4; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "brf" = ( /obj/machinery/alarm{ dir = 4; @@ -23374,11 +23289,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "brl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -23390,7 +23310,7 @@ dir = 1; icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "brm" = ( /obj/structure/table, /obj/item/kitchen/rollingpin, @@ -23409,11 +23329,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutral" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bro" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -23427,11 +23352,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "brq" = ( /turf/simulated/floor/plasteel{ icon_state = "stairs-r" @@ -23543,6 +23473,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/requests_console{ + department = "Primary Tool Storage"; + name = "Chapel Request Console"; + pixel_x = -30; + departmentType = 2 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -23680,7 +23616,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "bsf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/visible/cyan, @@ -23715,6 +23651,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitecorner" @@ -23768,6 +23709,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, +/obj/machinery/light, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/south) "bss" = ( @@ -23775,7 +23717,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bst" = ( /obj/machinery/light/small{ dir = 1 @@ -23785,7 +23727,7 @@ "bsx" = ( /obj/machinery/light, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bsB" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel, @@ -23858,15 +23800,15 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "bsQ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" }, +/obj/item/radio/intercom{ + name = "south bump"; + pixel_y = -28 + }, /turf/simulated/floor/plating, /area/station/public/storage/emergency/port) "bsR" = ( @@ -23881,7 +23823,7 @@ /area/station/maintenance/port) "bsS" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ layer = 5 }, /obj/item/stack/packageWrap, @@ -23904,10 +23846,10 @@ /area/station/service/kitchen) "bsU" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3 }, /turf/simulated/floor/plasteel{ @@ -23948,16 +23890,13 @@ }, /area/station/service/kitchen) "bsY" = ( -/obj/machinery/hydroponics/constructable, /obj/machinery/alarm{ - dir = 8; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" + dir = 1; + name = "south bump"; + pixel_y = -24 }, -/area/station/service/hydroponics) +/turf/simulated/floor/plasteel, +/area/station/supply/lobby) "bsZ" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance, @@ -24006,12 +23945,12 @@ /turf/simulated/floor/wood, /area/station/service/bar) "btg" = ( -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 2; pixel_y = 6 }, /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -2; pixel_y = 4 }, @@ -24159,11 +24098,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/wood, /area/station/public/vacant_office) "btI" = ( @@ -24454,7 +24389,7 @@ /area/station/service/kitchen) "bus" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/mint, +/obj/item/food/snacks/mint, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -24473,7 +24408,7 @@ /area/station/service/kitchen) "buu" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/reagent_containers/drinks/bottle/cream, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -24641,7 +24576,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "buT" = ( /obj/machinery/economy/vending/cigarette, /obj/machinery/light{ @@ -24764,7 +24699,7 @@ locked = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bvm" = ( /obj/machinery/light_switch{ dir = 4; @@ -24839,11 +24774,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "bvx" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable, /turf/simulated/floor/plasteel, /area/station/public/locker) @@ -24884,11 +24815,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/carpet, /area/station/service/library) "bvP" = ( @@ -25064,10 +24991,7 @@ "bwo" = ( /obj/structure/cable, /obj/machinery/light, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -25142,7 +25066,7 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "bwy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -25219,7 +25143,7 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bwP" = ( /obj/structure/toilet{ pixel_y = 8 @@ -25249,7 +25173,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bwZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -25272,7 +25196,7 @@ id = "packageSort2" }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "bxe" = ( /obj/machinery/conveyor{ dir = 4; @@ -25282,7 +25206,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "bxf" = ( /obj/machinery/conveyor{ dir = 4; @@ -25293,7 +25217,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "bxg" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -25302,7 +25226,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "bxi" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -25497,7 +25421,7 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "byl" = ( /obj/machinery/conveyor_switch/oneway{ id = "packageSort2" @@ -25507,7 +25431,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bym" = ( /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, @@ -25565,13 +25489,13 @@ id = "packageSort1" }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "byz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "byD" = ( /obj/structure/chair/wood/wings{ dir = 4 @@ -25751,7 +25675,7 @@ pixel_x = -28 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bzs" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, @@ -25819,11 +25743,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bzF" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bzG" = ( /obj/machinery/conveyor_switch/oneway{ id = "packageSort1" @@ -25834,8 +25758,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -26; + pixel_x = -5 + }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bzH" = ( /obj/structure/table, /obj/machinery/requests_console{ @@ -25861,7 +25791,7 @@ dir = 1; icon_state = "arrival" }, -/area/station/supply/office) +/area/station/supply/sorting) "bzI" = ( /obj/item/storage/box, /obj/structure/table, @@ -25882,7 +25812,7 @@ dir = 1; icon_state = "arrival" }, -/area/station/supply/office) +/area/station/supply/sorting) "bzJ" = ( /turf/simulated/wall, /area/station/supply/office) @@ -25892,11 +25822,15 @@ /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, /obj/item/rcs, +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "arrival" }, -/area/station/supply/office) +/area/station/supply/sorting) "bzL" = ( /obj/structure/cable{ d1 = 1; @@ -25916,6 +25850,12 @@ icon_state = "browncorner" }, /area/station/hallway/primary/central/west) +"bzN" = ( +/obj/effect/spawner/airlock/w_to_e/long{ + req_access_txt = 11 + }, +/turf/simulated/wall/r_wall, +/area/station/engineering/ai_transit_tube) "bzO" = ( /obj/structure/chair, /turf/simulated/floor/plasteel, @@ -26010,11 +25950,6 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard/west) "bAl" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, /obj/machinery/camera{ c_tag = "Central Hallway East"; dir = 4 @@ -26240,7 +26175,7 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bBj" = ( /obj/structure/closet/crate, /turf/simulated/floor/plasteel, @@ -26288,7 +26223,7 @@ /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bBp" = ( /obj/structure/table, /obj/machinery/light{ @@ -26299,7 +26234,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/supply/office) +/area/station/supply/sorting) "bBq" = ( /obj/machinery/economy/atm{ pixel_x = -32 @@ -26345,7 +26280,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bBt" = ( /obj/structure/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -26544,11 +26479,6 @@ /turf/simulated/floor/plasteel, /area/station/supply/storage) "bCv" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -26588,14 +26518,12 @@ dir = 4; icon_state = "arrival" }, -/area/station/supply/office) +/area/station/supply/sorting) "bCF" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, /obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "browncorner" @@ -26728,6 +26656,11 @@ "bDk" = ( /obj/item/kirbyplants, /obj/machinery/light, +/obj/machinery/light_switch{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, /turf/simulated/floor/wood, /area/station/legal/courtroom) "bDl" = ( @@ -26797,7 +26730,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bDv" = ( /obj/structure/sink{ dir = 4; @@ -26832,7 +26765,7 @@ locked = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bDH" = ( /obj/structure/cable{ d1 = 2; @@ -26874,7 +26807,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bDO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26922,7 +26855,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "bDV" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -26956,7 +26889,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/supply/office) +/area/station/supply/sorting) "bEg" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -26995,7 +26928,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bEn" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, @@ -27023,6 +26956,12 @@ }, /turf/simulated/floor/wood, /area/station/command/office/captain) +"bEt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "bEu" = ( /turf/simulated/wall, /area/station/medical/morgue) @@ -27288,11 +27227,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -27341,7 +27276,7 @@ /obj/effect/turf_decal/delivery/partial, /obj/effect/turf_decal/arrows/black, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bFy" = ( /obj/structure/table, /obj/item/storage/box/donkpockets, @@ -27349,7 +27284,7 @@ dir = 4; icon_state = "arrival" }, -/area/station/supply/office) +/area/station/supply/sorting) "bFz" = ( /obj/item/radio/intercom{ name = "north bump"; @@ -27369,7 +27304,7 @@ /obj/effect/turf_decal/delivery/partial, /obj/effect/turf_decal/arrows/black, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bFB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27427,8 +27362,10 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/cable, +/obj/machinery/power/apc/important/directional/east, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bFO" = ( /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/se) @@ -27563,7 +27500,7 @@ dir = 5 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bGm" = ( /obj/machinery/light/small{ dir = 1 @@ -27572,7 +27509,7 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bGn" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -27743,6 +27680,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" @@ -27823,7 +27765,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "bHf" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 1 @@ -27844,19 +27786,19 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bHn" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_y = 8; pixel_x = -6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" }, -/area/station/supply/office) +/area/station/supply/sorting) "bHo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -28068,7 +28010,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bHY" = ( /obj/structure/sign/radiation/rad_area, /obj/effect/spawner/window/reinforced, @@ -28076,6 +28018,7 @@ id_tag = "Engineering"; name = "Engineering Security Doors" }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, /turf/simulated/floor/plating, /area/station/engineering/equipmentstorage) "bHZ" = ( @@ -28100,7 +28043,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bId" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28256,7 +28199,7 @@ dir = 8; icon_state = "brown" }, -/area/station/supply/office) +/area/station/supply/sorting) "bIH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 6 @@ -28281,14 +28224,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bIK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bIM" = ( /obj/machinery/light/small{ dir = 1 @@ -28417,10 +28360,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard/west) "bJe" = ( @@ -28536,7 +28476,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bJt" = ( /obj/structure/girder, /turf/simulated/floor/plating, @@ -28555,10 +28495,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/port) "bJx" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -28588,16 +28525,14 @@ }, /area/station/service/expedition) "bJE" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 +/obj/machinery/light{ + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" }, -/area/station/supply/office) +/area/station/supply/sorting) "bJF" = ( /obj/machinery/firealarm{ dir = 8; @@ -28647,7 +28582,7 @@ /area/station/public/toilet/unisex) "bJV" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/item/gun/projectile/revolver/doublebarrel, /obj/item/stack/sheet/metal{ amount = 50 @@ -28695,7 +28630,7 @@ pixel_x = -30 }, /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb, +/obj/item/reagent_containers/drinks/cans/dr_gibb, /obj/item/storage/box/patch_packs, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -28749,7 +28684,7 @@ /area/station/science/robotics) "bKo" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "whitepurple" @@ -28761,7 +28696,7 @@ locked = 1 }, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bKs" = ( /obj/structure/chair/office/dark{ dir = 1 @@ -28807,7 +28742,7 @@ pixel_x = 28 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bKD" = ( /obj/structure/cable{ d1 = 4; @@ -28845,14 +28780,16 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "bKI" = ( -/obj/machinery/light{ - dir = 8 +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" }, -/area/station/supply/office) +/area/station/supply/sorting) "bKN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28863,8 +28800,8 @@ dir = 8; layer = 2.9 }, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 4; pixel_y = 4 }, @@ -28908,7 +28845,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bKW" = ( /obj/structure/cable{ d1 = 1; @@ -28938,11 +28875,16 @@ /area/station/maintenance/port) "bKZ" = ( /obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" }, -/area/station/supply/office) +/area/station/supply/sorting) "bLh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -29014,7 +28956,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bLt" = ( /obj/structure/cable{ d1 = 4; @@ -29065,7 +29007,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bLE" = ( /turf/simulated/floor/mech_bay_recharge_floor, /area/station/science/robotics/chargebay) @@ -29168,32 +29110,32 @@ dir = 6 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bLY" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bLZ" = ( /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bMa" = ( /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bMb" = ( /obj/machinery/light, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bMc" = ( /obj/machinery/hologram/holopad, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "bMd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29256,11 +29198,7 @@ pixel_y = 24; req_access_txt = "31" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -29270,7 +29208,7 @@ "bMk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bMm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -29348,7 +29286,7 @@ "bMx" = ( /obj/machinery/status_display/supply_display, /turf/simulated/wall, -/area/station/supply/office) +/area/station/supply/sorting) "bMy" = ( /obj/structure/cable{ d1 = 4; @@ -29366,7 +29304,7 @@ "bMA" = ( /obj/machinery/mineral/ore_redemption, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bMG" = ( /turf/simulated/wall/r_wall, /area/station/command/office/hop) @@ -29569,11 +29507,6 @@ /area/station/hallway/secondary/exit) "bNx" = ( /obj/machinery/light, -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -29743,7 +29676,7 @@ dir = 9 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bNW" = ( /obj/structure/cable{ d1 = 4; @@ -29764,8 +29697,13 @@ dir = 8; icon_state = "pipe-c" }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bNX" = ( /obj/structure/cable{ d1 = 4; @@ -29777,7 +29715,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "bNY" = ( /obj/structure/cable{ d1 = 4; @@ -29871,7 +29809,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bOv" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -30009,11 +29947,7 @@ /obj/item/storage/box/beakers{ pixel_y = 2 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/item/storage/box/syringes{ pixel_x = 3 }, @@ -30228,9 +30162,10 @@ pixel_y = 24 }, /obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Requests Console"; + announcementConsole = 1; + department = "Quartermaster's Desk"; + departmentType = 5; + name = "Quartermaster Requests Console"; pixel_x = -30 }, /turf/simulated/floor/carpet, @@ -30254,7 +30189,7 @@ "bPW" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bPX" = ( /obj/structure/closet/emcloset, /obj/structure/extinguisher_cabinet{ @@ -30367,26 +30302,6 @@ "bQo" = ( /turf/simulated/wall, /area/station/command/office/hop) -"bQw" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - name = "south bump"; - pixel_y = -28 - }, -/obj/item/storage/fancy/matches, -/obj/item/reagent_containers/food/drinks/flask/gold, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/carpet, -/area/station/command/office/captain/bedroom) "bQy" = ( /obj/machinery/door/airlock{ name = "Private Restroom" @@ -30581,11 +30496,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/se) "bRh" = ( @@ -30606,16 +30517,13 @@ id_tag = "Engineering"; name = "Engineering Security Doors" }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "bRj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkyellowcorners" @@ -30636,6 +30544,9 @@ c_tag = "Quartermaster's Office" }, /obj/machinery/computer/card/minor/qm, +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, /turf/simulated/floor/carpet, /area/station/supply/qm) "bRp" = ( @@ -30910,10 +30821,7 @@ desc = "This cuts gloves."; name = "Glove Snippers" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/structure/table, /turf/simulated/floor/plasteel{ @@ -31052,10 +30960,7 @@ }, /area/station/medical/morgue) "bSH" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -31111,7 +31016,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bST" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31498,14 +31403,14 @@ "bUo" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bUp" = ( /obj/structure/chair{ dir = 8 }, /obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bUr" = ( /turf/simulated/floor/carpet, /area/station/command/office/hop) @@ -31621,7 +31526,7 @@ "bUU" = ( /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bUV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -31630,7 +31535,7 @@ dir = 6 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bUW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31640,7 +31545,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bUX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31649,7 +31554,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bUY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -31704,7 +31609,7 @@ "bVt" = ( /obj/machinery/economy/vending/cart, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bVx" = ( /obj/structure/cable{ d1 = 1; @@ -31804,7 +31709,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bVS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -31899,13 +31804,15 @@ /area/station/science/genetics) "bWi" = ( /obj/structure/chair, -/obj/machinery/light{ - dir = 1 +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "bWj" = ( /turf/simulated/wall, /area/station/science/robotics/chargebay) @@ -32006,7 +31913,7 @@ dir = 8; icon_state = "whitebluecorner" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bWu" = ( /obj/machinery/disposal, /obj/machinery/light{ @@ -32018,7 +31925,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bWv" = ( /turf/simulated/floor/plasteel{ icon_state = "whitepurple" @@ -32040,7 +31947,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bWA" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/plasteel{ @@ -32110,7 +32017,7 @@ /obj/machinery/light, /obj/machinery/economy/merch, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bWV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -32147,9 +32054,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/keycard_auth{ - pixel_y = -28 - }, /turf/simulated/floor/carpet, /area/station/supply/qm) "bXh" = ( @@ -32168,6 +32072,11 @@ dir = 4; icon_state = "pipe-c" }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plasteel, /area/station/supply/office) "bXi" = ( @@ -32188,8 +32097,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bXk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -32201,8 +32115,13 @@ dir = 8; icon_state = "pipe-c" }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bXn" = ( /obj/machinery/shieldwallgen, /obj/effect/turf_decal/delivery/hollow, @@ -32225,13 +32144,13 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bXI" = ( /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bXK" = ( /obj/structure/table/glass, /obj/item/roller{ @@ -32350,7 +32269,7 @@ /turf/simulated/floor/plasteel{ icon_state = "rampbottom" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "bXV" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -32449,7 +32368,7 @@ /area/station/maintenance/asmaint2) "bYm" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/wood, /area/station/maintenance/asmaint2) "bYr" = ( @@ -32551,7 +32470,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "bYG" = ( /obj/structure/table, /obj/item/storage/firstaid/regular{ @@ -32580,10 +32499,7 @@ }, /area/station/supply/office) "bYI" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -32687,7 +32603,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bZj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -32704,12 +32620,12 @@ "bZl" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bZm" = ( /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bZq" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; @@ -32780,7 +32696,7 @@ dir = 8; icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "bZC" = ( /obj/structure/cable{ d1 = 1; @@ -32812,11 +32728,7 @@ }, /area/station/medical/sleeper) "bZE" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -32876,7 +32788,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bZK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -32891,7 +32803,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "bZL" = ( /obj/machinery/door/firedoor, /obj/machinery/status_display{ @@ -32941,6 +32853,11 @@ c_tag = "Medbay Corridor East"; dir = 6 }, +/obj/machinery/power/apc/directional/north, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, @@ -33055,11 +32972,7 @@ }, /area/station/medical/reception) "cao" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/item/kirbyplants, /obj/structure/cable{ d2 = 2; @@ -33110,15 +33023,9 @@ /area/station/science/robotics) "cav" = ( /obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/hemostat, -/obj/item/retractor, -/obj/item/stack/medical/bruise_pack/advanced{ - pixel_x = -4; - pixel_y = 4 - }, +/obj/item/storage/firstaid/machine, +/obj/item/storage/firstaid/machine, +/obj/item/robotanalyzer, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -33181,18 +33088,18 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "caF" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, -/area/station/medical/medbay2) +/area/station/medical/medbay) "caH" = ( /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "caL" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -33250,12 +33157,8 @@ /area/station/command/office/cmo) "caR" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/item/reagent_containers/drinks/coffee, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -33282,7 +33185,7 @@ dir = 8; icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cba" = ( /obj/structure/cable{ d1 = 1; @@ -33313,8 +33216,6 @@ /obj/machinery/optable{ name = "Robotics Operating Table" }, -/obj/item/storage/firstaid/machine, -/obj/item/storage/firstaid/machine, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -33439,13 +33340,27 @@ icon_state = "whiteblue" }, /area/station/medical/sleeper) +"cby" = ( +/obj/item/radio/intercom{ + name = "south bump"; + pixel_y = -28 + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/engineering/secure_storage) "cbE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, /turf/simulated/floor/plasteel{ icon_state = "rampbottom" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cbH" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -33511,7 +33426,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cbR" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -33696,25 +33611,6 @@ icon_state = "freezerfloor" }, /area/station/science/robotics) -"cck" = ( -/obj/structure/table/glass, -/obj/item/hemostat{ - pixel_x = 6 - }, -/obj/item/retractor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stack/medical/bruise_pack/advanced, -/obj/machinery/firealarm{ - name = "north bump"; - pixel_y = 24 - }, -/obj/item/reagent_containers/iv_bag/salglu, -/turf/simulated/floor/plasteel{ - icon_state = "whiteblue" - }, -/area/station/medical/surgery/primary) "ccm" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -33744,7 +33640,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "ccr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33757,16 +33653,18 @@ /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass, -/area/station/medical/medbay2) +/area/station/medical/medbay) "ccv" = ( -/obj/machinery/light{ - dir = 4 +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "ccx" = ( /obj/machinery/light{ dir = 8 @@ -33851,7 +33749,7 @@ dir = 4; icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "ccJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33859,7 +33757,7 @@ dir = 10; icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "ccL" = ( /obj/machinery/light{ dir = 1 @@ -33889,7 +33787,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "cdb" = ( /obj/effect/spawner/random_spawners/oil_maybe, /turf/simulated/floor/plating, @@ -34125,11 +34023,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/sw) "cdT" = ( @@ -34172,11 +34066,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -34273,10 +34163,15 @@ dir = 1; icon_state = "pipe-c" }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24; + name = "south bump" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cem" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -34292,7 +34187,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgreenfull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cen" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -34313,7 +34208,7 @@ dir = 5; icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cep" = ( /turf/simulated/floor/plating, /area/station/maintenance/aft) @@ -34329,7 +34224,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgreenfull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cev" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -34441,11 +34336,7 @@ }, /area/station/command/office/rd) "ceP" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -34613,7 +34504,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cfq" = ( /obj/structure/cable{ d1 = 2; @@ -34717,7 +34608,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cfE" = ( /obj/effect/spawner/window/reinforced/polarized{ id = "Surgery 1" @@ -34727,7 +34618,7 @@ "cfF" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cfG" = ( /obj/structure/cable{ d1 = 1; @@ -34749,7 +34640,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cfH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -34771,7 +34662,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cfI" = ( /obj/structure/railing/corner{ dir = 8 @@ -34780,7 +34671,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cfJ" = ( /obj/machinery/atmospherics/unary/thermomachine/freezer/on{ name = "Temperature control unit" @@ -34817,25 +34708,25 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cfX" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/item/radio/intercom{ - name = "west bump"; - pixel_x = -28 +/obj/machinery/camera{ + c_tag = "Virology Lobby"; + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cfY" = ( /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cfZ" = ( /obj/structure/window/reinforced{ dir = 8 @@ -35202,7 +35093,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "chx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -35223,15 +35114,11 @@ /area/station/medical/storage/secondary) "chA" = ( /turf/simulated/wall/r_wall, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "chB" = ( /obj/structure/closet/l3closet, /obj/item/clothing/mask/gas, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -35252,19 +35139,19 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "chE" = ( /obj/structure/table, /obj/item/storage/box/syringes, /turf/simulated/floor/plasteel{ icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "chH" = ( /obj/structure/closet/cabinet, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood, /area/station/command/office/blueshield) "chI" = ( @@ -35343,7 +35230,7 @@ c_tag = "Research Director's Office"; network = list("Research","SS13") }, -/obj/item/reagent_containers/food/drinks/mug/rd, +/obj/item/reagent_containers/drinks/mug/rd, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "darkpurple" @@ -35361,10 +35248,10 @@ pixel_y = 32 }, /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/bottler/glass_bottle{ +/obj/item/reagent_containers/drinks/cans/bottler/glass_bottle{ pixel_x = 4 }, -/obj/item/reagent_containers/food/drinks/cans/bottler/glass_bottle{ +/obj/item/reagent_containers/drinks/cans/bottler/glass_bottle{ pixel_x = -9 }, /turf/simulated/floor/wood, @@ -35501,7 +35388,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "ciG" = ( /obj/structure/table/wood, /obj/item/ashtray/glass{ @@ -35562,7 +35449,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "ciO" = ( /obj/structure/cable{ d1 = 4; @@ -35708,7 +35595,6 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "cjh" = ( -/obj/machinery/light, /obj/structure/cable{ d1 = 2; d2 = 8; @@ -35852,12 +35738,12 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cjB" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cjC" = ( /obj/structure/cable{ d1 = 1; @@ -35874,22 +35760,24 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cjF" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/light{ - dir = 8 - }, /obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "cjG" = ( /obj/machinery/firealarm{ dir = 4; @@ -36138,7 +36026,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "ckS" = ( /obj/structure/cable{ d1 = 1; @@ -36155,14 +36043,14 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "ckV" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "ckW" = ( /obj/machinery/economy/vending/medical, /obj/item/radio/intercom{ @@ -36173,7 +36061,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "ckX" = ( /obj/machinery/computer/crew{ dir = 8 @@ -36182,7 +36070,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "ckZ" = ( /obj/structure/railing{ dir = 1 @@ -36190,7 +36078,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cla" = ( /turf/simulated/wall, /area/station/command/office/rd) @@ -36216,7 +36104,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cle" = ( /obj/machinery/defibrillator_mount/loaded{ pixel_y = 30 @@ -36225,7 +36113,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "clf" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, @@ -36237,7 +36125,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "clg" = ( /turf/simulated/floor/wood{ icon_state = "wood-broken7" @@ -36398,7 +36286,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "clR" = ( /turf/simulated/floor/wood, /area/station/command/office/blueshield) @@ -36458,7 +36346,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cma" = ( /obj/machinery/door/airlock/engineering/glass{ name = "Laser Room" @@ -36525,7 +36413,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "cmm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -36541,7 +36429,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cmn" = ( /obj/machinery/sleeper, /obj/item/radio/intercom{ @@ -36551,13 +36439,13 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cmo" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, /obj/machinery/camera{ c_tag = "Medbay Secure Storage"; dir = 4 }, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" }, @@ -36648,12 +36536,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/science/storage) -"cmG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) "cmH" = ( /obj/structure/closet/emcloset, /obj/effect/spawner/lootdrop/maintenance, @@ -36678,7 +36560,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "cmM" = ( /obj/structure/cable{ d1 = 1; @@ -36708,6 +36590,10 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/item/radio/intercom{ + name = "west bump"; + pixel_x = -28 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkblue" @@ -36749,7 +36635,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "cnb" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -36784,11 +36670,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "cno" = ( @@ -36851,13 +36733,13 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cnx" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cny" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -36866,7 +36748,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cnD" = ( /obj/structure/cable{ d1 = 1; @@ -36876,14 +36758,14 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cnF" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cnH" = ( /obj/machinery/bodyscanner, /obj/machinery/light{ @@ -36892,16 +36774,16 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cnI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cnJ" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" }, @@ -37004,7 +36886,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "cnX" = ( /obj/structure/closet/secure_closet/ntrep, /turf/simulated/floor/carpet/royalblack, @@ -37014,19 +36896,19 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cnZ" = ( /obj/effect/spawner/window/reinforced/polarized{ id = "med1" }, /turf/simulated/floor/plating, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "coa" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cob" = ( /obj/structure/cable{ d1 = 1; @@ -37038,7 +36920,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "coc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -37046,27 +36928,24 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cod" = ( /turf/simulated/wall/r_wall, /area/station/science/explab) "coe" = ( /obj/item/kirbyplants, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cof" = ( /obj/effect/spawner/window/reinforced/polarized{ id = "med2" }, /turf/simulated/floor/plating, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cog" = ( /obj/machinery/mineral/equipment_vendor, /turf/simulated/floor/plasteel{ @@ -37241,7 +37120,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cpa" = ( /obj/structure/table, /obj/machinery/firealarm{ @@ -37253,7 +37132,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cpb" = ( /obj/machinery/alarm{ dir = 8; @@ -37264,7 +37143,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cpc" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -37272,7 +37151,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cpd" = ( /obj/structure/mopbucket/full, /obj/item/mop, @@ -37304,12 +37183,9 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cpn" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/machinery/camera{ c_tag = "Medbay Cryogenics"; @@ -37627,7 +37503,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cqA" = ( /obj/structure/closet/secure_closet/miner, /turf/simulated/floor/plasteel{ @@ -38027,7 +37903,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "crV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -38035,7 +37911,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "crX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, @@ -38043,7 +37919,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "crY" = ( /obj/structure/cable{ d1 = 1; @@ -38060,7 +37936,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "crZ" = ( /obj/structure/railing/corner{ dir = 1 @@ -38069,7 +37945,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "csb" = ( /obj/structure/table, /obj/item/handheld_defibrillator, @@ -38561,7 +38437,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cto" = ( /obj/structure/sign/nosmoking_2{ pixel_y = -30 @@ -38604,7 +38480,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "ctu" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -38756,7 +38632,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cuc" = ( /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, @@ -38777,7 +38653,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cuf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -38839,7 +38715,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "cup" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -38895,7 +38771,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cuv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -38941,7 +38817,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cuD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -38949,7 +38825,7 @@ locked = 1; name = "Cargo Docking Hatch" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/supply_shuttle, /turf/simulated/floor/plating, /area/station/supply/storage) "cuE" = ( @@ -38970,7 +38846,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "cuI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39162,11 +39038,7 @@ pixel_y = -6; pixel_x = 6 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "cvz" = ( @@ -39220,7 +39092,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cvK" = ( /obj/structure/cable{ d1 = 4; @@ -39289,7 +39161,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "cvU" = ( /obj/structure/bed, /turf/simulated/floor/plasteel{ @@ -39519,7 +39391,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "cxj" = ( /obj/structure/table, /obj/machinery/recharger, @@ -39528,11 +39400,7 @@ }, /area/station/medical/storage/secondary) "cxk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -40156,7 +40024,6 @@ /area/station/maintenance/aft) "cyM" = ( /obj/item/clothing/under/rank/medical/gown, -/obj/structure/table/tray, /obj/item/hemostat{ pixel_x = 6 }, @@ -40234,11 +40101,7 @@ }, /area/station/medical/surgery/secondary) "cyW" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -40432,7 +40295,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "czA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -40450,7 +40313,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "czB" = ( /obj/item/radio/intercom{ name = "west bump"; @@ -40466,9 +40329,7 @@ /area/station/engineering/controlroom) "czC" = ( /obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump Engineering"; - pixel_y = -24; +/obj/machinery/power/apc/directional/south{ shock_proof = 1 }, /obj/structure/disposalpipe/segment{ @@ -40565,11 +40426,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/maintenance/incinerator) @@ -40710,7 +40567,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cAp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/alarm{ @@ -40845,23 +40702,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cAN" = ( /obj/structure/cable{ d2 = 4; icon_state = "0-4" }, /obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cAO" = ( /obj/machinery/firealarm{ dir = 8; @@ -40869,9 +40722,6 @@ pixel_x = -24 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) @@ -41156,7 +41006,7 @@ dir = 4; icon_state = "caution" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cBB" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -41204,22 +41054,11 @@ /area/station/science/rnd) "cBE" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) -"cBF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/turf/simulated/wall, -/area/station/engineering/controlroom) +/area/station/hallway/primary/aft/south) "cBG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -41269,13 +41108,6 @@ icon_state = "purple" }, /area/station/maintenance/asmaint2) -"cBJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/controlroom) "cBL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -41561,10 +41393,6 @@ }, /area/station/maintenance/asmaint2) "cDi" = ( -/obj/machinery/alarm{ - name = "north bump"; - pixel_y = 24 - }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "yellowcorner" @@ -41602,10 +41430,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump Engineering"; - pixel_y = 24; +/obj/machinery/power/apc/directional/north{ shock_proof = 1 }, /turf/simulated/floor/plasteel, @@ -41676,7 +41501,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cDz" = ( /obj/machinery/camera{ c_tag = "Atmospherics Access"; @@ -41689,18 +41514,13 @@ name = "west bump"; pixel_x = -28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "cDA" = ( /obj/machinery/drone_fabricator, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/item/radio/intercom{ name = "south bump"; pixel_y = -28 @@ -41747,9 +41567,6 @@ name = "Emergency NanoMed"; pixel_y = -28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "cDF" = ( @@ -41965,7 +41782,7 @@ dir = 8; icon_state = "arrival" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cEj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -41973,6 +41790,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "cEk" = ( @@ -42151,11 +41971,7 @@ "cFc" = ( /obj/machinery/atmospherics/portable/canister/oxygen, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -42182,7 +41998,7 @@ dir = 8; icon_state = "arrival" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cFj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9 @@ -42212,7 +42028,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cFt" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -42222,7 +42038,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cFw" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, @@ -42442,7 +42258,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cGp" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -42454,20 +42270,27 @@ /turf/simulated/floor/plasteel{ icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cGq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cGr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cGs" = ( /obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 10 + }, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cGt" = ( @@ -42479,10 +42302,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cGu" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "whitepurple" @@ -42501,10 +42321,7 @@ /obj/item/multitool{ pixel_x = 5 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump Engineering"; - pixel_y = 24; +/obj/machinery/power/apc/directional/north{ shock_proof = 1 }, /turf/simulated/floor/plasteel, @@ -42563,7 +42380,7 @@ dir = 8; icon_state = "escape" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cGK" = ( /turf/simulated/wall/r_wall, /area/station/engineering/atmos/control) @@ -42590,8 +42407,8 @@ /area/station/medical/storage) "cGN" = ( /obj/machinery/atmospherics/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 10 }, /turf/simulated/wall, /area/station/engineering/controlroom) @@ -42657,27 +42474,6 @@ icon_state = "darkbluecorners" }, /area/station/service/expedition) -"cGW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - autolink_id = "scibomb_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = 27; - req_access_txt = "13"; - vent_link_id = "scibomb_vent"; - ext_door_link_id = "scibomb_door_ext"; - int_door_link_id = "scibomb_door_int"; - ext_button_link_id = "scibomb_btn_ext"; - int_button_link_id = "scibomb_btn_int" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/asmaint) "cGX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -42776,13 +42572,14 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cHm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cHo" = ( @@ -42843,6 +42640,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "caution" @@ -42906,7 +42704,7 @@ /area/station/command/office/ntrep) "cHD" = ( /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cHE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ @@ -42919,11 +42717,11 @@ "cHG" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cHH" = ( /obj/structure/flora/ausbushes/genericbush, /turf/simulated/floor/grass, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cHL" = ( /obj/item/radio/intercom/locked/prison{ name = "Prison Intercom (General)"; @@ -42956,7 +42754,7 @@ dir = 4; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cHN" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 4 @@ -42971,7 +42769,7 @@ dir = 8; icon_state = "escape" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cHO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -42989,7 +42787,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cHP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43001,6 +42799,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cHQ" = ( @@ -43013,9 +42812,7 @@ /area/station/engineering/break_room) "cHU" = ( /obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/purple, /turf/simulated/wall, /area/station/engineering/break_room) "cHV" = ( @@ -43088,10 +42885,7 @@ }, /area/station/command/office/ce) "cIe" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump Engineering"; - pixel_x = 24; +/obj/machinery/power/apc/directional/east{ shock_proof = 1 }, /obj/structure/cable{ @@ -43251,7 +43045,6 @@ pixel_x = 3; pixel_y = -3 }, -/obj/machinery/atmospherics/pipe/simple/insulated, /turf/simulated/floor/plasteel{ icon_state = "whitepurple" }, @@ -43308,7 +43101,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cIT" = ( /obj/structure/cable{ d1 = 1; @@ -43321,6 +43114,7 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cIV" = ( @@ -43409,6 +43203,7 @@ /obj/machinery/light{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cJp" = ( @@ -43607,14 +43402,17 @@ /turf/simulated/floor/engine, /area/station/science/misc_lab) "cJR" = ( -/obj/machinery/door/poddoor/preopen{ - name = "Biohazard Shutter"; - id_tag = "RnDChem" +/obj/machinery/atmospherics/meter{ + layer = 3.3 }, -/obj/machinery/atmospherics/pipe/simple/insulated, -/obj/effect/spawner/window/reinforced/plasma, -/turf/simulated/floor/engine, -/area/station/science/misc_lab) +/obj/structure/grille, +/obj/structure/window/plasmareinforced, +/obj/structure/window/plasmareinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/station/science/toxins/mixing) "cJV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -43628,7 +43426,7 @@ /area/station/maintenance/port) "cJZ" = ( /turf/simulated/wall, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "cKb" = ( /turf/simulated/wall, /area/station/maintenance/assembly_line) @@ -43741,7 +43539,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cKn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -43824,7 +43622,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cKN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -43878,6 +43676,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cKV" = ( @@ -43986,17 +43785,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/assembly_line) -"cLq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 1"; - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/station/hallway/primary/aft) "cLw" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -44162,7 +43950,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cLU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -44392,7 +44180,7 @@ dir = 1; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cMH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /obj/structure/cable{ @@ -44456,6 +44244,7 @@ icon_state = "2-8" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "cMX" = ( @@ -44686,13 +44475,13 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cNT" = ( /obj/machinery/economy/vending/cola, /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cNU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -44958,7 +44747,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "cON" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -45000,10 +44789,7 @@ pixel_x = -3; pixel_y = -3 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump Engineering"; - pixel_x = -24; +/obj/machinery/power/apc/directional/west{ shock_proof = 1 }, /obj/structure/cable{ @@ -45074,6 +44860,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cPo" = ( @@ -45086,10 +44873,7 @@ icon_state = "0-4" }, /obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump Engineering"; - pixel_x = -24; +/obj/machinery/power/apc/directional/west{ shock_proof = 1 }, /turf/simulated/floor/plasteel{ @@ -45140,10 +44924,7 @@ /obj/item/paper_bin, /obj/item/pen, /obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/window/reinforced{ dir = 1 }, @@ -45227,6 +45008,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cPN" = ( @@ -45236,7 +45018,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cPO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -45416,6 +45198,16 @@ "cQE" = ( /turf/simulated/floor/plasteel, /area/station/command/office/ce) +"cQF" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/directional/east, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft/north) "cQH" = ( /obj/machinery/power/terminal{ dir = 1 @@ -45468,6 +45260,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cQL" = ( @@ -45866,6 +45659,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cRP" = ( @@ -45931,8 +45725,8 @@ /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cRV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) @@ -46072,10 +45866,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating, /area/station/maintenance/apmaint2) "cSE" = ( @@ -46139,6 +45930,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cSK" = ( @@ -46195,6 +45987,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cSP" = ( @@ -46204,7 +45999,7 @@ /obj/structure/sign/poster/official/random{ pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -46266,26 +46061,26 @@ /turf/simulated/floor/carpet, /area/station/public/mrchangs) "cSY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cSZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, /obj/machinery/computer/atmos_alert{ dir = 4 }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "cTa" = ( @@ -46347,7 +46142,7 @@ }, /area/station/command/office/ce) "cTj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 4 }, /turf/simulated/wall/r_wall, @@ -46430,6 +46225,10 @@ icon_state = "bluefull" }, /area/station/medical/storage) +"cTz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "cTA" = ( /obj/machinery/atmospherics/unary/thermomachine/freezer{ dir = 8 @@ -46511,21 +46310,22 @@ /area/station/command/office/ce) "cTN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 }, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cTO" = ( /obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/item/painter, /obj/item/painter{ pixel_x = -4; pixel_y = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cTP" = ( @@ -46544,15 +46344,15 @@ /obj/item/clothing/gloves/color/black, /obj/item/clothing/gloves/color/black, /obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/newscaster{ dir = 1; name = "south bump"; pixel_y = -28 }, /obj/item/crowbar/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cTU" = ( @@ -46584,11 +46384,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 @@ -46683,7 +46479,7 @@ /area/station/engineering/control) "cUm" = ( /obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -46717,14 +46513,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "cUs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cUt" = ( @@ -46753,7 +46549,7 @@ /turf/simulated/floor/plasteel, /area/station/command/office/ce) "cUx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, /turf/simulated/wall/r_wall, @@ -46920,9 +46716,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump Engineering"; - pixel_y = -24; +/obj/machinery/power/apc/directional/south{ shock_proof = 1 }, /turf/simulated/floor/plating, @@ -47119,11 +46913,7 @@ dir = 4; pixel_x = -22 }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "Engineering Engine Super APC"; - pixel_y = 24; +/obj/machinery/power/apc/critical/directional/north{ shock_proof = 1 }, /obj/machinery/atmospherics/binary/pump{ @@ -47168,6 +46958,12 @@ }, /turf/simulated/floor/carpet/royalblack, /area/station/maintenance/apmaint) +"cWm" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "cWo" = ( /obj/structure/table/wood, /obj/machinery/bottler, @@ -47306,9 +47102,7 @@ }, /area/station/command/office/ce) "cWE" = ( -/obj/structure/flora/tree/palm{ - pixel_x = 0 - }, +/obj/structure/flora/tree/palm, /obj/effect/overlay/coconut{ pixel_y = -6 }, @@ -47335,6 +47129,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 5 + }, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cWL" = ( @@ -47352,6 +47149,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "cWM" = ( @@ -47557,7 +47357,7 @@ name = "west bump"; pixel_x = -28 }, -/obj/machinery/suit_storage_unit/ce, +/obj/machinery/suit_storage_unit/ce/secure, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "yellow" @@ -47604,7 +47404,7 @@ "cXQ" = ( /obj/machinery/atmospherics/binary/volume_pump/on{ dir = 8; - name = "Filter to External" + name = "Air to External" }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) @@ -47919,6 +47719,12 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "cZa" = ( +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + name = "Expedition Requests Console"; + pixel_x = 30 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkbluecorners" @@ -48000,11 +47806,7 @@ "cZp" = ( /obj/item/stack/cable_coil, /obj/structure/table/glass, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -48073,11 +47875,7 @@ /area/station/science/xenobiology) "cZz" = ( /obj/structure/reagent_dispensers/watertank, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -48153,12 +47951,6 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "cZV" = ( -/obj/machinery/access_button{ - autolink_id = "barmaint_btn_int"; - pixel_x = -25; - pixel_y = 25; - req_access_txt = "13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, @@ -48256,18 +48048,11 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "dap" = ( -/obj/machinery/door/airlock/external{ - id_tag = "fpsolar_door_int"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "dar" = ( @@ -48545,10 +48330,7 @@ }, /area/station/ai_monitored/storage/eva) "dby" = ( -/obj/machinery/power/apc{ - dir = 4; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -49430,7 +49212,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "deu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -49610,10 +49392,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 6 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump Engineering"; - pixel_x = -24; +/obj/machinery/power/apc/directional/west{ shock_proof = 1 }, /turf/simulated/floor/plasteel, @@ -49642,10 +49421,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump Engineering"; - pixel_x = -24; +/obj/machinery/power/apc/directional/west{ shock_proof = 1 }, /turf/simulated/floor/plating, @@ -49919,9 +49695,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc{ - name = "south bump Engineering"; - pixel_y = -24; +/obj/machinery/power/apc/directional/south{ shock_proof = 1 }, /turf/simulated/floor/plasteel{ @@ -50022,21 +49796,6 @@ /obj/machinery/atmospherics/meter, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) -"dgv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - id_tag = "assolar_door_ext"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/simulated/floor/plating, -/area/station/maintenance/starboardsolar) "dgy" = ( /obj/effect/landmark/spawner/nukedisc_respawn, /obj/structure/table, @@ -50045,14 +49804,14 @@ /area/station/maintenance/asmaint2) "dgz" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -8; pixel_y = 7 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 10 }, /turf/simulated/floor/beach/sand, @@ -50063,21 +49822,6 @@ }, /turf/simulated/wall/mineral/titanium, /area/shuttle/pod_4) -"dgH" = ( -/obj/machinery/newscaster{ - dir = 1; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/simulated/floor/wood, -/area/station/public/mrchangs) "dgI" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -50162,7 +49906,7 @@ "dgY" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, -/obj/item/reagent_containers/food/snacks/donkpocket, +/obj/item/food/snacks/donkpocket, /turf/simulated/floor/plating, /area/station/maintenance/aft) "dgZ" = ( @@ -50227,7 +49971,7 @@ pixel_y = -24 }, /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 2; pixel_y = 6 }, @@ -50242,6 +49986,11 @@ /obj/structure/chair/wood{ dir = 8 }, +/obj/machinery/newscaster{ + dir = 8; + name = "east bump"; + pixel_x = 28 + }, /turf/simulated/floor/wood, /area/station/public/mrchangs) "dhv" = ( @@ -50683,11 +50432,7 @@ /area/space/nearstation) "dje" = ( /obj/item/kirbyplants, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -50734,6 +50479,7 @@ }, /obj/item/book/manual/barman_recipes, /obj/item/lighter/zippo, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -50759,8 +50505,8 @@ dir = 4 }, /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/flask/barflask, -/obj/item/reagent_containers/food/drinks/flask/barflask, +/obj/item/reagent_containers/drinks/flask/barflask, +/obj/item/reagent_containers/drinks/flask/barflask, /obj/machinery/status_display{ pixel_y = 32 }, @@ -50847,10 +50593,6 @@ /turf/simulated/wall/r_wall, /area/station/engineering/control) "djw" = ( -/obj/machinery/alarm{ - name = "north bump"; - pixel_y = 24 - }, /obj/machinery/camera{ c_tag = "Hydroponics Pasture" }, @@ -50923,11 +50665,7 @@ icon_state = "0-8" }, /obj/structure/chair, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -51022,11 +50760,7 @@ }, /area/station/turret_protected/aisat/interior) "djV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -51321,9 +51055,6 @@ dir = 6 }, /obj/machinery/ai_slipper, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -51363,11 +51094,6 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "dkR" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, /obj/machinery/light/small{ dir = 8 }, @@ -51428,9 +51154,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, /obj/effect/turf_decal/stripes/corner{ dir = 1 }, @@ -51517,13 +51240,13 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "dlj" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" +/obj/effect/spawner/window/reinforced/grilled, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/floor/plating, -/area/station/maintenance/asmaint) +/area/station/hallway/secondary/entry/north) "dlk" = ( /obj/structure/cable{ d1 = 4; @@ -51761,7 +51484,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "dmw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -51781,7 +51504,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "dmy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -52456,8 +52179,9 @@ /area/station/maintenance/storage) "dot" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 4 + dir = 1 }, +/obj/machinery/atmospherics/meter, /turf/simulated/wall, /area/station/engineering/controlroom) "dou" = ( @@ -52676,6 +52400,12 @@ layer = 4; pixel_y = -32 }, +/obj/machinery/light_switch{ + dir = 8; + name = "east bump"; + pixel_x = 24; + pixel_y = -5 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -52801,7 +52531,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dpV" = ( /obj/machinery/light/small{ dir = 4 @@ -52831,11 +52561,7 @@ icon_state = "0-4" }, /obj/machinery/atmospherics/portable/scrubber, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -52873,11 +52599,7 @@ icon_state = "0-8" }, /obj/machinery/power/port_gen/pacman, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plating, /area/station/aisat/service) "dql" = ( @@ -52899,6 +52621,11 @@ /area/station/aisat/hall) "dqq" = ( /obj/machinery/porta_turret/ai_turret, +/obj/machinery/light_switch{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -53007,11 +52734,7 @@ /area/station/turret_protected/ai) "drh" = ( /obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -53027,6 +52750,11 @@ pixel_y = 7 }, /obj/item/pen/multi, +/obj/machinery/light_switch{ + dir = 4; + name = "west bump"; + pixel_x = -24 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -53183,11 +52911,7 @@ network = list("SS13","MiniSat"); start_active = 1 }, -/obj/machinery/power/apc{ - cell_type = 5000; - name = "south bump Important Area"; - pixel_y = -24 - }, +/obj/machinery/power/apc/important/directional/south, /turf/simulated/floor/bluegrid, /area/station/turret_protected/ai) "drS" = ( @@ -53316,11 +53040,6 @@ /turf/simulated/floor/bluegrid, /area/station/turret_protected/ai) "dsh" = ( -/obj/machinery/alarm{ - dir = 1; - name = "south bump"; - pixel_y = -24 - }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -53376,7 +53095,7 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "dsH" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -53387,11 +53106,7 @@ dir = 1 }, /obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "Engineering Engine Super APC"; - pixel_y = 24; +/obj/machinery/power/apc/critical/directional/north{ shock_proof = 1 }, /obj/structure/cable{ @@ -53401,7 +53116,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "dsK" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "dsL" = ( @@ -53495,13 +53210,13 @@ /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "dtc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, /obj/machinery/light{ dir = 8 }, /obj/machinery/economy/vending/atmosdrobe, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "dtk" = ( @@ -53525,7 +53240,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "dtn" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "dto" = ( @@ -53557,10 +53272,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "dts" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump Engineering"; - pixel_y = 24; +/obj/machinery/power/apc/directional/north{ shock_proof = 1 }, /obj/structure/reagent_dispensers/watertank, @@ -53706,13 +53418,10 @@ /turf/simulated/floor/plasteel, /area/station/medical/sleeper) "dvb" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, /obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/e_to_w/arrivals, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "dvv" = ( /mob/living/simple_animal/pet/sloth/paperwork, /turf/simulated/floor/carpet, @@ -53879,7 +53588,7 @@ dir = 1; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dAA" = ( /obj/machinery/mass_driver{ dir = 4; @@ -53972,19 +53681,19 @@ /area/station/maintenance/apmaint) "dEb" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "dEq" = ( /obj/structure/rack{ dir = 1 }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = -3; pixel_y = -3 }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = 3; pixel_y = 3 }, @@ -54184,7 +53893,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "dHU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -54252,7 +53961,7 @@ dir = 10; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "dJG" = ( /obj/structure/cable{ d1 = 4; @@ -54365,7 +54074,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "dLZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -54391,7 +54100,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "dMD" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-y" @@ -54415,7 +54124,7 @@ /area/station/maintenance/asmaint) "dOb" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/item/reagent_containers/drinks/bottle/rum, /obj/item/reagent_containers/glass/rag{ pixel_x = -7 }, @@ -54493,20 +54202,6 @@ icon_state = "whitepurple" }, /area/station/science/xenobiology) -"dQn" = ( -/obj/machinery/access_button{ - autolink_id = "evamaint_btn_ext"; - pixel_x = 25; - req_access_txt = "13" - }, -/obj/machinery/door/airlock/external{ - id_tag = "evamaint_door_ext"; - locked = 1; - name = "EVA External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint2) "dQC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -54514,6 +54209,10 @@ /obj/machinery/light{ dir = 1 }, +/obj/machinery/light_switch{ + name = "north bump"; + pixel_y = 24 + }, /turf/simulated/floor/bluegrid, /area/station/telecomms/chamber) "dQE" = ( @@ -54580,21 +54279,11 @@ /turf/simulated/floor/plating, /area/station/aisat/hall) "dRz" = ( -/obj/item/bonegel{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/cautery, -/obj/item/FixOVein{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/table/tray, -/obj/item/scalpel, /obj/machinery/status_display{ layer = 4; pixel_x = -32 }, +/obj/structure/table/tray, /turf/simulated/floor/plasteel{ icon_state = "whitebluecorner" }, @@ -54883,7 +54572,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "dYV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -54984,7 +54673,7 @@ id = "Courtroom" }, /turf/simulated/floor/wood, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "eba" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/mecha_wreckage/durand/old, @@ -55268,12 +54957,12 @@ /obj/structure/rack{ dir = 1 }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = -3; pixel_y = -3 }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = 3; pixel_y = 3 }, @@ -55304,17 +54993,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) +"egd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/east) "egi" = ( /mob/living/simple_animal/mouse, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "egq" = ( /obj/structure/closet/secure_closet/brig, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -55407,7 +55101,7 @@ /obj/structure/sign/vacuum/external, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "ehg" = ( /obj/structure/cable{ d1 = 1; @@ -55607,7 +55301,7 @@ /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "eje" = ( /obj/structure/railing{ dir = 8 @@ -55812,7 +55506,7 @@ sort_type_txt = "1" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "epT" = ( /obj/effect/spawner/window/reinforced/plasma, /turf/simulated/floor/plating, @@ -55972,11 +55666,11 @@ /area/station/maintenance/disposal) "esV" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8; pixel_y = 1 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 11 }, @@ -56047,12 +55741,12 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "evw" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" @@ -56084,11 +55778,9 @@ }, /obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "exh" = ( @@ -56274,6 +55966,19 @@ }, /turf/simulated/floor/plasteel, /area/station/security/permabrig) +"eCx" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/hallway/secondary/entry/lounge) "eDs" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -56396,6 +56101,21 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) +"eGE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "eGU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -56548,13 +56268,6 @@ icon_state = "dark" }, /area/station/security/prison/cell_block/A) -"eIz" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - autolink_id = "evamaint_vent" - }, -/turf/simulated/floor/plating/airless, -/area/station/maintenance/fpmaint2) "eIN" = ( /obj/structure/table/reinforced, /obj/effect/spawner/lootdrop/maintenance, @@ -56582,11 +56295,7 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "eJG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -56733,6 +56442,12 @@ pixel_x = -5 }, /obj/item/storage/briefcase, +/obj/machinery/requests_console{ + department = "Medbay"; + name = "Psych Requests Console"; + pixel_x = -30; + departmentType = 2 + }, /turf/simulated/floor/wood, /area/station/medical/psych) "eNV" = ( @@ -56778,6 +56493,19 @@ /obj/effect/spawner/lootdrop/maintenance/three, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) +"eOZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) "ePp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -56802,7 +56530,7 @@ "ePP" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "ePR" = ( /obj/structure/cable{ d2 = 2; @@ -57047,19 +56775,14 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "eXd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - id_tag = "southatmos_door_int"; - locked = 1; - name = "Atmospherics External Access" +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/s_to_n/engineer{ + req_access_txt = 13 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plating, -/area/station/maintenance/storage) +/area/station/maintenance/auxsolarstarboard) "eXy" = ( /obj/machinery/alarm{ dir = 1; @@ -57208,6 +56931,10 @@ }, /turf/simulated/floor/carpet, /area/station/supply/qm) +"fay" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/north) "faK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ @@ -57415,6 +57142,9 @@ /obj/machinery/computer/mob_battle_terminal/red, /turf/simulated/floor/plasteel, /area/station/public/dorms) +"feN" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "feR" = ( /obj/structure/chair/office/light{ dir = 4 @@ -57715,7 +57445,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "flN" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -57859,6 +57589,15 @@ /obj/machinery/door/airlock/command/glass, /turf/simulated/floor/plasteel, /area/station/supply/qm) +"fof" = ( +/obj/structure/rack, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) "fog" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 5 @@ -57972,6 +57711,9 @@ icon_state = "rampbottom" }, /area/station/security/prison/cell_block/A) +"fqr" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry/south) "fqt" = ( /obj/item/storage/bag/plasticbag, /obj/item/trash/fried_vox, @@ -58137,6 +57879,28 @@ icon_state = "redcorner" }, /area/station/command/bridge) +"fvs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/east) "fvy" = ( /obj/structure/cable{ d1 = 4; @@ -58152,7 +57916,7 @@ dir = 4; icon_state = "redcorner" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "fvV" = ( /obj/structure/table, /obj/item/toy/crayon/spraycan, @@ -58224,7 +57988,7 @@ /area/station/science/hallway) "fxN" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood, /area/station/maintenance/asmaint) "fxP" = ( @@ -58265,7 +58029,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "fyQ" = ( /obj/structure/table, /obj/item/stack/medical/bruise_pack/advanced, @@ -58403,11 +58167,7 @@ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -58538,7 +58298,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "fDJ" = ( /turf/simulated/wall/r_wall, /area/station/science/toxins/launch) @@ -58706,11 +58466,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners" }, @@ -58737,6 +58493,11 @@ icon_state = "cafeteria" }, /area/station/public/dorms) +"fIS" = ( +/obj/structure/cable, +/obj/machinery/power/apc/directional/south, +/turf/simulated/floor/plasteel, +/area/station/supply/lobby) "fJa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple, /obj/structure/cable{ @@ -58980,21 +58741,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) -"fRa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - id_tag = "apsolar_door_ext"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/simulated/floor/plating, -/area/station/maintenance/portsolar) "fRh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -59109,6 +58855,13 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/assembly_line) +"fTL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry) "fTR" = ( /obj/item/radio/intercom{ name = "south bump"; @@ -59124,7 +58877,7 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "fUd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -59186,7 +58939,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "fVy" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ @@ -59220,11 +58973,7 @@ dir = 6 }, /obj/structure/cable/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -59372,7 +59121,7 @@ dir = 10; icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "gcJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -59440,7 +59189,7 @@ dir = 8; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "gdY" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -59474,7 +59223,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "gea" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -59557,10 +59306,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -59643,13 +59389,12 @@ /turf/simulated/floor/carpet/royalblack, /area/station/maintenance/apmaint) "ghR" = ( -/obj/structure/sign/vacuum/external{ - pixel_x = -32 - }, /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/sign/vacuum/external{ + pixel_x = 32 + }, /turf/simulated/floor/plating, /area/station/maintenance/aft) "gif" = ( @@ -59683,11 +59428,7 @@ /turf/simulated/floor/grass, /area/station/hallway/secondary/exit) "gir" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/item/flag/nt, /obj/structure/cable{ d2 = 4; @@ -59987,7 +59728,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "gqA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -60033,20 +59774,6 @@ }, /turf/simulated/floor/plating, /area/station/science/xenobiology) -"gru" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - autolink_id = "southatmos_btn_int"; - pixel_x = 22; - pixel_y = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/storage) "gsd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -60168,11 +59895,7 @@ /turf/simulated/floor/carpet, /area/station/command/office/captain) "gtr" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -60198,7 +59921,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "guy" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -60215,8 +59938,8 @@ /area/station/security/prisonlockers) "guQ" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/saltshaker, +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -7 }, /obj/effect/spawner/lootdrop/maintenance, @@ -60494,16 +60217,6 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) -"gCP" = ( -/obj/machinery/door/airlock/external{ - id_tag = "scimaint_door_int"; - locked = 1; - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) "gCU" = ( /obj/structure/punching_bag, /obj/effect/turf_decal/delivery/hollow, @@ -60593,7 +60306,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "gEU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -60700,6 +60413,9 @@ icon_state = "dark" }, /area/station/security/prison/cell_block/A) +"gIc" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/east) "gId" = ( /obj/structure/cable{ d1 = 4; @@ -60831,13 +60547,20 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) +"gLE" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/north) "gLG" = ( /turf/simulated/wall, /area/station/engineering/hardsuitstorage) "gMa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, -/obj/item/reagent_containers/food/snacks/dough{ +/obj/item/food/snacks/dough{ desc = "A piece of dough. It looks moldy and is hard as a rock. Hope you're not planning on turning this into a pizza.."; name = "old dough" }, @@ -60853,11 +60576,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 1; - name = "Engineering Engine Super APC"; - pixel_x = -24; +/obj/machinery/power/apc/critical/directional/west{ shock_proof = 1 }, /turf/simulated/floor/engine, @@ -60980,12 +60699,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, -/obj/machinery/access_button{ - autolink_id = "apsolar_btn_int"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "13" - }, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "gOr" = ( @@ -61103,9 +60816,21 @@ icon_state = "dark" }, /area/station/medical/morgue) +"gQO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) "gRe" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood, /area/station/maintenance/asmaint2) "gRg" = ( @@ -61274,11 +60999,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -61486,26 +61207,6 @@ }, /turf/simulated/floor/wood, /area/station/command/meeting_room) -"gXU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - id_tag = "sol_door_int"; - locked = 1; - name = "Arrivals External Access" - }, -/turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) -"gYf" = ( -/obj/machinery/access_button{ - autolink_id = "southatmos_btn_ext"; - pixel_x = -25; - pixel_y = -8 - }, -/obj/structure/lattice, -/turf/space, -/area/space/nearstation) "gYq" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /turf/simulated/floor/plating, @@ -62037,9 +61738,7 @@ dir = 1 }, /obj/structure/table, -/obj/item/bonegel, -/obj/item/bonesetter, -/obj/item/FixOVein, +/obj/item/storage/surgical_tray, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -62048,7 +61747,7 @@ /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, -/area/station/medical/medbay2) +/area/station/medical/medbay) "hoB" = ( /obj/docking_port/stationary{ dwidth = 2; @@ -62060,12 +61759,6 @@ /turf/space, /area/space) "hoD" = ( -/obj/machinery/access_button{ - autolink_id = "fpsolar_btn_int"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "13" - }, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -62434,19 +62127,20 @@ id = "Courtroom" }, /turf/simulated/floor/wood, -/area/station/legal/courtroom) +/area/station/legal/courtroom/gallery) "hyk" = ( /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) "hyv" = ( /obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/item/radio/intercom{ + name = "east bump"; + pixel_x = 28 + }, /turf/simulated/floor/bluegrid, /area/station/telecomms/chamber) "hyx" = ( @@ -62517,12 +62211,6 @@ /turf/simulated/floor/plasteel, /area/station/science/storage) "hzG" = ( -/obj/machinery/access_button{ - autolink_id = "scimaint_btn_int"; - pixel_x = -28; - pixel_y = -5; - req_access_txt = "13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -62541,34 +62229,6 @@ /obj/structure/flora/rock/pile/largejungle, /turf/simulated/floor/grass, /area/station/security/permabrig) -"hAl" = ( -/obj/structure/table/glass, -/obj/item/hemostat{ - pixel_x = 6 - }, -/obj/item/retractor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stack/medical/bruise_pack/advanced, -/obj/item/reagent_containers/iv_bag/salglu, -/obj/machinery/holosign_switch{ - id = "surgery2"; - pixel_x = -24; - pixel_y = 4; - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - dir = 4; - name = "custom placement"; - pixel_y = -4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/medical/surgery/secondary) "hAG" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/structure/disposalpipe/segment, @@ -62643,21 +62303,6 @@ icon_state = "red" }, /area/station/security/permabrig) -"hDJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - autolink_id = "assolar_btn_ext"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/station/engineering/solar/starboard) "hDQ" = ( /obj/structure/table/wood, /obj/machinery/recharger{ @@ -62671,7 +62316,7 @@ /area/station/command/meeting_room) "hDS" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/mug/sci, +/obj/item/reagent_containers/drinks/mug/sci, /obj/machinery/light{ dir = 8 }, @@ -62722,6 +62367,11 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, +/obj/machinery/light_switch{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -62804,15 +62454,15 @@ /turf/simulated/floor/plating, /area/station/service/chapel) "hFM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "hGb" = ( @@ -62912,7 +62562,7 @@ icon_state = "pipe-j2s" }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "hJb" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -63037,8 +62687,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/lobby) "hMm" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -63251,6 +62906,19 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/engine, /area/station/engineering/control) +"hRa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/legal/courtroom/gallery) "hRq" = ( /obj/machinery/firealarm{ name = "north bump"; @@ -63312,17 +62980,22 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "hTA" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "brown" }, -/area/station/supply/office) +/area/station/supply/sorting) "hTD" = ( /obj/effect/turf_decal/woodsiding{ dir = 8 @@ -63419,6 +63092,9 @@ icon_state = "freezerfloor" }, /area/station/security/permabrig) +"hVy" = ( +/turf/simulated/wall/r_wall, +/area/station/hallway/secondary/entry/north) "hVP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -63668,6 +63344,10 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"idr" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/lounge) "idz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -63735,11 +63415,7 @@ /area/station/maintenance/fore) "ifH" = ( /obj/item/kirbyplants, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -63857,6 +63533,18 @@ }, /turf/simulated/floor/plasteel, /area/station/public/storage/tools) +"iib" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Library"; + departmentType = 2; + name = "Library Requests Console"; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/station/service/library) "iim" = ( /obj/machinery/computer/shuttle/mining, /obj/item/radio/intercom{ @@ -63944,6 +63632,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"ikL" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/east) "ilh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -64134,6 +63826,12 @@ }, /turf/simulated/floor/plasteel, /area/station/science/toxins/launch) +"ipX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "iqf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/flasher{ @@ -64202,11 +63900,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -64494,6 +64188,10 @@ icon_state = "neutralcorner" }, /area/station/public/dorms) +"iAI" = ( +/obj/effect/spawner/window/reinforced, +/turf/simulated/floor/plating, +/area/station/supply/sorting) "iAZ" = ( /obj/machinery/door/poddoor/shutters{ id_tag = "brig_courtroom"; @@ -64524,6 +64222,9 @@ /obj/effect/spawner/random_spawners/wall_rusted_maybe, /turf/simulated/wall, /area/station/maintenance/disposal) +"iCd" = ( +/turf/simulated/wall, +/area/station/medical/patients_rooms1) "iCq" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/alarm{ @@ -64904,11 +64605,7 @@ /turf/simulated/floor/plasteel, /area/station/public/dorms) "iME" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/machinery/bluespace_beacon, /obj/structure/cable{ d2 = 8; @@ -65007,7 +64704,7 @@ }, /obj/machinery/light, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "iPo" = ( /obj/structure/cable{ d2 = 2; @@ -65085,6 +64782,23 @@ icon_state = "freezerfloor" }, /area/station/medical/cryo) +"iRG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel, +/area/station/supply/office) "iRS" = ( /obj/machinery/door/airlock/medical{ locked = 1; @@ -65242,7 +64956,13 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) +"iUj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "iUo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -65288,6 +65008,10 @@ }, /turf/simulated/floor/plating, /area/station/command/office/ce) +"iWr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plasteel, +/area/station/engineering/break_room) "iWs" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, @@ -65603,7 +65327,7 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "jfa" = ( /obj/machinery/light{ dir = 1 @@ -65738,6 +65462,9 @@ icon_state = "whitecorner" }, /area/station/maintenance/aft) +"jje" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/entry/south) "jjs" = ( /obj/effect/decal/cleanable/ash, /turf/simulated/floor/plating, @@ -65809,19 +65536,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/assembly_line) -"jmd" = ( -/obj/machinery/door/airlock/external{ - id_tag = "sol_door_ext"; - locked = 1; - name = "Arrivals External Access" - }, -/obj/machinery/access_button{ - autolink_id = "sol_btn_ext"; - pixel_x = -10; - pixel_y = -23 - }, -/turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) "jmM" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable, @@ -65879,7 +65593,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "jnA" = ( /obj/structure/cable{ d1 = 2; @@ -66161,7 +65875,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "jsC" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; @@ -66229,7 +65943,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "jtP" = ( /obj/item/kirbyplants, /turf/simulated/floor/wood{ @@ -66513,7 +66227,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "jAz" = ( /obj/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -66635,16 +66349,6 @@ }, /turf/simulated/floor/plasteel, /area/station/public/dorms) -"jEq" = ( -/obj/machinery/access_button{ - autolink_id = "barmaint_btn_ext"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) "jFf" = ( /obj/structure/closet/crate/secure{ req_one_access = list(33,41); @@ -66669,7 +66373,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "jFC" = ( /obj/structure/cable{ d2 = 4; @@ -66795,6 +66499,14 @@ icon_state = "yellowcorner" }, /area/station/engineering/hardsuitstorage) +"jJs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/directional/south, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/east) "jKZ" = ( /obj/machinery/atmospherics/binary/pump/on, /turf/simulated/floor/plating, @@ -66821,6 +66533,20 @@ icon_state = "freezerfloor" }, /area/station/medical/cryo) +"jLz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/lounge) "jLT" = ( /obj/structure/bed, /obj/machinery/status_display{ @@ -66887,13 +66613,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/external{ - id_tag = "fssolar_door_ext"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "jOA" = ( @@ -66910,10 +66629,7 @@ name = "west bump"; pixel_x = -28 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -66932,16 +66648,6 @@ }, /turf/simulated/floor/plasteel, /area/station/science/xenobiology) -"jPd" = ( -/obj/machinery/door/airlock/external{ - id_tag = "barmaint_door_int"; - locked = 1; - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/station/maintenance/fsmaint) "jPk" = ( /obj/structure/cable{ d2 = 2; @@ -66962,6 +66668,10 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) +"jPF" = ( +/obj/effect/spawner/window/reinforced, +/turf/simulated/floor/plating, +/area/station/supply/lobby) "jPN" = ( /obj/machinery/computer/mob_battle_terminal/blue{ pixel_x = -32 @@ -66985,7 +66695,7 @@ dir = 4; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "jPZ" = ( /obj/structure/sign/poster/official/cleanliness{ pixel_x = 32 @@ -67036,20 +66746,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "jRo" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - autolink_id = "barmaint_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = 25; - req_access_txt = "13"; - vent_link_id = "barmaint_vent"; - ext_door_link_id = "barmaint_door_ext"; - int_door_link_id = "barmaint_door_int"; - ext_button_link_id = "barmaint_btn_ext"; - int_button_link_id = "barmaint_btn_int" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/fsmaint) +/obj/effect/spawner/airlock/s_to_n/long/square/engineer, +/turf/simulated/wall, +/area/station/maintenance/fpmaint2) "jRx" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, @@ -67356,6 +67055,12 @@ icon_state = "whitegreen" }, /area/station/public/sleep) +"jXy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "jYt" = ( /obj/structure/cable{ d1 = 1; @@ -67498,7 +67203,7 @@ "kdh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small, -/obj/item/reagent_containers/food/snacks/grown/cannabis, +/obj/item/food/snacks/grown/cannabis, /turf/simulated/floor/carpet, /area/station/maintenance/asmaint) "kdk" = ( @@ -67570,6 +67275,12 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) +"keI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "keJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ @@ -67601,7 +67312,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "kgc" = ( -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "kgg" = ( @@ -68044,11 +67755,7 @@ /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "kpz" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -68074,7 +67781,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "kre" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Maintenance" @@ -68171,8 +67878,8 @@ }, /obj/item/clothing/mask/cigarette/random, /obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) @@ -68246,7 +67953,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "kvp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -68445,7 +68152,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "kBl" = ( /obj/structure/table/reinforced, /obj/machinery/flasher{ @@ -68480,7 +68187,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "kBF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -68553,7 +68260,7 @@ "kCk" = ( /obj/structure/disposalpipe/segment/corner, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "kDd" = ( /obj/machinery/door/window/reinforced/normal{ name = "Research Director"; @@ -68608,6 +68315,12 @@ icon_state = "wood-broken7" }, /area/station/maintenance/asmaint) +"kEt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "kEx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, @@ -68631,14 +68344,30 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "kEK" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/security/permabrig) +"kFd" = ( +/obj/machinery/requests_console{ + department = "Primary Tool Storage"; + name = "Chapel Office Request Console"; + departmentType = 2; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "grimy" + }, +/area/station/service/chapel/office) "kFj" = ( /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -68660,7 +68389,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "kFS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -68671,7 +68400,21 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) +"kGt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/station/medical/medbay) "kGB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, @@ -68820,6 +68563,12 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) +"kKA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "kKD" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/stripes/line{ @@ -68856,10 +68605,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard/east) "kKV" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -69043,6 +68789,16 @@ icon_state = "cult" }, /area/station/legal/lawoffice) +"kOU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) "kPo" = ( /obj/structure/chair/sofa/corp/right{ dir = 8 @@ -69055,7 +68811,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "kPY" = ( /obj/structure/closet/secure_closet/medical3, /obj/structure/mirror{ @@ -69074,7 +68830,7 @@ dir = 10; icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "kQg" = ( /obj/machinery/flasher{ id = "AI"; @@ -69318,6 +69074,11 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/alarm{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" }, @@ -69458,12 +69219,6 @@ /turf/simulated/floor/wood, /area/station/security/permabrig) "laU" = ( -/obj/machinery/access_button{ - autolink_id = "fpsolar_btn_ext"; - pixel_x = 25; - pixel_y = -25; - req_access_txt = "13" - }, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -69588,19 +69343,6 @@ /turf/simulated/floor/grass/jungle/no_creep, /area/station/command/bridge) "lcl" = ( -/obj/machinery/airlock_controller/air_cycler{ - name = "EVA Airlock Console"; - pixel_x = 25; - req_one_access_txt = "1;5;11;18;24"; - vent_link_id = "evamaint_vent"; - ext_door_link_id = "evamaint_door_ext"; - int_door_link_id = "evamaint_door_int"; - ext_button_link_id = "evamaint_btn_ext"; - int_button_link_id = "evamaint_btn_int" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, /turf/simulated/floor/plating/airless, /area/station/maintenance/fpmaint2) "lcw" = ( @@ -69683,6 +69425,9 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/assembly_line) +"ler" = ( +/turf/simulated/wall, +/area/station/legal/courtroom/gallery) "let" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; @@ -69724,21 +69469,6 @@ icon_state = "white" }, /area/station/science/genetics) -"lgb" = ( -/obj/machinery/access_button{ - autolink_id = "fssolar_btn_ext"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/station/engineering/solar/auxstarboard) "lgS" = ( /obj/structure/closet/secure_closet/brig, /turf/simulated/floor/plasteel{ @@ -69832,6 +69562,12 @@ icon_state = "purplecorner" }, /area/station/science/robotics) +"lje" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) "ljA" = ( /obj/structure/window/reinforced{ dir = 4 @@ -70003,7 +69739,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "lnQ" = ( /obj/effect/turf_decal/delivery/partial, /turf/simulated/floor/plasteel, @@ -70233,15 +69969,6 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) -"lrP" = ( -/obj/machinery/door/airlock/external{ - id_tag = "southatmos_door_ext"; - locked = 1; - name = "Atmospherics External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/simulated/floor/plating, -/area/station/maintenance/storage) "lsa" = ( /obj/machinery/economy/slot_machine, /obj/machinery/camera{ @@ -70327,6 +70054,9 @@ icon_state = "freezerfloor" }, /area/station/security/permabrig) +"lvc" = ( +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/south) "lvk" = ( /obj/machinery/door_control{ id = "atmos"; @@ -70486,7 +70216,7 @@ /obj/machinery/keycard_auth{ pixel_y = -26 }, -/obj/machinery/suit_storage_unit/cmo, +/obj/machinery/suit_storage_unit/cmo/secure, /obj/machinery/light{ dir = 8 }, @@ -70557,7 +70287,7 @@ /turf/simulated/floor/plasteel{ icon_state = "arrival" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "lBq" = ( /obj/structure/cable{ d1 = 1; @@ -70663,10 +70393,7 @@ dir = 4 }, /obj/structure/closet/firecloset, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) @@ -70728,7 +70455,7 @@ dir = 6; icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "lFP" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/door/poddoor/preopen{ @@ -70940,6 +70667,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/light_switch{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -70965,7 +70697,7 @@ dir = 10; icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "lLn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -71014,13 +70746,30 @@ layer = 4; pixel_y = 32 }, -/obj/machinery/camera{ - c_tag = "Virology Lobby" +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) +"lLN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry/lounge) "lMP" = ( /obj/structure/sign/poster/contraband/random{ pixel_y = 32 @@ -71204,13 +70953,24 @@ known_by = list("captain") }, /obj/item/gun/projectile/revolver/russian, -/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/obj/item/reagent_containers/drinks/bottle/absinthe/premium, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/toy/figure/crew/captain, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/station/command/office/captain/bedroom) +"lQE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "lQS" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -71218,12 +70978,12 @@ /turf/simulated/wall/mineral/titanium, /area/shuttle/pod_3) "lRi" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ - dir = 8 - }, /obj/machinery/atmospherics/binary/pump{ name = "cooling loop to port" }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71374,7 +71134,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "lVb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10 @@ -71608,11 +71368,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "mcw" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -71719,7 +71475,7 @@ }, /area/station/command/server) "mdX" = ( -/obj/item/reagent_containers/food/snacks/grown/cannabis, +/obj/item/food/snacks/grown/cannabis, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/mask/cigarette/medical_marijuana, /turf/simulated/floor/wood{ @@ -71753,7 +71509,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "mem" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -71844,6 +71600,9 @@ icon_state = "dark" }, /area/station/maintenance/aft) +"mgM" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/lounge) "mgZ" = ( /obj/structure/chair/stool{ dir = 1 @@ -72144,7 +71903,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/station/security/brig) +/area/station/security/prisonershuttle) "mnp" = ( /obj/structure/statue/cyberiad/north, /obj/structure/cable{ @@ -72156,6 +71915,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/south) +"mnr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/east) "mnx" = ( /obj/machinery/door/airlock, /obj/effect/mapping_helpers/airlock/autoname, @@ -72239,7 +72005,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "mrc" = ( /obj/structure/chair/stool{ dir = 1 @@ -72508,7 +72274,7 @@ c_tag = "Medbay Reception Break Room"; dir = 4 }, -/obj/item/reagent_containers/food/drinks/mug/med, +/obj/item/reagent_containers/drinks/mug/med, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -72627,7 +72393,7 @@ locked = 1; name = "Cargo Docking Hatch" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/supply_shuttle, /turf/simulated/floor/plating, /area/station/supply/storage) "mDF" = ( @@ -73067,11 +72833,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) "mMB" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -73132,7 +72894,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "mNZ" = ( /obj/structure/cable{ d1 = 1; @@ -73169,7 +72931,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "mOA" = ( /obj/structure/cable{ d1 = 4; @@ -73188,7 +72950,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "mOR" = ( /obj/structure/chair/stool{ dir = 4 @@ -73476,7 +73238,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "mXZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ @@ -73641,6 +73403,13 @@ icon_state = "darkred" }, /area/station/hallway/secondary/exit) +"nee" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/s_to_n{ + req_access_txt = "11,13" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/auxsolarport) "neo" = ( /obj/effect/spawner/window/reinforced/tinted, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -73684,6 +73453,12 @@ }, /turf/simulated/floor/plating, /area/station/security/detective) +"nff" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "nfo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -73845,14 +73620,12 @@ /turf/simulated/floor/plasteel, /area/station/medical/virology) "nnF" = ( -/obj/machinery/door/airlock/external{ - id_tag = "fpmaint_door_ext"; - locked = 1; - name = "External Access" +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/s_to_n/engineer{ + req_access_txt = 13 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plating, -/area/station/maintenance/apmaint) +/area/station/maintenance/fsmaint) "noq" = ( /obj/machinery/conveyor/west{ id = "QMLoad"; @@ -73878,16 +73651,6 @@ icon_state = "whitehall" }, /area/station/science/genetics) -"npm" = ( -/obj/machinery/access_button{ - autolink_id = "scimaint_btn_ext"; - pixel_x = 8; - pixel_y = 25; - req_access_txt = "13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) "nps" = ( /obj/machinery/atmospherics/binary/valve/open{ dir = 4 @@ -73941,7 +73704,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -73953,6 +73715,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/storage) "nrh" = ( @@ -73980,6 +73743,18 @@ }, /turf/simulated/floor/engine, /area/station/engineering/control) +"nsq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "neutral" + }, +/area/station/hallway/secondary/entry/lounge) "nst" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -74083,19 +73858,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - autolink_id = "apsolar_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = -25; - req_access_txt = "13"; - vent_link_id = "apsolar_vent"; - ext_door_link_id = "apsolar_door_ext"; - int_door_link_id = "apsolar_door_int"; - ext_button_link_id = "apsolar_btn_ext"; - int_button_link_id = "apsolar_btn_int" - }, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "nuq" = ( @@ -74187,6 +73949,9 @@ icon_state = "4-8" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/general{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "nwj" = ( @@ -74347,19 +74112,9 @@ }, /area/station/science/toxins/mixing) "nBq" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - autolink_id = "scimaint_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = -25; - pixel_y = -6; - req_access_txt = "13"; - vent_link_id = "scimaint_vent"; - ext_door_link_id = "scimaint_door_ext"; - int_door_link_id = "scimaint_door_int"; - ext_button_link_id = "scimaint_btn_ext"; - int_button_link_id = "scimaint_btn_int" +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/long/engineer{ + req_access_txt = 13 }, /turf/simulated/floor/plating, /area/station/maintenance/aft) @@ -74537,7 +74292,7 @@ dir = 6; icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "nEK" = ( /obj/structure/chair/sofa/corp/corner{ dir = 6 @@ -74590,7 +74345,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "nFG" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -74688,6 +74443,19 @@ }, /turf/simulated/floor/engine/xenobio, /area/station/science/xenobiology) +"nKN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/central/sw) "nKO" = ( /obj/structure/table, /obj/item/reagent_containers/spray/pestspray, @@ -75401,7 +75169,16 @@ dir = 4; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) +"oan" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry/north) "oap" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -75495,11 +75272,24 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) +"ocM" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/north) "ocX" = ( /obj/structure/table, -/obj/item/circular_saw, -/obj/item/surgicaldrill, -/obj/item/cautery, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -75553,20 +75343,6 @@ }, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) -"oeE" = ( -/obj/machinery/door/airlock/external{ - id_tag = "scibomb_door_ext"; - locked = 1; - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/asmaint) "oeO" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -75621,7 +75397,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "ogr" = ( /obj/structure/table, /obj/item/storage/belt/medical, @@ -75705,13 +75481,8 @@ /turf/simulated/floor/plasteel, /area/station/security/main) "oiA" = ( +/obj/item/storage/surgical_tray, /obj/structure/table/glass, -/obj/item/circular_saw, -/obj/item/bonesetter{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/surgicaldrill, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -75725,6 +75496,13 @@ icon_state = "whitegreenfull" }, /area/station/public/sleep) +"oiK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) "oiL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -75793,7 +75571,7 @@ dir = 8; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "ojp" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "MiniSat Maintenance" @@ -76096,11 +75874,7 @@ pixel_y = 24 }, /obj/structure/dresser, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -76272,11 +76046,7 @@ }, /area/station/engineering/gravitygenerator) "osZ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -76353,6 +76123,21 @@ }, /turf/simulated/floor/plasteel, /area/station/science/storage) +"ouf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "ouo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -76387,7 +76172,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "ouO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -76420,7 +76205,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "owa" = ( /obj/machinery/ai_status_display{ pixel_x = 32; @@ -76453,9 +76238,6 @@ /turf/simulated/floor/plating/airless, /area/station/maintenance/asmaint) "oxe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating/airless, /area/station/maintenance/fpmaint2) @@ -76487,7 +76269,7 @@ dir = 5; icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "oxX" = ( /obj/structure/cable{ d1 = 1; @@ -76501,6 +76283,24 @@ icon_state = "bluecorner" }, /area/station/hallway/primary/central/west) +"oyt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkgreenfull" + }, +/area/station/medical/medbay3) "oyv" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -76550,15 +76350,6 @@ /area/station/supply/storage) "ozX" = ( /obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, /obj/item/tank/internals/anesthetic, /obj/item/clothing/mask/breath/medical, /turf/simulated/floor/plasteel{ @@ -76614,20 +76405,10 @@ /turf/simulated/floor/mech_bay_recharge_floor, /area/station/maintenance/asmaint) "oBF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - id_tag = "fssolar_door_int"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/s_to_n/long/engineer, /turf/simulated/floor/plating, -/area/station/maintenance/auxsolarstarboard) +/area/station/maintenance/fpmaint2) "oBJ" = ( /obj/structure/chair/stool{ dir = 8 @@ -76767,7 +76548,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "oEG" = ( /obj/structure/chair{ dir = 8 @@ -76906,13 +76687,13 @@ }, /area/station/science/genetics) "oGU" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ - dir = 8 - }, /obj/machinery/atmospherics/binary/valve{ dir = 1; name = "port to space" }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -77136,7 +76917,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "oKv" = ( /obj/structure/rack, /obj/item/extinguisher, @@ -77227,11 +77008,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/firealarm{ dir = 8; name = "west bump"; @@ -77622,10 +77399,7 @@ "oYC" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -77655,7 +77429,7 @@ dir = 4; icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "oZr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -78058,25 +77832,6 @@ icon_state = "dark" }, /area/station/medical/morgue) -"pjq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/station/turret_protected/aisat/interior) "pko" = ( /obj/structure/chair/stool{ dir = 8 @@ -78209,17 +77964,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint2) "pop" = ( +/obj/item/storage/surgical_tray, /obj/structure/table/tray, -/obj/item/cautery, -/obj/item/FixOVein{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/bonegel{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/scalpel, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, @@ -78466,6 +78212,23 @@ icon_state = "white" }, /area/station/maintenance/asmaint) +"puM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "pvP" = ( /obj/machinery/defibrillator_mount/loaded{ pixel_x = -30 @@ -78490,11 +78253,7 @@ /area/station/science/misc_lab) "pwk" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -78607,11 +78366,7 @@ /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "pzh" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -78677,7 +78432,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "pAs" = ( /obj/effect/spawner/window/reinforced/plasma, /obj/machinery/door/poddoor/preopen{ @@ -78769,11 +78524,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -78809,6 +78560,11 @@ }, /turf/simulated/floor/engine, /area/station/science/misc_lab) +"pCT" = ( +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/legal/courtroom/gallery) "pDd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -78922,11 +78678,7 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "pFI" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -79008,7 +78760,7 @@ /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plating, /area/station/maintenance/port) "pIR" = ( @@ -79027,11 +78779,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "pKi" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -79146,11 +78894,7 @@ /turf/simulated/floor/wood, /area/station/command/office/ntrep) "pNL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -79185,7 +78929,7 @@ /obj/structure/closet/wardrobe/white, /obj/item/clothing/shoes/jackboots, /obj/item/reagent_containers/iv_bag/blood/OMinus, -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/aft) @@ -79281,7 +79025,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "pRD" = ( /obj/machinery/computer/supplycomp, /obj/machinery/light{ @@ -79398,12 +79142,6 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) "pTK" = ( -/obj/machinery/access_button{ - autolink_id = "arrivalsmaint_btn_int"; - pixel_x = -25; - pixel_y = 25; - req_access_txt = "13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, @@ -79516,15 +79254,6 @@ }, /turf/simulated/floor/engine/xenobio, /area/station/science/xenobiology) -"pWR" = ( -/obj/machinery/door/airlock/external{ - id_tag = "evamaint_door_int"; - locked = 1; - name = "EVA Internal Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint2) "pWW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/spawner/nukedisc_respawn, @@ -79636,14 +79365,12 @@ /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "qaB" = ( -/obj/machinery/door/airlock/external{ - id_tag = "evamaint_door_ext"; - locked = 1; - name = "EVA External Access" +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/engineer{ + req_access_txt = 13 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plating, -/area/station/maintenance/fpmaint2) +/area/station/maintenance/apmaint) "qaI" = ( /obj/item/clothing/suit/chef/classic, /turf/simulated/floor/plating, @@ -79788,11 +79515,7 @@ /turf/simulated/floor/plasteel, /area/station/service/janitor) "qei" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -79917,7 +79640,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/station/security/brig) +/area/station/security/prisonershuttle) "qhq" = ( /turf/simulated/wall, /area/station/science/misc_lab) @@ -79928,6 +79651,24 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) +"qhI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "arrival" + }, +/area/station/hallway/secondary/entry/north) "qhL" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -80054,12 +79795,17 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) +"qjH" = ( +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft/north) "qjX" = ( /obj/structure/railing, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "qkc" = ( /obj/machinery/hologram/holopad, /obj/effect/landmark/start/doctor, @@ -80067,7 +79813,7 @@ dir = 9; icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "qky" = ( /obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, @@ -80075,6 +79821,9 @@ /area/station/maintenance/fpmaint2) "qkz" = ( /obj/structure/chair/comfy/corp, +/obj/machinery/camera{ + c_tag = "Science lab" + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "purple" @@ -80336,8 +80085,8 @@ /area/station/engineering/atmos) "qpi" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -7 }, /turf/simulated/floor/plasteel, @@ -80424,6 +80173,23 @@ icon_state = "freezerfloor" }, /area/station/medical/cloning) +"qrk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/east) "qrr" = ( /obj/machinery/door/poddoor/shutters{ id_tag = "maint_house" @@ -80440,11 +80206,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint2) "qrx" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -80559,6 +80321,10 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"qtx" = ( +/obj/effect/spawner/random_spawners/fungus_maybe, +/turf/simulated/wall, +/area/station/legal/courtroom/gallery) "qup" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ @@ -80574,7 +80340,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "qvf" = ( /obj/structure/table, /obj/item/melee/baton/cattleprod, @@ -80778,6 +80544,10 @@ /obj/effect/landmark/start/psychiatrist, /turf/simulated/floor/carpet, /area/station/medical/psych) +"qzx" = ( +/obj/effect/spawner/window/reinforced, +/turf/simulated/floor/plating, +/area/station/legal/courtroom/gallery) "qzV" = ( /obj/structure/chair{ dir = 1 @@ -81058,7 +80828,7 @@ /obj/effect/mapping_helpers/airlock/access/all/security/brig, /obj/structure/fans/tiny, /turf/simulated/floor/plating, -/area/station/security/brig) +/area/station/security/prisonershuttle) "qDJ" = ( /obj/structure/table_frame, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -81305,16 +81075,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, -/obj/machinery/access_button{ - autolink_id = "sol_btn_int"; - pixel_x = -22; - pixel_y = -23 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/north) "qIz" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on{ dir = 1 @@ -81345,7 +81110,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "qKh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -81420,6 +81185,9 @@ icon_state = "barber" }, /area/station/service/barber) +"qMv" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/entry/north) "qMY" = ( /obj/effect/turf_decal{ dir = 8 @@ -81677,8 +81445,8 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "qRw" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, /obj/effect/spawner/window/reinforced/plasma/grilled, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "qRE" = ( @@ -81788,6 +81556,21 @@ /obj/machinery/smartfridge/id, /turf/simulated/floor/wood, /area/station/command/office/hop) +"qWF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/east) "qWJ" = ( /obj/structure/cable{ d1 = 4; @@ -81835,6 +81618,16 @@ /obj/machinery/light, /turf/simulated/floor/plasteel, /area/station/science/xenobiology) +"qZp" = ( +/obj/machinery/alarm{ + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/station/hallway/primary/central/nw) "qZD" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -81854,7 +81647,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/supply/sorting) "qZN" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/asmaint2) @@ -81961,11 +81754,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitegreen" @@ -82016,6 +81805,17 @@ icon_state = "dark" }, /area/station/security/execution) +"rcq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) "rcs" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -82032,7 +81832,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/station/security/brig) +/area/station/security/prisonershuttle) "rcW" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -82041,7 +81841,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "rcY" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 4 @@ -82333,7 +82133,7 @@ "rkL" = ( /obj/effect/decal/cleanable/dirt, /obj/item/seeds/cannabis, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/food/snacks/grown/ambrosia/vulgaris, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "rkS" = ( @@ -82342,6 +82142,16 @@ icon_state = "purple" }, /area/station/science/hallway) +"rlj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/aft/south) "rlm" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /turf/simulated/floor/plasteel{ @@ -82550,16 +82360,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5; - level = 2 - }, /obj/structure/cable{ d1 = 1; d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) "rqs" = ( @@ -82767,7 +82576,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -82777,6 +82585,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plasteel, /area/station/supply/office) "rwZ" = ( @@ -82810,7 +82620,7 @@ dir = 8 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "rxW" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -82842,11 +82652,7 @@ /obj/structure/mopbucket/full, /obj/item/mop, /obj/item/reagent_containers/glass/bucket, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -83056,13 +82862,13 @@ dir = 8; icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "rDI" = ( /obj/machinery/economy/vending/medical, /turf/simulated/floor/plasteel{ icon_state = "darkgreen" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "rDM" = ( /obj/structure/grille, /obj/structure/barricade/wooden, @@ -83112,11 +82918,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plating, /area/station/maintenance/port) "rEz" = ( @@ -83196,21 +82998,6 @@ icon_state = "blue" }, /area/station/command/bridge) -"rFZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/access_button{ - autolink_id = "scibomb_btn_ext"; - pixel_x = -24; - pixel_y = 25; - req_access_txt = "10;13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) "rGg" = ( /obj/structure/cable{ d2 = 4; @@ -83286,16 +83073,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) -"rIX" = ( -/obj/machinery/door/airlock/external{ - id_tag = "fpmaint_door_int"; - locked = 1; - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/station/maintenance/apmaint) "rJb" = ( /obj/structure/cable{ d1 = 1; @@ -83424,25 +83201,16 @@ }, /area/station/turret_protected/ai) "rMP" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - autolink_id = "fpsolar_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = 25; - req_access_txt = "13"; - vent_link_id = "fpsolar_vent"; - ext_door_link_id = "fpsolar_door_ext"; - int_door_link_id = "fpsolar_door_int"; - ext_button_link_id = "fpsolar_btn_ext"; - int_button_link_id = "fpsolar_btn_int" - }, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 }, /turf/simulated/floor/plating, -/area/station/maintenance/auxsolarport) +/area/station/maintenance/fpmaint2) "rMX" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 @@ -83462,25 +83230,33 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plating, /area/station/maintenance/apmaint2) +"rOl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) "rOm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/station/command/bridge) -"rOS" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - autolink_id = "sol_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = -25; - vent_link_id = "sol_vent"; - ext_door_link_id = "sol_door_ext"; - int_door_link_id = "sol_door_int"; - ext_button_link_id = "sol_btn_ext"; - int_button_link_id = "sol_btn_int" - }, -/turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) "rOW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -83509,7 +83285,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "rPs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -83569,6 +83345,15 @@ icon_state = "freezerfloor" }, /area/station/security/permabrig) +"rRy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/engineering/controlroom) "rSd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -83720,9 +83505,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -83730,8 +83512,11 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "rVK" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance{ @@ -83879,7 +83664,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "rZE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -83925,15 +83710,19 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) -"sbt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office" +"sbd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plasteel, -/area/station/supply/office) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + icon_state = "whitebluefull" + }, +/area/station/medical/medbay) "sbD" = ( /obj/machinery/atmospherics/unary/outlet_injector/on{ dir = 8; @@ -84036,9 +83825,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -84050,8 +83836,11 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "sfc" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance, @@ -84421,21 +84210,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) -"spJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - id_tag = "assolar_door_int"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/station/maintenance/starboardsolar) "spK" = ( /obj/structure/cable{ d1 = 4; @@ -84452,6 +84226,9 @@ icon_state = "white" }, /area/station/science/xenobiology) +"spM" = ( +/turf/simulated/wall/r_wall, +/area/station/security/prisonershuttle) "sqb" = ( /obj/structure/bed, /obj/structure/window/reinforced{ @@ -84576,7 +84353,7 @@ dir = 1 }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "stX" = ( /obj/structure/chair/office/light{ dir = 8 @@ -84633,6 +84410,26 @@ }, /turf/simulated/floor/wood, /area/station/command/office/hop) +"suJ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/iv_bag/salglu, +/obj/machinery/holosign_switch{ + id = "surgery2"; + pixel_x = -24; + pixel_y = 4; + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + dir = 4; + name = "custom placement"; + pixel_y = -4 + }, +/turf/simulated/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/station/medical/surgery/secondary) "suM" = ( /obj/structure/flora/grass/jungle, /obj/machinery/light{ @@ -84688,7 +84485,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "syf" = ( /turf/simulated/floor/plasteel{ dir = 5; @@ -84759,7 +84556,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "sAl" = ( /turf/simulated/floor/plasteel{ icon_state = "whitecorner" @@ -84851,12 +84648,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/access_button{ - autolink_id = "fssolar_btn_int"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, @@ -84931,7 +84722,7 @@ dir = 1; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "sFm" = ( /obj/effect/turf_decal{ dir = 8 @@ -84949,7 +84740,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "sFy" = ( /obj/structure/closet/l3closet/scientist, /turf/simulated/floor/plating, @@ -85154,11 +84945,7 @@ /area/station/public/arcade) "sMJ" = ( /obj/structure/chair, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -85286,6 +85073,23 @@ /obj/item/clothing/suit/mantle/old, /turf/simulated/floor/carpet, /area/station/maintenance/asmaint) +"sPw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "sPx" = ( /obj/structure/table/glass, /obj/item/storage/box/beakers{ @@ -85332,13 +85136,17 @@ /turf/simulated/floor/plasteel{ icon_state = "grimy" }, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/lounge) "sQt" = ( /obj/structure/table, /obj/structure/sign/poster/official/random{ pixel_y = -32 }, /obj/item/trash/gum, +/obj/machinery/camera{ + c_tag = "Virology Observation"; + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whitegreen" @@ -85497,19 +85305,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = 25; - req_access_txt = "13"; - vent_link_id = "assolar_vent"; - ext_door_link_id = "assolar_door_ext"; - int_door_link_id = "assolar_door_int"; - ext_button_link_id = "assolar_btn_ext"; - int_button_link_id = "assolar_btn_int" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - autolink_id = "assolar_vent" - }, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "sTQ" = ( @@ -85521,7 +85316,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "sTX" = ( /obj/effect/spawner/random_spawners/fungus_maybe, /turf/simulated/wall, @@ -85616,6 +85411,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) +"sYi" = ( +/obj/structure/table/glass, +/obj/machinery/firealarm{ + name = "north bump"; + pixel_y = 24 + }, +/obj/item/reagent_containers/iv_bag/salglu, +/turf/simulated/floor/plasteel{ + icon_state = "whiteblue" + }, +/area/station/medical/surgery/primary) "sYp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -85643,6 +85449,9 @@ icon_state = "whitepurplecorner" }, /area/station/science/hallway) +"sYL" = ( +/turf/simulated/wall, +/area/station/hallway/secondary/entry/lounge) "sYT" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -85698,11 +85507,7 @@ pixel_y = -24 }, /obj/structure/closet/wardrobe/pjs, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -85746,15 +85551,6 @@ /mob/living/simple_animal/slime, /turf/simulated/floor/engine, /area/station/science/xenobiology) -"taW" = ( -/obj/machinery/door/airlock/external{ - id_tag = "scimaint_door_ext"; - locked = 1; - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) "tbr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/binary/pump, @@ -85817,12 +85613,12 @@ /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plating, /area/station/maintenance/port) "tcM" = ( @@ -85860,6 +85656,13 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint2) +"tdg" = ( +/obj/structure/table/wood, +/obj/machinery/power/apc/directional/south, +/obj/structure/cable, +/obj/item/reagent_containers/drinks/mug, +/turf/simulated/floor/wood, +/area/station/public/mrchangs) "tdj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -86116,18 +85919,6 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - autolink_id = "southatmos_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = -25; - vent_link_id = "southatmos_vent"; - ext_door_link_id = "southatmos_door_ext"; - int_door_link_id = "southatmos_door_int"; - ext_button_link_id = "southatmos_btn_ext"; - int_button_link_id = "southatmos_btn_int" - }, /turf/simulated/floor/plating, /area/station/maintenance/storage) "tle" = ( @@ -86224,7 +86015,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "tpM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -86357,6 +86148,9 @@ icon_state = "wood-broken5" }, /area/station/maintenance/asmaint) +"tum" = ( +/turf/simulated/floor/plasteel, +/area/station/supply/lobby) "tuZ" = ( /obj/structure/weightmachine/stacklifter, /turf/simulated/floor/plasteel, @@ -86432,21 +86226,6 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) -"tvQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - autolink_id = "arrivalsmaint_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = 25; - req_access_txt = "13"; - vent_link_id = "arrivalsmaint_vent"; - ext_door_link_id = "arrivalsmaint_door_ext"; - int_door_link_id = "arrivalsmaint_door_int"; - ext_button_link_id = "arrivalsmaint_btn_ext"; - int_button_link_id = "arrivalsmaint_btn_int" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint2) "twe" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -86517,7 +86296,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "twL" = ( /obj/structure/bed{ dir = 4 @@ -86584,11 +86363,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "tzW" = ( @@ -86732,7 +86507,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/north) "tDv" = ( /obj/structure/cable{ d1 = 4; @@ -87053,7 +86828,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "tLs" = ( /obj/structure/safe/floor, /obj/item/coin/mythril, @@ -87170,12 +86945,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/access_button{ - autolink_id = "assolar_btn_int"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "10;13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -87188,7 +86957,7 @@ /area/station/maintenance/starboardsolar) "tNc" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood, /area/station/maintenance/aft) "tNn" = ( @@ -87384,6 +87153,25 @@ icon_state = "vault" }, /area/station/maintenance/apmaint) +"tRF" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom{ + name = "south bump"; + pixel_y = -28 + }, +/obj/item/reagent_containers/drinks/flask/gold, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/carpet, +/area/station/command/office/captain/bedroom) "tRO" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -87421,7 +87209,7 @@ /turf/simulated/floor/plasteel{ icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "tSM" = ( /obj/structure/cable, /obj/effect/spawner/window/reinforced/grilled, @@ -87476,11 +87264,7 @@ /turf/simulated/floor/plasteel, /area/station/security/storage) "tTh" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -87489,7 +87273,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "tTj" = ( /obj/structure/cable{ d1 = 1; @@ -87508,7 +87292,7 @@ dir = 8; icon_state = "cautioncorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "tUd" = ( /obj/structure/closet/cabinet, /obj/item/clothing/accessory/stethoscope, @@ -87591,7 +87375,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "tWz" = ( /obj/item/radio/beacon, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -87601,17 +87385,17 @@ /area/station/science/test_chamber) "tWD" = ( /obj/structure/closet/crate, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/onion, -/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/onion, +/obj/item/food/snacks/grown/onion, /obj/item/storage/box/donkpockets, /obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/rice, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -87676,7 +87460,7 @@ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/medbay3) +/area/station/medical/patients_rooms_secondary) "tYe" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -87870,12 +87654,6 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 }, -/obj/machinery/access_button{ - autolink_id = "fpmaint_btn_int"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "13" - }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "uco" = ( @@ -88027,6 +87805,17 @@ /obj/effect/spawner/random_spawners/grille_maybe, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) +"ugH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/plasteel, +/area/station/security/prisonershuttle) "ugW" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/decal/cleanable/dirt, @@ -88083,12 +87872,6 @@ }, /area/station/science/misc_lab) "uhA" = ( -/obj/machinery/access_button{ - autolink_id = "scibomb_btn_int"; - pixel_x = 24; - pixel_y = 25; - req_access_txt = "10;13" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -88166,10 +87949,7 @@ pixel_y = 5 }, /obj/item/clothing/gloves/color/latex/nitrile, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ dir = 1; @@ -88178,8 +87958,8 @@ /area/station/medical/storage) "uls" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/bottle/wine, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -5 }, /turf/simulated/floor/wood{ @@ -88241,15 +88021,12 @@ }, /area/station/command/office/hop) "unh" = ( -/obj/machinery/door/airlock/external{ - id_tag = "arrivalsmaint_door_ext"; - locked = 1; - name = "Engineering External Access" +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/w_to_e/engineer{ + req_access_txt = 13 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/simulated/floor/plating, -/area/station/maintenance/fpmaint2) +/area/station/maintenance/asmaint) "uno" = ( /obj/structure/cable{ d1 = 1; @@ -88390,7 +88167,7 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "urf" = ( /obj/effect/landmark/start/scientist, /obj/structure/chair{ @@ -88484,7 +88261,7 @@ dir = 1; icon_state = "yellowcorner" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "usZ" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, @@ -88495,26 +88272,6 @@ }, /turf/simulated/floor/carpet/green, /area/station/command/bridge) -"utp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - autolink_id = "fssolar_vent" - }, -/obj/machinery/airlock_controller/air_cycler{ - pixel_x = 25; - req_access_txt = "13"; - vent_link_id = "fssolar_vent"; - ext_door_link_id = "fssolar_door_ext"; - int_door_link_id = "fssolar_door_int"; - ext_button_link_id = "fssolar_btn_ext"; - int_button_link_id = "fssolar_btn_int" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/auxsolarstarboard) "utu" = ( /obj/structure/cable{ d1 = 1; @@ -88807,16 +88564,6 @@ /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/engine, /area/station/engineering/control) -"uBQ" = ( -/obj/machinery/access_button{ - autolink_id = "fpmaint_btn_ext"; - pixel_x = 25; - pixel_y = 8; - req_access_txt = "13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) "uCf" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/unary/passive_vent, @@ -88953,7 +88700,7 @@ /area/station/engineering/atmos/distribution) "uGf" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/grilledcheese{ +/obj/item/food/snacks/grilledcheese{ pixel_y = 9 }, /turf/simulated/floor/wood, @@ -89029,15 +88776,12 @@ pixel_y = 9 }, /obj/item/clothing/gloves/color/latex/nitrile, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "uIo" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -89115,7 +88859,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "uLo" = ( /obj/structure/chair/sofa/corp/right, /turf/simulated/floor/plasteel, @@ -89264,7 +89008,7 @@ /area/station/maintenance/apmaint2) "uRK" = ( /obj/item/organ/internal/heart/vox, -/obj/item/reagent_containers/food/snacks/fried_vox, +/obj/item/food/snacks/fried_vox, /obj/structure/table, /obj/item/scalpel, /turf/simulated/floor/plating, @@ -89299,7 +89043,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -89308,6 +89051,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/storage) "uTj" = ( @@ -89468,12 +89212,9 @@ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "uVH" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -89693,11 +89434,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - cell_type = 25000; - dir = 8; - name = "Engineering Engine Super APC"; - pixel_x = -24; +/obj/machinery/power/apc/critical/directional/west{ shock_proof = 1 }, /obj/structure/cable, @@ -89853,10 +89590,7 @@ }, /area/station/medical/surgery) "vfy" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/structure/cable{ d1 = 1; @@ -89960,7 +89694,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "vic" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance, @@ -90080,7 +89814,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "vmA" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -90220,23 +89954,6 @@ icon_state = "whiteyellow" }, /area/station/medical/chemistry) -"vpQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - id_tag = "apsolar_door_int"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/simulated/floor/plating, -/area/station/maintenance/portsolar) "vpR" = ( /obj/machinery/door/airlock/security/glass{ name = "Solitary Confinement 2" @@ -90340,20 +90057,10 @@ }, /area/station/maintenance/asmaint) "vrV" = ( -/obj/machinery/door/airlock/external{ - id_tag = "fpsolar_door_ext"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/engineer, /turf/simulated/floor/plating, -/area/station/maintenance/auxsolarport) +/area/station/maintenance/starboardsolar) "vsw" = ( /obj/effect/decal/cleanable/dirt, /obj/item/flag/rnd, @@ -90419,7 +90126,7 @@ /turf/simulated/floor/plasteel{ icon_state = "red" }, -/area/station/security/brig) +/area/station/security/prisonershuttle) "vtG" = ( /obj/machinery/door/airlock/external{ id_tag = "aisat_door_ext"; @@ -90502,7 +90209,7 @@ /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "vwg" = ( /obj/structure/cable{ d1 = 2; @@ -90530,9 +90237,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -90569,6 +90273,9 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) +"vwz" = ( +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/entry/south) "vwC" = ( /obj/structure/closet/secure_closet/RD, /obj/machinery/light_switch{ @@ -90774,18 +90481,6 @@ icon_state = "dark" }, /area/station/engineering/smes) -"vBv" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, -/obj/machinery/atmospherics/meter{ - layer = 3.3 - }, -/obj/structure/grille, -/obj/structure/window/plasmareinforced, -/obj/structure/window/plasmareinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/station/science/toxins/mixing) "vBC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet, @@ -90827,11 +90522,7 @@ /turf/simulated/floor/carpet/royalblue, /area/station/command/office/captain) "vCM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -91051,11 +90742,14 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "vJn" = ( /obj/structure/girder, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -91365,23 +91059,6 @@ name = "Old Note #6" }, /area/station/maintenance/assembly_line) -"vQt" = ( -/obj/machinery/airlock_controller/air_cycler{ - pixel_y = 6; - req_access_txt = "13"; - vent_link_id = "fpmaint_vent"; - ext_door_link_id = "fpmaint_door_ext"; - int_door_link_id = "fpmaint_door_int"; - pixel_x = 24; - ext_button_link_id = "fpmaint_btn_ext"; - int_button_link_id = "fpmaint_btn_int" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - autolink_id = "fpmaint_vent" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/apmaint) "vQZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -91564,11 +91241,7 @@ /area/station/maintenance/port) "vWe" = ( /obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) "vWw" = ( @@ -91615,11 +91288,7 @@ }, /area/station/science/toxins/mixing) "vXp" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -91651,7 +91320,7 @@ pixel_x = 28 }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "vYx" = ( /obj/item/flag/med, /turf/simulated/floor/plating, @@ -91726,7 +91395,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "waF" = ( /obj/structure/cable{ d2 = 4; @@ -91739,7 +91408,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "waK" = ( /obj/structure/cable{ d1 = 4; @@ -91835,7 +91504,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel, -/area/station/supply/office) +/area/station/supply/sorting) "wcf" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -91904,7 +91573,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/west) "weq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -91997,6 +91666,9 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/south) +"wgW" = ( +/turf/simulated/wall, +/area/station/medical/patients_rooms_secondary) "whn" = ( /obj/machinery/door/airlock/virology/glass{ name = "Workstation" @@ -92107,7 +91779,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkgreenfull" }, -/area/station/medical/medbay2) +/area/station/medical/medbay3) "wjV" = ( /obj/structure/chair/sofa/bench{ dir = 1; @@ -92262,16 +91934,6 @@ /obj/effect/spawner/random_spawners/cobweb_right_frequent, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) -"wnU" = ( -/obj/machinery/alarm{ - dir = 4; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/station/engineering/control) "woA" = ( /obj/machinery/shower{ dir = 8 @@ -92433,6 +92095,15 @@ }, /turf/simulated/floor/plating, /area/station/command/office/ntrep) +"wrY" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "blue" + }, +/area/station/legal/courtroom/gallery) "wss" = ( /obj/machinery/computer/cryopod{ pixel_x = 30; @@ -92458,7 +92129,7 @@ dir = 4 }, /turf/simulated/floor/plasteel, -/area/station/security/brig) +/area/station/security/prisonershuttle) "wsY" = ( /obj/structure/table, /obj/item/storage/box/prisoner, @@ -92549,10 +92220,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "wuC" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -92746,6 +92414,11 @@ dir = 4 }, /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light_switch{ + dir = 8; + name = "east bump"; + pixel_x = 24 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -92867,8 +92540,7 @@ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10; - level = 2 + dir = 10 }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) @@ -93021,6 +92693,13 @@ }, /turf/simulated/floor/plating/airless, /area/station/maintenance/asmaint) +"wHK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) "wHN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -93064,6 +92743,17 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) +"wIt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Virology Lobby"; + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/station/hallway/primary/aft/north) "wIB" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -93107,6 +92797,9 @@ icon_state = "blue" }, /area/station/command/bridge) +"wKl" = ( +/turf/simulated/floor/plasteel, +/area/station/supply/sorting) "wKx" = ( /obj/structure/railing{ dir = 1 @@ -93599,21 +93292,6 @@ icon_state = "whitegreen" }, /area/station/public/sleep) -"wZp" = ( -/obj/machinery/access_button{ - autolink_id = "apsolar_btn_ext"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "13" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/station/engineering/solar/port) "wZy" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/structure/cable{ @@ -93621,7 +93299,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/station/security/brig) +/area/station/security/prisonershuttle) "wZM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -93705,6 +93383,16 @@ icon_state = "white" }, /area/station/science/xenobiology) +"xbm" = ( +/obj/machinery/firealarm{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plasteel{ + icon_state = "yellowcorner" + }, +/area/station/hallway/primary/aft/south) "xbn" = ( /obj/vehicle/janicart, /obj/machinery/requests_console{ @@ -93791,16 +93479,6 @@ icon_state = "whitepurplecorner" }, /area/station/science/hallway) -"xdO" = ( -/obj/machinery/access_button{ - autolink_id = "arrivalsmaint_btn_ext"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) "xdY" = ( /obj/structure/chair/office/light{ dir = 4 @@ -94039,11 +93717,7 @@ }, /area/station/maintenance/fsmaint) "xjV" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - name = "south bump Important Area"; - pixel_y = -24 - }, +/obj/machinery/power/apc/important/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -94092,6 +93766,23 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"xlR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plasteel, +/area/station/hallway/primary/port/west) "xlV" = ( /obj/machinery/atmospherics/binary/pump/on, /obj/machinery/access_button{ @@ -94196,23 +93887,6 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) -"xmS" = ( -/obj/machinery/door/airlock/external{ - id_tag = "scibomb_door_int"; - locked = 1; - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/asmaint) "xnn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -94247,10 +93921,7 @@ }, /area/station/security/permabrig) "xol" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /obj/machinery/economy/vending/robodrobe, /turf/simulated/floor/plasteel{ @@ -94258,11 +93929,7 @@ }, /area/station/science/robotics) "xoE" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -94484,7 +94151,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) +/area/station/hallway/secondary/entry/south) "xuG" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 1 @@ -94495,6 +94162,10 @@ icon_state = "dark" }, /area/station/engineering/control) +"xve" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/floor/plasteel, +/area/station/engineering/equipmentstorage) "xvg" = ( /obj/structure/cable{ d1 = 1; @@ -94536,7 +94207,7 @@ }, /area/station/science/hallway) "xwJ" = ( -/obj/machinery/suit_storage_unit/captain, +/obj/machinery/suit_storage_unit/captain/secure, /obj/machinery/requests_console{ announcementConsole = 1; department = "Captain's Desk"; @@ -94588,7 +94259,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "xxI" = ( /obj/structure/cable{ d1 = 1; @@ -94969,7 +94640,7 @@ /area/station/medical/surgery/observation) "xII" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/pistachios, +/obj/item/food/snacks/pistachios, /obj/item/poster/random_contraband, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) @@ -95425,15 +95096,10 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint2) "xSF" = ( -/obj/machinery/door/airlock/external{ - id_tag = "arrivalsmaint_door_int"; - locked = 1; - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/spawner/airlock/e_to_w/engineer, /turf/simulated/floor/plating, -/area/station/maintenance/fpmaint2) +/area/station/maintenance/portsolar) "xSH" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, @@ -95474,12 +95140,6 @@ pixel_y = 24 }, /obj/structure/table/glass, -/obj/item/circular_saw, -/obj/item/surgicaldrill, -/obj/item/bonesetter{ - pixel_x = 5; - pixel_y = 5 - }, /obj/item/radio/intercom{ name = "west bump"; pixel_x = -28 @@ -95571,28 +95231,6 @@ icon_state = "freezerfloor" }, /area/station/public/toilet/unisex) -"xVr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/supply/office) "xVy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -95763,7 +95401,7 @@ dir = 8; icon_state = "yellow" }, -/area/station/hallway/primary/aft) +/area/station/hallway/primary/aft/south) "xWO" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -95856,7 +95494,7 @@ pixel_x = 3; pixel_y = -3 }, -/obj/item/reagent_containers/food/drinks/trophy/bronze_cup, +/obj/item/reagent_containers/drinks/trophy/bronze_cup, /obj/machinery/light/small{ dir = 1 }, @@ -96070,6 +95708,12 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint2) +"ygg" = ( +/turf/simulated/floor/plating, +/area/station/hallway/secondary/entry/north) +"ygh" = ( +/turf/simulated/wall, +/area/station/security/prisonershuttle) "ygr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -96100,6 +95744,9 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"ygM" = ( +/turf/space, +/area/station/hallway/secondary/entry/north) "ygR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -96333,7 +95980,7 @@ }, /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/hallway/primary/port) +/area/station/hallway/primary/port/east) "yku" = ( /turf/simulated/floor/plasteel{ dir = 5; @@ -96357,15 +96004,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/aft) -"yky" = ( -/obj/machinery/door/airlock/external{ - id_tag = "barmaint_door_ext"; - locked = 1; - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/simulated/floor/plating, -/area/station/maintenance/fsmaint) "ykF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/girder, @@ -96389,7 +96027,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/station/medical/medbay) +/area/station/medical/patients_rooms1) "ylC" = ( /obj/structure/chair/sofa/corp, /turf/simulated/floor/plasteel, @@ -96403,7 +96041,7 @@ dir = 8; icon_state = "whiteblue" }, -/area/station/medical/medbay2) +/area/station/medical/medbay) "ylP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 4 @@ -105031,8 +104669,8 @@ aaa aaa aaa aaa -apx -jmd +dlj +ygg dvb aab aab @@ -105288,11 +104926,11 @@ aaa aaa aaa aaa -apx -rOS -apx +fay +ygg +fay aab -aLd +hVy aaa aaa aVV @@ -105542,14 +105180,14 @@ aaa aaa aaa aaa -aMs -aMs -aMs -aLd -gXU -apx -aMs -aLd +qMv +qMv +qMv +hVy +ygg +fay +qMv +hVy aaa aVV aVV @@ -105575,7 +105213,7 @@ aaa aaa aaa aaa -bjQ +aUo aaa aaa aaa @@ -105802,12 +105440,12 @@ aJP aJP aRm aOP -aMs +qMv qIw aMB -apx -apx -apx +fay +fay +fay aVV aXr jyO @@ -105832,7 +105470,7 @@ aaa aaa aaa aaa -aLd +fqr aaa aaa aaa @@ -106058,13 +105696,13 @@ aJS aLb aMp aNt -aOQ +ygg aPZ -aMd -aSf -aRU -aOQ -aRU +keI +feN +gLE +ygg +gLE aVX aXs aYZ @@ -106083,13 +105721,13 @@ aaa aaa aaa aaa -bjQ +aUo aaa aaa aaa aaa aaa -apx +aSn aaa aaa aaa @@ -106317,11 +105955,11 @@ aJP aRm aOR aQa -aMd +keI aMD -apx -apx -apx +fay +fay +fay aVV aXt aXs @@ -106340,13 +105978,13 @@ aaa aaa aaa aaa -aLd +fqr aaa aaa aaa aaa aaa -apx +aSn aaa aaa aaa @@ -106570,15 +106208,15 @@ aaa aaa aaa aaa -aMs -aMs -aMs -aLd +qMv +qMv +qMv +hVy aRa -aME -aTo -aUl -apx +ipX +aUV +ocM +fay aVV aXu aYZ @@ -106597,16 +106235,16 @@ aaa aaa aaa aaa -apx +aSn aaa aaa aaa aaa aaa -apx -apx -apx -apx +aSn +aSn +aSn +aSn aaa aaa aaa @@ -106830,12 +106468,12 @@ aJR aJR aRV aOP -aMs +qMv aPJ -aSf -aSf +feN +feN aUk -apx +fay aVY aXv aXs @@ -106854,13 +106492,13 @@ aaa aaa aaa aaa -apx +aSn aaa aaa aaa aaa aaa -apx +aSn bGm bLY bKp @@ -107086,13 +106724,13 @@ aJV aLf aMt aNy -aOQ +ygg aPZ aPQ -aSf -aSf +feN +feN aUn -apx +fay aVY aXw aYZ @@ -107111,13 +106749,13 @@ aaa aaa aaa aaa -apx +aSn aaa aaa aaa aaa aaa -apx +aSn bGl bLX bKp @@ -107347,9 +106985,9 @@ aOR aQa aPQ aRd -aTp +nff aUm -apx +fay aVV aXx aXs @@ -107368,13 +107006,13 @@ aaa aaa aaa aaa -aMs +jje aaa aaa aaa aaa aaa -apx +aSn bKp bKp ehf @@ -107598,15 +107236,15 @@ aab aab aab aab -aMs +qMv aNw aNw -aLd +hVy aPT aMD -apx -apx -apx +fay +fay +fay aVV aXy aYZ @@ -107625,16 +107263,16 @@ aaa aaa aaa aaa -aMs +jje aaa aaa aaa aaa aaa -apx +aSn aMd bLZ -apx +aSn aaa aaa aaa @@ -107860,10 +107498,10 @@ mxz aKa aGn aPR -aSf -aRU -aOQ -aRU +feN +gLE +ygg +gLE aVX aXs jyO @@ -107882,16 +107520,16 @@ aaa bvf aaa aaa -aMs +jje aaa aaa bCi aaa aaa -apx +aSn aMd bLZ -apx +aSn aaa aaa aaa @@ -108112,15 +107750,15 @@ doE loS loS loS -loS +oBF aHl aLg pUb aQw aRe -apx -apx -apx +fay +fay +fay aVV aVV aYV @@ -108135,20 +107773,20 @@ blB bsh apx aab -apx +aSn bvl -apx +aSn aab -aMs +jje aab -apx +aSn bDC -apx +aSn aaa -apx +aSn aMd bLZ -apx +aSn aaa aaa aaa @@ -108365,19 +108003,19 @@ aaa aaa aaa aaa -xdO -unh +doE +aHS +aHS +aHS aHS -tvQ -xSF pTK aND aGn -aPY -aME +oan +ipX aRO -apx -aUZ +fay +ygM aVV aXn aYT @@ -108391,21 +108029,21 @@ bpX bmS bgR aLd -apx -apx -aOQ -apx -apx -aMs -apx -apx -aOQ -apx -apx -apx +aSn +aSn +lvc +aSn +aSn +jje +aSn +aSn +lvc +aSn +aSn +aSn aMd bMa -bjQ +aUo aaa aaa aaa @@ -108631,10 +108269,10 @@ aNC tmn aGn aPY -aSf +feN aRT -aLd -aLd +hVy +hVy aLd apx apx @@ -108649,20 +108287,20 @@ aSf bsl aMs aUl -apx +aSn bvl -apx +aSn bwO -aMs +jje aUl -apx +aSn bDC -apx +aSn bBg bLs -bmS +kEt bMb -aLd +fqr aaa aaa aaa @@ -108887,12 +108525,12 @@ loS aNA aKN aGn -aPY -aSf +oan +feN aRS -aUo aUV -aTo +aUV +fTL aTo aTo aTo @@ -108906,20 +108544,20 @@ aSf aSj bgG aME -aTo -aSf -aTo -bmS +jXy +vwz +jXy +kEt bzr aME bHW -aSf -aTo -bmS -aSj -aSf +vwz +jXy +kEt +iUj +vwz bLZ -apx +aSn aaa aaa aaa @@ -109147,7 +108785,7 @@ aGn aQy aRf aRW -aSn +qhI aTt aVd aXq @@ -109163,7 +108801,7 @@ brj bsq buf buS -boR +ouf boR bBs bDu @@ -109176,7 +108814,7 @@ bKU bLC bwT bMc -apx +aSn aaa aaa aaa @@ -109417,7 +109055,7 @@ aSd aSd aSd bre -bgG +idr bqr bqr bqr @@ -109432,7 +109070,7 @@ xuz vYh dsG sFv -bwx +cWm blQ aaa aaa @@ -109673,7 +109311,7 @@ aSW bgt bkc bmo -brk +nsq bwx bqr brU @@ -109930,8 +109568,8 @@ aSW bgj bjO bmo -brk -aSf +nsq +mgM bqr buX btF @@ -110159,7 +109797,7 @@ aaa aaa ymb ymb -ymb +nee aDu aEC aFQ @@ -110187,7 +109825,7 @@ aSX bhm bhm aSX -brk +nsq bpF bqr btF @@ -110222,7 +109860,7 @@ fJK rcY cgQ lRv -lRv +qaB aab aaa aaa @@ -110414,8 +110052,8 @@ asb asb asb laU -vrV -rMP +dap +dap dap hoD aEE @@ -110477,10 +110115,10 @@ bGn jWI noP ubK -rIX -vQt -nnF -uBQ +coL +coL +coL +doE aaa aaa aaa @@ -110698,10 +110336,10 @@ aUt bgB bhO sQe -bhv +eCx bhv aSY -brk +lLN boT bqr btF @@ -110954,12 +110592,12 @@ aZb aVc bcG bhN -aMs -aMs -aMs -aMs +sYL +sYL +sYL +sYL brn -aSf +mgM bqr bvb btA @@ -111216,7 +110854,7 @@ biv bkd blJ brk -aSf +mgM bqr bvc btH @@ -111470,8 +111108,8 @@ bgC bhQ biA blh -biA -biA +blq +blq brp bsx bqr @@ -111724,11 +111362,11 @@ aVe aUr aTu bgD -aSf -aSf +mgM +mgM aYD blV -boW +jLz bnu boW jyy @@ -111984,7 +111622,7 @@ aTu aTu bgn blr -bgG +idr blM blM blM @@ -113268,8 +112906,8 @@ aTu aTu aTu bgr -biJ -bgz +sPw +kKA blM bpa bpa @@ -113525,7 +113163,7 @@ bbj bdb beR bgz -biJ +puM bgz blM bnr @@ -114019,7 +113657,7 @@ bat aGn aKW aGn -aGn +jRo aUy fAQ aNB @@ -114039,7 +113677,7 @@ bbl bdd beR bgz -biJ +puM bki blM bnB @@ -114273,11 +113911,11 @@ aaa aaa doE doE -qaB -eIz -eIz -pWR -aLx +aHS +lcl +lcl +aHS +rMP blG aHl aLu @@ -114296,7 +113934,7 @@ bal bde aVi bgz -biJ +xlR bkb blM bnC @@ -114530,10 +114168,10 @@ aaa aaa aaa doE -dQn +aHS oxe lcl -aEM +aHS hFM blG aHS @@ -114553,7 +114191,7 @@ bal bcT aVi bgz -biJ +puM bgz bkx bnD @@ -115066,9 +114704,9 @@ aXQ bal bdh aVi -bgz -biJ -bkg +cTz +eGE +bEt blM bnF bpd @@ -115324,8 +114962,8 @@ aMV aNv beR bgz -biJ -bkf +puM +lQE blM bnG bnD @@ -115582,7 +115220,7 @@ bgQ aVh aSF wem -bkg +bEt blM bnH bnD @@ -117122,8 +116760,8 @@ aZi bbq xxt kFu -bgA -biJ +mnr +qWF bkg blR blR @@ -117183,7 +116821,7 @@ aab aab aaa aaa -wZp +cPG aaa aaa aaa @@ -117440,8 +117078,8 @@ aaa aab aaa swl -fRa -swl +ntD +xSF aab aab aab @@ -117954,7 +117592,7 @@ aaa aab swl swl -vpQ +ntD swl swl aab @@ -118151,8 +117789,8 @@ aUE aab gdZ bgA -biJ -bkg +qrk +egd blR iFm bsM @@ -118665,8 +118303,8 @@ aSu aSu aSu bgE -bmf -bkg +fvs +jJs blR bqA bsI @@ -118921,7 +118559,7 @@ aSz aLI aSz qeM -bgF +ikL bmx bpj blR @@ -118937,10 +118575,10 @@ byy qZK dHH bDU -bzJ +bfx bHc -bzJ -xVr +bfx +rOl bMx bSM bUn @@ -119135,7 +118773,7 @@ aaa aaa aaa aaa -aqI +spM mnj abN abN @@ -119192,18 +118830,18 @@ bxd byk byz bzG -bzJ -bzJ -bzJ +bfx +bfx +bfx rZp -bDX +iAI vhH -bDX +iAI bSK bPV bRN bTv -hLL +iRG bBn bYJ bzJ @@ -119392,12 +119030,12 @@ aaa aaa aaa aaa -aqI +spM ayo atN rCT kQb -auc +ygh qNk pYa pzZ @@ -119435,7 +119073,7 @@ bkT cGR cYH dim -bgz +gIc biG bkg blW @@ -119447,15 +119085,15 @@ bBU blQ bxd bDN -bBn -bPS +wKl +lje bIG bJE bKI hTA bKZ bNW -bzJ +bfx bzJ gdY bDX @@ -119654,7 +119292,7 @@ auC jeQ awB vtj -auc +ygh hiO uGA dFG @@ -119705,20 +119343,20 @@ blQ oKs byl wbT -bPS -bBn -bBn -bBn -bPS +lje +wKl +wKl +wKl +lje bMk bNV -bzJ +bfx bOt bHi bUU bUU hLL -bBn +bsY cgW cao cdQ @@ -119911,7 +119549,7 @@ fvy aBA wsT ank -auc +ygh akm lJf anu @@ -119949,7 +119587,7 @@ bkW cGS cYK dim -bgz +gIc dmx bpk bql @@ -119960,7 +119598,7 @@ bqJ bwA blQ bxf -bzJ +bfx bzI kCk bIK @@ -119969,7 +119607,7 @@ bzE hIR bzE bNX -sbt +kOU bzF fTS bzF @@ -120163,12 +119801,12 @@ aaa aaa aaa aaa -aqI +spM auy aeF -wsT -auc -auc +ugH +ygh +ygh gWZ eiv uFa @@ -120206,7 +119844,7 @@ aSA aSA aSA aSA -bgz +gIc blF bko blQ @@ -120217,13 +119855,13 @@ bnK sZe blQ lnv -bzJ +bfx bzH bBo bIJ qus box -bBn +wKl bKC bFx bMA @@ -120232,7 +119870,7 @@ bUo bUV bVL bXj -bBn +fIS cgW caq ckw @@ -120474,20 +120112,20 @@ svp bwz blQ bxg -bzJ +bfx bzK bBp bCE bEf bFy bHn -bzJ +bfx rxg -bzJ +bfx bSQ bUp bUX -bBn +tum bVt bWU cgW @@ -120730,23 +120368,23 @@ bnT cGD blQ blQ -bzJ -bzJ -bzJ -bzJ -bzJ +bfx +bfx +bfx +bfx +bfx kPH -bDX -bDX -bzJ +iAI +iAI +bfx ccZ -bzJ -bDX -bDX +bfx +jPF +jPF bUW bPW -bDX -bDX +jPF +jPF cgW cgW wrU @@ -120934,7 +120572,7 @@ aaa aaa aaa aaa -aqI +spM aeI afc afp @@ -120977,7 +120615,7 @@ aUF cGZ rmK aSA -bgP +qZp bmV ukX dnN @@ -121191,7 +120829,7 @@ aaa aaa aaa aaa -aqI +spM aeH auV afo @@ -121820,7 +121458,7 @@ dts cYq dcP dcP -dcP +cby dar aaa aaa @@ -122036,7 +121674,7 @@ hwK bSi cdT cfm -cfl +nKN cgQ gYs tGO @@ -122763,8 +122401,8 @@ aHA hxA aHA aHA -aEl -lQx +ler +qtx tkb aRw bah @@ -123014,13 +122652,13 @@ aDi aFo aIl aHC -aJc +wrY aKt aLU aNJ aJc aPC -aEl +ler gZn aRr aRw @@ -123055,7 +122693,7 @@ qPl bOK kdk jdt -bQw +tRF oRE bTS tvD @@ -123277,7 +122915,7 @@ aLT aNG aOz aPB -aEl +ler aGb aRr aRw @@ -123534,7 +123172,7 @@ aLW aJJ aOB aPE -aEl +ler aQl aRr aRw @@ -123785,7 +123423,7 @@ aCm aFp aDe aHD -aDL +pCT aKu aLV aJF @@ -123893,7 +123531,7 @@ pMy cSU vXQ ePY -wnU +ePY ePY cUM cSU @@ -124042,13 +123680,13 @@ aEd aFs aDe aHD -aDL +pCT aKu aLY aNN aOH aPG -aEl +ler bag aRr aQl @@ -124299,13 +123937,13 @@ aCn aFr ksh aHG -aHG +hRa aKv aLX aNM aKr aPF -aEl +ler aPi aVK aYb @@ -124555,14 +124193,14 @@ aDi aEg aFt aIl -aEl -aBn -aBn +ler +qzx +qzx aMa aNP -aBn -aBn -aEl +qzx +qzx +ler aad vEH aYh @@ -125130,11 +124768,11 @@ fku ckO ckO cua -cLq +wIt tpi crX czA -ckO +cBE cAN cBE cDx @@ -125393,7 +125031,7 @@ ctt czz gtZ cAM -cvJ +rlj was mXT tTj @@ -125639,12 +125277,12 @@ cdN ciN cfn clZ -cnA +cQF lUC crV ctl cue -cnA +qjH lUC cuu cnA @@ -125658,7 +125296,7 @@ cGq cHO cGq dMr -clZ +xbm cnA lBg cRR @@ -126163,7 +125801,7 @@ cxd cyx csD csD -cBF +csD dot cFj cGN @@ -126677,23 +126315,23 @@ cxf cxv czC csD -cmG -cBL +ctY +rRy cDE csD cGs cHu -cHX -dcj -dcj -dcj -dcj -dcj +eOZ +iWr +iWr +iWr +iWr +iWr bHY -cRX -cPO -cRX -cRS +xve +wHK +xve +oiK cWJ cPO gLG @@ -126886,7 +126524,7 @@ bgT biR bpR cSX -dgH +tdg aDN bhq bnn @@ -126935,7 +126573,7 @@ cxr cGI cvB cAR -cBJ +cBL cDA csD cHQ @@ -127465,7 +127103,7 @@ cRX cRX cRX cRS -cWJ +rcq cPO cYM cNV @@ -128516,7 +128154,7 @@ ouA ouA deW dgI -gru +mhG mhG dop dor @@ -128772,8 +128410,8 @@ dcq dcq dcq dcq -eXd -dOc +ddr +bzN dfx eLY dOc @@ -129543,7 +129181,7 @@ bbM dlv cZS dcq -lrP +ddr dOc jhW dfT @@ -129799,7 +129437,7 @@ qRU dkO dkO cZS -gYf +aab aaa dOc fXw @@ -130267,10 +129905,10 @@ pZl tfv kAp bWa -bQV +iCd oDG -bQV -bQV +iCd +iCd cCW xTJ pNL @@ -130786,7 +130424,7 @@ nEA oxN der cCW -cck +sYi tsJ cAr cuf @@ -131798,7 +131436,7 @@ ogI ogI ogI bZJ -cbO +gQO bWu bXF bZh @@ -132054,7 +131692,7 @@ bPh bSq rdL kSv -uTX +kGt jAv bWt cnY @@ -132079,7 +131717,7 @@ hpR cDf dRz oiA -hAl +suJ chq cDf cKj @@ -132825,7 +132463,7 @@ can bNz can iev -mPX +sbd kFS cnY cfI @@ -132899,7 +132537,7 @@ dpw dpf dkb dkg -pjq +dlb dqx dqm wny @@ -133348,9 +132986,9 @@ bTZ bWd bWd cfK -pAi +bQV kUE -ckr +wgW cof jnh cuB @@ -133563,7 +133201,7 @@ aVq aZE aPm aPm -bfx +bdN aOI aQI bbI @@ -133607,7 +133245,7 @@ sZh bWd chp ciJ -ckr +wgW clc kBk cnD @@ -133864,7 +133502,7 @@ oPO bWd cht geX -ckr +wgW clf nFp cuG @@ -134121,7 +133759,7 @@ eGV sqx chs ciP -ckr +wgW cle lFH cnF @@ -134635,7 +134273,7 @@ hNr bWd cfJ ciR -ckr +wgW jFo cmn cnH @@ -137197,9 +136835,9 @@ bEu pAi pAi pAi -pAi +ckr psm -pAi +ckr lLM cem cfW @@ -137403,7 +137041,7 @@ aab aab fnH fnH -fnH +eXd aGU aHK aIB @@ -137456,9 +137094,9 @@ bVV cuQ vxz pMM -pAi +ckr bWi -wjQ +oyt qJN chD cpy @@ -137657,10 +137295,10 @@ aqZ azU awQ axq -lgb +axq +jOz +jOz jOz -utp -oBF sDz aHI aIA @@ -137771,8 +137409,8 @@ chf klf klf klf -klf -npm +nBq +doE aaa aaa aaa @@ -137970,7 +137608,7 @@ bVX cuQ cKQ bXW -pAi +ckr vmr cer kBr @@ -138025,10 +137663,10 @@ cyJ cyJ cep hzG -gCP +cep ghR -nBq -taW +cep +cep doE aaa aaa @@ -138203,7 +137841,7 @@ dnU bov bqa brt -bsY +bqa buL bws bxN @@ -139459,7 +139097,7 @@ aab doE ici ici -ici +nnF aGY aOC aGX @@ -139713,10 +139351,10 @@ aab aqZ aaa aaa -jEq -yky -jRo -jPd +doE +aGY +aGY +aGY cZV aGY dys @@ -141280,7 +140918,7 @@ bax bcj bep bfT -bkQ +iib bjF bll bcp @@ -143674,7 +143312,7 @@ kdc csL djP cQC -dlj +fof dlz dSu csL @@ -143849,7 +143487,7 @@ baz bcC bcz bcz -bcz +kFd baz bjD bpO @@ -145957,7 +145595,7 @@ cDG cFU cHp cIF -cJR +cJP oEK cLe tWz @@ -146762,7 +146400,7 @@ dfb dfn fNh fNh -fNh +vrV aaa aaa aab @@ -147017,10 +146655,10 @@ jZT deN dfa tMT -spJ sTF -dgv -hDJ +sTF +sTF +ddE ddE ddE ddN @@ -148765,7 +148403,7 @@ cgs pMj eis nTk -vBv +cJR vXo ijP eAb @@ -149022,7 +148660,7 @@ cgs gZe ooY plq -vBv +cJR evw tHH iFq @@ -149279,7 +148917,7 @@ cgs iUx jzz lVB -vBv +cJR oGw cqe wuZ @@ -150063,8 +149701,8 @@ aab ciY ycI ycI -xmS -ycI +cNq +unh ciY pCv ciY @@ -150320,7 +149958,7 @@ aaa aaa aab ycI -cGW +cNq ycI ciY sKQ @@ -150577,7 +150215,7 @@ aab aaa doE ycI -oeE +cNq ycI ciY qlE @@ -150834,7 +150472,7 @@ aab aab doE doE -rFZ +cxm doE ciY ciY diff --git a/_maps/map_files/generic/Lavaland.dmm b/_maps/map_files/generic/Lavaland.dmm index 9ac44c603b06..e3cd67a5917c 100644 --- a/_maps/map_files/generic/Lavaland.dmm +++ b/_maps/map_files/generic/Lavaland.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/turf/simulated/wall/boss, +/turf/simulated/wall/indestructible/boss, /area/lavaland/surface/outdoors) "ab" = ( /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, @@ -481,11 +481,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ icon_state = "white"; dir = 8 @@ -605,11 +601,7 @@ /turf/simulated/floor/plasteel, /area/mine/laborcamp) "bB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Labor Camp APC"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /obj/machinery/computer/cryopod{ pixel_y = 38 }, @@ -960,11 +952,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkfull" @@ -972,7 +960,7 @@ /area/mine/outpost/storage) "cl" = ( /obj/structure/lattice/catwalk/mining, -/obj/item/reagent_containers/food/snacks/fortunecookie{ +/obj/item/food/snacks/fortunecookie{ pixel_y = -5; pixel_x = -6 }, @@ -1037,11 +1025,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkfull" @@ -1217,11 +1201,7 @@ /obj/structure/cable/cyan{ icon_state = "0-2" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/bluegrid, /area/mine/outpost/comms) "cR" = ( @@ -1284,10 +1264,7 @@ }, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating, /area/mine/outpost/production) "cY" = ( @@ -1327,10 +1304,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ dir = 8; @@ -1348,7 +1322,7 @@ "de" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /obj/item/radio/intercom{ name = "south bump"; pixel_y = -28 @@ -1503,10 +1477,7 @@ dir = 8; pixel_y = -5 }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ icon_state = "purplecorner"; @@ -2070,11 +2041,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/catwalk, /area/mine/outpost/engineering) "ex" = ( @@ -2206,31 +2173,27 @@ /area/mine/outpost/medbay) "eJ" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -1; pixel_y = 9 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -8 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 4; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -7 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 7; pixel_y = 5 }, /obj/item/storage/box/donkpockets, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /obj/structure/cable{ icon_state = "0-4" }, @@ -2375,11 +2338,11 @@ /area/mine/outpost/hallway/west) "eW" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 2; pixel_y = 6 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -2; pixel_y = 4 }, @@ -2886,10 +2849,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkyellowcorners" @@ -3788,10 +3748,7 @@ /area/lavaland/surface/outdoors) "km" = ( /obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/south) "ko" = ( @@ -5398,11 +5355,7 @@ }, /area/mine/outpost/storage) "vf" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Labor Camp Security APC"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -5819,7 +5772,7 @@ "ya" = ( /obj/effect/mapping_helpers/no_lava, /obj/effect/mapping_helpers/no_lava, -/turf/simulated/wall/boss, +/turf/simulated/wall/indestructible/boss, /area/lavaland/surface/outdoors) "yb" = ( /obj/structure/table/glass, @@ -6139,6 +6092,10 @@ icon_state = "darkred" }, /area/mine/laborcamp/security) +"Ad" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/wall/indestructible/boss, +/area/lavaland/surface/outdoors) "Ai" = ( /obj/machinery/alarm{ dir = 1; @@ -6328,7 +6285,7 @@ /area/mine/outpost/production) "Bu" = ( /obj/structure/reagent_dispensers/oil, -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/south) "By" = ( @@ -6344,11 +6301,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkpurplecorners" @@ -6960,11 +6913,7 @@ "FH" = ( /obj/structure/cable, /obj/effect/spawner/random_spawners/dirt_maybe, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, +/obj/machinery/power/apc/directional/west, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/east) "FL" = ( @@ -7514,11 +7463,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, +/obj/machinery/power/apc/directional/east, /turf/simulated/floor/carpet, /area/mine/outpost/quartermaster) "Kc" = ( @@ -8459,11 +8404,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, +/obj/machinery/power/apc/directional/north, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkfull" @@ -41293,7 +41234,7 @@ aa aa aa aa -Rl +Ad gG pP kg @@ -41557,8 +41498,8 @@ pH Ol ag le -Rl -Rl +Ad +Ad ls Aw Aw @@ -41570,8 +41511,8 @@ Aw Aw Aw lI -Rl -Rl +Ad +Ad wr Ly Ly @@ -41828,7 +41769,7 @@ XU KO KO Eq -Rl +Ad hF Ly Ly @@ -42342,7 +42283,7 @@ pS bc Qr bc -Rl +Ad IZ Ly Ly @@ -42585,8 +42526,8 @@ Pl hk gr hH -Rl -Rl +Ad +Ad lw Aw Aw @@ -42598,8 +42539,8 @@ Aw Aw lw Aw -Rl -Rl +Ad +Ad Vq Ly Ly @@ -42835,7 +42776,7 @@ aa aa aa aa -Rl +Ad gr pP kl diff --git a/_maps/map_files/generic/centcomm.dmm b/_maps/map_files/generic/centcomm.dmm index afd70a1a1f52..6201efae4930 100644 --- a/_maps/map_files/generic/centcomm.dmm +++ b/_maps/map_files/generic/centcomm.dmm @@ -747,7 +747,6 @@ /turf/simulated/floor/carpet/black, /area/ghost_bar) "cS" = ( -/obj/effect/landmark/spawner/teleport_scroll, /obj/structure/table/wood/fancy/black, /obj/item/paper/crumpled/bloody/ruins/lavaland/clown_planet{ name = "our demands"; @@ -855,7 +854,7 @@ /area/centcom) "du" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /turf/simulated/floor/plasteel/freezer, /area/ninja/holding) "dv" = ( @@ -876,7 +875,7 @@ /area/ninja/holding) "dy" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /turf/simulated/floor/plasteel/freezer, /area/ninja/holding) "dz" = ( @@ -1099,7 +1098,7 @@ pixel_y = 5; pixel_x = -7 }, -/obj/item/reagent_containers/food/drinks/mugwort{ +/obj/item/reagent_containers/drinks/mugwort{ pixel_y = 6; pixel_x = 8 }, @@ -1413,7 +1412,7 @@ /area/ninja/holding) "fv" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/novelty, +/obj/item/reagent_containers/drinks/mug/novelty, /obj/item/candle/eternal/wizard{ pixel_y = 11 }, @@ -1449,24 +1448,24 @@ /area/shuttle/administration) "fF" = ( /obj/structure/closet/secure_closet/freezer/meat/open, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/spaghetti, -/obj/item/reagent_containers/food/snacks/spaghetti, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/spaghetti, +/obj/item/food/snacks/spaghetti, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -2391,11 +2390,11 @@ /area/ghost_bar) "iv" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/tonic{ +/obj/item/reagent_containers/drinks/cans/tonic{ pixel_x = 7; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /turf/simulated/floor/plasteel, /area/centcom/evac) "iw" = ( @@ -2634,7 +2633,7 @@ /area/syndicate_mothership) "jo" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/devilskiss, +/obj/item/reagent_containers/drinks/drinkingglass/devilskiss, /turf/simulated/floor/plasteel/dark, /area/syndicate_mothership) "jp" = ( @@ -3734,7 +3733,7 @@ pixel_x = -3; pixel_y = 3 }, -/obj/item/clothing/suit/space/hardsuit/shielded/wizard, +/obj/item/clothing/suit/space/hardsuit/wizard, /obj/item/clothing/suit/space/santa{ pixel_x = 3; pixel_y = -3 @@ -3844,7 +3843,7 @@ /area/admin) "mV" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/trophy/bronze_cup/toolbox_win, +/obj/item/reagent_containers/drinks/trophy/bronze_cup/toolbox_win, /turf/simulated/floor/plasteel/dark, /area/tdome/tdomeobserve) "mW" = ( @@ -4105,7 +4104,7 @@ /area/shuttle/administration) "nI" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -2; pixel_y = 5 }, @@ -4218,7 +4217,7 @@ /area/centcom/suppy) "nY" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/mushroompizzaslice{ +/obj/item/food/snacks/mushroompizzaslice{ pixel_x = -5; pixel_y = 5 }, @@ -4233,7 +4232,7 @@ /area/admin) "ob" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 5; pixel_y = -2 }, @@ -4293,7 +4292,7 @@ /area/ghost_bar) "om" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/trophy/gold_cup, +/obj/item/reagent_containers/drinks/trophy/gold_cup, /turf/simulated/floor/plasteel/dark, /area/tdome/tdomeobserve) "on" = ( @@ -4398,11 +4397,11 @@ /area/shuttle/trade/sol) "oJ" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 5 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8 }, /obj/item/kitchen/knife, @@ -4411,7 +4410,7 @@ name = "west bump"; pixel_x = -28 }, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ pixel_y = 5 }, /obj/machinery/reagentgrinder{ @@ -4791,7 +4790,7 @@ /area/holodeck/source_thunderdomecourt) "ql" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/mug/med, +/obj/item/reagent_containers/drinks/mug/med, /obj/machinery/light{ dir = 8 }, @@ -4856,7 +4855,7 @@ /area/syndicate_mothership) "qw" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/item/reagent_containers/glass/rag, /obj/machinery/newscaster{ dir = 1; @@ -4976,7 +4975,7 @@ "qT" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/item/reagent_containers/drinks/bottle/rum, /turf/simulated/floor/wood, /area/syndicate_mothership) "qU" = ( @@ -5113,13 +5112,13 @@ /area/admin) "ro" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/grown/citrus/lemon, -/obj/item/reagent_containers/food/snacks/grown/berries, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/cherries, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/mushroom/amanita, +/obj/item/food/snacks/grown/citrus/lemon, +/obj/item/food/snacks/grown/berries, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/cherries, +/obj/item/food/snacks/grown/citrus/orange, +/obj/item/food/snacks/grown/corn, +/obj/item/food/snacks/grown/mushroom/amanita, /turf/simulated/floor/plasteel/freezer, /area/admin) "rp" = ( @@ -5347,7 +5346,7 @@ "rT" = ( /obj/structure/table/wood/poker, /obj/item/clothing/mask/cigarette/cigar/havana, -/obj/item/reagent_containers/food/drinks/bottle/cognac, +/obj/item/reagent_containers/drinks/bottle/cognac, /turf/simulated/floor/transparent/glass, /area/tdome/tdomeobserve) "rU" = ( @@ -5514,7 +5513,7 @@ pixel_y = -32 }, /obj/structure/rack/skeletal_bar/left, -/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, /turf/simulated/floor/wood, /area/syndicate_mothership) "sD" = ( @@ -5522,7 +5521,7 @@ pixel_y = -32 }, /obj/structure/rack/skeletal_bar/right, -/obj/item/reagent_containers/food/drinks/bottle/gin, +/obj/item/reagent_containers/drinks/bottle/gin, /turf/simulated/floor/wood, /area/syndicate_mothership) "sE" = ( @@ -5536,7 +5535,7 @@ /area/syndicate_mothership) "sF" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/machinery/light{ dir = 4 }, @@ -6695,15 +6694,15 @@ /area/ghost_bar) "wN" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 5 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8 }, /obj/item/kitchen/knife, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ pixel_y = 5 }, /obj/machinery/reagentgrinder{ @@ -7163,22 +7162,22 @@ /area/holodeck/source_boxingcourt) "zj" = ( /obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/icepepper, -/obj/item/reagent_containers/food/snacks/grown/icepepper, -/obj/item/reagent_containers/food/snacks/grown/citrus/lemon, -/obj/item/reagent_containers/food/snacks/grown/citrus/lime, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/cherries, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/deus, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/whitebeet, +/obj/item/food/snacks/grown/whitebeet, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/rice, +/obj/item/food/snacks/grown/rice, +/obj/item/food/snacks/grown/icepepper, +/obj/item/food/snacks/grown/icepepper, +/obj/item/food/snacks/grown/citrus/lemon, +/obj/item/food/snacks/grown/citrus/lime, +/obj/item/food/snacks/grown/citrus/orange, +/obj/item/food/snacks/grown/cherries, +/obj/item/food/snacks/grown/apple, +/obj/item/food/snacks/grown/ambrosia/deus, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -7375,9 +7374,7 @@ /area/wizard_station) "Ak" = ( /obj/structure/table/wood/fancy/royalblack, -/obj/item/radio/phone{ - desc = "How else would the wizards order pizza?" - }, +/obj/structure/pondering_orb, /obj/effect/turf_decal/woodsiding{ dir = 6 }, @@ -7407,6 +7404,7 @@ /obj/item/surgicaldrill, /obj/item/bonegel, /obj/item/FixOVein, +/obj/item/stack/medical/ointment/advanced, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, @@ -7457,7 +7455,7 @@ /area/admin) "As" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/devilskiss, +/obj/item/reagent_containers/drinks/drinkingglass/devilskiss, /turf/simulated/floor/wood, /area/admin) "At" = ( @@ -7535,9 +7533,9 @@ "AL" = ( /obj/structure/table, /obj/item/storage/fancy/cigarettes/syndicate, -/obj/item/reagent_containers/food/drinks/cans/adminbooze, -/obj/item/reagent_containers/food/drinks/cans/badminbrew, -/obj/item/reagent_containers/food/drinks/cans/madminmalt, +/obj/item/reagent_containers/drinks/cans/adminbooze, +/obj/item/reagent_containers/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/madminmalt, /turf/simulated/floor/plasteel, /area/admin) "AM" = ( @@ -7676,7 +7674,7 @@ "Bo" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_y = 5 }, /turf/simulated/floor/plasteel{ @@ -7900,7 +7898,7 @@ /area/centcom/suppy) "Cj" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/madminmalt{ +/obj/item/reagent_containers/drinks/cans/madminmalt{ pixel_y = 2 }, /turf/simulated/floor/plasteel, @@ -8283,10 +8281,7 @@ }, /area/centcom/suppy) "DD" = ( -/obj/machinery/power/apc{ - name = "Gamma Armory APC"; - pixel_y = -24 - }, +/obj/machinery/power/apc/directional/south, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -8294,7 +8289,7 @@ /obj/structure/sign/securearea{ pixel_x = -32 }, -/obj/machinery/suit_storage_unit/gamma, +/obj/machinery/suit_storage_unit/gamma/secure, /turf/simulated/floor/mineral/plastitanium/red, /area/shuttle/gamma/space) "DE" = ( @@ -9894,22 +9889,22 @@ /area/shuttle/escape) "Jl" = ( /obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/icepepper, -/obj/item/reagent_containers/food/snacks/grown/icepepper, -/obj/item/reagent_containers/food/snacks/grown/citrus/lemon, -/obj/item/reagent_containers/food/snacks/grown/citrus/lime, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/cherries, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/deus, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/whitebeet, +/obj/item/food/snacks/grown/whitebeet, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/rice, +/obj/item/food/snacks/grown/rice, +/obj/item/food/snacks/grown/icepepper, +/obj/item/food/snacks/grown/icepepper, +/obj/item/food/snacks/grown/citrus/lemon, +/obj/item/food/snacks/grown/citrus/lime, +/obj/item/food/snacks/grown/citrus/orange, +/obj/item/food/snacks/grown/cherries, +/obj/item/food/snacks/grown/apple, +/obj/item/food/snacks/grown/ambrosia/deus, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -9980,24 +9975,24 @@ /area/centcom/specops) "JB" = ( /obj/structure/closet/secure_closet/freezer/meat/open, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/spaghetti, -/obj/item/reagent_containers/food/snacks/spaghetti, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/spaghetti, +/obj/item/food/snacks/spaghetti, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -10268,25 +10263,25 @@ /area/centcom/evac) "Kw" = ( /obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/vanillapod, -/obj/item/reagent_containers/food/snacks/grown/vanillapod, -/obj/item/reagent_containers/food/snacks/grown/sugarcane, -/obj/item/reagent_containers/food/snacks/grown/sugarcane, -/obj/item/reagent_containers/food/snacks/grown/oat, -/obj/item/reagent_containers/food/snacks/grown/oat, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/vanillapod, +/obj/item/food/snacks/grown/vanillapod, +/obj/item/food/snacks/grown/sugarcane, +/obj/item/food/snacks/grown/sugarcane, +/obj/item/food/snacks/grown/oat, +/obj/item/food/snacks/grown/oat, +/obj/item/food/snacks/grown/grapes, +/obj/item/food/snacks/grown/grapes, +/obj/item/food/snacks/grown/corn, +/obj/item/food/snacks/grown/corn, +/obj/item/food/snacks/grown/chili, +/obj/item/food/snacks/grown/chili, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/apple, +/obj/item/food/snacks/grown/ambrosia/vulgaris, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -10939,8 +10934,8 @@ /area/centcom/evac) "MF" = ( /obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/bottle/cognac{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/bottle/cognac{ pixel_x = 10 }, /turf/simulated/floor/carpet/black, @@ -10953,7 +10948,7 @@ /area/centcom/specops) "MH" = ( /obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/carpet/black, /area/centcom/evac) "MI" = ( @@ -11100,8 +11095,8 @@ /area/centcom/suppy) "MY" = ( /obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka{ pixel_x = -12 }, /turf/simulated/floor/carpet/black, @@ -11349,11 +11344,11 @@ /area/centcom/gamma) "NT" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/sodawater{ +/obj/item/reagent_containers/drinks/cans/sodawater{ pixel_x = 6; pixel_y = -3 }, -/obj/item/reagent_containers/food/drinks/cans/starkist, +/obj/item/reagent_containers/drinks/cans/starkist, /turf/simulated/floor/plasteel, /area/centcom/evac) "NU" = ( @@ -11413,25 +11408,25 @@ /obj/structure/closet/secure_closet/freezer/kitchen{ req_access = null }, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/vanillapod, -/obj/item/reagent_containers/food/snacks/grown/vanillapod, -/obj/item/reagent_containers/food/snacks/grown/sugarcane, -/obj/item/reagent_containers/food/snacks/grown/sugarcane, -/obj/item/reagent_containers/food/snacks/grown/oat, -/obj/item/reagent_containers/food/snacks/grown/oat, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/vanillapod, +/obj/item/food/snacks/grown/vanillapod, +/obj/item/food/snacks/grown/sugarcane, +/obj/item/food/snacks/grown/sugarcane, +/obj/item/food/snacks/grown/oat, +/obj/item/food/snacks/grown/oat, +/obj/item/food/snacks/grown/grapes, +/obj/item/food/snacks/grown/grapes, +/obj/item/food/snacks/grown/corn, +/obj/item/food/snacks/grown/corn, +/obj/item/food/snacks/grown/chili, +/obj/item/food/snacks/grown/chili, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/apple, +/obj/item/food/snacks/grown/ambrosia/vulgaris, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -11499,13 +11494,13 @@ /area/wizard_station) "Ov" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/madminmalt, +/obj/item/reagent_containers/drinks/cans/madminmalt, /turf/simulated/floor/wood, /area/centcom/evac) "Ow" = ( /obj/structure/table, /obj/item/lighter/zippo, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb, +/obj/item/reagent_containers/drinks/cans/dr_gibb, /turf/simulated/floor/wood, /area/centcom/evac) "Ox" = ( @@ -11517,12 +11512,12 @@ /area/tdome/arena) "Oy" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /turf/simulated/floor/wood, /area/centcom/evac) "Oz" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /turf/simulated/floor/wood, /area/centcom/evac) "OA" = ( @@ -11556,7 +11551,7 @@ /area/centcom/control) "OE" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/space_mountain_wind, +/obj/item/reagent_containers/drinks/cans/space_mountain_wind, /turf/simulated/floor/wood, /area/centcom/evac) "OF" = ( @@ -11845,7 +11840,7 @@ "Pw" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_y = 5 }, /turf/simulated/floor/plasteel/dark, @@ -13325,7 +13320,7 @@ /area/ghost_bar) "Vs" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /turf/simulated/floor/wood, /area/centcom/evac) "Vt" = ( @@ -13343,7 +13338,7 @@ /area/tdome/tdomeadmin) "Vv" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/madminmalt, +/obj/item/reagent_containers/drinks/cans/madminmalt, /turf/simulated/floor/plasteel, /area/centcom/evac) "Vx" = ( @@ -13352,7 +13347,7 @@ "Vy" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_y = 5 }, /turf/simulated/floor/plasteel{ @@ -13390,7 +13385,7 @@ /area/centcom/evac) "VH" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/tonic, +/obj/item/reagent_containers/drinks/cans/tonic, /turf/simulated/floor/wood, /area/centcom/evac) "VI" = ( @@ -13565,14 +13560,14 @@ /area/shuttle/escape) "Wr" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 5 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8 }, -/obj/item/reagent_containers/food/drinks/britcup, +/obj/item/reagent_containers/drinks/britcup, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -50120,7 +50115,7 @@ IS LN LN LN -NF +vy Mb LR LR diff --git a/_maps/map_files/shuttles/admin_armory.dmm b/_maps/map_files/shuttles/admin_armory.dmm index cf88f4744262..c9304f924b24 100644 --- a/_maps/map_files/shuttles/admin_armory.dmm +++ b/_maps/map_files/shuttles/admin_armory.dmm @@ -340,10 +340,6 @@ }, /turf/simulated/floor/mineral/plastitanium/red, /area/shuttle/administration) -"wQ" = ( -/obj/effect/spawner/window/shuttle, -/turf/space, -/area/shuttle/administration) "xm" = ( /obj/structure/table/reinforced, /obj/item/rcd/preloaded, @@ -960,7 +956,7 @@ vk NQ NQ NQ -wQ +NQ vk vk vk diff --git a/_maps/map_files/shuttles/admin_hospital.dmm b/_maps/map_files/shuttles/admin_hospital.dmm index c6d87689ecaa..167f4c130b61 100644 --- a/_maps/map_files/shuttles/admin_hospital.dmm +++ b/_maps/map_files/shuttles/admin_hospital.dmm @@ -304,18 +304,8 @@ /turf/simulated/floor/mineral/titanium, /area/shuttle/administration) "bw" = ( +/obj/item/storage/surgical_tray, /obj/structure/table/tray, -/obj/item/stack/medical/bruise_pack/advanced, -/obj/item/scalpel, -/obj/item/hemostat, -/obj/item/retractor, -/obj/item/circular_saw, -/obj/item/bonegel, -/obj/item/bonesetter, -/obj/item/cautery, -/obj/item/FixOVein, -/obj/item/surgicaldrill, -/obj/item/storage/backpack/duffel/medical, /turf/simulated/floor/mineral/titanium, /area/shuttle/administration) "bx" = ( @@ -548,12 +538,12 @@ /turf/simulated/floor/mineral/titanium, /area/shuttle/administration) "cp" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage, /turf/simulated/floor/mineral/titanium, /area/shuttle/administration) "cq" = ( /obj/machinery/light, -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage, /turf/simulated/floor/mineral/titanium, /area/shuttle/administration) "cr" = ( diff --git a/_maps/map_files/shuttles/emergency_bar.dmm b/_maps/map_files/shuttles/emergency_bar.dmm index 3a9aeaf95116..96ee62dfcff4 100644 --- a/_maps/map_files/shuttles/emergency_bar.dmm +++ b/_maps/map_files/shuttles/emergency_bar.dmm @@ -45,7 +45,7 @@ /area/shuttle/escape) "an" = ( /obj/structure/table/wood/poker, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey, /turf/simulated/floor/carpet/red, /area/shuttle/escape) "ao" = ( @@ -245,7 +245,7 @@ "aU" = ( /obj/structure/table, /obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -296,7 +296,7 @@ "bd" = ( /obj/structure/table, /obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/item/clothing/mask/cigarette/cigar, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" diff --git a/_maps/map_files/shuttles/emergency_clown.dmm b/_maps/map_files/shuttles/emergency_clown.dmm index 4f474c5dda29..1aa2399414c1 100644 --- a/_maps/map_files/shuttles/emergency_clown.dmm +++ b/_maps/map_files/shuttles/emergency_clown.dmm @@ -148,7 +148,7 @@ icon_state = "greentext"; name = "greentext" }, -/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/condiment/saltshaker, /turf/simulated/floor/mineral/plastitanium/red/brig, /area/shuttle/escape) "aI" = ( diff --git a/_maps/map_files/shuttles/emergency_cyb.dmm b/_maps/map_files/shuttles/emergency_cyb.dmm index ffd77b68bc53..0577f3c6e123 100644 --- a/_maps/map_files/shuttles/emergency_cyb.dmm +++ b/_maps/map_files/shuttles/emergency_cyb.dmm @@ -891,7 +891,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/item/reagent_containers/food/drinks/mug/med, +/obj/item/reagent_containers/drinks/mug/med, /turf/simulated/floor/plasteel{ icon_state = "cmo" }, @@ -1013,7 +1013,7 @@ aO aH aH aH -bj +ac bg ba ba diff --git a/_maps/map_files/shuttles/emergency_dept.dmm b/_maps/map_files/shuttles/emergency_dept.dmm index 1a170bf230c5..d6f6a2b87054 100644 --- a/_maps/map_files/shuttles/emergency_dept.dmm +++ b/_maps/map_files/shuttles/emergency_dept.dmm @@ -341,7 +341,7 @@ /area/shuttle/escape) "bd" = ( /obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/structure/table/wood, /obj/machinery/light{ dir = 4 diff --git a/_maps/map_files/shuttles/emergency_jungle.dmm b/_maps/map_files/shuttles/emergency_jungle.dmm index 8f2900e751ad..13184bd06f12 100644 --- a/_maps/map_files/shuttles/emergency_jungle.dmm +++ b/_maps/map_files/shuttles/emergency_jungle.dmm @@ -607,7 +607,7 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/item/reagent_containers/food/drinks/mug/med, +/obj/item/reagent_containers/drinks/mug/med, /mob/living/carbon/human/monkey, /turf/simulated/floor/grass, /area/shuttle/escape) diff --git a/_maps/map_files/shuttles/ferry_meat.dmm b/_maps/map_files/shuttles/ferry_meat.dmm index 0d0a4f7fab4c..8a21a1c75e2d 100644 --- a/_maps/map_files/shuttles/ferry_meat.dmm +++ b/_maps/map_files/shuttles/ferry_meat.dmm @@ -36,13 +36,13 @@ /obj/structure/closet/secure_closet/freezer/meat, /obj/item/grenade/chem_grenade/meat, /obj/item/grenade/clusterbuster/meat, -/obj/item/reagent_containers/food/snacks/meat/corgi, -/obj/item/reagent_containers/food/snacks/meat/ham, -/obj/item/reagent_containers/food/snacks/meat/human, -/obj/item/reagent_containers/food/snacks/meat/monkey, -/obj/item/reagent_containers/food/snacks/meat/pug, -/obj/item/reagent_containers/food/snacks/meat/slab/meatproduct, -/obj/item/reagent_containers/food/snacks/meat/syntiflesh, +/obj/item/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/ham, +/obj/item/food/snacks/meat/human, +/obj/item/food/snacks/meat/monkey, +/obj/item/food/snacks/meat/pug, +/obj/item/food/snacks/meat/slab/meatproduct, +/obj/item/food/snacks/meat/syntiflesh, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, diff --git a/_maps/map_files/templates/biodome_beach.dmm b/_maps/map_files/templates/biodome_beach.dmm index 2f3f5db29c94..994144d3207e 100644 --- a/_maps/map_files/templates/biodome_beach.dmm +++ b/_maps/map_files/templates/biodome_beach.dmm @@ -110,8 +110,8 @@ /area/ruin/powered/beach) "au" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour, /turf/simulated/floor/wood, /area/ruin/powered/beach) "av" = ( @@ -120,7 +120,7 @@ dir = 8; name = "Beach Bar Desk" }, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/item/reagent_containers/glass/rag, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/bar{ dir = 8 @@ -363,7 +363,7 @@ /turf/simulated/floor/beach/sand, /area/ruin/powered/beach) "bP" = ( -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/beach/sand, /area/ruin/powered/beach) "bQ" = ( diff --git a/_maps/map_files/templates/shelter_2.dmm b/_maps/map_files/templates/shelter_2.dmm index a5d11498f77d..0ea165cfb5e2 100644 --- a/_maps/map_files/templates/shelter_2.dmm +++ b/_maps/map_files/templates/shelter_2.dmm @@ -165,16 +165,16 @@ /obj/machinery/light{ dir = 4 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 6; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/bottle/wine, +/obj/item/reagent_containers/drinks/bottle/wine, /turf/simulated/floor/carpet/black, /area/survivalpod) "B" = ( /obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -4; pixel_y = 1 }, diff --git a/_maps/map_files220/MetaStation/MetaStation.dmm b/_maps/map_files220/MetaStation/MetaStation.dmm index 44ce8c9b69ca..c7558bb09d0d 100644 --- a/_maps/map_files220/MetaStation/MetaStation.dmm +++ b/_maps/map_files220/MetaStation/MetaStation.dmm @@ -56,11 +56,11 @@ /area/space/nearstation) "abv" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8; pixel_y = 1 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 11 }, @@ -229,7 +229,7 @@ /area/station/security/detective) "adc" = ( /obj/structure/closet/secure_closet/clown, -/obj/item/reagent_containers/food/snacks/pie, +/obj/item/food/snacks/pie, /obj/machinery/newscaster/directional/south, /turf/simulated/floor/wood, /area/station/service/clown) @@ -260,7 +260,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/processing) "adA" = ( @@ -551,7 +551,7 @@ /area/shuttle/pod_3) "afT" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = 5; pixel_y = 12 }, @@ -664,7 +664,7 @@ /obj/item/restraints/handcuffs, /obj/item/flash, /obj/machinery/alarm/directional/south, -/obj/item/reagent_containers/food/drinks/flask/detflask, +/obj/item/reagent_containers/drinks/flask/detflask, /obj/item/storage/lockbox/spy_kit, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -683,9 +683,6 @@ dir = 8; name = "Inner Pipe Access" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/atmos{ - dir = 8 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -750,20 +747,20 @@ /area/station/public/fitness) "aii" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/sillycup{ +/obj/item/reagent_containers/drinks/sillycup{ pixel_x = -5; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/sillycup, -/obj/item/reagent_containers/food/drinks/sillycup{ +/obj/item/reagent_containers/drinks/sillycup, +/obj/item/reagent_containers/drinks/sillycup{ pixel_x = 5; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/sillycup{ +/obj/item/reagent_containers/drinks/sillycup{ pixel_x = 5; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/sillycup{ +/obj/item/reagent_containers/drinks/sillycup{ pixel_x = 5; pixel_y = 3 }, @@ -818,6 +815,11 @@ d2 = 8; icon_state = "0-8" }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plasteel{ icon_state = "yellow" }, @@ -886,9 +888,7 @@ /obj/machinery/computer/mob_battle_terminal/red{ pixel_y = 30 }, -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -1074,7 +1074,7 @@ /area/station/maintenance/fore) "ajS" = ( /obj/effect/turf_decal/delivery/hollow, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "akg" = ( @@ -1197,7 +1197,7 @@ c_tag = "Engineering - Storage" }, /obj/effect/turf_decal/delivery/hollow, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "akR" = ( @@ -1235,9 +1235,8 @@ /area/station/public/fitness) "alh" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/public/fitness) "alj" = ( @@ -1618,8 +1617,7 @@ "anf" = ( /obj/effect/landmark/damageturf, /obj/machinery/airlock_controller/air_cycler{ - pixel_x = -25; - pixel_y = 4; + pixel_y = -24; req_access_txt = "13"; vent_link_id = "arrivalsmaint_vent"; ext_door_link_id = "arrivalsmaint_door_ext"; @@ -1743,10 +1741,10 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "anC" = ( @@ -1964,7 +1962,7 @@ /obj/structure/window/plasmareinforced{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/meter{ layer = 3.3 }, @@ -2099,6 +2097,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood, /area/station/service/bar) "apb" = ( @@ -2252,7 +2251,6 @@ /area/station/public/arcade) "apV" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2294,12 +2292,12 @@ /area/station/public/fitness) "aqc" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aqd" = ( @@ -2598,7 +2596,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "arT" = ( @@ -2784,13 +2782,11 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "asQ" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gravity Generator Area" - }, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/any/science/rd, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -2824,13 +2820,12 @@ /turf/simulated/floor/plating/airless, /area/space/nearstation) "atc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Conveyor Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "atd" = ( @@ -3169,13 +3164,8 @@ /turf/space, /area/space/nearstation) "auq" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/break_room) +/turf/simulated/wall/r_wall, +/area/station/engineering/ai_transit_tube) "aus" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -3321,10 +3311,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/iaa, /obj/effect/mapping_helpers/airlock/polarized{ id = "IAA" }, +/obj/effect/mapping_helpers/airlock/access/any/security/iaa, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -3427,7 +3417,7 @@ }, /obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/station/security/prisonlockers) "avF" = ( @@ -3508,14 +3498,12 @@ /turf/simulated/floor/plating, /area/station/supply/storage) "avL" = ( -/obj/machinery/door/airlock/atmos{ - name = "Fore Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/fore) "avM" = ( @@ -3614,9 +3602,8 @@ /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "avW" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Supply Bay Bridge Access" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3647,9 +3634,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "awb" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel, /area/station/supply/office) "awe" = ( @@ -3886,9 +3871,8 @@ /turf/simulated/floor/wood, /area/station/public/mrchangs) "awW" = ( -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door_control/shutter/north{ id = "supplybridge"; name = "Shuttle Bay Space Bridge Control" @@ -3944,14 +3928,12 @@ /obj/effect/turf_decal/delivery, /obj/machinery/door/airlock/highsecurity, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/science/rd, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "axe" = ( -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door_control/shutter/north{ id = "supplybridge"; name = "Shuttle Bay Space Bridge Control" @@ -3968,13 +3950,13 @@ /area/station/maintenance/fpmaint) "axg" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fore2) "axh" = ( @@ -4110,7 +4092,7 @@ /area/station/maintenance/fore) "axH" = ( /obj/structure/flora/ausbushes/lavendergrass, -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /turf/simulated/floor/grass/no_creep, /area/station/medical/virology) "axM" = ( @@ -4211,12 +4193,14 @@ "aya" = ( /obj/structure/chair/wood, /obj/item/radio/intercom/directional/west, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/wood, /area/station/public/mrchangs) "ayb" = ( /obj/structure/chair/stool{ dir = 1 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "ayc" = ( @@ -4355,12 +4339,12 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, /obj/machinery/door/airlock/command/glass, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, -/area/station/supply/storage) +/area/station/supply/qm) "ayI" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -4531,10 +4515,10 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "azu" = ( @@ -4649,7 +4633,7 @@ /area/station/supply/storage) "azP" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/port) "azQ" = ( @@ -4719,9 +4703,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "aAg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Supply Bay Bridge Access" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ d1 = 1; @@ -4801,11 +4784,6 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) -"aAL" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "aAM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4923,9 +4901,8 @@ "aBy" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock{ - name = "Recreation Area" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -5094,9 +5071,8 @@ /area/station/engineering/control) "aCe" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreation Area" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -5233,16 +5209,8 @@ /turf/simulated/floor/plasteel, /area/station/engineering/control) "aCH" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/spawner/window/reinforced/polarized/grilled{ - id = "Processing" - }, -/turf/simulated/floor/plating, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plasteel, /area/station/supply/storage) "aCV" = ( /obj/structure/cable/yellow{ @@ -5298,14 +5266,13 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "aDb" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Foyer" - }, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "aDc" = ( @@ -5433,10 +5400,10 @@ "aDA" = ( /obj/machinery/door/airlock/external{ id_tag = "supply_home"; - locked = 1; - name = "Supply Dock Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plating, /area/station/supply/storage) "aDB" = ( @@ -5716,6 +5683,12 @@ /area/station/maintenance/fsmaint) "aEy" = ( /obj/effect/turf_decal/delivery, +/obj/machinery/door/window/classic/normal{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/construction{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/control) "aEz" = ( @@ -5906,7 +5879,11 @@ "aFy" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/plating, /area/station/maintenance/fore) "aFz" = ( @@ -6173,12 +6150,12 @@ /area/station/public/arcade) "aGL" = ( /obj/structure/chair/comfy/black, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "aGM" = ( -/obj/machinery/door/airlock{ - name = "Dormitories" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 1; @@ -6259,7 +6236,7 @@ /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -29 }, -/obj/machinery/suit_storage_unit/ce, +/obj/machinery/suit_storage_unit/ce/secure, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -6386,6 +6363,7 @@ /obj/machinery/door/airlock/vault{ locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -6393,8 +6371,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/obj/effect/mapping_helpers/airlock/access/any/supply/vault, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -6415,9 +6392,7 @@ "aHH" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/turf_decal/delivery/hollow, -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "aHI" = ( @@ -6451,7 +6426,7 @@ /area/station/security/armory/secure) "aHP" = ( /obj/machinery/light_switch/east, -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -6655,7 +6630,7 @@ "aIz" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/delivery/hollow, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "aIA" = ( @@ -6758,7 +6733,6 @@ "aIP" = ( /obj/machinery/door/airlock/hatch, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -6767,6 +6741,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -7103,10 +7078,10 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aJL" = ( @@ -7168,7 +7143,7 @@ /obj/effect/turf_decal/delivery/hollow, /obj/machinery/door/airlock/engineering/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tech_storage, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "aJT" = ( @@ -7206,9 +7181,9 @@ /area/station/maintenance/fpmaint) "aKe" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining, +/obj/machinery/door/airlock/multi_tile/supply/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "aKf" = ( @@ -7221,9 +7196,6 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/mining, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "aKg" = ( @@ -7233,9 +7205,8 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Vault Storage" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ @@ -7292,7 +7263,7 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fore2) "aKv" = ( @@ -7452,9 +7423,9 @@ /area/station/legal/lawoffice) "aKX" = ( /obj/machinery/door/airlock{ - id_tag = "Toilet2"; - name = "Unit 2" + id_tag = "Toilet2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -7853,9 +7824,7 @@ /area/station/supply/lobby) "aLW" = ( /obj/machinery/alarm/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-25" - }, +/obj/item/kirbyplants/plant25, /turf/simulated/floor/plasteel, /area/station/supply/lobby) "aLY" = ( @@ -7947,15 +7916,6 @@ }, /turf/simulated/floor/carpet, /area/station/security/detective) -"aMm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/station/legal/courtroom) "aMn" = ( /turf/simulated/wall, /area/station/legal/lawoffice) @@ -7975,7 +7935,7 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aMr" = ( @@ -8464,9 +8424,9 @@ /area/station/hallway/primary/fore) "aNK" = ( /obj/machinery/door/airlock{ - id_tag = "Toilet1"; - name = "Unit 1" + id_tag = "Toilet1" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -8569,12 +8529,11 @@ /turf/simulated/floor/plasteel, /area/station/supply/qm) "aOa" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/engine, /area/station/engineering/control) "aOd" = ( @@ -8658,7 +8617,7 @@ }, /obj/machinery/door/airlock/public/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/public/storage/tools/auxiliary) "aOG" = ( @@ -8723,7 +8682,7 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aOX" = ( @@ -8911,10 +8870,11 @@ "aPw" = ( /obj/structure/table, /obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Requests Console"; - pixel_y = 30 + department = "Quartermaster's Desk"; + departmentType = 5; + name = "Quartermaster Requests Console"; + pixel_y = 30; + announcementConsole = 1 }, /obj/machinery/photocopier/faxmachine/longrange{ pixel_y = 4; @@ -9492,7 +9452,8 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aRC" = ( @@ -9533,7 +9494,7 @@ /obj/item/reagent_containers/glass/beaker/waterbottle{ pixel_x = -5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 5 }, /obj/structure/window/reinforced{ @@ -9945,9 +9906,7 @@ /area/station/maintenance/starboard2) "aTh" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /turf/simulated/floor/plating, /area/station/maintenance/fore) "aTi" = ( @@ -10057,6 +10016,7 @@ dir = 1 }, /obj/machinery/light_switch/west, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "aTF" = ( @@ -10185,7 +10145,7 @@ /area/station/maintenance/fpmaint) "aUa" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 5 }, /obj/item/reagent_containers/glass/beaker/waterbottle{ @@ -10250,15 +10210,14 @@ /turf/simulated/floor/plasteel, /area/station/engineering/control) "aUi" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -10356,7 +10315,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/court, /turf/simulated/floor/wood, /area/station/legal/courtroom) "aUt" = ( @@ -10601,7 +10560,7 @@ "aVc" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aVe" = ( @@ -10647,17 +10606,16 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring" - }, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /obj/effect/turf_decal/tile/yellow{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "caution" @@ -10821,10 +10779,9 @@ }, /area/station/legal/courtroom) "aVF" = ( -/obj/machinery/door/airlock/engineering{ - name = "Arrivals Expansion Area" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/maintenance/fpmaint) "aVG" = ( @@ -11015,9 +10972,7 @@ /area/station/maintenance/fsmaint) "aWi" = ( /obj/structure/extinguisher_cabinet/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, +/obj/item/kirbyplants/plant11, /turf/simulated/floor/wood, /area/station/legal/courtroom) "aWj" = ( @@ -11075,10 +11030,10 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aWr" = ( @@ -11157,13 +11112,12 @@ dir = 1; pixel_y = 2 }, -/obj/machinery/suit_storage_unit/captain, +/obj/machinery/suit_storage_unit/captain/secure, /turf/simulated/floor/wood, /area/station/command/office/captain/bedroom) "aWF" = ( -/obj/machinery/door/airlock/titanium{ - name = "Escape Pod Airlock" - }, +/obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/autoname, /obj/docking_port/mobile/pod{ id = "pod1"; name = "escape pod 1" @@ -11677,9 +11631,8 @@ /turf/simulated/floor/plasteel, /area/station/supply/office) "aYy" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload" - }, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -11687,8 +11640,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -11962,17 +11915,15 @@ /turf/simulated/wall/r_wall, /area/station/engineering/control) "aZj" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "aZk" = ( -/obj/machinery/door/airlock/engineering{ - name = "Arrivals Expansion Area" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "aZm" = ( @@ -11985,11 +11936,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/engineering{ - name = "Arrivals Expansion Area" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "aZr" = ( @@ -12084,9 +12034,8 @@ /area/station/turret_protected/ai_upload/foyer) "aZM" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Monitoring" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery/hollow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12094,7 +12043,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/smes) "aZN" = ( @@ -12435,9 +12384,8 @@ }, /area/station/maintenance/fsmaint) "baE" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/engimaint) "baF" = ( @@ -12618,9 +12566,8 @@ }, /area/station/medical/surgery/observation) "bbk" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Network Access" - }, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -12629,16 +12576,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, /area/station/turret_protected/ai_upload/foyer) "bbm" = ( /obj/machinery/alarm/directional/north, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /turf/simulated/floor/plasteel{ dir = 9; icon_state = "neutral" @@ -12717,9 +12662,8 @@ }, /area/station/public/locker) "bbx" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -12733,9 +12677,8 @@ /area/station/engineering/tech_storage) "bby" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -12745,9 +12688,8 @@ /area/station/public/locker) "bbz" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, @@ -12810,9 +12752,7 @@ }, /area/station/command/office/ce) "bbM" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, +/obj/item/kirbyplants/plant18, /obj/structure/sign/electricshock{ pixel_x = -32 }, @@ -12851,10 +12791,6 @@ }, /obj/item/reagent_containers/spray/cleaner, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/general{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -12862,6 +12798,9 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -12968,12 +12907,6 @@ dir = 4; pixel_x = -29 }, -/obj/machinery/turretid/stun{ - control_area = "\improper AI Upload Chamber"; - name = "AI Upload Turret Control"; - pixel_y = 28; - req_access = list(75) - }, /obj/effect/landmark/start/cyborg, /obj/machinery/power/apc/important/south, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -13053,12 +12986,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel, /area/station/supply/storage) -"bcu" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint) "bcv" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -13195,24 +13122,24 @@ /area/station/hallway/primary/central) "bcO" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -4; pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 4; pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 6; pixel_y = -1 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/machinery/newscaster/directional/north, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) @@ -13522,7 +13449,8 @@ }, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/effect/mapping_helpers/airlock/access/any/engineering/ce, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, /area/station/command/office/ce) "bdE" = ( @@ -13617,12 +13545,6 @@ icon_state = "arrival" }, /area/station/hallway/secondary/entry) -"bdR" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock" - }, -/turf/simulated/floor/plating, -/area/station/hallway/secondary/entry) "bdS" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -13637,10 +13559,8 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/central) "bdT" = ( -/obj/machinery/door/airlock/security{ - name = "Detective's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/forensics, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; @@ -13670,6 +13590,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/security/forensics, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -14130,9 +14051,7 @@ /area/station/hallway/secondary/entry) "beR" = ( /obj/structure/extinguisher_cabinet/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, +/obj/item/kirbyplants/plant16, /obj/item/radio/intercom/directional/north, /turf/simulated/floor/plasteel{ dir = 5; @@ -14242,10 +14161,10 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/port2) "bfl" = ( @@ -14273,9 +14192,9 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plating, -/area/station/supply/storage) +/area/station/maintenance/port2) "bfp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -14790,7 +14709,7 @@ "bgD" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/tox_storage, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "bgF" = ( @@ -15024,21 +14943,21 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, /turf/simulated/floor/plasteel, /area/station/service/janitor) "bht" = ( /turf/simulated/wall, /area/station/maintenance/maintcentral) "bhu" = ( -/obj/machinery/door/airlock{ - name = "Central Emergency Storage" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "bhv" = ( @@ -15338,7 +15257,7 @@ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "bik" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -15394,9 +15313,8 @@ /turf/simulated/wall/mineral/titanium, /area/shuttle/arrival/station) "bip" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, +/obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/shuttle/arrival/station) "biq" = ( @@ -15541,7 +15459,7 @@ }, /area/station/supply/storage) "biJ" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -15943,6 +15861,7 @@ /area/station/command/office/ce) "bjK" = ( /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -15955,8 +15874,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, @@ -16142,17 +16060,6 @@ icon_state = "red" }, /area/station/security/checkpoint/secondary) -"bkr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/simulated/floor/plating, -/area/station/maintenance/port2) "bks" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -16174,9 +16081,9 @@ "bku" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, /turf/simulated/floor/plating, -/area/station/supply/office) +/area/station/maintenance/port2) "bkw" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -16284,7 +16191,7 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "bkP" = ( @@ -16475,7 +16382,6 @@ "bln" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "blo" = ( @@ -16492,13 +16398,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/engineering, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tech_storage, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, /area/station/engineering/tech_storage) "blr" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 1 }, @@ -16562,7 +16468,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "blA" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/plating, @@ -16832,9 +16738,8 @@ /area/station/supply/office) "bmh" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -16844,7 +16749,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/delivery/hollow, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/control) "bmi" = ( @@ -17077,9 +16982,7 @@ /obj/item/storage/photo_album{ pixel_y = -4 }, -/obj/item/camera{ - pixel_y = 4 - }, +/obj/item/camera, /obj/item/radio/intercom/private{ pixel_x = -28 }, @@ -17088,7 +16991,7 @@ "bmV" = ( /obj/machinery/light_switch/south, /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/reagent_containers/drinks/flask/gold, /obj/item/razor{ pixel_x = -4; pixel_y = 2 @@ -17248,7 +17151,7 @@ }, /obj/item/clothing/head/bearpelt, /obj/item/folder/documents, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/stack/spacecash/c1000, @@ -17450,7 +17353,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/security, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel, /area/station/security/checkpoint/secondary) "bob" = ( @@ -17481,10 +17384,10 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/port2) "boe" = ( @@ -17958,9 +17861,6 @@ dir = 1; name = "Head of Personnel's Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/hop{ - dir = 1 - }, /obj/machinery/door/window/classic/normal{ name = "Reception Window" }, @@ -17968,6 +17868,9 @@ id_tag = "hop"; name = "privacy shutters" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/hop{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/station/command/office/hop) "bpt" = ( @@ -18037,10 +17940,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/office) "bpF" = ( @@ -18365,10 +18267,8 @@ }, /area/station/command/office/captain/bedroom) "bqp" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/machinery/door/airlock/silver, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -18882,12 +18782,6 @@ dir = 1; id = "packageExternal" }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, /turf/simulated/floor/plating, /area/station/supply/office) "brI" = ( @@ -19063,12 +18957,12 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, /turf/simulated/floor/carpet, /area/station/command/office/captain/bedroom) "bsl" = ( @@ -19137,7 +19031,7 @@ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "bsE" = ( /obj/machinery/light/small/directional/south, /obj/vehicle/janicart, @@ -19182,7 +19076,7 @@ dir = 4; icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "bsK" = ( /turf/simulated/wall/mineral/titanium, /area/shuttle/pod_4) @@ -19291,7 +19185,7 @@ /area/station/hallway/primary/port) "btq" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, +/obj/item/food/snacks/chips, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -19675,7 +19569,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, /turf/simulated/floor/plasteel, /area/station/ai_monitored/storage/eva) "bul" = ( @@ -19766,6 +19660,13 @@ id_tag = "bridge blast"; name = "Bridge Blast Doors" }, +/obj/machinery/door/window/classic/normal{ + name = "Bridge Delivery"; + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/general{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/command/bridge) "buy" = ( @@ -20120,7 +20021,6 @@ "bvx" = ( /obj/machinery/ai_slipper, /obj/machinery/turretid/stun{ - control_area = "\improper AI Satellite Antechamber"; name = "AI Antechamber Turret Control"; pixel_x = 24; req_access_txt = "75" @@ -20141,6 +20041,7 @@ /obj/structure/chair/stool{ dir = 1 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood, /area/station/service/bar) "bvA" = ( @@ -20635,8 +20536,6 @@ /turf/simulated/floor/wood, /area/station/service/bar) "bwA" = ( -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/cleanable/dirt, @@ -20646,6 +20545,8 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) "bwC" = ( @@ -20699,6 +20600,7 @@ d2 = 2; icon_state = "0-2" }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood, /area/station/service/bar) "bwI" = ( @@ -20925,9 +20827,8 @@ /turf/simulated/floor/carpet, /area/station/legal/lawoffice) "bxw" = ( -/obj/machinery/door/airlock/titanium{ - name = "Escape Pod Airlock" - }, +/obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/autoname, /obj/docking_port/mobile/pod{ dir = 4; id = "pod4"; @@ -20942,7 +20843,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "bxy" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/yellow{ @@ -21241,7 +21142,7 @@ known_by = list("captain") }, /obj/item/gun/projectile/revolver/russian, -/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/obj/item/reagent_containers/drinks/bottle/absinthe/premium, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/toy/figure/crew/captain, @@ -21407,14 +21308,14 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "byF" = ( @@ -21436,6 +21337,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood, /area/station/service/bar) "byJ" = ( @@ -21669,9 +21571,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "bzA" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, +/obj/item/kirbyplants/plant18, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -21679,9 +21579,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "bzB" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -21752,8 +21650,9 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/library, /turf/simulated/floor/plating, /area/station/maintenance/port) "bzK" = ( @@ -21810,7 +21709,8 @@ }, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood, /area/station/command/office/hop) "bzT" = ( @@ -21895,7 +21795,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -21908,12 +21809,11 @@ }, /area/station/command/bridge) "bAg" = ( -/obj/machinery/door/airlock/command{ - name = "Command Desk" - }, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -21926,7 +21826,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkblue" @@ -22020,7 +21920,7 @@ /area/station/turret_protected/aisat/interior) "bAB" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/pie, +/obj/item/food/snacks/pie, /obj/machinery/light/small/directional/north, /obj/structure/sign/poster/random{ pixel_y = 32 @@ -22231,9 +22131,7 @@ }, /area/station/hallway/primary/port) "bBr" = ( -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -22633,6 +22531,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood, /area/station/service/bar) "bCy" = ( @@ -22699,6 +22598,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood, /area/station/service/bar) "bCG" = ( @@ -22713,6 +22613,7 @@ /area/station/science/research) "bCH" = ( /obj/structure/chair/stool, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood, /area/station/service/bar) "bCJ" = ( @@ -22867,11 +22768,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - name = "Expedition Maintenance" - }, +/obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "bDm" = ( @@ -23046,9 +22946,8 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Garden" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/garden) "bDH" = ( @@ -23163,16 +23062,16 @@ /area/station/command/bridge) "bDX" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chamber" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/command/bridge) "bDY" = ( /obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/command/bridge) "bDZ" = ( @@ -23180,6 +23079,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/command/bridge) "bEf" = ( @@ -23211,7 +23111,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -23242,7 +23143,7 @@ /area/station/command/office/captain) "bEl" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23303,6 +23204,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood, /area/station/service/bar) "bEr" = ( @@ -23481,9 +23383,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - name = "Vacant Office" - }, +/obj/machinery/door/airlock, /obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/wood, /area/station/public/vacant_office) @@ -23600,6 +23500,7 @@ /obj/structure/chair/comfy/black{ dir = 4 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/command/bridge) "bFN" = ( @@ -23623,6 +23524,7 @@ /obj/structure/chair/comfy/black{ dir = 8 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/command/bridge) "bFR" = ( @@ -23966,9 +23868,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/bridge) "bHx" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/wood, /area/station/service/library) "bHz" = ( @@ -24047,10 +23947,10 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "bHL" = ( @@ -24180,25 +24080,18 @@ /turf/simulated/wall, /area/station/engineering/hardsuitstorage) "bIg" = ( -/obj/machinery/door/airlock/hatch{ - name = "Xenobiology Maintenance" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/science/xenobiology) -"bIm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/tox, -/turf/simulated/floor/plating, -/area/station/maintenance/aft2) "bIu" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -24228,9 +24121,7 @@ }, /area/station/telecomms/computer) "bIA" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -24244,9 +24135,7 @@ }, /area/station/telecomms/computer) "bID" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/woodsiding{ dir = 1 @@ -24257,8 +24146,8 @@ /area/station/service/bar) "bIE" = ( /obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, /obj/effect/turf_decal/woodsiding, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -24359,9 +24248,8 @@ /area/station/hallway/primary/central) "bJe" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24698,9 +24586,8 @@ /area/station/hallway/secondary/bridge) "bJD" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24786,6 +24673,7 @@ /obj/structure/chair/wood/wings{ dir = 8 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood, /area/station/service/theatre) "bJP" = ( @@ -24925,6 +24813,7 @@ id_tag = "ferry_home"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "bKv" = ( @@ -24986,9 +24875,8 @@ /area/station/hallway/primary/central) "bKN" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -25119,9 +25007,8 @@ /area/station/hallway/secondary/bridge) "bLr" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, @@ -25193,10 +25080,10 @@ /area/station/service/bar) "bLB" = ( /obj/machinery/door/airlock, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -25217,8 +25104,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/port) "bLH" = ( @@ -25424,10 +25311,11 @@ "bML" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/library, /turf/simulated/floor/plating, /area/station/maintenance/port) "bMM" = ( @@ -25536,7 +25424,7 @@ }, /obj/machinery/door/airlock/engineering/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "bNh" = ( @@ -25567,14 +25455,14 @@ /area/station/hallway/secondary/entry) "bNo" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "bNp" = ( @@ -25719,12 +25607,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, /turf/simulated/floor/plasteel, /area/station/ai_monitored/storage/eva) "bNP" = ( @@ -25779,6 +25667,7 @@ "bOe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -25786,8 +25675,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, /turf/simulated/floor/plasteel, /area/station/command/teleporter) "bOf" = ( @@ -26271,7 +26159,7 @@ /area/station/science/research) "bPB" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/ale, +/obj/item/reagent_containers/drinks/cans/ale, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "bPE" = ( @@ -26303,9 +26191,9 @@ /area/station/public/vacant_office) "bPS" = ( /obj/structure/closet/secure_closet/blueshield, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood, /area/station/command/office/blueshield) "bPT" = ( @@ -26346,16 +26234,20 @@ /turf/simulated/floor/wood, /area/station/service/library) "bQa" = ( -/obj/structure/lattice, -/obj/machinery/access_button{ - autolink_id = "aiaccess_btn_ext"; - name = "exterior access button"; - pixel_x = -25; - pixel_y = -7; - req_access_txt = "75;13" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 }, -/turf/space, -/area/space/nearstation) +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) "bQb" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ @@ -26574,12 +26466,12 @@ /area/station/service/kitchen) "bQP" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/mint, +/obj/item/food/snacks/mint, /obj/item/kitchen/rollingpin, /obj/item/reagent_containers/glass/beaker{ pixel_x = 5 }, -/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/condiment/enzyme, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -27257,10 +27149,10 @@ }, /obj/machinery/door/airlock/medical/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, /obj/effect/mapping_helpers/airlock/polarized{ id = "psych" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -27457,7 +27349,7 @@ pixel_x = 5; pixel_y = -1 }, -/obj/item/reagent_containers/food/drinks/mug{ +/obj/item/reagent_containers/drinks/mug{ pixel_x = -4; pixel_y = 4 }, @@ -27691,16 +27583,14 @@ /area/station/public/vacant_office) "bUI" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Quiet Room" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/carpet, /area/station/service/library) "bUJ" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Quiet Room" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -27715,6 +27605,7 @@ name = "Private Study"; req_access_txt = "37" }, +/obj/effect/mapping_helpers/airlock/access/any/service/library, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -27727,7 +27618,7 @@ }, /area/station/hallway/primary/central) "bUN" = ( -/obj/machinery/suit_storage_unit/mime, +/obj/machinery/suit_storage_unit/mime/secure, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -27740,6 +27631,7 @@ id_tag = "specops_home"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "bUP" = ( @@ -27835,7 +27727,7 @@ /turf/simulated/floor/engine, /area/station/command/office/rd) "bVb" = ( -/obj/machinery/suit_storage_unit/clown, +/obj/machinery/suit_storage_unit/clown/secure, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -27876,8 +27768,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/medical, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "bVg" = ( @@ -27896,12 +27787,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/plating, /area/station/maintenance/fore) "bVj" = ( @@ -28088,9 +27983,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, +/obj/item/kirbyplants/plant16, /obj/machinery/light/directional/east, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) @@ -28193,8 +28086,9 @@ /area/station/maintenance/port) "bWo" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "bWp" = ( @@ -28361,6 +28255,7 @@ dir = 1 }, /obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "bWI" = ( @@ -28501,17 +28396,14 @@ }, /area/station/service/expedition) "bWZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Expedition Maintenance" - }, +/obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/expedition, +/obj/effect/mapping_helpers/airlock/access/any/command/expedition, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "bXb" = ( -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ @@ -28520,6 +28412,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -28636,9 +28529,7 @@ /area/station/command/office/ntrep) "bXy" = ( /obj/machinery/newscaster/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -28666,9 +28557,7 @@ /area/station/supply/office) "bXF" = ( /obj/effect/turf_decal/stripes/corner, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /obj/machinery/door_control/shutter/south{ id = "mechbay"; name = "Mech Bay Shutters Control"; @@ -28718,8 +28607,9 @@ /area/station/maintenance/portsolar) "bXK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/port) "bXN" = ( @@ -28985,9 +28875,9 @@ "bYs" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, /turf/simulated/floor/wood, /area/station/maintenance/starboard) "bYv" = ( @@ -29170,7 +29060,6 @@ "bZb" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29186,6 +29075,7 @@ /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) "bZc" = ( @@ -29408,10 +29298,8 @@ /area/station/service/library) "bZX" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Expedition Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/expedition, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -29420,6 +29308,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/expedition, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -29712,11 +29601,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) "caT" = ( @@ -30140,13 +30028,13 @@ /area/station/medical/reception) "ccc" = ( /obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; security_level = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/station/security/brig) "cci" = ( @@ -30261,9 +30149,8 @@ /turf/simulated/floor/plasteel, /area/station/engineering/control) "ccB" = ( -/obj/machinery/door/airlock{ - name = "Maintenance Bathroom" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/aft) "ccC" = ( @@ -30277,7 +30164,8 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/library, /turf/simulated/floor/plating, /area/station/maintenance/port) "ccE" = ( @@ -30537,7 +30425,7 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cdw" = ( @@ -30610,7 +30498,7 @@ /area/station/service/hydroponics) "cdJ" = ( /obj/structure/lattice, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, +/obj/item/reagent_containers/drinks/bottle/goldschlager, /turf/space, /area/space/nearstation) "cdM" = ( @@ -30651,7 +30539,7 @@ }, /obj/machinery/door/airlock/atmos, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "caution" @@ -30754,9 +30642,7 @@ /area/station/hallway/primary/central) "cei" = ( /obj/machinery/firealarm/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, @@ -30774,11 +30660,11 @@ "cek" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "cel" = ( @@ -30936,7 +30822,7 @@ "ceW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/gin, +/obj/item/reagent_containers/drinks/bottle/gin, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "ceY" = ( @@ -31009,9 +30895,7 @@ /area/station/command/bridge) "cfi" = ( /obj/structure/extinguisher_cabinet/directional/west, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" @@ -31039,6 +30923,7 @@ "cfm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/holosign/surgery{ id = "surgery1" }, @@ -31050,8 +30935,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /turf/simulated/floor/plasteel{ icon_state = "darkbluefull" }, @@ -31069,6 +30953,7 @@ "cfo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "bluecorner" @@ -31082,6 +30967,7 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -31089,6 +30975,7 @@ "cfq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "purplecorner" }, @@ -31213,10 +31100,10 @@ }, /obj/structure/table/glass, /obj/structure/extinguisher_cabinet/directional/west, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/grapes, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/watermelon, +/obj/item/food/snacks/grown/citrus/orange, +/obj/item/food/snacks/grown/grapes, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "green" @@ -31260,11 +31147,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/atmos{ - name = "Turbine Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "cfR" = ( @@ -31504,7 +31389,7 @@ "cgH" = ( /obj/machinery/light/directional/north, /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ +/obj/item/storage/surgical_tray{ pixel_y = 8 }, /turf/simulated/floor/plasteel{ @@ -31577,12 +31462,12 @@ /area/station/hallway/primary/central) "cgP" = ( /obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "green" @@ -31748,9 +31633,9 @@ /obj/item/seeds/potato, /obj/item/seeds/apple, /obj/item/grown/corncob, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/pumpkin{ +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/pumpkin{ pixel_y = 5 }, /obj/machinery/light/directional/south, @@ -31814,10 +31699,6 @@ pixel_x = -3; pixel_y = 5 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/general{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -31825,6 +31706,9 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -31876,13 +31760,13 @@ }, /area/station/hallway/primary/central) "chO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics Storage" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, /turf/simulated/floor/plasteel{ icon_state = "greenfull" }, @@ -31899,10 +31783,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -32016,6 +31900,7 @@ /area/station/science/research) "cig" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -32024,8 +31909,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "cii" = ( @@ -32467,12 +32351,6 @@ }, /turf/simulated/floor/plasteel, /area/station/security/brig) -"cjV" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard2) "cjX" = ( /obj/structure/cable{ d1 = 1; @@ -32710,6 +32588,7 @@ /obj/structure/chair/stool{ dir = 8 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "ckL" = ( @@ -32802,7 +32681,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/rack, /obj/item/reagent_containers/iv_bag/blood/random, -/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -32819,7 +32698,7 @@ "cli" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/wall, -/area/station/maintenance/fpmaint) +/area/station/supply/qm) "cll" = ( /obj/structure/sign/poster/random{ pixel_y = -32 @@ -33096,6 +32975,7 @@ /area/station/medical/reception) "cmr" = ( /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33104,8 +32984,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -33316,8 +33195,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/wood, /area/station/science/robotics/showroom) "cnn" = ( @@ -33663,9 +33542,8 @@ /area/station/maintenance/turbine) "cov" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Foyer" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -33905,7 +33783,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -33913,6 +33790,7 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "cpD" = ( @@ -34022,7 +33900,6 @@ "cpQ" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -34030,6 +33907,8 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, /turf/simulated/floor/plating, /area/station/maintenance/medmaint) "cpW" = ( @@ -34040,7 +33919,7 @@ }, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ywflowers, -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -34078,10 +33957,11 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/aft) "cqi" = ( @@ -34511,7 +34391,7 @@ }, /obj/machinery/door/airlock/research/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -34562,6 +34442,7 @@ /area/station/maintenance/starboard2) "csh" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "csi" = ( @@ -35224,6 +35105,7 @@ "cuF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/holosign/surgery{ id = "surgery2" }, @@ -35235,8 +35117,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /turf/simulated/floor/plasteel{ icon_state = "darkbluefull" }, @@ -35506,9 +35387,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/aft) "cvJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, +/obj/item/kirbyplants/plant20, /turf/simulated/floor/plasteel{ icon_state = "darkgreycheck" }, @@ -35518,6 +35397,7 @@ dir = 1 }, /obj/effect/landmark/damageturf, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "cvS" = ( @@ -35576,6 +35456,14 @@ dir = 2; icon_state = "pipe-c" }, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Research Division" + }, +/obj/structure/window/reinforced, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whitepurple" @@ -35688,12 +35576,12 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/wood, /area/station/science/robotics/showroom) "cww" = ( @@ -35843,9 +35731,7 @@ /area/station/science/research) "cwW" = ( /obj/machinery/firealarm/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, +/obj/item/kirbyplants/plant11, /obj/machinery/light/directional/west, /turf/simulated/floor/plasteel{ icon_state = "darkgreycheck" @@ -36000,6 +35886,7 @@ "cxA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -36011,13 +35898,13 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -36263,6 +36150,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool, /obj/effect/landmark/damageturf, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "cyy" = ( @@ -36512,7 +36400,7 @@ name = "Quarantine Lockdown"; opacity = 0 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -36691,8 +36579,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/wood, /area/station/science/robotics/showroom) "czO" = ( @@ -36773,7 +36661,6 @@ "cAi" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/genetics, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -36784,6 +36671,7 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, /turf/simulated/floor/plating, /area/station/maintenance/medmaint) "cAj" = ( @@ -36837,6 +36725,7 @@ /obj/structure/chair/stool{ dir = 1 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "cAy" = ( @@ -37003,9 +36892,8 @@ "cAT" = ( /obj/machinery/door/airlock/medical, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -37059,10 +36947,10 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "cBo" = ( @@ -37249,13 +37137,11 @@ /area/station/science/misc_lab) "cBS" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Access" - }, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ @@ -37324,7 +37210,6 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -37332,6 +37217,7 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -37405,11 +37291,11 @@ }, /obj/machinery/light/small/directional/north, /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, /turf/simulated/floor/carpet, /area/station/service/chapel) "cCu" = ( @@ -37771,10 +37657,10 @@ /area/station/command/office/rd) "cDM" = ( /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -37783,7 +37669,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -37799,6 +37684,8 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -37861,6 +37748,7 @@ /area/station/medical/cloning) "cDZ" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -37883,11 +37771,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/genetics, /obj/effect/mapping_helpers/airlock/polarized{ id = "clon" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -37943,7 +37831,7 @@ pixel_y = 2 }, /obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) "cEk" = ( @@ -38096,6 +37984,7 @@ /area/station/maintenance/asmaint) "cEP" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -38103,9 +37992,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -38117,6 +38003,7 @@ /obj/effect/mapping_helpers/airlock/polarized{ id = "clon" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -38468,9 +38355,8 @@ }, /area/station/medical/cloning) "cGc" = ( -/obj/machinery/door/airlock{ - name = "Crematorium" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38577,8 +38463,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/medical, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/aft) "cGo" = ( @@ -38678,7 +38563,7 @@ dir = 4 }, /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -39014,10 +38899,10 @@ /area/station/science/research) "cHO" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3 }, /turf/simulated/floor/plating, @@ -39274,10 +39159,12 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plating, /area/station/maintenance/aft) "cIE" = ( @@ -39477,7 +39364,7 @@ "cJo" = ( /obj/machinery/hydroponics/soil, /obj/machinery/light/small/directional/north, -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -39670,7 +39557,7 @@ }, /area/station/security/permabrig) "cKm" = ( -/obj/machinery/suit_storage_unit/security/hos, +/obj/machinery/suit_storage_unit/security/hos/secure, /turf/simulated/floor/plasteel/dark, /area/station/command/office/hos) "cKn" = ( @@ -39743,7 +39630,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/suit_storage_unit/rd, +/obj/machinery/suit_storage_unit/rd/secure, /turf/simulated/floor/plasteel{ icon_state = "darkgreycheck" }, @@ -39770,9 +39657,7 @@ }, /area/station/medical/cloning) "cKA" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, +/obj/item/kirbyplants/plant18, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkgreencorners" @@ -39941,8 +39826,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/access/any/medical/virology, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -39950,9 +39833,9 @@ name = "Quarantine Lockdown"; opacity = 0 }, -/obj/machinery/door/airlock/virology{ - name = "Virology Access" - }, +/obj/machinery/door/airlock/virology, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -39966,9 +39849,7 @@ /turf/simulated/floor/grass, /area/station/maintenance/aft2) "cLm" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, +/obj/item/kirbyplants/plant18, /obj/machinery/light/small/directional/west, /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -40172,7 +40053,7 @@ "cMx" = ( /obj/machinery/light/directional/north, /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ +/obj/item/storage/surgical_tray{ pixel_y = 8 }, /turf/simulated/floor/plasteel{ @@ -40216,7 +40097,7 @@ /area/station/maintenance/portsolar) "cMF" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ +/obj/item/reagent_containers/drinks/bottle/holywater{ pixel_x = -2; pixel_y = 2 }, @@ -40228,8 +40109,8 @@ /area/station/service/chapel/office) "cMK" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/enzyme{ pixel_x = 16; pixel_y = 6 }, @@ -40247,7 +40128,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/item/reagent_containers/drinks/bottle/tequila, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "cMP" = ( @@ -40313,7 +40194,6 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fore) "cNf" = ( @@ -40447,14 +40327,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A" - }, +/obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -40697,9 +40576,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft2) "cOk" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, +/obj/item/kirbyplants/plant18, /obj/machinery/light/small/directional/east, /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -41068,9 +40945,8 @@ /area/station/hallway/secondary/exit) "cPN" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -41083,18 +40959,16 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "cPP" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, @@ -41133,14 +41007,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Test Subject Cell" - }, +/obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -41298,18 +41171,14 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "cQN" = ( -/obj/machinery/door/airlock/external{ - name = "Space Shack" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/spacehut) "cQP" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Teleporter Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -41321,6 +41190,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -41404,22 +41274,6 @@ "cRt" = ( /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) -"cRu" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/obj/machinery/door/poddoor{ - density = 0; - icon_state = "open"; - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/medmaint) "cRv" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -41694,10 +41548,9 @@ /area/station/maintenance/apmaint) "cSJ" = ( /obj/machinery/door/airlock/command{ - id_tag = "ntrepofficedoor"; - name = "NT Representative's Office" + id_tag = "ntrepofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/command/ntrep, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -41712,6 +41565,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/mapping_helpers/airlock/access/any/command/ntrep, /turf/simulated/floor/wood, /area/station/command/office/ntrep) "cSK" = ( @@ -41755,11 +41609,11 @@ /area/station/maintenance/apmaint) "cSR" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -41799,8 +41653,11 @@ "cSV" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) "cSX" = ( @@ -41892,9 +41749,7 @@ /area/station/security/prison/cell_block/A) "cTq" = ( /obj/machinery/light/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, +/obj/item/kirbyplants/plant24, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -41927,7 +41782,7 @@ /area/station/security/interrogation) "cTz" = ( /obj/structure/lattice/catwalk, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ pixel_x = -7; pixel_y = 2 }, @@ -42051,9 +41906,7 @@ "cTV" = ( /obj/machinery/light/directional/east, /obj/structure/extinguisher_cabinet/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, +/obj/item/kirbyplants/plant14, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -42185,9 +42038,8 @@ /area/station/hallway/secondary/exit) "cUC" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Departure Lounge Security Post" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -42204,7 +42056,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, @@ -42486,8 +42338,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -42706,9 +42558,8 @@ }, /area/station/medical/morgue) "cWK" = ( -/obj/machinery/door/airlock/research{ - name = "Sci Chem and Xenobio Access" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ d1 = 4; @@ -42724,7 +42575,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -42779,7 +42630,6 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -42789,6 +42639,9 @@ /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plating, /area/station/maintenance/aft) "cXh" = ( @@ -42879,9 +42732,9 @@ "cXz" = ( /obj/machinery/door/airlock/external{ id_tag = "emergency_home"; - locked = 1; - name = "Departure Lounge Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) @@ -42991,11 +42844,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/airlock/security/glass{ - name = "Solitary Confinement 2" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "cYa" = ( @@ -43006,9 +42858,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "cYd" = ( -/obj/effect/mapping_helpers/airlock/access/all/service/clown, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -43021,6 +42871,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/bananium, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/service/clown, /turf/simulated/floor/wood, /area/station/service/clown) "cYe" = ( @@ -43129,7 +42981,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -43226,8 +43078,6 @@ }, /area/station/service/chapel) "cZo" = ( -/obj/effect/mapping_helpers/airlock/access/all/service/mime, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ d1 = 4; @@ -43241,6 +43091,8 @@ dir = 4 }, /obj/machinery/door/airlock/tranquillite, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/service/mime, /turf/simulated/floor/mineral/tranquillite, /area/station/service/mime) "cZp" = ( @@ -43280,12 +43132,6 @@ /mob/living/carbon/human/monkey, /turf/simulated/floor/grass/no_creep, /area/station/medical/virology) -"cZz" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/fore) "cZA" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -43324,9 +43170,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/airlock/public/glass{ - name = "Funeral Parlour" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -43672,8 +43517,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "dbE" = ( @@ -43825,19 +43671,18 @@ /area/station/maintenance/starboard) "dcK" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, /obj/effect/mapping_helpers/airlock/polarized{ id = "clon" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -43845,6 +43690,7 @@ "dcN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -43856,8 +43702,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -44499,7 +44344,7 @@ /area/station/medical/surgery/primary) "dgI" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "dgO" = ( @@ -44729,7 +44574,6 @@ "diT" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -44739,6 +44583,8 @@ /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/medmaint) "diU" = ( @@ -44835,10 +44681,9 @@ autoclose = 0; heat_proof = 1; id_tag = "turbine_door_ext"; - locked = 1; - name = "Incinerator Interior Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/airlock_controller/access_controller{ name = "Turbine Access Console"; pixel_x = 40; @@ -44848,6 +44693,7 @@ ext_button_link_id = "turbine_btn_ext"; int_button_link_id = "turbine_btn_int" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/engine, /area/station/maintenance/turbine) "dmr" = ( @@ -44954,12 +44800,11 @@ }, /area/station/security/permabrig) "dnY" = ( -/obj/machinery/door/airlock, +/obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, -/area/station/maintenance/port) +/area/station/maintenance/aft2) "dog" = ( /obj/effect/landmark/spawner/xeno, /turf/simulated/floor/plasteel, @@ -44997,6 +44842,12 @@ icon_state = "whitepurple" }, /area/station/command/office/rd) +"dpT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard) "dpZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -45137,9 +44988,6 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/atmos{ - dir = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -45199,19 +45047,6 @@ icon_state = "whiteblue" }, /area/station/medical/reception) -"dvY" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/fsmaint) "dwp" = ( /obj/effect/turf_decal/tile/bar, /obj/machinery/door/firedoor, @@ -45443,8 +45278,7 @@ /area/station/science/storage) "dCn" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/forensics, -/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -45463,7 +45297,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -45527,7 +45361,7 @@ name = "Cargo Desk"; dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ dir = 8 }, /turf/simulated/floor/plasteel, @@ -45595,22 +45429,22 @@ /area/station/maintenance/fore) "dGs" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/aisat/service) "dGK" = ( /obj/structure/weightmachine/weightlifter, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "black" @@ -45666,7 +45500,7 @@ dir = 4; icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "dJx" = ( /obj/structure/filingcabinet, /turf/simulated/floor/plasteel{ @@ -45901,7 +45735,7 @@ name = "Containment Pen #7"; dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -45910,7 +45744,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -45929,6 +45762,8 @@ d2 = 4; icon_state = "2-4" }, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -45940,13 +45775,12 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Containment Cells" - }, +/obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -45981,6 +45815,7 @@ /area/station/science/toxins/mixing) "dSv" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -46017,11 +45852,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/access_button/east{ - autolink_id = "enginesm_btn_ext"; - name = "Supermatter Access Button"; - req_access_txt = "10" - }, /obj/machinery/camera{ c_tag = "Engineering - Central"; dir = 8 @@ -46030,6 +45860,7 @@ /area/station/engineering/control) "dTT" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "dTW" = ( @@ -46041,7 +45872,7 @@ /turf/simulated/wall/r_wall, /area/station/engineering/atmos) "dTX" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 }, @@ -46058,26 +45889,26 @@ /area/station/medical/cloning) "dUv" = ( /obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "dUF" = ( /obj/machinery/door/airlock/external{ id_tag = "soldock_door_ext"; - locked = 1; - name = "Arrivals External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /obj/machinery/access_button{ autolink_id = "soldock_btn_ext"; name = "exterior access button"; - pixel_x = -7; - pixel_y = -25 + pixel_y = -24 }, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) @@ -46211,6 +46042,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/station/engineering/atmos/distribution) +"dYk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "dYn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, @@ -46286,15 +46126,13 @@ "dZy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyerPort"; - name = "Medbay Entrance" + id_tag = "MedbayFoyerPort" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -46361,7 +46199,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/station/supply/storage) +/area/station/supply/qm) "eaG" = ( /obj/structure/sign/poster/official/random/east, /turf/simulated/floor/plasteel{ @@ -46456,9 +46294,9 @@ /turf/simulated/floor/wood, /area/station/public/mrchangs) "edj" = ( -/obj/effect/mapping_helpers/airlock/access/all/security/doors, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/security/range) "edw" = ( @@ -46595,11 +46433,10 @@ "efR" = ( /obj/machinery/door/airlock/external/glass{ id_tag = "aisat_door_ext"; - locked = 1; - name = "MiniSat External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -46672,6 +46509,7 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "eib" = ( @@ -46773,8 +46611,8 @@ "ejD" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/port) "ejG" = ( @@ -46970,7 +46808,6 @@ /obj/machinery/door/window/classic/reversed{ name = "Botany Delivery" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) @@ -47009,13 +46846,9 @@ name = "Mass Driver"; dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/maintenance{ - dir = 1 - }, /obj/machinery/door/window/classic/normal{ name = "Mass Driver" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/maintenance, /obj/effect/turf_decal/loading_area{ dir = 1 }, @@ -47175,7 +47008,6 @@ /obj/machinery/door/window/classic/normal{ name = "Kitchen" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/window/reinforced{ @@ -47186,11 +47018,19 @@ id_tag = "kitchen_counter"; name = "Kitchen Counter Shutters" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, /area/station/service/kitchen) +"euM" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/landmark/damageturf, +/obj/effect/landmark/start/uncertain, +/turf/simulated/floor/wood, +/area/station/maintenance/apmaint) "euU" = ( /obj/machinery/economy/vending/virodrobe, /obj/item/radio/intercom/directional/east, @@ -47635,7 +47475,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/station/supply/storage) +/area/station/supply/qm) "eFw" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -47747,7 +47587,8 @@ }, /obj/item/stamp/captain, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/windoor/access/all/command/captain, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/blueshield, /turf/simulated/floor/wood, /area/station/command/office/captain) "eJg" = ( @@ -47816,13 +47657,10 @@ /turf/space, /area/space/nearstation) "eKW" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, -/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/brig) "eLh" = ( @@ -47879,7 +47717,7 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "eMF" = ( @@ -47924,17 +47762,16 @@ "eNT" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "kitchen_counter"; name = "Kitchen Counter Shutters" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, /obj/machinery/door/window/classic/normal{ name = "Kitchen" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -48103,7 +47940,10 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/chemistry{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -48147,8 +47987,8 @@ "eTh" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "eTo" = ( @@ -48167,15 +48007,15 @@ /obj/machinery/door/airlock/atmos/glass{ autoclose = 0; id_tag = "atmossm_door_ext"; - locked = 1; - name = "Atmospherics Access Chamber" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/east{ autolink_id = "atmossm_btn_ext"; name = "Atmospherics Access Button"; req_access_txt = "24" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -48254,9 +48094,8 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/xenobio_north) "eUL" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Secure Equipment Storage" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -48266,12 +48105,12 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -48334,16 +48173,16 @@ /area/station/security/storage) "eXm" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fore2) "eXK" = ( @@ -48574,7 +48413,7 @@ }, /area/station/medical/cryo) "fcB" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 6 }, @@ -48624,9 +48463,7 @@ /turf/simulated/floor/plasteel, /area/station/security/brig) "fdz" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, +/obj/item/kirbyplants/plant11, /turf/simulated/floor/plasteel, /area/station/supply/office) "feD" = ( @@ -48660,7 +48497,7 @@ }, /obj/machinery/door/airlock/engineering/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "fgb" = ( @@ -48671,11 +48508,13 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/window/classic/reversed{ dir = 8; name = "Glass Door" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -48740,9 +48579,7 @@ }, /area/station/engineering/atmos) "fhC" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" @@ -48750,15 +48587,13 @@ /area/station/hallway/primary/fore) "fhN" = ( /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, /obj/effect/mapping_helpers/airlock/polarized{ id = "psych" }, /obj/machinery/door/airlock/psych/glass{ - id_tag = "psych_bolt"; - name = "Psychiatrist Office" + id_tag = "psych_bolt" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -48766,6 +48601,7 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /turf/simulated/floor/wood, /area/station/medical/psych) "fhR" = ( @@ -48832,7 +48668,7 @@ }, /area/station/supply/office) "fjU" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 }, @@ -48855,6 +48691,7 @@ /area/station/engineering/atmos) "fkN" = ( /obj/machinery/economy/vending/wallmed/directional/north, +/obj/effect/landmark/spawner/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "fkW" = ( @@ -48939,12 +48776,12 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "PermaLockdown"; name = "Lockdown Shutters" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "fma" = ( @@ -48998,7 +48835,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, -/area/station/maintenance/port) +/area/station/hallway/primary/central) "fmP" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 @@ -49154,7 +48991,7 @@ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "fqX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -49343,16 +49180,15 @@ /area/station/medical/exam_room) "fuv" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/forensics, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -49378,6 +49214,7 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -49515,13 +49352,12 @@ /area/station/science/storage) "fyS" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -49532,6 +49368,7 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/medmaint) "fza" = ( @@ -49591,7 +49428,7 @@ /turf/simulated/floor/engine, /area/station/engineering/control) "fzW" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/machinery/camera{ c_tag = "Armory - Internal"; dir = 8 @@ -49679,7 +49516,7 @@ /area/station/engineering/control) "fCn" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/item/reagent_containers/glass/beaker/waterbottle{ @@ -49882,7 +49719,8 @@ name = "Quarantine Lockdown"; opacity = 0 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/chemistry, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, /turf/simulated/floor/plasteel{ icon_state = "whiteyellowfull" }, @@ -49908,13 +49746,13 @@ "fHw" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -49986,17 +49824,18 @@ /area/station/science/server) "fIl" = ( /obj/structure/chair/stool, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "fIv" = ( /obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "fIA" = ( @@ -50009,10 +49848,8 @@ }, /area/station/science/research) "fJd" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -50021,8 +49858,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/brig) "fJm" = ( @@ -50074,9 +49910,7 @@ /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "fKW" = ( -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, +/obj/item/kirbyplants/plant16, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -50255,7 +50089,6 @@ /area/station/medical/morgue) "fPT" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/security/forensics, /obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 @@ -50263,6 +50096,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/security/forensics, /turf/simulated/floor/plating, /area/station/security/detective) "fQi" = ( @@ -50639,11 +50473,16 @@ "fZt" = ( /obj/machinery/door/airlock/external{ id_tag = "atmossouth_door_ext"; - locked = 1; - name = "Atmospherics External Access" + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "atmossouth_btn_ext"; + name = "exterior access button"; + pixel_y = -24; + req_access_txt = "24;13" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plating, /area/station/engineering/atmos) "fZU" = ( @@ -50772,8 +50611,14 @@ }, /obj/machinery/door/airlock/external{ id_tag = "soldock_door_int"; - locked = 1; - name = "Arrivals External Access" + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "soldock_btn_int"; + name = "interior access button"; + pixel_y = -24 }, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) @@ -50828,9 +50673,7 @@ }, /area/station/security/permabrig) "geC" = ( -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, +/obj/item/kirbyplants/plant24, /obj/machinery/camera{ c_tag = "Science Hallway - Research"; network = list("Research","SS13") @@ -50900,9 +50743,6 @@ id = "Cell 1"; name = "Cell 1" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -50914,6 +50754,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "red" @@ -51292,18 +51135,11 @@ dir = 8 }, /obj/effect/turf_decal/stripes/corner, -/obj/machinery/access_button{ - autolink_id = "aiaccess_btn_int"; - name = "interior access button"; - pixel_x = 25; - pixel_y = -7; - req_access_txt = "13" - }, /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "gpV" = ( /obj/machinery/door/window/classic/normal{ name = "Mass Driver Door"; @@ -51312,7 +51148,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/tox{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, /turf/simulated/floor/plasteel{ @@ -51442,6 +51278,7 @@ /area/station/science/xenobiology) "gsQ" = ( /obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -51450,8 +51287,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "gsR" = ( @@ -51488,6 +51324,17 @@ /obj/machinery/firealarm/directional/south, /turf/simulated/floor/plasteel, /area/station/security/main) +"gvt" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/security/permabrig) "gvJ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -51495,11 +51342,10 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/engineering/glass{ - heat_proof = 1; - name = "Supermatter Chamber" + heat_proof = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/engine, /area/station/engineering/engine/supermatter) "gvN" = ( @@ -51524,13 +51370,13 @@ /area/station/public/construction) "gxm" = ( /obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "gxC" = ( @@ -51590,9 +51436,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, +/obj/item/kirbyplants/plant10, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "purple" @@ -51658,9 +51502,8 @@ /area/station/security/brig) "gBG" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Foyer" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -51730,7 +51573,8 @@ name = "Quarantine Lockdown"; opacity = 0 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/chemistry, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, /turf/simulated/floor/plasteel{ icon_state = "whiteyellowfull" }, @@ -52264,7 +52108,7 @@ /turf/simulated/floor/engine, /area/station/science/explab/chamber) "gNG" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/wall/r_wall, @@ -52299,7 +52143,7 @@ dir = 1 }, /obj/machinery/keycard_auth/east, -/obj/effect/mapping_helpers/airlock/windoor/access/all/command/ntrep{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ntrep{ dir = 1 }, /turf/simulated/floor/carpet/royalblack, @@ -52360,7 +52204,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/engineering/atmos/control) "gRF" = ( @@ -52403,10 +52247,9 @@ "gSd" = ( /obj/machinery/door/airlock/external{ id_tag = "laborcamp_home"; - locked = 1; - name = "Labor Camp Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Perma Gate"; name = "Prison Blast Door" @@ -52415,6 +52258,7 @@ /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/station/security/permabrig) "gSu" = ( @@ -52680,28 +52524,6 @@ icon_state = "white" }, /area/station/science/toxins/launch) -"gXj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/station/turret_protected/aisat/interior) "gXp" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; @@ -52716,11 +52538,10 @@ }, /obj/machinery/door/airlock/external/glass{ id_tag = "aisat_door_int"; - locked = 1; - name = "MiniSat External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -52772,19 +52593,19 @@ "gZB" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "gZP" = ( /obj/machinery/door/airlock/engineering/glass{ autoclose = 0; id_tag = "enginesm_door_ext"; - locked = 1; - name = "Supermatter Exterior Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -52796,7 +52617,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -52924,12 +52745,10 @@ /turf/simulated/floor/plating, /area/station/service/mime) "hds" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "hdE" = ( @@ -52957,14 +52776,15 @@ /turf/simulated/floor/bluegrid/telecomms/server, /area/station/science/server/coldroom) "heq" = ( -/obj/machinery/door/airlock/hatch{ - name = "Observation Room" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_south) "heC" = ( @@ -53212,9 +53032,7 @@ /area/station/command/office/cmo) "hjr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, +/obj/item/kirbyplants/plant22, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ dir = 4; @@ -53278,7 +53096,7 @@ dir = 4; icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "hkF" = ( /turf/simulated/wall/mineral/titanium, /area/shuttle/pod_2) @@ -53566,10 +53384,10 @@ name = "Atmospherics Access"; dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/construction{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -53577,6 +53395,8 @@ "hqm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "cmo" }, @@ -53594,7 +53414,7 @@ pixel_y = -3 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/hydroponics{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -53669,6 +53489,13 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"hsT" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "htr" = ( /obj/machinery/disposal, /obj/structure/sign/deathsposal{ @@ -53683,6 +53510,7 @@ /area/station/medical/virology) "hts" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -53695,20 +53523,20 @@ /area/station/maintenance/starboard) "htP" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/milk{ +/obj/item/reagent_containers/condiment/milk{ pixel_x = 6; pixel_y = 8 }, -/obj/item/reagent_containers/food/condiment/soymilk{ +/obj/item/reagent_containers/condiment/soymilk{ pixel_x = -6; pixel_y = 8 }, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/drinks/bottle/cream{ +/obj/item/reagent_containers/condiment/sugar, +/obj/item/reagent_containers/drinks/bottle/cream{ pixel_x = 6; pixel_y = -2 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = -5; pixel_y = -2 }, @@ -53732,10 +53560,10 @@ }, /obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/prison/cell_block/A) "hvz" = ( @@ -53781,10 +53609,9 @@ /turf/simulated/floor/wood, /area/station/service/bar) "hwb" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Slime Euthanization Chamber" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/science/xenobiology) "hwF" = ( @@ -53888,24 +53715,23 @@ /obj/machinery/door/window/classic/reversed{ name = "Upload Console Window" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/command/ai_upload, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/turret_protected/ai_upload) "hyp" = ( /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/tox, /obj/machinery/door/firedoor/heavy{ opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -54050,6 +53876,7 @@ "hBB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -54064,8 +53891,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -54106,6 +53932,7 @@ /obj/structure/chair/wood{ dir = 1 }, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/wood, /area/station/public/mrchangs) "hCr" = ( @@ -54178,7 +54005,7 @@ "hDY" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/brig{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -54231,7 +54058,7 @@ name = "Containment Pen #5"; dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, /turf/simulated/floor/plasteel, @@ -54250,7 +54077,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "hED" = ( /obj/effect/landmark/start/doctor, /turf/simulated/floor/plasteel{ @@ -54264,13 +54091,13 @@ dir = 8; name = "Warden's Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ - dir = 8 - }, /obj/machinery/door/window/classic/normal{ dir = 4; name = "Outer Window" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/security/warden) "hEZ" = ( @@ -54392,11 +54219,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/security/permabrig) -"hHA" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/aft2) "hHE" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -54605,11 +54427,11 @@ /area/station/turret_protected/ai) "hLT" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -54787,9 +54609,8 @@ /area/station/engineering/atmos) "hRH" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -54819,7 +54640,7 @@ /obj/machinery/door/window/reinforced/normal{ name = "Command Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/command/general, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/general, /turf/simulated/floor/plasteel{ icon_state = "darkblue" }, @@ -54967,7 +54788,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/garden) "hVw" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 }, @@ -55417,7 +55238,7 @@ /obj/machinery/door/window/classic/reversed{ name = "Cryo Tank Storage" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -55486,9 +55307,6 @@ dir = 8; name = "Inner Pipe Access" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/atmos{ - dir = 8 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -55652,9 +55470,6 @@ dir = 1; name = "Delivery Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general{ - dir = 1 - }, /turf/simulated/floor/plasteel, /area/station/supply/office) "ima" = ( @@ -55757,12 +55572,6 @@ /turf/simulated/floor/plasteel, /area/station/science/robotics) "inw" = ( -/obj/machinery/access_button{ - autolink_id = "soldock_btn_int"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25 - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -55924,7 +55733,7 @@ }, /area/station/service/chapel) "irW" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /obj/effect/turf_decal/delivery/blue, /turf/simulated/floor/plasteel{ dir = 1; @@ -55947,9 +55756,9 @@ /obj/machinery/door/airlock/engineering/glass{ autoclose = 0; id_tag = "enginesm_door_int"; - locked = 1; - name = "Supermatter Interior Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -55961,7 +55770,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -56001,10 +55810,7 @@ /obj/structure/table/reinforced, /obj/item/scalpel, /obj/item/autopsy_scanner, -/obj/item/camera/autopsy{ - pixel_x = -2; - pixel_y = -2 - }, +/obj/item/camera/autopsy, /obj/structure/window/reinforced{ dir = 4 }, @@ -56023,7 +55829,7 @@ name = "Containment Pen #5"; dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, /turf/simulated/floor/engine, @@ -56429,22 +56235,21 @@ }, /area/station/medical/medbay) "iBI" = ( -/obj/machinery/door/airlock/research{ - name = "Sci Chem and Xenobio Access" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -56639,12 +56444,12 @@ pixel_x = -25 }, /obj/machinery/door/airlock/highsecurity{ - locked = 1; - name = "AI Chamber" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -56799,9 +56604,8 @@ }, /area/station/security/armory) "iKV" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" - }, +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -56814,7 +56618,7 @@ icon_state = "4-8" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plasteel, /area/station/supply/lobby) "iKZ" = ( @@ -56893,7 +56697,7 @@ "iLI" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -57050,6 +56854,7 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -57061,10 +56866,10 @@ "iQk" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral) "iQm" = ( @@ -57122,10 +56927,16 @@ "iRV" = ( /obj/machinery/door/airlock/external/glass{ id_tag = "arrivalsmaint_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/access_button{ + autolink_id = "arrivalsmaint_btn_ext"; + name = "exterior access button"; + pixel_y = -24; + req_access_txt = "13" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/port) "iSf" = ( @@ -57148,7 +56959,7 @@ }, /obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/processing) "iSE" = ( @@ -57327,25 +57138,6 @@ /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, /area/station/science/toxins/test) -"iYm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Solitary Confinement 1" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plasteel, -/area/station/security/permabrig) "iZl" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -57377,10 +57169,11 @@ /area/station/science/robotics) "jap" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Warehouse" +/obj/machinery/door/airlock/multi_tile/supply/glass{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plasteel, /area/station/supply/storage) "jau" = ( @@ -57483,9 +57276,9 @@ /obj/machinery/door/airlock/research{ autoclose = 0; id_tag = "xeno_door_int"; - locked = 1; - name = "Xenobiology Internal Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -57497,7 +57290,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, /obj/machinery/access_button{ autolink_id = "xeno_btn_int"; name = "Xenobiology Access Button"; @@ -57505,6 +57297,7 @@ pixel_y = 26; req_access_txt = "55" }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -57642,7 +57435,7 @@ }, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/blueshield, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood, /area/station/command/office/blueshield) "jll" = ( @@ -57665,9 +57458,6 @@ /obj/machinery/conveyor/northwest/ccw{ id = "garbage" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/maintenance{ - dir = 4 - }, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "jma" = ( @@ -57713,15 +57503,22 @@ /obj/machinery/door/airlock/engineering/glass{ autoclose = 0; id_tag = "enginesm_door_int"; - locked = 1; - name = "Supermatter Interior Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/access_button/east{ + autolink_id = "enginesm_btn_int"; + name = "Supermatter Access Button"; + pixel_x = 0; + pixel_y = 24; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -57732,9 +57529,7 @@ c_tag = "Detective's Office"; dir = 8 }, -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, +/obj/item/kirbyplants/plant24, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet, /area/station/security/detective) @@ -57744,7 +57539,7 @@ pixel_y = -1 }, /obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = -6 }, /obj/machinery/requests_console{ @@ -57792,7 +57587,8 @@ name = "Primate Pen" }, /obj/effect/turf_decal/siding, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/genetics, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, /turf/simulated/floor/grass/no_creep, /area/station/science/genetics) "jrp" = ( @@ -57866,16 +57662,10 @@ dir = 8; name = "glass door" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ - dir = 8 - }, /obj/machinery/door/window/classic/normal{ dir = 4; name = "glass door" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ - dir = 4 - }, /turf/simulated/floor/plating/airless, /area/station/engineering/atmos) "jta" = ( @@ -58060,7 +57850,7 @@ }, /area/station/engineering/control) "jxj" = ( -/obj/item/reagent_containers/food/snacks/monkeycube, +/obj/item/food/snacks/monkeycube, /turf/simulated/floor/grass, /area/station/maintenance/aft2) "jyP" = ( @@ -58074,11 +57864,6 @@ icon_state = "dark" }, /area/station/science/misc_lab) -"jyT" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard2) "jyW" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -58108,6 +57893,7 @@ /area/station/public/locker) "jzk" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -58122,11 +57908,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "jzA" = ( @@ -58144,6 +57930,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/command/bridge) "jAh" = ( @@ -58160,14 +57947,24 @@ }, /turf/simulated/floor/plasteel, /area/station/science/robotics) +"jAY" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/woodsiding{ + dir = 1 + }, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/service/bar) "jAZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ autoclose = 0; id_tag = "xeno_door_ext"; - locked = 1; - name = "Xenobiology External Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/south{ autolink_id = "xeno_btn_ext"; name = "Xenobiology Access Button"; @@ -58178,7 +57975,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -58282,6 +58079,7 @@ /area/station/maintenance/starboard2) "jEC" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -58293,8 +58091,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -58302,6 +58098,7 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "jEO" = ( @@ -58439,7 +58236,7 @@ id_tag = "kitchen_service"; name = "Service Desk Shutter" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -58779,7 +58576,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, /turf/simulated/floor/plasteel, @@ -58806,7 +58603,7 @@ name = "Containment Pen #6"; dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, /turf/simulated/floor/engine, @@ -59052,14 +58849,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/obj/machinery/door/airlock/hatch{ - name = "Observation Room" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/xenobio_north) "jSA" = ( @@ -59113,15 +58911,15 @@ /obj/machinery/door/airlock/atmos/glass{ autoclose = 0; id_tag = "atmossm_door_int"; - locked = 1; - name = "Atmospherics Access Chamber" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/west{ autolink_id = "atmossm_btn_int"; name = "Atmospherics Access Button"; req_access_txt = "24" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/engineering/control) "jTK" = ( @@ -59225,6 +59023,7 @@ "jWJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -59238,7 +59037,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/station/security/prisonlockers) "jXi" = ( @@ -59305,6 +59104,9 @@ /obj/machinery/door/window/classic/reversed{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ + dir = 8 + }, /turf/simulated/floor/wood, /area/station/command/office/captain/bedroom) "jXS" = ( @@ -59527,12 +59329,12 @@ /area/station/maintenance/medmaint) "keY" = ( /obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/obj/effect/mapping_helpers/airlock/access/any/service/bar, /turf/simulated/floor/wood, /area/station/service/bar) "kfe" = ( @@ -59580,10 +59382,10 @@ name = "Coffin Storage"; dir = 4 }, +/obj/structure/closet/coffin, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/chapel_office{ dir = 4 }, -/obj/structure/closet/coffin, /turf/simulated/floor/plating, /area/station/service/chapel) "kfI" = ( @@ -59659,9 +59461,7 @@ }, /area/station/science/research) "kiq" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -59696,9 +59496,8 @@ }, /area/station/science/xenobiology) "kkw" = ( -/obj/machinery/door/airlock/titanium{ - name = "Escape Pod Airlock" - }, +/obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/autoname, /obj/docking_port/mobile/pod{ id = "pod3"; name = "escape pod 3" @@ -59926,7 +59725,7 @@ }, /area/station/security/main) "krx" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 }, /turf/simulated/floor/plasteel, @@ -60351,7 +60150,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/station/supply/storage) +/area/station/supply/qm) "kBs" = ( /obj/machinery/alarm/directional/north, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -60375,9 +60174,6 @@ id = "Cell 3"; name = "Cell 3" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -60389,6 +60185,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "red" @@ -60434,10 +60233,9 @@ "kDC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyerPort"; - name = "Medbay Entrance" + id_tag = "MedbayFoyerPort" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -60447,8 +60245,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, @@ -60457,6 +60253,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -60515,7 +60312,7 @@ name = "Containment Pen #1"; dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 4 }, /turf/simulated/floor/engine, @@ -60813,6 +60610,12 @@ }, /turf/simulated/floor/plating, /area/station/command/office/cmo) +"kJS" = ( +/obj/effect/landmark/start/barber, +/turf/simulated/floor/plasteel{ + icon_state = "darkneutralfull" + }, +/area/station/public/fitness) "kJT" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -61151,17 +60954,12 @@ /turf/simulated/floor/grass, /area/station/maintenance/aft2) "kQv" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/structure/grille/broken, +/obj/item/food/snacks/grown/poppy, /turf/simulated/floor/plating/airless, /area/space/nearstation) "kQx" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, +/obj/item/kirbyplants/plant11, /turf/simulated/floor/wood, /area/station/legal/courtroom) "kQD" = ( @@ -61183,9 +60981,8 @@ }, /area/station/security/armory/secure) "kRm" = ( -/obj/machinery/door/airlock/centcom{ - name = "Cell 4" - }, +/obj/machinery/door/airlock/centcom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -61549,6 +61346,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood, /area/station/service/theatre) "kZm" = ( @@ -61561,11 +61359,8 @@ }, /area/station/medical/reception) "kZt" = ( -/obj/machinery/door/airlock/atmos{ - name = "Fore-Starboard Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -61654,9 +61449,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard) "lbv" = ( -/obj/machinery/door/airlock/centcom{ - name = "Cell 2" - }, +/obj/machinery/door/airlock/centcom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -61694,6 +61488,16 @@ dir = 10 }, /obj/effect/turf_decal/stripes/line, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plasteel{ icon_state = "yellow" }, @@ -61744,15 +61548,15 @@ autoclose = 0; heat_proof = 1; id_tag = "turbine_door_int"; - locked = 1; - name = "Incinerator Exterior Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/engine, /area/station/maintenance/turbine) "leh" = ( @@ -61764,9 +61568,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -61883,7 +61685,7 @@ id_tag = "roboticsprivacy2"; name = "Robotics Shutters" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/robotics{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 1 }, /turf/simulated/floor/plasteel{ @@ -61905,13 +61707,13 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/engimaint) "lfV" = ( @@ -61946,7 +61748,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/morgue{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -61971,26 +61773,26 @@ /area/station/science/misc_lab) "lhd" = ( /obj/machinery/smartfridge/medbay, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ - dir = 8 - }, /obj/machinery/door/window/classic/normal{ dir = 4 }, /obj/effect/mapping_helpers/airlock/windoor/autoname/desk{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/machinery/door/window/antitheft/normal{ dir = 8; name = "Anti-Theft Shield" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "whiteyellowfull" }, @@ -62082,7 +61884,7 @@ /obj/machinery/door/window{ name = "HoP's Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/command/hop, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/hop, /turf/simulated/floor/wood, /area/station/command/office/hop) "liL" = ( @@ -62170,15 +61972,15 @@ dir = 1; name = "Weapon Distribution" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ - dir = 1 - }, /obj/machinery/door/window/classic/normal{ name = "Request Window" }, /obj/item/pen, /obj/item/paper, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -62197,7 +61999,7 @@ name = "Containment Pen #1"; dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -62212,13 +62014,13 @@ /area/station/command/office/hos) "lkH" = ( /obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, @@ -62293,6 +62095,9 @@ dir = 1; name = "gas ports" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -62399,15 +62204,15 @@ "lpp" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, -/obj/item/reagent_containers/food/snacks/muffin{ +/obj/item/food/snacks/muffin{ pixel_x = -4; pixel_y = 8 }, -/obj/item/reagent_containers/food/snacks/carrotcakeslice{ +/obj/item/food/snacks/carrotcakeslice{ pixel_x = 8; pixel_y = -2 }, -/obj/item/reagent_containers/food/snacks/poppypretzel{ +/obj/item/food/snacks/poppypretzel{ pixel_x = -8; pixel_y = -3 }, @@ -62461,7 +62266,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/command/captain, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/blueshield, /turf/simulated/floor/wood, /area/station/command/office/captain) "lrA" = ( @@ -62499,6 +62305,13 @@ }, /turf/simulated/floor/plasteel, /area/station/science/research) +"lsc" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/wood, +/area/station/service/bar) "lsi" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -62629,10 +62442,11 @@ /area/station/science/toxins/launch) "lvE" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/port) "lvP" = ( @@ -62692,21 +62506,21 @@ /turf/simulated/floor/plasteel, /area/station/security/brig) "lyn" = ( -/obj/machinery/door/airlock/hatch{ - name = "Xenobiology Maintenance" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/science/xenobiology) "lyD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -62815,10 +62629,9 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -62826,6 +62639,7 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -62999,24 +62813,19 @@ /area/station/security/permabrig) "lFu" = ( /obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; security_level = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/station/security/brig) "lFv" = ( -/obj/machinery/access_button{ - autolink_id = "engine_btn_ext"; - name = "interior access button"; - pixel_x = -22; - pixel_y = 20; - req_access_txt = "10;13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/simulated/floor/plating, +/area/station/maintenance/starboard2) "lFF" = ( /obj/machinery/hologram/holopad, /obj/effect/landmark/start/scientist, @@ -63030,9 +62839,6 @@ name = "Cell 4"; dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -63044,6 +62850,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "red" @@ -63253,20 +63062,10 @@ dir = 4; location = "Bridge" }, +/obj/effect/turf_decal/delivery/hollow, /obj/structure/plasticflaps{ opacity = 1 }, -/obj/effect/turf_decal/delivery/hollow, -/obj/machinery/door/window/classic/normal{ - dir = 8; - name = "Bridge Delivery" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/general{ - dir = 8 - }, /turf/simulated/floor/plasteel, /area/station/maintenance/maintcentral) "lJq" = ( @@ -63576,7 +63375,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/hydroponics, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) "lPV" = ( @@ -63658,11 +63457,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -63673,9 +63467,8 @@ }, /area/station/engineering/break_room) "lQQ" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Patients Room" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -63876,7 +63669,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/command/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkblue" @@ -63910,7 +63703,7 @@ name = "Containment Pen #4"; dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, /turf/simulated/floor/plasteel, @@ -63939,7 +63732,7 @@ id_tag = "roboticsprivacy"; name = "Robotics Shutters" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/robotics{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -64052,6 +63845,7 @@ "mcj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -64063,8 +63857,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -64409,15 +64202,10 @@ dir = 4; location = "Engineering" }, +/obj/effect/turf_decal/delivery/hollow, /obj/structure/plasticflaps{ opacity = 1 }, -/obj/effect/turf_decal/delivery/hollow, -/obj/machinery/door/window/classic/normal{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, /turf/simulated/floor/plasteel, /area/station/maintenance/fsmaint) "mjP" = ( @@ -64449,9 +64237,6 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/atmos{ - dir = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -64515,16 +64300,16 @@ /area/station/science/toxins/mixing) "mle" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "mlj" = ( @@ -64547,17 +64332,17 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/magistrate, /obj/effect/mapping_helpers/airlock/polarized{ id = "Magistrate" }, /obj/machinery/door/airlock/glass{ id_tag = "magistrateofficedoor" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/command/magistrate, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -64620,7 +64405,7 @@ /obj/structure/window/plasmareinforced{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/meter{ layer = 3.3 }, @@ -65027,9 +64812,6 @@ dir = 1; name = "Warden's Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ - dir = 1 - }, /obj/machinery/door/window/classic/normal{ name = "Reception Window" }, @@ -65049,6 +64831,9 @@ icon_state = "1-8" }, /obj/item/storage/fancy/donut_box, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/station/security/warden) "mAt" = ( @@ -65102,7 +64887,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "mBn" = ( /turf/simulated/floor/plating/airless, /area/station/engineering/solar/starboard) @@ -65157,11 +64942,9 @@ }, /area/station/medical/morgue) "mCT" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -65170,6 +64953,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/engineering/control) "mCX" = ( @@ -65461,10 +65245,9 @@ /obj/machinery/door/airlock/security/glass{ id_tag = "innerbrig" }, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/brig) "mLC" = ( @@ -65539,20 +65322,6 @@ icon_state = "showroomfloor" }, /area/station/medical/coldroom) -"mOC" = ( -/obj/machinery/door/airlock/centcom{ - name = "Cell 3" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/station/security/permabrig) "mOD" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -65581,8 +65350,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, /obj/effect/turf_decal/woodsiding{ dir = 4 }, @@ -65751,10 +65520,11 @@ /area/station/service/library) "mSm" = ( /obj/machinery/door/airlock/freezer, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -65799,6 +65569,8 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "mUf" = ( @@ -65847,6 +65619,7 @@ /area/station/hallway/primary/starboard) "mUv" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -65857,7 +65630,6 @@ /area/station/maintenance/medmaint) "mUU" = ( /obj/machinery/door/airlock/command, -/obj/effect/mapping_helpers/airlock/access/all/security/hos, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -65884,6 +65656,8 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, /area/station/command/office/hos) "mVl" = ( @@ -65969,11 +65743,10 @@ /turf/simulated/floor/redgrid, /area/station/turret_protected/ai_upload) "mVS" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Loop Observation" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/tox, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "mVW" = ( @@ -66006,9 +65779,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) @@ -66063,11 +65836,11 @@ /area/shuttle/arrival/station) "mXE" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = 5; pixel_y = 12 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = -3; pixel_y = 9 }, @@ -66304,7 +66077,7 @@ name = "Containment Pen #4"; dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, /turf/simulated/floor/engine, @@ -66333,7 +66106,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "ncC" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/classic/normal{ @@ -66344,15 +66117,15 @@ name = "Security Desk"; dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ - dir = 4 - }, /obj/item/folder/red, /obj/item/pen{ pixel_x = -3; pixel_y = 5 }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "ncG" = ( @@ -66477,7 +66250,7 @@ /area/station/public/construction) "nfj" = ( /obj/structure/closet, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ desc = "Takes you to a whole new level of thinking."; name = "Meta-Cider" }, @@ -66500,24 +66273,11 @@ }, /area/station/engineering/atmos) "nfB" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/access_button{ - autolink_id = "engine_btn_int"; - name = "interior access button"; - pixel_x = -22; - pixel_y = -20; - req_access_txt = "10;13" - }, -/turf/simulated/floor/engine, -/area/station/engineering/control) +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint) "nfR" = ( /obj/structure/table/glass, /obj/item/clothing/gloves/color/latex, @@ -66572,10 +66332,10 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "ngG" = ( @@ -66602,7 +66362,7 @@ name = "Cargo Desk" }, /obj/item/paper/crumpled, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/office) "nht" = ( @@ -66712,7 +66472,7 @@ pixel_y = 7; anchored = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/office) "niC" = ( @@ -67059,6 +66819,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/wood, /area/station/public/mrchangs) "nru" = ( @@ -67209,8 +66970,8 @@ "nvP" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -67232,13 +66993,13 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "nwx" = ( @@ -67713,11 +67474,16 @@ "nEU" = ( /obj/machinery/door/airlock/external{ id_tag = "engine_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "engine_btn_int"; + name = "interior access button"; + pixel_x = -24; + req_access_txt = "10;13" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plating, /area/station/engineering/control) "nFf" = ( @@ -67750,11 +67516,16 @@ "nFZ" = ( /obj/machinery/door/airlock/external{ id_tag = "engine_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "engine_btn_ext"; + name = "interior access button"; + pixel_y = 24; + req_access_txt = "10;13" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plating, /area/station/engineering/control) "nGj" = ( @@ -67895,6 +67666,23 @@ }, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) +"nKU" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "open"; + id_tag = "Biohazard_medi"; + name = "Quarantine Lockdown"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/turf/simulated/floor/plating, +/area/station/maintenance/medmaint) "nLV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -67968,12 +67756,13 @@ /area/station/engineering/control) "nNk" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/plating, /area/station/maintenance/fore) "nNq" = ( @@ -68004,10 +67793,8 @@ /area/station/maintenance/starboard) "nOR" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -68019,6 +67806,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -68202,9 +67990,9 @@ "nUU" = ( /obj/machinery/door/airlock/medical/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -68277,6 +68065,7 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -68300,6 +68089,15 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) +"nWX" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) "nXr" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/stripes/line{ @@ -68697,9 +68495,8 @@ /area/station/medical/medbay) "oga" = ( /obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) "ogq" = ( @@ -68870,6 +68667,7 @@ /obj/structure/chair/stool{ dir = 8 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood, /area/station/service/bar) "omW" = ( @@ -69015,6 +68813,7 @@ /obj/structure/chair/stool{ dir = 8 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "oqO" = ( @@ -69037,23 +68836,22 @@ /area/station/public/locker) "orV" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3 }, /obj/machinery/door/window/classic/reversed{ name = "Kitchen" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "kitchen_counter"; name = "Kitchen Counter Shutters" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -69139,6 +68937,14 @@ }, /turf/simulated/floor/engine, /area/station/engineering/control) +"oxy" = ( +/obj/machinery/turretid/stun{ + name = "AI Upload Turret Control"; + pixel_y = -8; + req_access = list(75) + }, +/turf/simulated/wall/r_wall, +/area/station/turret_protected/ai_upload) "oxJ" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/two, @@ -69149,7 +68955,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/iaa, +/obj/effect/mapping_helpers/airlock/access/any/security/iaa, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -69569,6 +69375,11 @@ icon_state = "caution" }, /area/station/engineering/atmos/control) +"oKu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "oLF" = ( /obj/machinery/light/directional/east, /turf/simulated/floor/plasteel, @@ -69580,11 +69391,16 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "oMn" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -69798,9 +69614,8 @@ }, /area/station/public/dorms) "oQE" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Secure Equipment Storage" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -69810,7 +69625,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -69824,27 +69639,14 @@ /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "oQV" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, /obj/effect/turf_decal/delivery/hollow, /obj/machinery/navbeacon{ codes_txt = "delivery"; dir = 8; location = "Security" }, -/obj/machinery/door/poddoor/preopen{ - id_tag = "Secure Gate"; - name = "brig shutters" - }, -/obj/machinery/door/window/classic/reversed{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - dir = 4 +/obj/structure/plasticflaps{ + opacity = 1 }, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) @@ -69875,6 +69677,7 @@ /area/station/security/brig) "oRx" = ( /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ d1 = 1; @@ -69888,8 +69691,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, /turf/simulated/floor/plasteel, /area/station/security/warden) "oRL" = ( @@ -70040,7 +69842,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 1 }, /turf/simulated/floor/engine, @@ -70074,6 +69876,15 @@ /obj/machinery/atmospherics/meter, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"oWv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/spawner/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "oWE" = ( /turf/simulated/wall/r_wall, /area/station/public/fitness) @@ -70130,8 +69941,7 @@ /area/station/security/armory) "oXw" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/forensics, -/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ d1 = 4; @@ -70139,7 +69949,7 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -70400,9 +70210,9 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/office) "peo" = ( @@ -70431,11 +70241,10 @@ /area/station/maintenance/xenobio_south) "peF" = ( /obj/machinery/door/airlock/engineering/glass{ - heat_proof = 1; - name = "Supermatter Chamber" + heat_proof = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/engine, /area/station/engineering/engine/supermatter) "pfh" = ( @@ -70452,9 +70261,6 @@ name = "Kitchen Delivery"; dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 4 - }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ dir = 4 }, @@ -70477,11 +70283,9 @@ }, /area/station/engineering/atmos/distribution) "pfH" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -70490,6 +70294,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/engineering/control) "pgs" = ( @@ -70595,13 +70400,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/access_button{ - autolink_id = "atmossouth_btn_int"; - name = "interior access button"; - pixel_x = 25; - pixel_y = -25; - req_access_txt = "13" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -70775,9 +70573,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/effect/turf_decal/stripes/line{ dir = 5 }, @@ -70805,20 +70601,10 @@ codes_txt = "delivery"; location = "Research Division" }, +/obj/effect/turf_decal/delivery/hollow, /obj/structure/plasticflaps{ opacity = 1 }, -/obj/effect/turf_decal/delivery/hollow, -/obj/machinery/door/window/classic/reversed{ - dir = 1; - name = "Research Division" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 1 - }, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard2) "pos" = ( @@ -71214,9 +71000,8 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ d1 = 1; @@ -71243,7 +71028,6 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -71252,6 +71036,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "pAU" = ( @@ -71341,20 +71126,6 @@ icon_state = "cult" }, /area/station/service/library) -"pCo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/machinery/door/poddoor{ - density = 0; - icon_state = "open"; - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/simulated/floor/plating, -/area/station/medical/psych) "pDA" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ @@ -71475,6 +71246,17 @@ icon_state = "blackcorner" }, /area/station/security/permabrig) +"pGq" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/port2) "pGO" = ( /obj/machinery/light/directional/east, /obj/structure/closet/secure_closet/security, @@ -71657,11 +71439,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 5 }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "pKs" = ( @@ -71778,7 +71555,6 @@ /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; @@ -71791,6 +71567,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -71821,9 +71598,6 @@ id = "Cell 2"; name = "Cell 2" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -71835,6 +71609,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "red" @@ -71842,9 +71619,9 @@ /area/station/security/prison/cell_block/A) "pOG" = ( /obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "pOV" = ( @@ -71951,10 +71728,8 @@ }, /area/station/science/toxins/mixing) "pQq" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Server Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -71963,6 +71738,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /turf/simulated/floor/plasteel/dark, /area/station/telecomms/chamber) "pQv" = ( @@ -72161,7 +71937,10 @@ name = "Quarantine Lockdown"; opacity = 0 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/chemistry{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ dir = 8 }, /turf/simulated/floor/plasteel{ @@ -72469,7 +72248,6 @@ /obj/machinery/door/window/classic/normal{ name = "Cyborg Upload Console Window" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/command/ai_upload, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -72754,7 +72532,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research, /turf/simulated/floor/engine, /area/station/science/xenobiology) "qfs" = ( @@ -72827,16 +72605,15 @@ /area/station/engineering/atmos/control) "qhd" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, /obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/wood, /area/station/maintenance/starboard) "qid" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Three" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fore) "qiA" = ( @@ -72864,19 +72641,25 @@ "qkC" = ( /obj/machinery/door/airlock/external{ id_tag = "aiaccess_door_ext"; - locked = 1; - name = "MiniSat Space Access Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "transittube"; name = "Transit Tube Blast Door" }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "aiaccess_btn_ext"; + name = "exterior access button"; + pixel_y = 24; + req_one_access_txt = "75;13" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "qkD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -72888,8 +72671,8 @@ "qkK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, /obj/effect/turf_decal/woodsiding{ dir = 4 }, @@ -72949,7 +72732,7 @@ name = "Containment Pen #3"; dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, /turf/simulated/floor/engine, @@ -72998,6 +72781,8 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "qma" = ( @@ -73016,19 +72801,26 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/library, /turf/simulated/floor/plating, /area/station/maintenance/port) "qmv" = ( /obj/machinery/door/airlock/external/glass{ id_tag = "arrivalsmaint_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, +/obj/machinery/access_button{ + autolink_id = "arrivalsmaint_btn_int"; + name = "interior access button"; + pixel_y = -24; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/port) "qmL" = ( @@ -73043,7 +72835,7 @@ }, /area/station/medical/exam_room) "qnp" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 }, @@ -73081,6 +72873,10 @@ icon_state = "showroomfloor" }, /area/station/medical/coldroom) +"qoi" = ( +/obj/effect/landmark/start/artist, +/turf/simulated/floor/carpet, +/area/station/service/theatre) "qoQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -73159,6 +72955,7 @@ c_tag = "Mr. Chang's"; dir = 4 }, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/wood, /area/station/public/mrchangs) "qrh" = ( @@ -73411,21 +73208,21 @@ "qvp" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/onion, -/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/onion, +/obj/item/food/snacks/grown/onion, /obj/item/storage/box/donkpockets, /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ dir = 1 }, /obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/rice, /obj/machinery/light/directional/north, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -73747,11 +73544,6 @@ icon_state = "red" }, /area/station/security/permabrig) -"qGw" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint) "qIg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -73855,7 +73647,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, +/obj/effect/mapping_helpers/airlock/access/any/medical/paramedic, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -73880,7 +73672,7 @@ }, /obj/item/folder/yellow, /obj/item/pen, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/construction{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/construction{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -73907,9 +73699,6 @@ /obj/machinery/conveyor/west{ id = "garbage" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/maintenance{ - dir = 1 - }, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "qMg" = ( @@ -74367,7 +74156,11 @@ }, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) "qWN" = ( @@ -74464,11 +74257,9 @@ "qZz" = ( /obj/machinery/door/airlock/external{ id_tag = "aiaccess_door_int"; - locked = 1; - name = "MiniSat Space Access Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -74476,10 +74267,18 @@ id_tag = "transittube"; name = "Transit Tube Blast Door" }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "aiaccess_btn_int"; + name = "interior access button"; + pixel_y = 24; + req_one_access_txt = "75;13" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "rab" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -74582,7 +74381,7 @@ /obj/machinery/door/airlock/security/glass{ id_tag = "outerbrig" }, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/flasher{ id = "secentranceflasher"; @@ -74604,9 +74403,8 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/brig) "rbC" = ( @@ -74618,6 +74416,7 @@ /area/station/engineering/control) "rbN" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -74706,6 +74505,9 @@ dir = 8; name = "Abandoned Shutter" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, @@ -74748,7 +74550,7 @@ /obj/structure/rack, /obj/item/clothing/mask/gas, /obj/item/storage/box/lights/mixed, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/item/cultivator, /obj/item/clothing/head/chefhat, /obj/effect/spawner/lootdrop/maintenance, @@ -74756,11 +74558,10 @@ /area/station/maintenance/starboard) "rfn" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -74769,6 +74570,9 @@ /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/medmaint) "rfD" = ( @@ -74803,15 +74607,15 @@ "rgO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/paramedic, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/paramedic, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -74973,9 +74777,8 @@ /area/station/aisat) "rkr" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Prison Forestry" - }, +/obj/machinery/door/airlock/centcom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -75092,6 +74895,7 @@ id_tag = "admin_home"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "roi" = ( @@ -75291,11 +75095,10 @@ "rsv" = ( /obj/machinery/door/airlock/external/glass{ id_tag = "aisat_door_int"; - locked = 1; - name = "MiniSat External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -75404,7 +75207,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/office) "rvu" = ( @@ -75424,7 +75227,6 @@ "rvF" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -75441,7 +75243,7 @@ /area/station/engineering/engine/supermatter) "rwj" = ( /obj/structure/safe/floor, -/obj/item/reagent_containers/food/snacks/fortunecookie, +/obj/item/food/snacks/fortunecookie, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "rwk" = ( @@ -75919,6 +75721,7 @@ /area/station/medical/morgue) "rGd" = ( /obj/structure/weightmachine/weightlifter, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "rGj" = ( @@ -75931,11 +75734,11 @@ "rGF" = ( /obj/machinery/door/airlock/external{ id_tag = "mining_home"; - locked = 1; - name = "Mining Dock Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plating, /area/station/supply/miningdock) "rGJ" = ( @@ -76105,9 +75908,8 @@ }, /area/station/medical/exam_room) "rJJ" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, +/obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/mineral/titanium, /area/shuttle/arrival/station) "rJR" = ( @@ -76119,6 +75921,7 @@ "rKa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -76126,8 +75929,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -76218,7 +76020,7 @@ }, /area/station/security/permabrig) "rLS" = ( -/obj/machinery/suit_storage_unit/cmo, +/obj/machinery/suit_storage_unit/cmo/secure, /obj/machinery/light/directional/east, /turf/simulated/floor/plasteel{ dir = 10; @@ -76308,11 +76110,9 @@ }, /area/station/security/permabrig) "rOp" = ( -/obj/machinery/door/airlock/tranquillite{ - name = "Old Mime's Storage" - }, +/obj/machinery/door/airlock/tranquillite, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/mineral/tranquillite, /area/station/maintenance/fore) "rOu" = ( @@ -76400,7 +76200,7 @@ "rRu" = ( /obj/machinery/door/airlock/medical, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -76559,12 +76359,12 @@ "rWn" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fore) "rWr" = ( @@ -76776,6 +76576,7 @@ "sbM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -76789,8 +76590,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -76821,7 +76621,7 @@ /area/station/public/mrchangs) "sdj" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/britcup, +/obj/item/reagent_containers/drinks/britcup, /obj/effect/turf_decal/tile/purple{ dir = 1 }, @@ -77045,9 +76845,9 @@ /area/station/maintenance/fore) "skI" = ( /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Escape Pod Hatch" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/docking_port/mobile/pod{ id = "pod2"; name = "escape pod 2" @@ -77094,7 +76894,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "slT" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -77135,9 +76935,8 @@ /area/station/maintenance/fsmaint) "smH" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Prison Cafeteria" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -77172,11 +76971,16 @@ }, /obj/machinery/door/airlock/external{ id_tag = "atmossouth_door_int"; - locked = 1; - name = "Atmospherics External Access" + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "atmossouth_btn_int"; + name = "interior access button"; + pixel_y = -24; + req_access_txt = "13" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plating, /area/station/engineering/atmos) "snq" = ( @@ -77200,13 +77004,6 @@ }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, -/obj/machinery/door/window/classic/reversed{ - name = "Ore Redemtion Window"; - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/mineral_storage{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/station/supply/lobby) "sol" = ( @@ -77242,6 +77039,7 @@ "soO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -77250,8 +77048,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -77334,10 +77131,9 @@ /area/station/security/permabrig) "srJ" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Abandoned Warehouse" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "srS" = ( @@ -77374,9 +77170,6 @@ name = "Primary AI Core Access"; dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ - dir = 8 - }, /obj/machinery/turretid/lethal{ check_synth = 1; name = "AI Chamber Turret Control"; @@ -77389,6 +77182,9 @@ pixel_x = -8; pixel_y = -24 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ + dir = 8 + }, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -77515,15 +77311,14 @@ /obj/machinery/door/airlock/security/glass{ id_tag = "outerbrig" }, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "brig shutters" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/brig) "swP" = ( @@ -77678,7 +77473,6 @@ dir = 8; name = "Reinforced Glass Door" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, @@ -77686,10 +77480,8 @@ /area/station/science/explab/chamber) "sCr" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ @@ -78106,7 +77898,6 @@ "sLc" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ d1 = 1; @@ -78116,6 +77907,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "sLs" = ( @@ -78170,13 +77962,13 @@ /area/station/engineering/equipmentstorage) "sMK" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/tox, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/aft2) "sMM" = ( @@ -78257,10 +78049,10 @@ /area/station/hallway/secondary/exit) "sNJ" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "sNR" = ( @@ -78532,6 +78324,7 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -78554,6 +78347,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ icon_state = "cmo" }, @@ -78644,7 +78438,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ dir = 1 }, /turf/simulated/floor/plasteel{ @@ -78679,7 +78473,7 @@ "sXU" = ( /obj/machinery/light/directional/north, /mob/living/carbon/human/monkey, -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /turf/simulated/floor/grass/no_creep, /area/station/science/genetics) "sXZ" = ( @@ -78885,12 +78679,13 @@ }, /area/station/security/execution) "tbE" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/plating, /area/station/maintenance/fore) "tbY" = ( @@ -78912,14 +78707,13 @@ /obj/machinery/door/window/classic/reversed{ name = "Kitchen" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "kitchen_counter"; name = "Kitchen Counter Shutters" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -79152,6 +78946,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "tgV" = ( @@ -79250,6 +79046,7 @@ d2 = 2; icon_state = "0-2" }, +/obj/effect/landmark/spawner/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "tiN" = ( @@ -79310,16 +79107,15 @@ /turf/simulated/floor/grass/no_creep, /area/station/medical/virology) "tkm" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/access_button{ - autolink_id = "arrivalsmaint_btn_ext"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = -25; - req_access_txt = "13" +/obj/machinery/door/airlock/external{ + id_tag = "emergency_home"; + locked = 1 }, -/turf/space, -/area/space/nearstation) +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) "tkV" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/mech_bay_recharge_floor, @@ -79463,7 +79259,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/court, /turf/simulated/floor/wood, /area/station/legal/courtroom) "toO" = ( @@ -79572,9 +79368,6 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/station/supply/office) "tsm" = ( @@ -79603,16 +79396,20 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) +"ttb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "ttA" = ( /obj/structure/rack, /obj/item/hand_labeler, /obj/item/folder/red, -/obj/item/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detective's camera"; - pixel_x = -2; - pixel_y = 3 - }, +/obj/item/camera/detective, /obj/item/taperecorder{ pixel_x = -1 }, @@ -79632,7 +79429,7 @@ /turf/simulated/floor/carpet, /area/station/command/office/captain/bedroom) "tug" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/door_control/shutter/east{ id = "toxinaccess"; name = "Toxins Access"; @@ -79670,7 +79467,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -79796,9 +79593,7 @@ }, /area/station/hallway/primary/central) "tyW" = ( -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -79855,6 +79650,9 @@ dir = 1; name = "gas ports" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -80162,9 +79960,6 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/windoor/access/all/supply/general{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/station/supply/office) "tKb" = ( @@ -80187,9 +79982,7 @@ }, /area/station/security/armory) "tKL" = ( -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, +/obj/item/kirbyplants/plant24, /obj/machinery/light_switch/west{ pixel_y = 6 }, @@ -80252,6 +80045,16 @@ /obj/effect/turf_decal/delivery, /obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/classic/reversed{ + name = "Bar Delivery"; + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/bar{ + dir = 8 + }, /turf/simulated/floor/wood, /area/station/service/bar) "tNe" = ( @@ -80285,7 +80088,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "tOF" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -80342,12 +80145,12 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/magistrate, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/command/magistrate, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -80382,6 +80185,7 @@ /area/station/legal/lawoffice) "tRD" = ( /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -80396,11 +80200,10 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/tox_storage, /obj/machinery/door/firedoor/heavy{ opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -80479,12 +80282,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/command/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkblue" @@ -80611,12 +80414,12 @@ /area/station/security/permabrig) "tYV" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ pixel_x = -7; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/cans/beer, /obj/machinery/economy/vending/wallmed/directional/north, /turf/simulated/floor/wood, /area/station/maintenance/apmaint) @@ -80660,7 +80463,7 @@ /area/station/maintenance/fore) "uaH" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "uaJ" = ( @@ -80682,7 +80485,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 8 }, /turf/simulated/floor/plasteel, @@ -80908,6 +80711,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "ugu" = ( @@ -80996,12 +80800,11 @@ dir = 4; name = "Bar Glass Door" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/woodsiding{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/bar{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/bar{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -81116,11 +80919,6 @@ /obj/structure/plasticflaps{ opacity = 1 }, -/obj/machinery/door/window/classic/reversed{ - name = "Bar Delivery" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/bar, /turf/simulated/floor/plasteel, /area/station/maintenance/starboard) "ule" = ( @@ -81370,9 +81168,8 @@ }, /area/station/security/main) "uta" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "utu" = ( @@ -81414,7 +81211,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/command, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -81502,9 +81300,9 @@ /area/station/engineering/atmos) "uxR" = ( /obj/machinery/door/airlock/research, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -81633,12 +81431,6 @@ icon_state = "darkblue" }, /area/station/medical/break_room) -"uAz" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "uAA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -81652,7 +81444,7 @@ dir = 4 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/hydroponics{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -81741,11 +81533,11 @@ opacity = 0 }, /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/tox, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -81806,6 +81598,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood, /area/station/service/bar) "uFM" = ( @@ -81921,14 +81714,14 @@ "uJy" = ( /obj/machinery/door/airlock/external{ id_tag = "laborcamp_home"; - locked = 1; - name = "Labor Camp Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/station/security/permabrig) "uJF" = ( @@ -82020,9 +81813,9 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -82040,7 +81833,7 @@ dir = 1; name = "Glass Door" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/rd{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/rd{ dir = 1 }, /turf/simulated/floor/engine, @@ -82245,7 +82038,7 @@ /obj/effect/turf_decal/tile/purple{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/research{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -82300,9 +82093,8 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "uQo" = ( -/obj/machinery/door/airlock/wood{ - name = "The Gobetting Barmaid" - }, +/obj/machinery/door/airlock/wood, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "uQU" = ( @@ -82316,10 +82108,8 @@ }, /area/station/security/main) "uRN" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -82327,10 +82117,16 @@ id_tag = "transittube"; name = "Transit Tube Blast Door" }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "uRO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -82453,7 +82249,7 @@ /obj/machinery/door/airlock/security/glass{ id_tag = "innerbrig" }, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ @@ -82466,9 +82262,8 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/brig) "uUG" = ( @@ -82487,8 +82282,8 @@ /area/station/hallway/primary/central) "uUI" = ( /obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, /obj/effect/turf_decal/woodsiding, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -82547,6 +82342,7 @@ "uVF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ @@ -82554,8 +82350,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -82575,7 +82370,6 @@ name = "Court Cell" }, /obj/machinery/light/small/directional/west, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, /turf/simulated/floor/plasteel{ icon_state = "darkred" }, @@ -82731,9 +82525,8 @@ /turf/simulated/floor/grass/no_creep, /area/station/hallway/secondary/garden) "uYF" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Sanitarium" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -82747,7 +82540,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -82779,7 +82572,7 @@ name = "Containment Pen #8"; dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 4 }, /turf/simulated/floor/engine, @@ -82806,6 +82599,7 @@ /area/station/security/permabrig) "uZG" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -82817,7 +82611,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "uZP" = ( @@ -83045,13 +82838,6 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 }, -/obj/machinery/access_button{ - autolink_id = "arrivalsmaint_btn_int"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "13" - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -83203,6 +82989,7 @@ /obj/structure/chair/stool{ dir = 8 }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "vjL" = ( @@ -83247,20 +83034,19 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard) "vkT" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Space Bridge" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, /obj/machinery/door/poddoor/preopen{ id_tag = "xeno_blastdoor"; name = "biohazard containment door" }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -83280,9 +83066,9 @@ /area/station/maintenance/fsmaint) "vmA" = ( /obj/machinery/door/airlock/security{ - id_tag = "prisonereducation"; - name = "Execution Room" + id_tag = "prisonereducation" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -83295,7 +83081,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/station/security/execution) "vmK" = ( @@ -83415,15 +83201,15 @@ /area/station/security/detective) "voT" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 4; pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 6; pixel_y = -1 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -4; pixel_y = 6 }, @@ -83436,18 +83222,17 @@ /area/station/maintenance/starboard2) "voV" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/pie, +/obj/item/food/snacks/pie, /obj/machinery/door/window/classic/normal{ name = "Kitchen" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "kitchen_counter"; name = "Kitchen Counter Shutters" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -83549,6 +83334,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "vrH" = ( @@ -83566,15 +83352,14 @@ }, /area/station/legal/courtroom) "vrO" = ( -/obj/machinery/access_button{ - autolink_id = "atmossouth_btn_ext"; - name = "exterior access button"; - pixel_x = -25; - pixel_y = 7; - req_access_txt = "24;13" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/court, +/turf/simulated/floor/plasteel{ + icon_state = "dark" }, -/turf/simulated/floor/plating/airless, -/area/station/engineering/atmos) +/area/station/legal/courtroom) "vrZ" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 1 @@ -83721,7 +83506,7 @@ /obj/machinery/door/window/classic/reversed{ name = "Containment Pen #2" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/science/xenobiology) "vvF" = ( @@ -83754,10 +83539,10 @@ /area/station/engineering/atmos) "vwA" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/chips{ +/obj/item/food/snacks/chips{ pixel_x = 8 }, -/obj/item/reagent_containers/food/drinks/cans/thirteenloko{ +/obj/item/reagent_containers/drinks/cans/thirteenloko{ pixel_x = -6; pixel_y = 6 }, @@ -83847,7 +83632,7 @@ /area/station/medical/reception) "vzd" = ( /obj/machinery/light/directional/south, -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /obj/effect/turf_decal/delivery/blue, /turf/simulated/floor/plasteel{ dir = 1; @@ -83976,12 +83761,12 @@ }, /obj/machinery/door/airlock/research/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, /obj/effect/turf_decal/delivery/hollow, /obj/machinery/door/poddoor/preopen{ id_tag = "Xenolab"; name = "test chamber blast door" }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/engine, /area/station/science/test_chamber) "vCR" = ( @@ -84336,9 +84121,6 @@ name = "Inner Pipe Access"; dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/atmos{ - dir = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -84420,15 +84202,15 @@ "vSE" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, -/obj/item/reagent_containers/food/drinks/tea{ +/obj/item/reagent_containers/drinks/tea{ pixel_x = 7; pixel_y = 1 }, -/obj/item/reagent_containers/food/drinks/tea{ +/obj/item/reagent_containers/drinks/tea{ pixel_x = -5; pixel_y = 9 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = -5 }, /turf/simulated/floor/plasteel/dark, @@ -84558,12 +84340,11 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/maintenance/port) +/area/station/hallway/primary/central) "vWd" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Prison Showers" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -84576,6 +84357,7 @@ /area/station/security/permabrig) "vWk" = ( /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -84590,7 +84372,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) @@ -85022,9 +84803,8 @@ }, /area/station/security/execution) "wjs" = ( -/obj/machinery/door/airlock/centcom{ - name = "Cell 1" - }, +/obj/machinery/door/airlock/centcom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -85086,14 +84866,13 @@ /turf/simulated/floor/plating, /area/station/science/robotics) "wky" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/engine, /area/station/engineering/control) "wkL" = ( @@ -85187,7 +84966,7 @@ /area/station/security/prisonlockers) "wnD" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ dir = 1 @@ -85306,7 +85085,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "wsu" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -85327,8 +85106,8 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "wsN" = ( @@ -85424,6 +85203,7 @@ /area/station/supply/storage) "wtQ" = ( /obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -85432,11 +85212,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/science/tox, /obj/machinery/door/firedoor/heavy{ opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -85942,17 +85721,16 @@ /turf/simulated/floor/plating, /area/station/command/office/hos) "wHz" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -85970,7 +85748,7 @@ name = "Mass Driver Control Door"; dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/tox{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 1 }, /turf/simulated/floor/plasteel{ @@ -86005,7 +85783,7 @@ name = "Containment Pen #8"; dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -86033,6 +85811,10 @@ /mob/living/simple_animal/mouse, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"wLY" = ( +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "wMb" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -86156,7 +85938,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/purple, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/research{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -86312,6 +86094,7 @@ "wTc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -86326,8 +86109,8 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, /turf/simulated/floor/plasteel{ icon_state = "whiteyellowfull" }, @@ -86364,13 +86147,11 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/engimaint) "wUE" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/machinery/door/poddoor/preopen{ id_tag = "bridge blast"; name = "Bridge Blast Doors" @@ -86380,6 +86161,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -86391,7 +86173,7 @@ /obj/effect/mapping_helpers/airlock/windoor/autoname{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/command/captain{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ dir = 1 }, /turf/simulated/floor/wood, @@ -86493,13 +86275,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, /obj/machinery/door/airlock/virology{ autoclose = 0; id_tag = "viro_door_int"; - locked = 1; - name = "Virology Lab Internal Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -86624,16 +86406,15 @@ /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6 }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "caution" @@ -86673,14 +86454,13 @@ /turf/simulated/wall, /area/station/science/toxins/mixing) "xbt" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/wood, /area/station/service/theatre) "xbu" = ( @@ -86720,14 +86500,10 @@ dir = 1 }, /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "xbT" = ( -/obj/machinery/access_button/east{ - autolink_id = "enginesm_btn_int"; - name = "Supermatter Access Button"; - req_access_txt = "10" - }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -86773,14 +86549,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B" - }, +/obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -86825,9 +86600,8 @@ /area/station/science/research) "xef" = ( /obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/maintenance/fsmaint) "xen" = ( @@ -86916,7 +86690,7 @@ }, /obj/machinery/door/airlock/security, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -86956,7 +86730,6 @@ /obj/machinery/door/window/reinforced/normal{ name = "Justice Chamber" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/window/reinforced{ dir = 8 @@ -86968,15 +86741,16 @@ dir = 1; name = "Justice Chamber" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - dir = 1 - }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/poddoor/preopen{ id_tag = "executionfireblast" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig, /turf/simulated/floor/plasteel{ icon_state = "darkred" }, @@ -87058,10 +86832,8 @@ }, /area/station/medical/cryo) "xkR" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Auxiliary Chamber" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating/airless, /area/station/engineering/atmos) "xkX" = ( @@ -87164,9 +86936,6 @@ pixel_y = 8; anchored = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "whitepurplefull" }, @@ -87326,9 +87095,6 @@ /obj/machinery/conveyor/northeast/ccw{ id = "garbage" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/maintenance{ - dir = 4 - }, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "xrm" = ( @@ -87372,7 +87138,7 @@ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "xrS" = ( /obj/structure/chair/office/light{ dir = 8 @@ -87437,9 +87203,7 @@ }, /area/station/hallway/secondary/exit) "xtP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, +/obj/item/kirbyplants/plant21, /obj/structure/sign/botany{ pixel_x = 32 }, @@ -87552,15 +87316,22 @@ /obj/machinery/door/airlock/engineering/glass{ autoclose = 0; id_tag = "enginesm_door_ext"; - locked = 1; - name = "Supermatter Exterior Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/access_button/west{ + autolink_id = "enginesm_btn_ext"; + name = "Supermatter Access Button"; + pixel_x = 0; + pixel_y = 24; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -87611,11 +87382,13 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc/directional/west, +/obj/structure/cable/yellow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/break_room) +/area/station/engineering/ai_transit_tube) "xyc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -87642,6 +87415,16 @@ /area/station/medical/surgery/observation) "xyP" = ( /obj/effect/turf_decal/delivery, +/obj/machinery/door/window/classic/reversed{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id_tag = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/security/main) "xyQ" = ( @@ -87806,8 +87589,8 @@ locked = 1 }, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "xCF" = ( @@ -87925,23 +87708,22 @@ /area/station/hallway/primary/central) "xFW" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3 }, /obj/machinery/door/window/classic/reversed{ name = "Kitchen" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "kitchen_counter"; name = "Kitchen Counter Shutters" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/service/kitchen, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -88057,11 +87839,11 @@ /area/station/engineering/atmos) "xIx" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8; pixel_y = 1 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 11 }, @@ -88152,10 +87934,10 @@ /area/station/service/bar) "xLw" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3 }, /obj/structure/window/reinforced{ @@ -88172,15 +87954,15 @@ /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/aft) "xLH" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -88188,6 +87970,7 @@ name = "Quarantine Lockdown"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/medmaint) "xLY" = ( @@ -88332,13 +88115,13 @@ "xOI" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/port) "xPh" = ( @@ -88497,10 +88280,27 @@ icon_state = "dark" }, /area/station/security/storage) +"xSl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) "xSv" = ( /obj/effect/landmark/damageturf, /turf/simulated/floor/plating, /area/station/maintenance/engimaint) +"xTz" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/artist, +/turf/simulated/floor/wood, +/area/station/service/library) "xTH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -88610,11 +88410,6 @@ /turf/simulated/floor/plating, /area/station/security/prison/cell_block/A) "xWl" = ( -/obj/machinery/access_button/west{ - autolink_id = "enginesm_btn_ext"; - name = "Supermatter Access Button"; - req_access_txt = "10" - }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -88771,10 +88566,7 @@ name = "MuleBot Access"; dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/maintenance{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ dir = 1 }, /turf/simulated/floor/plating, @@ -88796,7 +88588,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -88807,9 +88598,10 @@ /obj/machinery/door/airlock/virology{ autoclose = 0; id_tag = "viro_door_ext"; - locked = 1; - name = "Virology Lab External Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -88930,9 +88722,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/science/xenobio{ - dir = 8 - }, /turf/simulated/floor/plasteel, /area/station/science/xenobiology) "ybI" = ( @@ -88961,9 +88750,9 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/medical/glass, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -89154,7 +88943,7 @@ }, /obj/machinery/door/airlock/security, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -89197,6 +88986,12 @@ }, /turf/simulated/floor/wood, /area/station/science/robotics/showroom) +"yhp" = ( +/obj/effect/landmark/start/bath, +/turf/simulated/floor/plasteel{ + icon_state = "darkneutralfull" + }, +/area/station/public/fitness) "yhM" = ( /obj/structure/cable{ d2 = 4; @@ -89267,6 +89062,7 @@ /obj/machinery/door/window{ name = "Permabrig Kitchen" }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -89326,12 +89122,6 @@ name = "Anti-Theft Shield"; dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ - dir = 1 - }, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "hydro_service"; @@ -89341,8 +89131,27 @@ name = "Hydroponics Window" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/station/service/hydroponics) +"ylN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/stool, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/wood, +/area/station/service/bar) "ylO" = ( /obj/structure/disposalpipe/sortjunction{ dir = 8; @@ -100016,9 +99825,9 @@ aUY aZk myY cmu -bdR +aZj vkL -bdR +aZj bip bkb blS @@ -100026,9 +99835,9 @@ blS blS bkb bip -bdR +aZj bzw -bdR +aZj eGG bFe aJv @@ -101815,9 +101624,9 @@ aXX vaO tjR cmu -bdR +aZj vkL -bdR +aZj bip bkb mXy @@ -101825,9 +101634,9 @@ mXy mXy bkb bip -bdR +aZj bzw -bdR +aZj bOz bFG aJv @@ -101845,7 +101654,7 @@ cdT cdT aef aef -tkm +aef aef aef aaa @@ -103651,7 +103460,7 @@ ceV cMR ctO ckK -cjE +euM oqk cMR cCn @@ -105160,7 +104969,7 @@ pqM cXt pqM pqM -bkr +pGq pqM pqM cZK @@ -106976,7 +106785,7 @@ fDi wMb ddM bOl -dnY +ejD bTY bVR bTY @@ -107458,7 +107267,7 @@ aVl aVl jyW ueF -aCH +ueF eak aKi aRo @@ -107968,7 +107777,7 @@ aMq aOB aOB aOB -aOB +aVl aPw aMW azN @@ -108225,12 +108034,12 @@ bgA bmi fuy rwj -aOB +aVl aLS aMZ odb aNm -aZt +aVl aSz aYl aRo @@ -108451,7 +108260,7 @@ aaa gjF bQZ adi -adi +wLY adi aJM abW @@ -108739,12 +108548,12 @@ aEM aDz pGU aAP -aOB -aOB -aOB -aOB -aOB -aZt +aVl +aVl +aVl +aVl +aVl +aVl aZt uKy aUt @@ -108770,7 +108579,7 @@ bai bBP bPZ bme -bHr +xTz bIZ bHr bFw @@ -109734,7 +109543,7 @@ toU xIx pUU ile -xPZ +gvt jzA ezq qdT @@ -109771,7 +109580,7 @@ abq aOB bmw aNX -bcu +nfB gqF aWO aSK @@ -110073,11 +109882,11 @@ yaB cLN bZP bZP -pCo +cpz bZP bZP bZP -cpz +bQa bZP csP cue @@ -110257,7 +110066,7 @@ udK odW kRm udK -mOC +kRm odW abW abW @@ -110800,7 +110609,7 @@ rrq wpu aRG aZt -jap +aCH jap aZt aZt @@ -111095,7 +110904,7 @@ bzK qAr bXS bzK -cdT +bZu vWb fmG cRU @@ -111268,22 +111077,22 @@ laH aaa uMy lNt -atF +dYk ixy pcD gcI -wXi +hsT udK vCe gMp -vCe +nWX aOB lCA adY adY -qGw -adi +uaH adi +wLY pqL kiH nEJ @@ -112055,7 +111864,7 @@ kbN kbN teN kkP -owq +ttb gKl taf hpp @@ -112311,7 +112120,7 @@ wYk axz kbN teN -kkP +oKu owq apK jRX @@ -114196,7 +114005,7 @@ eFH cvo cvo cvo -cRu +cAi cvo cvo cvo @@ -114360,7 +114169,7 @@ aaa ajo ipz fKW -atF +oWv atF pot tAy @@ -114404,7 +114213,7 @@ qaB aUl uLQ aZx -aOG +oxy bcl aZL bgF @@ -115138,7 +114947,7 @@ adi abW abW abW -iYm +cXZ abW cXZ abW @@ -115487,7 +115296,7 @@ hgW cQt cLd cLd -cAi +nKU cLd cLd cLd @@ -117062,7 +116871,7 @@ bVX jSC sNH cLn -cXz +tkm aaa aaa aaa @@ -117318,7 +117127,7 @@ cUC jYM bec jYM -cXz +tkm jYM aaa aaa @@ -118329,7 +118138,7 @@ cLl cLl cLl gBM -dTT +dnY csc drN wgh @@ -119535,7 +119344,7 @@ abZ abZ aZU aNC -aMm +vrO aNC aOS aOQ @@ -122186,7 +121995,7 @@ gJg gJg dbE rpG -hHA +dTT vZo vZo vZo @@ -122647,7 +122456,7 @@ byI mZL bCv bEv -bHO +jAY udl bJH bLx @@ -122698,7 +122507,7 @@ cOp cOp cOp cOp -bIm +dnY cOp cOp cOp @@ -122872,7 +122681,7 @@ ajg awM dHU fpy -aFy +xSl aAJ aAJ oEt @@ -122924,7 +122733,7 @@ cda cda cda ciC -cjV +lFv fLJ cmB cnF @@ -123671,7 +123480,7 @@ wwo uUI dbp bwC -bAv +lsc apa kMy bEv @@ -124138,7 +123947,7 @@ aaa aaa ajg ajg -cZz +aFy aoh cZo hdo @@ -124725,7 +124534,7 @@ bYA ckS cte csg -jyT +csh coI cte ima @@ -124958,7 +124767,7 @@ bsm bsm bsm bAx -bCC +ylN bau bvz bGi @@ -124985,7 +124794,7 @@ cPQ cte cte cte -jyT +csh cte clC cwG @@ -125245,7 +125054,7 @@ dcj cLF cte cte -jyT +csh cmB cmB cmB @@ -125426,9 +125235,9 @@ ajg oUI akj ald +kJS aio -aio -aio +yhp apW arm aDd @@ -125476,7 +125285,7 @@ bCF ljZ nwx bEv -bHO +jAY eNT soT pWX @@ -125940,9 +125749,9 @@ ajg ajn akl ald +yhp aio -aio -aio +kJS apW aro mKy @@ -127016,7 +126825,7 @@ aLC wQe bLv bHW -bHW +qoi bHX kZl xbt @@ -127252,7 +127061,7 @@ wAw swh dAH aGU -dvY +apV nET nET aUI @@ -127545,7 +127354,7 @@ aoG bYE aoG aoG -uAz +dpT aoG dcx cFq @@ -129343,7 +129152,7 @@ aDa kry asJ asJ -aAL +bln cfy asJ aoG @@ -132146,7 +131955,7 @@ bjN bjN bnt xrx -auq +bpn lQJ gYM hHE @@ -132405,12 +132214,12 @@ nmh aLw pKi aiE -bnt -bnt -bnt -bnt -bnt -bnt +auq +auq +auq +auq +auq +auq iRu mpP skc @@ -132919,7 +132728,7 @@ bnt xYR nCm tyW -bnt +auq hkm tNQ mAZ @@ -133165,7 +132974,7 @@ aOe tVw gpj tAn -nfB +bbC nEU mdN mLC @@ -133180,7 +132989,7 @@ wUa bsI bxx bly -bnt +auq qZz iRu fmo @@ -133437,7 +133246,7 @@ wUa dIn sls hEA -bnt +auq ncA iRu yif @@ -133694,7 +133503,7 @@ sTM jKS aXO aXO -bnt +auq qkC iRu ciD @@ -133938,7 +133747,7 @@ kGw dea oXB aCg -lFv +aef aef aef aef @@ -133951,7 +133760,7 @@ sTM fiT abq abq -bQa +abq aef iRu iRu @@ -135260,7 +135069,7 @@ bCM abq pln qbf -vrO +qbf qbf qbf qbf @@ -143457,7 +143266,7 @@ bqX bri bri bri -gXj +cQP bri bBl bxb diff --git a/_maps/map_files220/RandomRuins/LavaRuins/ash_old.dmm b/_maps/map_files220/RandomRuins/LavaRuins/ash_old.dmm new file mode 100644 index 000000000000..ef76da2d8f33 --- /dev/null +++ b/_maps/map_files220/RandomRuins/LavaRuins/ash_old.dmm @@ -0,0 +1,942 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aH" = ( +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"bj" = ( +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/center/cracked, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"cp" = ( +/obj/structure/stone_tile/block, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"eN" = ( +/obj/structure/stone_tile/block/cracked, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"hn" = ( +/obj/effect/mapping_helpers/no_lava, +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jc" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jg" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jP" = ( +/turf/simulated/floor/lava/lava_land_surface, +/area/lavaland/surface/outdoors) +"kr" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lx" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/effect/mapping_helpers/no_lava, +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/item/circuitboard/prisoner, +/obj/item/circuitboard/chem_master{ + pixel_y = -5; + pixel_x = 2 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"nE" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/simulated/floor/lava/lava_land_surface, +/area/lavaland/surface/outdoors) +"nF" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"nH" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"nQ" = ( +/turf/simulated/wall/indestructible/boss, +/area/lavaland/surface/outdoors) +"nV" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/turf/simulated/floor/lava/lava_land_surface, +/area/lavaland/surface/outdoors) +"oo" = ( +/obj/effect/decal/remains/xeno, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"oA" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/cracked, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"py" = ( +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"pz" = ( +/obj/effect/baseturf_helper/asteroid/basalt, +/turf/simulated/wall/indestructible/boss, +/area/lavaland/surface/outdoors) +"pQ" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/simulated/floor/lava/lava_land_surface, +/area/lavaland/surface/outdoors) +"qp" = ( +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/effect/mapping_helpers/no_lava, +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/item/seeds/aloe, +/obj/item/seeds/potato{ + pixel_x = 5 + }, +/obj/item/seeds/cotton{ + pixel_x = -7 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"qF" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"sc" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/effect/mapping_helpers/no_lava, +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"tc" = ( +/obj/item/clothing/head/witchhunter_hat, +/obj/effect/decal/remains/human, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"tp" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"tq" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"tE" = ( +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/turf/simulated/floor/lava/lava_land_surface, +/area/lavaland/surface/outdoors) +"uj" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"uI" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"vW" = ( +/turf/simulated/mineral/volcanic/lava_land_surface, +/area/lavaland/surface/outdoors) +"wl" = ( +/obj/structure/table/wood, +/obj/item/spear/bonespear, +/obj/item/spear/bonespear{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/stone_tile/block/cracked, +/obj/effect/mapping_helpers/no_lava, +/obj/item/stack/sheet/bone{ + amount = 2 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"wv" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"wB" = ( +/turf/template_noop, +/area/template_noop) +"wH" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"wO" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"xc" = ( +/obj/item/flashlight/lantern{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/flashlight/lantern{ + pixel_x = -10 + }, +/obj/structure/stone_tile/block/cracked, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"yP" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/turf/simulated/floor/lava/lava_land_surface, +/area/lavaland/surface/outdoors) +"Bi" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Bv" = ( +/obj/structure/table/wood, +/obj/item/scythe/bone, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"CM" = ( +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Df" = ( +/obj/structure/stone_tile/block/cracked, +/turf/simulated/floor/lava/lava_land_surface, +/area/lavaland/surface/outdoors) +"EV" = ( +/obj/structure/stone_tile/block/cracked, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Fu" = ( +/turf/simulated/floor/lava/mapping_lava, +/area/lavaland/surface/outdoors) +"Hc" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Hl" = ( +/obj/structure/stone_tile/block/cracked, +/obj/effect/mapping_helpers/no_lava, +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Hu" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/item/mod/module/visor/night, +/obj/effect/mapping_helpers/no_lava, +/obj/structure/closet/crate/wooden/wooden_crate, +/obj/item/stack/sheet/mineral/diamond{ + amount = 4; + pixel_x = 4 + }, +/obj/item/stack/sheet/bone{ + amount = 2 + }, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"HL" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Io" = ( +/turf/simulated/wall/mineral/wood, +/area/lavaland/surface/outdoors) +"Jw" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"JR" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Kg" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/simulated/floor/lava/lava_land_surface, +/area/lavaland/surface/outdoors) +"Lo" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Mp" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Py" = ( +/obj/structure/stone_tile/surrounding/cracked{ + dir = 9 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Rm" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"RE" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Ta" = ( +/obj/structure/necropolis_gate, +/obj/structure/stone_tile/slab/burnt, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Tl" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Uc" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/burnt, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Ue" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"VT" = ( +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/turf/simulated/floor/lava/lava_land_surface, +/area/lavaland/surface/outdoors) +"Xz" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ZA" = ( +/obj/structure/stone_tile/slab, +/obj/effect/mapping_helpers/no_lava, +/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) + +(1,1,1) = {" +wB +vW +vW +vW +vW +vW +vW +vW +vW +vW +Mp +Mp +Mp +Mp +wB +wB +wB +wB +wB +wB +"} +(2,1,1) = {" +vW +vW +vW +vW +vW +vW +vW +vW +vW +Mp +Mp +Mp +Mp +Mp +Mp +wB +wB +wB +wB +wB +"} +(3,1,1) = {" +vW +vW +nQ +Io +Io +nQ +Io +nQ +nQ +Io +nQ +jg +nQ +Mp +Mp +Mp +wB +wB +wB +Fu +"} +(4,1,1) = {" +vW +vW +Fu +bj +Tl +nF +Tl +tp +Mp +uj +jg +Mp +Mp +Mp +Mp +Mp +wB +wB +Fu +wB +"} +(5,1,1) = {" +vW +vW +Fu +eN +VT +pQ +nV +Rm +nQ +kr +Hc +Mp +Io +Mp +Mp +Mp +wB +Fu +Fu +wB +"} +(6,1,1) = {" +vW +vW +Fu +py +Df +jP +Kg +wH +Ta +Mp +sc +jc +Mp +Mp +Mp +Mp +Fu +Fu +wB +wB +"} +(7,1,1) = {" +vW +Fu +Fu +cp +tE +nE +yP +wH +nQ +Mp +Mp +Uc +Mp +Io +Fu +Fu +Fu +Fu +wB +wB +"} +(8,1,1) = {" +vW +Fu +Fu +wO +Bi +Ue +Jw +Py +nQ +RE +oo +JR +Mp +Fu +Fu +Fu +Fu +wB +wB +wB +"} +(9,1,1) = {" +vW +Fu +Fu +nQ +nQ +Mp +Mp +nQ +pz +Mp +Mp +Mp +Fu +Fu +Io +Mp +Mp +wB +wB +wB +"} +(10,1,1) = {" +Fu +Fu +vW +vW +vW +nQ +wl +Bv +nQ +Mp +Fu +Fu +Fu +Fu +nQ +kr +Mp +wB +wB +wB +"} +(11,1,1) = {" +Fu +Fu +vW +vW +vW +nQ +Hl +wv +HL +Fu +Fu +Fu +Fu +Lo +JR +kr +Mp +wB +wB +wB +"} +(12,1,1) = {" +wB +Fu +Fu +Mp +vW +Mp +EV +wv +Fu +Fu +Fu +Fu +Fu +Fu +nQ +Mp +Mp +wB +wB +wB +"} +(13,1,1) = {" +wB +Fu +Fu +Mp +vW +Io +xc +Fu +Fu +Fu +oA +tq +Fu +Fu +Fu +Mp +Mp +wB +wB +wB +"} +(14,1,1) = {" +wB +Fu +Fu +Fu +Mp +Io +Fu +Fu +Fu +Mp +oo +ZA +CM +Fu +Fu +Mp +Mp +wB +wB +wB +"} +(15,1,1) = {" +wB +wB +Fu +Fu +Mp +Fu +Fu +Fu +nQ +nQ +Mp +Xz +nQ +Fu +Mp +Mp +Mp +wB +wB +wB +"} +(16,1,1) = {" +wB +wB +Fu +Fu +Fu +Fu +Fu +vW +nQ +qp +nH +uI +nQ +Mp +Mp +Mp +Mp +wB +wB +wB +"} +(17,1,1) = {" +wB +wB +Fu +Fu +Fu +Fu +vW +vW +Io +EV +tc +Hu +nQ +hn +vW +vW +Mp +wB +wB +wB +"} +(18,1,1) = {" +wB +wB +wB +Fu +Fu +Fu +vW +vW +nQ +aH +qF +lx +nQ +vW +vW +vW +vW +wB +wB +wB +"} +(19,1,1) = {" +wB +wB +wB +wB +Fu +Fu +vW +vW +nQ +nQ +nQ +nQ +nQ +vW +vW +wB +wB +wB +wB +wB +"} +(20,1,1) = {" +wB +wB +wB +wB +wB +Fu +Fu +vW +vW +vW +vW +vW +vW +vW +wB +wB +wB +wB +wB +wB +"} diff --git a/_maps/map_files220/RandomRuins/LavaRuins/cheesus_temple.dmm b/_maps/map_files220/RandomRuins/LavaRuins/cheesus_temple.dmm new file mode 100644 index 000000000000..88b930e59ec7 --- /dev/null +++ b/_maps/map_files220/RandomRuins/LavaRuins/cheesus_temple.dmm @@ -0,0 +1,1211 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aV" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"bd" = ( +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "fancy-wood-oak-broken2" + }, +/area/lavaland/surface/outdoors) +"be" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/mob/living/simple_animal/mouse, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"bI" = ( +/obj/machinery/light/directional/south, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"cn" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"cr" = ( +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"cV" = ( +/obj/effect/baseturf_helper/asteroid/basalt, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"dk" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"dm" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/ruin/unpowered/misc_lavaruin) +"dp" = ( +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"dq" = ( +/obj/effect/baseturf_helper/asteroid/basalt, +/turf/simulated/floor/wood/lavaland_air{ + icon = 'icons/turf/floors/grass.dmi'; + icon_state = "grass" + }, +/area/lavaland/surface/outdoors) +"dC" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"dF" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"ei" = ( +/obj/machinery/light/directional/south, +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"en" = ( +/obj/structure/chair/sofa/pew/left, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"eW" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/turf_decal/siding/yellow/corner, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"fk" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"fK" = ( +/obj/structure/table/wood/fancy/orange, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"gh" = ( +/obj/structure/table/wood/fancy/orange, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/item/food/snacks/sliceable/cheesecake, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"gV" = ( +/obj/structure/chair/sofa/pew, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"gX" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 6 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = -9 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"hZ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/effect/spawner/lootdrop/trash, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"js" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency/old{ + pixel_y = 6; + pixel_x = 4 + }, +/obj/item/storage/toolbox/mechanical/old{ + pixel_x = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/item/reagent_containers/condiment/enzyme{ + pixel_x = -11; + pixel_y = 9 + }, +/obj/item/reagent_containers/condiment/enzyme{ + pixel_x = -11; + pixel_y = 3 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"ks" = ( +/turf/simulated/floor/plasteel/stairs/right, +/area/ruin/unpowered/misc_lavaruin) +"kG" = ( +/obj/item/kirbyplants, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"ln" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"lv" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"lA" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 9; + pixel_x = 7 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/item/reagent_containers/condiment/enzyme{ + pixel_y = 5; + pixel_x = 9 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"mn" = ( +/obj/structure/table/wood/fancy/orange, +/obj/item/wrench, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"mo" = ( +/obj/machinery/light/directional/west, +/turf/simulated/floor/plasteel/stairs/left, +/area/ruin/unpowered/misc_lavaruin) +"mO" = ( +/obj/structure/table/wood/fancy/orange, +/obj/effect/spawner/lootdrop/maintenance, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"mU" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak{ + icon_state = "fancy-wood-oak-broken2" + }, +/area/ruin/unpowered/misc_lavaruin) +"nA" = ( +/mob/living/simple_animal/mouse, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"pm" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"pQ" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/lavaland_air, +/area/lavaland/surface/outdoors) +"qq" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak{ + icon_state = "fancy-wood-oak-broken2" + }, +/area/ruin/unpowered/misc_lavaruin) +"qw" = ( +/turf/simulated/wall/mineral/titanium/nodiagonal, +/area/lavaland/surface/outdoors) +"qK" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/mob/living/simple_animal/mouse, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"qQ" = ( +/obj/structure/table/wood/fancy/orange, +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/item/food/snacks/macncheese{ + pixel_y = 7 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"rC" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak{ + icon_state = "fancy-wood-oak-broken" + }, +/area/ruin/unpowered/misc_lavaruin) +"rW" = ( +/obj/effect/turf_decal/siding/yellow, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"st" = ( +/turf/simulated/floor/wood/fancy/oak{ + icon_state = "fancy-wood-oak-broken" + }, +/area/ruin/unpowered/misc_lavaruin) +"tw" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"tQ" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"uY" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak{ + icon_state = "fancy-wood-oak-broken2" + }, +/area/ruin/unpowered/misc_lavaruin) +"vk" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"vK" = ( +/turf/simulated/floor/wood/fancy/oak{ + icon_state = "fancy-wood-oak-broken2" + }, +/area/ruin/unpowered/misc_lavaruin) +"wp" = ( +/obj/structure/chair/comfy/yellow{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"wr" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"xk" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"xv" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"xT" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"yi" = ( +/obj/machinery/light/directional/north, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"yM" = ( +/obj/structure/table/wood/fancy/orange, +/obj/item/book/granter/spell/summon_cheese{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"zt" = ( +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "fancy-wood-oak-broken3" + }, +/area/lavaland/surface/outdoors) +"Am" = ( +/obj/structure/table/wood/fancy/orange, +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/item/reagent_containers/condiment/cheese_sauce{ + pixel_x = 1; + pixel_y = 7 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"AH" = ( +/obj/structure/table/wood/fancy/orange, +/obj/item/kirbyplants{ + pixel_y = 13 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Cn" = ( +/obj/effect/spawner/window/shuttle, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/ruin/unpowered/misc_lavaruin) +"CW" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"Dm" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"Eo" = ( +/turf/simulated/floor/plasteel/stairs/left, +/area/ruin/unpowered/misc_lavaruin) +"Ex" = ( +/obj/structure/table/wood/fancy/orange, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"EE" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/soda{ + pixel_y = 3; + dir = 8 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Gz" = ( +/mob/living/simple_animal/mouse, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Hh" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/item/food/snacks/vulpix/cheese{ + pixel_y = 6; + pixel_x = -9 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Hp" = ( +/obj/machinery/light/directional/north, +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"Hv" = ( +/turf/simulated/wall/mineral/titanium, +/area/ruin/unpowered/misc_lavaruin) +"HV" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"JG" = ( +/turf/simulated/floor/wood/fancy/oak{ + icon_state = "fancy-wood-oak-broken3" + }, +/area/ruin/unpowered/misc_lavaruin) +"Ka" = ( +/turf/template_noop, +/area/template_noop) +"Km" = ( +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "fancy-wood-oak" + }, +/area/lavaland/surface/outdoors) +"Md" = ( +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "fancy-wood-oak-broken" + }, +/area/lavaland/surface/outdoors) +"Nc" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"NG" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Ou" = ( +/obj/machinery/light/directional/east, +/turf/simulated/floor/plasteel/stairs/right, +/area/ruin/unpowered/misc_lavaruin) +"OJ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"OS" = ( +/obj/structure/chair/sofa/pew/right, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Ps" = ( +/obj/machinery/light/directional/north, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Sv" = ( +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Ud" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Uu" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"UX" = ( +/obj/structure/statue/cheese/cheesus, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Vn" = ( +/obj/structure/mineral_door/wood, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"VI" = ( +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak{ + icon_state = "fancy-wood-oak-broken2" + }, +/area/ruin/unpowered/misc_lavaruin) +"VZ" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating, +/area/ruin/unpowered/misc_lavaruin) +"Xw" = ( +/obj/structure/chair/comfy/yellow{ + dir = 8 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"XT" = ( +/obj/structure/table/wood/fancy/orange, +/obj/item/stack/sheet/cheese/fifteen{ + pixel_y = 7; + pixel_x = -7 + }, +/obj/item/stack/sheet/cheese/fifteen{ + pixel_y = 7; + pixel_x = 3 + }, +/obj/item/stack/sheet/cheese/fifteen{ + pixel_y = 11; + pixel_x = -2 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"Yy" = ( +/obj/structure/table/wood/fancy/orange, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/effect/spawner/random_spawners/dirt_maybe, +/obj/item/food/snacks/sliceable/cheesewheel, +/turf/simulated/floor/wood/fancy/oak, +/area/ruin/unpowered/misc_lavaruin) +"ZK" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_creep, +/area/ruin/unpowered/misc_lavaruin) +"ZV" = ( +/turf/simulated/floor/wood/lavaland_air{ + icon = 'icons/turf/floors/grass.dmi'; + icon_state = "grass" + }, +/area/lavaland/surface/outdoors) + +(1,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +"} +(2,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Km +Km +Ka +Ka +Ka +Ka +Ka +Ka +"} +(3,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Km +Md +pQ +ZV +Ka +Ka +Ka +Ka +Ka +"} +(4,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +ZV +ZV +pQ +zt +Km +qw +ZV +ZV +Ka +Ka +Ka +Ka +"} +(5,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +ZV +ZV +ZV +dm +Vn +Vn +dm +dm +dm +ZV +Ka +Ka +Ka +"} +(6,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +ZV +ZV +ZV +ZV +dm +Sv +Sv +Gz +fK +VZ +ZV +Ka +Ka +Ka +"} +(7,1,1) = {" +Ka +Ka +Ka +Ka +Ka +ZV +ZV +ZV +Ka +Ka +ZV +ZV +dq +ZV +dm +dm +Sv +vK +Ud +AH +Cn +ZV +ZV +Ka +Ka +"} +(8,1,1) = {" +Ka +Ka +Ka +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +dm +VZ +Cn +dm +mn +JG +Sv +Ud +Ex +VZ +dq +ZV +Ka +Ka +"} +(9,1,1) = {" +Ka +Ka +Ka +ZV +ZV +ZV +dm +VZ +Cn +VZ +VZ +dm +tw +cn +mo +Sv +Ud +cr +dm +dm +dm +dm +dm +Ka +Ka +"} +(10,1,1) = {" +Ka +Ka +ZV +ZV +dm +VZ +VZ +Dm +dF +dp +bI +dm +Uu +eW +ks +Sv +Ud +Sv +mO +dm +HV +js +dm +Ka +Ka +"} +(11,1,1) = {" +Ka +Ka +ZV +dm +dm +Hp +lv +gh +OJ +dk +dp +dm +qK +rW +Hv +dm +kG +Sv +mO +dm +Ud +gX +dm +Ka +Ka +"} +(12,1,1) = {" +Ka +Ka +Ka +VZ +dF +CW +vk +ln +rC +mU +cn +cn +pm +xT +Am +Hv +en +Ud +dm +dm +Vn +dm +dm +Ka +Ka +"} +(13,1,1) = {" +Ka +Ka +ZV +VZ +ZK +dp +yM +Ud +UX +Ud +Ex +Ud +Ud +cV +XT +VZ +gV +Ud +dm +kG +Sv +dm +dq +Ka +Ka +"} +(14,1,1) = {" +Ka +ZV +ZV +Cn +dp +lv +be +wr +Sv +tQ +Nc +Nc +wr +tQ +qQ +Hv +OS +Ud +dm +Ps +nA +dm +dm +Ka +Ka +"} +(15,1,1) = {" +Ka +ZV +ZV +dm +dm +Hp +dp +Yy +dC +NG +CW +dm +uY +qq +Hv +dm +kG +Ud +dm +Sv +Ud +wp +VZ +Ka +Ka +"} +(16,1,1) = {" +Ka +Ka +ZV +ZV +dm +Cn +Cn +xv +ZK +dF +ei +dm +aV +xk +Eo +Sv +Sv +Sv +Vn +st +VI +fk +VZ +Ka +Ka +"} +(17,1,1) = {" +Ka +Ka +ZV +ZV +ZV +ZV +dm +VZ +VZ +VZ +Cn +dm +hZ +dC +Ou +nA +Sv +Sv +Vn +Sv +Ud +Hh +Cn +Ka +Ka +"} +(18,1,1) = {" +Ka +Ka +Ka +ZV +Ka +ZV +ZV +ZV +ZV +ZV +ZV +dm +VZ +VZ +dm +mO +Sv +st +dm +Sv +cr +Xw +Cn +Ka +Ka +"} +(19,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +ZV +ZV +ZV +ZV +ZV +dq +ZV +dm +dm +Sv +Sv +dm +yi +Ud +dm +dm +Ka +Ka +"} +(20,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +ZV +ZV +ZV +ZV +dm +Sv +Sv +dm +EE +lA +dm +dq +Ka +Ka +"} +(21,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +ZV +ZV +ZV +ZV +dm +Vn +Vn +dm +dm +dm +dm +ZV +Ka +Ka +"} +(22,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +ZV +ZV +qw +Km +zt +qw +ZV +ZV +ZV +Ka +Ka +Ka +"} +(23,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +pQ +Md +bd +qw +ZV +ZV +Ka +Ka +Ka +Ka +"} +(24,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Km +Km +pQ +Ka +Ka +Ka +Ka +Ka +Ka +"} +(25,1,1) = {" +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +"} diff --git a/_maps/map_files220/RandomRuins/LavaRuins/old_outpost.dmm b/_maps/map_files220/RandomRuins/LavaRuins/old_outpost.dmm new file mode 100644 index 000000000000..8b38dee73496 --- /dev/null +++ b/_maps/map_files220/RandomRuins/LavaRuins/old_outpost.dmm @@ -0,0 +1,1982 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aD" = ( +/obj/item/stack/tile, +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"aR" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cautionfull" + }, +/area/ruin/unpowered/misc_lavaruin) +"bu" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"bw" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "browncorner"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"bE" = ( +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/item/mounted/frame/apc_frame{ + pixel_x = 3; + pixel_y = -8 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"cd" = ( +/obj/machinery/suit_storage_unit/lavaland, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"cJ" = ( +/turf/template_noop, +/area/template_noop) +"cU" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"dA" = ( +/obj/machinery/suit_storage_unit/lavaland, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"en" = ( +/turf/simulated/wall, +/area/ruin/unpowered/misc_lavaruin) +"fC" = ( +/obj/effect/decal/cleanable/glass, +/obj/structure/grille/broken, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"fG" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"fW" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"ga" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"gb" = ( +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"gu" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cautionfull" + }, +/area/ruin/unpowered/misc_lavaruin) +"gB" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"hi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown" + }, +/area/ruin/unpowered/misc_lavaruin) +"hp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "blue"; + dir = 9 + }, +/area/ruin/unpowered/misc_lavaruin) +"hx" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"hR" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"im" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"iO" = ( +/obj/structure/rack, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"jp" = ( +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/item/mounted/frame/apc_frame{ + pixel_x = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 9 + }, +/area/ruin/unpowered/misc_lavaruin) +"jw" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"jS" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"ko" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/storage/box/donkpockets/empty, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"kX" = ( +/obj/machinery/suit_storage_unit, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"ll" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"lz" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"lT" = ( +/obj/machinery/power/port_gen/pacman/mrs, +/obj/structure/cable/orange, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"lW" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"ms" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"nt" = ( +/obj/effect/spawner/window/shuttle, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"nz" = ( +/obj/effect/turf_decal/stripes/red/line, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"nE" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"ov" = ( +/obj/effect/decal/cleanable/glass, +/obj/structure/grille/broken, +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"oC" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/item/mounted/frame/apc_frame{ + pixel_x = 3; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"oU" = ( +/obj/machinery/door/airlock/external/glass, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium_yellow" + }, +/area/ruin/unpowered/misc_lavaruin) +"po" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"pu" = ( +/obj/structure/table_frame, +/obj/machinery/chem_dispenser/beer{ + pixel_y = 5 + }, +/obj/effect/mapping_helpers/machinery/destroyed, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cautionfull" + }, +/area/ruin/unpowered/misc_lavaruin) +"pv" = ( +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"qC" = ( +/obj/structure/safe/floor, +/obj/item/gun/energy/kinetic_accelerator/experimental, +/obj/item/reagent_containers/drinks/bottle/absinthe/premium, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/clothing/mask/cigarette/cigar, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cautionfull" + }, +/area/ruin/unpowered/misc_lavaruin) +"qP" = ( +/obj/item/shard{ + pixel_x = 11 + }, +/obj/structure/table, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cautionfull" + }, +/area/ruin/unpowered/misc_lavaruin) +"ra" = ( +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/item/mounted/frame/apc_frame{ + pixel_x = -16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"rp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cautionfull" + }, +/area/ruin/unpowered/misc_lavaruin) +"sh" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown" + }, +/area/ruin/unpowered/misc_lavaruin) +"su" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"sD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium_yellow" + }, +/area/ruin/unpowered/misc_lavaruin) +"sE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"tl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"tB" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"um" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/mining, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"uC" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"uF" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"uN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"vp" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"vs" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"vw" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium_yellow" + }, +/area/ruin/unpowered/misc_lavaruin) +"wt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"wA" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"xf" = ( +/obj/item/stack/sheet/metal, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"xr" = ( +/obj/structure/mecha_wreckage/ripley/firefighter, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"yA" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown" + }, +/area/ruin/unpowered/misc_lavaruin) +"yH" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"yR" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"zc" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 5 + }, +/area/ruin/unpowered/misc_lavaruin) +"zl" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"zW" = ( +/obj/item/stack/tile, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Ab" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Au" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"Bn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"CL" = ( +/obj/item/stack/sheet/metal, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"CO" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"Dt" = ( +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Du" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"DA" = ( +/turf/simulated/wall/mineral/titanium, +/area/ruin/unpowered/misc_lavaruin) +"DS" = ( +/obj/machinery/door/airlock/external/glass, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"DX" = ( +/obj/effect/spawner/window/shuttle, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Ea" = ( +/turf/simulated/floor/lava/mapping_lava, +/area/lavaland/surface/outdoors) +"Er" = ( +/obj/effect/spawner/window/reinforced/grilled, +/obj/effect/mapping_helpers/damaged_window, +/turf/simulated/floor/plating, +/area/ruin/unpowered/misc_lavaruin) +"Fc" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 10 + }, +/area/ruin/unpowered/misc_lavaruin) +"FF" = ( +/obj/machinery/computer/nonfunctional{ + dir = 4; + icon_state = "broken"; + icon_screen = "broken"; + icon_keyboard = "generic_key_broken" + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium_yellow" + }, +/area/ruin/unpowered/misc_lavaruin) +"FY" = ( +/obj/structure/mecha_wreckage/ripley/titan, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Gu" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"He" = ( +/obj/structure/table, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cautionfull" + }, +/area/ruin/unpowered/misc_lavaruin) +"HE" = ( +/obj/item/stack/tile, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "blue"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"Ic" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/ruin/unpowered/misc_lavaruin) +"Io" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"IC" = ( +/obj/machinery/suit_storage_unit/lavaland, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"IQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"Ke" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "cautionfull" + }, +/area/ruin/unpowered/misc_lavaruin) +"Kr" = ( +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"Lh" = ( +/obj/effect/baseturf_helper/asteroid/basalt, +/turf/simulated/wall, +/area/ruin/unpowered/misc_lavaruin) +"LE" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/delivery/hollow, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"LJ" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/obj/structure/grille/broken, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"LV" = ( +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/item/mounted/frame/apc_frame{ + pixel_x = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"LX" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"LZ" = ( +/obj/structure/closet/crate/freezer/iv_storage, +/obj/item/scalpel, +/obj/item/hemostat, +/obj/item/retractor, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "blue"; + dir = 6 + }, +/area/ruin/unpowered/misc_lavaruin) +"Mc" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Mm" = ( +/obj/machinery/door/airlock/external/glass, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Na" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"Nc" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Ne" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"Nr" = ( +/obj/structure/table_frame, +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Ny" = ( +/obj/machinery/suit_storage_unit, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 8 + }, +/area/ruin/unpowered/misc_lavaruin) +"NT" = ( +/obj/item/stack/sheet/metal, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown" + }, +/area/ruin/unpowered/misc_lavaruin) +"NW" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 1 + }, +/area/ruin/unpowered/misc_lavaruin) +"Oo" = ( +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"OH" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"OL" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium_yellow" + }, +/area/ruin/unpowered/misc_lavaruin) +"Py" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 6 + }, +/area/ruin/unpowered/misc_lavaruin) +"PS" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"QR" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating, +/area/ruin/unpowered/misc_lavaruin) +"Rs" = ( +/obj/machinery/suit_storage_unit, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "brown"; + dir = 4 + }, +/area/ruin/unpowered/misc_lavaruin) +"RE" = ( +/obj/machinery/door/airlock/mining, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"St" = ( +/obj/machinery/power/smes, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"Sy" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Td" = ( +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"TL" = ( +/obj/item/stack/tile, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"TW" = ( +/obj/effect/spawner/window/reinforced/grilled, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"TX" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"Ur" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"UL" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium_yellow" + }, +/area/ruin/unpowered/misc_lavaruin) +"Vc" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "blue"; + dir = 5 + }, +/area/ruin/unpowered/misc_lavaruin) +"Vn" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"WW" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/plasteel/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) +"Xu" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/external, +/obj/effect/mapping_helpers/machinery/damaged, +/turf/simulated/floor/catwalk, +/area/ruin/unpowered/misc_lavaruin) +"Zh" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plasteel/lavaland_air{ + icon_state = "titanium" + }, +/area/ruin/unpowered/misc_lavaruin) +"Zo" = ( +/obj/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/lavaland_air, +/area/ruin/unpowered/misc_lavaruin) + +(1,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(2,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(3,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +hx +en +en +en +hx +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(4,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +hx +St +Au +Na +lT +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(5,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +hx +OH +Dt +wt +Nc +en +DS +DS +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(6,1,1) = {" +cJ +cJ +cJ +nt +DX +DX +cJ +cJ +cJ +cJ +en +oC +TX +Na +Vn +en +Du +Dt +po +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(7,1,1) = {" +cJ +cJ +DX +nt +FF +nt +nt +cJ +cJ +hx +en +en +en +wt +OH +en +Dt +Dt +po +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(8,1,1) = {" +cJ +cJ +DA +UL +OL +OL +DA +cJ +cJ +en +uN +LX +Na +Na +fW +en +DS +Mm +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +Ea +cJ +cJ +"} +(9,1,1) = {" +cJ +cJ +DX +sD +vw +sD +nt +en +en +en +en +Xu +hx +hx +en +en +sE +hi +en +en +po +TW +en +en +Ea +Ea +Ea +Ea +cJ +cJ +"} +(10,1,1) = {" +cJ +cJ +oU +Ur +lz +gb +oU +Mm +Kr +IQ +IQ +Ab +Kr +vs +IQ +bE +Dt +yA +en +LV +pv +Du +TL +hx +Ea +Ea +cJ +cJ +cJ +cJ +"} +(11,1,1) = {" +cJ +cJ +oU +Ne +tl +nz +oU +Mm +Io +Dt +Bn +im +Gu +Gu +uF +PS +WW +hi +en +cU +Du +Dt +Ea +Ea +Ea +cJ +cJ +cJ +cJ +cJ +"} +(12,1,1) = {" +cJ +cJ +nt +LE +Zh +gB +DX +en +en +en +hx +en +QR +Er +en +Lh +bu +nE +Mc +lW +Ea +Ea +Ea +Ea +cJ +cJ +cJ +cJ +cJ +cJ +"} +(13,1,1) = {" +cJ +cJ +DA +LE +ms +wA +DA +cJ +cJ +cJ +en +wt +aR +rp +gu +en +NW +zW +hx +Ea +Ea +Ea +su +LJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(14,1,1) = {" +cJ +cJ +DA +fG +jw +vp +DA +cJ +cJ +cJ +en +rp +ko +aD +rp +Ic +CL +Dt +Ea +Ea +Ea +yR +jS +ga +cJ +cJ +cJ +cJ +cJ +cJ +"} +(15,1,1) = {" +cJ +cJ +DA +yH +yH +yH +DA +cJ +cJ +cJ +Er +rp +He +Ke +Dt +Ic +cU +Ea +Ea +Ea +ll +Dt +Du +en +cJ +cJ +cJ +cJ +cJ +cJ +"} +(16,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +Er +wt +gu +rp +wt +Td +Ea +Ea +Ea +hx +hx +hx +en +en +cJ +cJ +cJ +cJ +cJ +cJ +"} +(17,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +hx +qP +wt +wt +uC +Ea +Ea +Ea +hx +dA +Ny +kX +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(18,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +fC +pu +wt +aR +Ea +Ea +Ea +yA +hx +Du +pv +Du +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(19,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +ov +Nr +qC +Ea +Ea +Ea +CO +Dt +Td +Du +iO +Oo +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(20,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +hx +Ea +Ea +Ea +Ea +Ea +NW +Dt +en +pv +Du +Du +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(21,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +Ea +Ea +Ea +Ea +Ea +hx +NW +NT +en +cd +IC +Rs +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(22,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +Ea +Ea +Ea +Ea +Ea +Ea +Ea +hx +xf +yA +en +en +en +en +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(23,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +Ea +Ea +Ea +Ea +Ea +yR +hx +hx +Ab +Dt +en +hp +tB +LJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(24,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +Ea +Ea +Ea +Ea +Ea +hx +xr +zl +um +Sy +Du +RE +HE +Zo +po +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(25,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +Ea +Ea +Ea +Ea +cJ +hx +Dt +ra +Lh +CO +Dt +en +Vc +LZ +po +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(26,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +Ea +Ea +Ea +Ea +cJ +cJ +en +Du +Du +en +NW +yA +en +en +en +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(27,1,1) = {" +cJ +cJ +cJ +cJ +cJ +Ea +Ea +Ea +cJ +cJ +cJ +cJ +en +FY +hR +en +NW +Dt +en +jp +Fc +TW +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(28,1,1) = {" +cJ +cJ +cJ +Ea +Ea +Ea +cJ +cJ +cJ +cJ +cJ +cJ +en +po +po +en +NW +Dt +en +NW +sh +po +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(29,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +Mm +Du +zW +Mm +bw +nE +um +zc +Py +TW +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(30,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +Mm +Dt +Du +DS +Bn +Bn +en +ov +TW +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(31,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +en +TW +po +en +po +po +en +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(32,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} +(33,1,1) = {" +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +"} diff --git a/_maps/map_files220/RandomRuins/LavaRuins/scp_facility.dmm b/_maps/map_files220/RandomRuins/LavaRuins/scp_facility.dmm index e1b05fa340bd..18ee3af06a63 100644 --- a/_maps/map_files220/RandomRuins/LavaRuins/scp_facility.dmm +++ b/_maps/map_files220/RandomRuins/LavaRuins/scp_facility.dmm @@ -23,7 +23,7 @@ "bp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, -/obj/item/reagent_containers/food/drinks/britcup, +/obj/item/reagent_containers/drinks/britcup, /turf/simulated/floor/plating/lavaland_air, /area/ruin/unpowered/misc_lavaruin) "bx" = ( @@ -787,7 +787,7 @@ /area/ruin/unpowered/misc_lavaruin) "Hl" = ( /obj/structure/table/glass/plasma, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 6 }, /obj/effect/decal/cleanable/dust, diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/convoy_ambush.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/convoy_ambush.dmm index 4c13408974c2..9b77f2adec06 100644 --- a/_maps/map_files220/RandomRuins/SpaceRuins/convoy_ambush.dmm +++ b/_maps/map_files220/RandomRuins/SpaceRuins/convoy_ambush.dmm @@ -435,8 +435,8 @@ /area/ruin/space/unpowered/unpowered_structures) "uW" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 5; pixel_y = -2 }, @@ -485,7 +485,7 @@ }, /area/ruin/space/unpowered/unpowered_structures) "vV" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_keyboard = "syndie_key"; icon_screen = "syndinavigation" @@ -728,9 +728,9 @@ /obj/machinery/light/small/directional/east, /obj/effect/turf_decal/delivery/white, /obj/structure/closet/cardboard, -/obj/item/reagent_containers/food/snacks/chinese/chowmein, -/obj/item/reagent_containers/food/snacks/chinese/chowmein, -/obj/item/reagent_containers/food/snacks/chinese/rice, +/obj/item/food/snacks/chinese/chowmein, +/obj/item/food/snacks/chinese/chowmein, +/obj/item/food/snacks/chinese/rice, /obj/item/stack/spacecash/c20, /obj/item/stack/spacecash/c10, /turf/simulated/floor/plasteel/airless{ @@ -791,8 +791,8 @@ "HA" = ( /obj/effect/turf_decal/delivery/white, /obj/structure/closet/cardboard, -/obj/item/reagent_containers/food/snacks/chinese/rice, -/obj/item/reagent_containers/food/snacks/chinese/chowmein, +/obj/item/food/snacks/chinese/rice, +/obj/item/food/snacks/chinese/chowmein, /obj/item/reagent_containers/pill/methamphetamine, /obj/item/reagent_containers/pill/methamphetamine, /obj/item/reagent_containers/pill/methamphetamine, @@ -1155,10 +1155,10 @@ "UE" = ( /obj/effect/turf_decal/delivery/white, /obj/structure/closet/cardboard, -/obj/item/reagent_containers/food/snacks/chinese/rice, -/obj/item/reagent_containers/food/snacks/chinese/chowmein, -/obj/item/reagent_containers/food/snacks/chinese/chowmein, -/obj/item/reagent_containers/food/snacks/chinese/rice, +/obj/item/food/snacks/chinese/rice, +/obj/item/food/snacks/chinese/chowmein, +/obj/item/food/snacks/chinese/chowmein, +/obj/item/food/snacks/chinese/rice, /obj/item/stack/spacecash/c100, /turf/simulated/floor/plasteel/airless{ icon_state = "dark" diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/infected_ship.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/infected_ship.dmm index 3ca5f9dda489..37ae9e4d34f5 100644 --- a/_maps/map_files220/RandomRuins/SpaceRuins/infected_ship.dmm +++ b/_maps/map_files220/RandomRuins/SpaceRuins/infected_ship.dmm @@ -375,7 +375,7 @@ name = "microwave"; pixel_y = 9 }, -/obj/item/reagent_containers/food/snacks/syndidonkpocket{ +/obj/item/food/snacks/syndidonkpocket{ pixel_x = -7 }, /turf/simulated/floor/plasteel{ @@ -801,8 +801,8 @@ /area/ruin/space/powered/requires_power_space) "rG" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -5; pixel_y = 9 }, @@ -832,8 +832,8 @@ /area/ruin/space/powered/requires_power_space) "sj" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat/corgi, -/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi, /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/plasteel/freezer, /area/ruin/space/powered/requires_power_space) @@ -1226,7 +1226,7 @@ "Ge" = ( /obj/structure/table/wood, /obj/item/trash/plate, -/obj/item/reagent_containers/food/snacks/syndidonkpocket{ +/obj/item/food/snacks/syndidonkpocket{ pixel_y = 14; pixel_x = 6 }, @@ -1467,7 +1467,7 @@ /turf/simulated/floor/plating, /area/ruin/space/powered/requires_power_space) "NP" = ( -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /obj/item/wrench, /turf/simulated/floor/plating, /area/ruin/space/powered/requires_power_space) diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/mechtransport_new.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/mechtransport_new.dmm index 422477455600..0e730c03fc1f 100644 --- a/_maps/map_files220/RandomRuins/SpaceRuins/mechtransport_new.dmm +++ b/_maps/map_files220/RandomRuins/SpaceRuins/mechtransport_new.dmm @@ -304,7 +304,7 @@ /turf/simulated/floor/mineral/titanium, /area/ruin/space/powered) "hM" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4; icon_keyboard = "syndie_key"; icon_screen = "syndinavigation" @@ -375,7 +375,7 @@ /area/ruin/space/powered) "jq" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -4; pixel_y = 6 }, @@ -612,7 +612,7 @@ /turf/simulated/floor/mineral/titanium, /area/ruin/space/powered) "ob" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /obj/effect/decal/cleanable/dirt, @@ -771,7 +771,7 @@ /area/ruin/space/powered) "rZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 4; pixel_y = 4; volume = 0 @@ -906,7 +906,7 @@ /turf/simulated/floor/plating, /area/ruin/space/powered) "vo" = ( -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 4; pixel_y = 4 }, @@ -1120,7 +1120,7 @@ /turf/simulated/floor/plating/airless, /area/ruin/space/powered) "zy" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "entertainment_console"; pixel_y = 32; icon_screen = "entertainment_console_broken"; @@ -1348,7 +1348,7 @@ /area/ruin/space/powered) "DE" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "entertainment_console"; pixel_y = 32; icon_screen = "entertainment_console_broken"; @@ -1516,7 +1516,7 @@ /obj/machinery/light/spot{ dir = 1 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ list_reagents = list("coffee"=0); pixel_x = 10; pixel_y = 7 @@ -1603,7 +1603,7 @@ /turf/simulated/floor/bluegrid, /area/ruin/space/powered) "Hn" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ name = "shuttle control console"; desc = "The screen dims greens with an ERROR message. It looks completely unusable." }, @@ -1675,7 +1675,7 @@ /turf/simulated/floor/mineral/titanium/yellow, /area/ruin/space/powered) "II" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ name = "exosuit control console"; desc = "The screen dims green with a bright ERROR message. It looks completely unusable." }, @@ -2091,7 +2091,7 @@ /turf/simulated/floor/plating, /area/ruin/space/powered) "QS" = ( -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 4; pixel_y = 4; volume = 0 @@ -2121,8 +2121,8 @@ /area/ruin/space/powered) "RM" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = 9; pixel_y = -3 @@ -2346,17 +2346,17 @@ "VB" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/cardboard, -/obj/item/reagent_containers/food/snacks/baguette, -/obj/item/reagent_containers/food/snacks/baguette, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/candy/candybar, -/obj/item/reagent_containers/food/snacks/candy/candybar, -/obj/item/reagent_containers/food/snacks/candy/candybar, -/obj/item/reagent_containers/food/snacks/candy/taffy, +/obj/item/food/snacks/baguette, +/obj/item/food/snacks/baguette, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/effect/decal/cleanable/dirt, +/obj/item/food/snacks/candy/candybar, +/obj/item/food/snacks/candy/candybar, +/obj/item/food/snacks/candy/candybar, +/obj/item/food/snacks/candy/taffy, /turf/simulated/floor/mineral/titanium, /area/ruin/space/powered) "VF" = ( @@ -2522,7 +2522,7 @@ /area/template_noop) "ZS" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/flask/barflask, +/obj/item/reagent_containers/drinks/flask/barflask, /turf/simulated/floor/carpet/blue, /area/ruin/space/powered) "ZT" = ( diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/spacehotel.dmm index 8251e2b8936f..c969364e6a2e 100644 --- a/_maps/map_files220/RandomRuins/SpaceRuins/spacehotel.dmm +++ b/_maps/map_files220/RandomRuins/SpaceRuins/spacehotel.dmm @@ -38,11 +38,11 @@ /obj/item/candle/eternal{ pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = 9; pixel_y = 12 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 9; pixel_y = 6 }, @@ -165,11 +165,11 @@ /obj/item/candle/eternal{ pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -9; pixel_y = 12 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -9; pixel_y = 6 }, @@ -430,27 +430,27 @@ /obj/effect/turf_decal/delivery, /obj/structure/closet/crate/freezer, /obj/item/storage/box/monkeycubes, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, /turf/simulated/floor/plating, /area/ruin/space/spacehotelv1/cargostorage) "do" = ( @@ -1179,7 +1179,7 @@ /area/ruin/space/spacehotelv1/forehallway) "jb" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ pixel_x = -5; pixel_y = 5 }, @@ -1589,7 +1589,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/carpet/royalblack, /area/ruin/space/spacehotelv1/guestroom6) "lS" = ( @@ -1603,36 +1603,36 @@ dir = 8 }, /obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/grown/meatwheat, -/obj/item/reagent_containers/food/snacks/grown/meatwheat, -/obj/item/reagent_containers/food/snacks/grown/meatwheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/redbeet, -/obj/item/reagent_containers/food/snacks/grown/redbeet, -/obj/item/reagent_containers/food/snacks/grown/redbeet, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/soymilk, +/obj/item/food/snacks/grown/meatwheat, +/obj/item/food/snacks/grown/meatwheat, +/obj/item/food/snacks/grown/meatwheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/whitebeet, +/obj/item/food/snacks/grown/whitebeet, +/obj/item/food/snacks/grown/whitebeet, +/obj/item/food/snacks/grown/redbeet, +/obj/item/food/snacks/grown/redbeet, +/obj/item/food/snacks/grown/redbeet, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/rice, +/obj/item/food/snacks/grown/rice, +/obj/item/food/snacks/grown/rice, +/obj/item/food/snacks/grown/rice, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/soymilk, +/obj/item/reagent_containers/condiment/soymilk, +/obj/item/reagent_containers/condiment/soymilk, /turf/simulated/floor/plasteel/freezer, /area/ruin/space/spacehotelv1/kitchen) "lU" = ( @@ -1806,7 +1806,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/carpet/blue, /area/ruin/space/spacehotelv1/guestroom3) "nj" = ( @@ -1940,11 +1940,11 @@ /area/ruin/space/spacehotelv1/restoraunt3) "oa" = ( /obj/structure/table/wood/fancy/red, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3; pixel_y = 16 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3; pixel_y = 16 }, @@ -2272,11 +2272,11 @@ /obj/item/candle/eternal{ pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3; pixel_y = 2 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3; pixel_y = 2 }, @@ -2308,11 +2308,11 @@ /obj/item/candle/eternal{ pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = 9; pixel_y = 12 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 9; pixel_y = 6 }, @@ -2717,10 +2717,10 @@ /obj/machinery/door/window/reinforced/normal{ dir = 8 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = 3 }, -/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/condiment/peppermill, /turf/simulated/floor/plasteel, /area/ruin/space/spacehotelv1/kitchen) "tI" = ( @@ -2819,7 +2819,7 @@ /area/ruin/space/spacehotelv1/reception) "uu" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/meatballspaghetti, +/obj/item/food/snacks/meatballspaghetti, /obj/item/kitchen/utensil/fork, /turf/simulated/floor/plating, /area/ruin/space/spacehotelv1/forestarboardmaints) @@ -2845,7 +2845,7 @@ pixel_y = 6 }, /obj/item/kitchen/rollingpin, -/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/condiment/flour, /turf/simulated/floor/plasteel, /area/ruin/space/spacehotelv1/kitchen) "uB" = ( @@ -2960,11 +2960,11 @@ /obj/item/candle/eternal{ pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -9; pixel_y = 12 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -9; pixel_y = 6 }, @@ -3070,11 +3070,11 @@ icon_state = "4-8" }, /obj/structure/table/wood/fancy/red, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3; pixel_y = 16 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3; pixel_y = 16 }, @@ -3121,7 +3121,7 @@ /area/ruin/space/spacehotelv1/bar) "wC" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/item/reagent_containers/glass/rag, /obj/item/book/manual/barman_recipes, /obj/item/lighter/zippo/engraved, @@ -3574,11 +3574,11 @@ pixel_y = -1; pixel_x = -9 }, -/obj/item/reagent_containers/food/condiment/mushroom_sauce{ +/obj/item/reagent_containers/condiment/mushroom_sauce{ pixel_x = 10; pixel_y = 5 }, -/obj/item/reagent_containers/food/condiment/garlic_sauce{ +/obj/item/reagent_containers/condiment/garlic_sauce{ pixel_x = 6; pixel_y = 3 }, @@ -4140,7 +4140,6 @@ /area/ruin/space/spacehotelv1/kitchen) "Dx" = ( /obj/structure/rack, -/obj/item/clothing/gloves/color/yellow/power, /obj/random/toolbox, /obj/random/tool, /turf/simulated/floor/plating, @@ -4350,7 +4349,7 @@ /turf/simulated/wall, /area/ruin/space/spacehotelv1/guestroom5) "Fa" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/sign/poster/random{ pixel_y = 32 }, @@ -4510,7 +4509,7 @@ dir = 8 }, /obj/structure/table/reinforced/brass, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/carpet/black, /area/ruin/space/spacehotelv1/guestroom1) "FS" = ( @@ -4598,7 +4597,7 @@ /turf/simulated/floor/wood/oak, /area/ruin/space/spacehotelv1/forehallway) "Gm" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plating, /area/ruin/space/spacehotelv1/engi1) "Gs" = ( @@ -4922,11 +4921,11 @@ /area/ruin/space/spacehotelv1/barber) "IW" = ( /obj/structure/table/wood/fancy/red, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3; pixel_y = 16 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3; pixel_y = 16 }, @@ -5043,11 +5042,11 @@ /obj/item/candle/eternal{ pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -9; pixel_y = 12 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -9; pixel_y = 6 }, @@ -5901,11 +5900,11 @@ /obj/item/candle/eternal{ pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = 9; pixel_y = 12 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 9; pixel_y = 6 }, @@ -5929,7 +5928,6 @@ /area/ruin/space/spacehotelv1/restoraunt2) "PO" = ( /obj/structure/rack, -/obj/item/clothing/gloves/color/yellow/power, /obj/random/toolbox, /obj/random/tool, /obj/effect/spawner/random_spawners/dirt_often, @@ -6475,7 +6473,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/carpet/red, /area/ruin/space/spacehotelv1/guestroom4) "UL" = ( @@ -6558,11 +6556,11 @@ /obj/item/candle/eternal{ pixel_y = 4 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = 9; pixel_y = 12 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 9; pixel_y = 6 }, @@ -6660,31 +6658,31 @@ /area/ruin/space/spacehotelv1/engi2) "VM" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/cutlet, -/obj/item/reagent_containers/food/snacks/cutlet, -/obj/item/reagent_containers/food/snacks/cutlet, -/obj/item/reagent_containers/food/snacks/cutlet, -/obj/item/reagent_containers/food/snacks/cutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/smokedsausage, -/obj/item/reagent_containers/food/snacks/smokedsausage, -/obj/item/reagent_containers/food/snacks/smokedsausage, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/carpmeat, +/obj/item/food/snacks/carpmeat, +/obj/item/food/snacks/carpmeat, +/obj/item/food/snacks/carpmeat, +/obj/item/food/snacks/cutlet, +/obj/item/food/snacks/cutlet, +/obj/item/food/snacks/cutlet, +/obj/item/food/snacks/cutlet, +/obj/item/food/snacks/cutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/smokedsausage, +/obj/item/food/snacks/smokedsausage, +/obj/item/food/snacks/smokedsausage, /obj/item/fish/salmon, /obj/item/fish/salmon, /obj/item/fish/salmon, @@ -6925,7 +6923,7 @@ dir = 4 }, /obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/carpet/arcade, /area/ruin/space/spacehotelv1/guestroom2) "XV" = ( diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/transit_bar.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/transit_bar.dmm index b5282e591432..aeff84dbaac9 100644 --- a/_maps/map_files220/RandomRuins/SpaceRuins/transit_bar.dmm +++ b/_maps/map_files220/RandomRuins/SpaceRuins/transit_bar.dmm @@ -18,7 +18,7 @@ pixel_y = -2; pixel_x = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 5; pixel_x = -2 }, @@ -80,8 +80,8 @@ /area/ruin/space/powered) "r" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = 9; pixel_y = -3 @@ -175,7 +175,7 @@ /area/ruin/space/powered) "G" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_y = 8; pixel_x = -7 }, @@ -202,7 +202,7 @@ /obj/item/reagent_containers/glass/rag{ pixel_x = -7 }, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = 7; pixel_y = 5 }, @@ -236,7 +236,7 @@ /obj/structure/table/wood, /obj/machinery/light/small/directional/east, /obj/item/ashtray/bronze, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_y = 12; pixel_x = 7; list_reagents = list("innocent_erp = 50") diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/voxraiders_1.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/voxraiders_1.dmm index 06dffdcb7476..21e525bca515 100644 --- a/_maps/map_files220/RandomRuins/SpaceRuins/voxraiders_1.dmm +++ b/_maps/map_files220/RandomRuins/SpaceRuins/voxraiders_1.dmm @@ -538,7 +538,7 @@ pixel_x = 8 }, /obj/item/toy/plushie/voxplushie, -/obj/item/reagent_containers/food/snacks/cheesepizzaslice{ +/obj/item/food/snacks/cheesepizzaslice{ pixel_y = -2; pixel_x = -7 }, diff --git a/_maps/map_files220/RandomRuins/SpaceRuins/whiteship.dmm b/_maps/map_files220/RandomRuins/SpaceRuins/whiteship.dmm index 0a4f029ba84e..529bf9300733 100644 --- a/_maps/map_files220/RandomRuins/SpaceRuins/whiteship.dmm +++ b/_maps/map_files220/RandomRuins/SpaceRuins/whiteship.dmm @@ -159,7 +159,7 @@ /obj/machinery/light_construct/directional/west, /obj/structure/table, /obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ desc = "It's cold as dead body."; pixel_x = 8; pixel_y = 8; @@ -639,7 +639,7 @@ /area/shuttle/abandoned) "oB" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ desc = "It's cold as dead body."; pixel_x = 8; pixel_y = 8; @@ -1445,7 +1445,7 @@ "Jn" = ( /obj/structure/table/glass, /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/mug/cmo, +/obj/item/reagent_containers/drinks/mug/cmo, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluefull" @@ -1505,7 +1505,7 @@ }, /obj/item/clothing/accessory/stethoscope, /obj/item/flashlight/pen, -/obj/item/reagent_containers/food/snacks/grown/apple{ +/obj/item/food/snacks/grown/apple{ desc = "An apple a day - keeps doctor away..."; pixel_x = 2; pixel_y = 6 @@ -2078,7 +2078,7 @@ }, /area/shuttle/abandoned) "Xa" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_state = "broken"; icon_screen = "broken"; diff --git a/_maps/map_files220/RandomZLevels/beach.dmm b/_maps/map_files220/RandomZLevels/beach.dmm index 1b137e8c3416..56f26f41ebc2 100644 --- a/_maps/map_files220/RandomZLevels/beach.dmm +++ b/_maps/map_files220/RandomZLevels/beach.dmm @@ -52,7 +52,7 @@ /obj/structure/chair/plastic{ dir = 8 }, -/obj/item/reagent_containers/food/drinks/cans/thirteenloko{ +/obj/item/reagent_containers/drinks/cans/thirteenloko{ pixel_x = -18; pixel_y = 8 }, @@ -357,19 +357,19 @@ /area/awaymission/beach) "ew" = ( /obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_y = 16; pixel_x = -4 }, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_y = 14; pixel_x = 8 }, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_y = 9; pixel_x = -2 }, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_y = 5; pixel_x = 11 }, @@ -407,7 +407,7 @@ /area/awaymission/beach) "eT" = ( /obj/structure/fluff/beach_umbrella/syndi, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_x = -6; pixel_y = -6 }, @@ -444,11 +444,11 @@ /obj/structure/table/wood{ color = "#ffcc33" }, -/obj/item/reagent_containers/food/condiment/capsaicin{ +/obj/item/reagent_containers/condiment/capsaicin{ pixel_y = 8; pixel_x = -4 }, -/obj/item/reagent_containers/food/condiment/bbqsauce{ +/obj/item/reagent_containers/condiment/bbqsauce{ pixel_x = 8; pixel_y = 4 }, @@ -518,10 +518,10 @@ /obj/structure/table/wood{ color = "#ffcc33" }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_y = 8 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_y = 4; pixel_x = -8 }, @@ -732,15 +732,15 @@ /area/awaymission/beach) "iy" = ( /obj/structure/table/wood/fancy/orange, -/obj/item/reagent_containers/food/drinks/bottle/wine{ +/obj/item/reagent_containers/drinks/bottle/wine{ pixel_y = 20; pixel_x = -4 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 6; pixel_x = -6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 14; pixel_x = 8 }, @@ -936,7 +936,7 @@ /obj/structure/chair/plastic{ dir = 8 }, -/obj/item/reagent_containers/food/drinks/cans/space_up{ +/obj/item/reagent_containers/drinks/cans/space_up{ pixel_y = 12; pixel_x = -8 }, @@ -960,15 +960,15 @@ /area/awaymission/beach) "lM" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 7; pixel_x = -7 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 15; pixel_x = 2 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 5; pixel_x = 7 }, @@ -1051,7 +1051,7 @@ pixel_y = 7; pixel_x = 11 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 12; pixel_x = -8 }, @@ -1062,11 +1062,11 @@ /area/awaymission/beach) "nb" = ( /obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_y = 8; pixel_x = 7 }, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_y = 13; pixel_x = -11 }, @@ -1217,7 +1217,7 @@ "pm" = ( /obj/item/storage/bag/tray, /obj/effect/turf_decal/stripes/red/box, -/obj/item/reagent_containers/food/snacks/grown/watermelon{ +/obj/item/food/snacks/grown/watermelon{ pixel_y = 2; pixel_x = 1 }, @@ -1235,7 +1235,7 @@ /area/awaymission/beach) "pp" = ( /obj/structure/chair/plastic, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb{ +/obj/item/reagent_containers/drinks/cans/dr_gibb{ pixel_x = 20; pixel_y = -4 }, @@ -1257,7 +1257,7 @@ /obj/structure/chair/plastic{ dir = 4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 16; pixel_y = -16 }, @@ -1317,7 +1317,7 @@ /obj/structure/table/wood{ color = "#ffcc33" }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -8; pixel_y = 8 }, @@ -1340,7 +1340,7 @@ /area/awaymission/beach) "qB" = ( /obj/structure/fluff/beach_umbrella/science, -/obj/item/reagent_containers/food/drinks/cans/starkist{ +/obj/item/reagent_containers/drinks/cans/starkist{ pixel_x = 11; pixel_y = -2 }, @@ -1407,7 +1407,7 @@ /area/awaymission/beach) "rI" = ( /obj/structure/chair/plastic, -/obj/item/reagent_containers/food/drinks/cans/space_mountain_wind{ +/obj/item/reagent_containers/drinks/cans/space_mountain_wind{ pixel_x = 18; pixel_y = 4 }, @@ -1429,7 +1429,7 @@ pixel_y = 18; pixel_x = -5 }, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = -6; pixel_y = 2 }, @@ -1552,21 +1552,21 @@ /area/awaymission/beach) "va" = ( /obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/salmonmeat, /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/beach) "vq" = ( /obj/structure/chair/plastic, -/obj/item/reagent_containers/food/drinks/cans/starkist{ +/obj/item/reagent_containers/drinks/cans/starkist{ pixel_x = 20; pixel_y = -8 }, @@ -1594,7 +1594,7 @@ pixel_x = -6; pixel_y = -5 }, -/obj/item/reagent_containers/food/snacks/donut{ +/obj/item/food/snacks/donut{ pixel_x = 13 }, /obj/item/folder/blue{ @@ -1623,7 +1623,7 @@ }, /area/awaymission/beach) "vR" = ( -/obj/item/reagent_containers/food/drinks/cans/tonic{ +/obj/item/reagent_containers/drinks/cans/tonic{ pixel_x = -12; pixel_y = 2 }, @@ -1827,7 +1827,7 @@ pixel_x = -2 }, /obj/machinery/cell_charger, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 12; pixel_x = 6 }, @@ -2109,11 +2109,11 @@ /area/awaymission/beach) "Cf" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/watermelon{ +/obj/item/food/snacks/grown/watermelon{ pixel_y = 8; pixel_x = 5 }, -/obj/item/reagent_containers/food/snacks/grown/watermelon{ +/obj/item/food/snacks/grown/watermelon{ pixel_y = 3; pixel_x = -3 }, @@ -2176,7 +2176,7 @@ /area/awaymission/beach) "Dg" = ( /obj/structure/chair/plastic, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb{ +/obj/item/reagent_containers/drinks/cans/dr_gibb{ pixel_x = -16; pixel_y = -6 }, @@ -2205,11 +2205,11 @@ /area/awaymission/beach) "DH" = ( /obj/structure/fluff/beach_umbrella/syndi, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_x = -10; pixel_y = -6 }, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb{ +/obj/item/reagent_containers/drinks/cans/dr_gibb{ pixel_x = 12 }, /turf/simulated/floor/beach/away/sand_alternative, @@ -2238,7 +2238,7 @@ "Eg" = ( /obj/structure/table/wood, /obj/machinery/recharger, -/obj/item/reagent_containers/food/drinks/mug{ +/obj/item/reagent_containers/drinks/mug{ pixel_x = -9; pixel_y = 13 }, @@ -2252,7 +2252,7 @@ /area/awaymission/beach) "Ek" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ pixel_x = 4; pixel_y = 4 }, @@ -2271,15 +2271,15 @@ /area/awaymission/beach) "Ez" = ( /obj/structure/table/holotable, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_y = 8; pixel_x = -8 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = 6; pixel_y = 8 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_y = 4; pixel_x = -1 }, @@ -2460,7 +2460,7 @@ pixel_y = 10; pixel_x = 11 }, -/obj/item/reagent_containers/food/snacks/donut/sprinkles{ +/obj/item/food/snacks/donut/sprinkles{ pixel_x = -8; pixel_y = 4 }, @@ -2503,7 +2503,7 @@ /area/awaymission/beach) "Hg" = ( /obj/structure/chair/plastic, -/obj/item/reagent_containers/food/drinks/cans/lemon_lime{ +/obj/item/reagent_containers/drinks/cans/lemon_lime{ pixel_y = -6; pixel_x = 16 }, @@ -2706,7 +2706,7 @@ /obj/structure/chair/plastic{ dir = 4 }, -/obj/item/reagent_containers/food/drinks/cans/lemon_lime{ +/obj/item/reagent_containers/drinks/cans/lemon_lime{ pixel_x = 14; pixel_y = -12 }, @@ -2805,7 +2805,7 @@ /area/awaymission/beach) "KB" = ( /obj/structure/fluff/beach_umbrella/syndi, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb{ +/obj/item/reagent_containers/drinks/cans/dr_gibb{ pixel_x = -6; pixel_y = -6 }, @@ -2814,7 +2814,7 @@ "KE" = ( /obj/structure/table, /obj/item/storage/belt/utility, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 16; pixel_x = -7 }, @@ -2829,15 +2829,15 @@ /area/awaymission/beach) "KK" = ( /obj/structure/table/wood/fancy/orange, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_y = 8; pixel_x = -4 }, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_y = 6; pixel_x = -1 }, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_y = 4; pixel_x = 3 }, @@ -2893,13 +2893,13 @@ /area/awaymission/beach) "LI" = ( /obj/structure/closet/crate/hydroponics, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/rice, +/obj/item/reagent_containers/condiment/rice, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /turf/simulated/floor/beach/away/sand_alternative, /area/awaymission/beach) "LM" = ( @@ -3032,7 +3032,7 @@ /area/awaymission/beach) "Ne" = ( /obj/structure/fluff/beach_umbrella/syndi, -/obj/item/reagent_containers/food/drinks/cans/space_up{ +/obj/item/reagent_containers/drinks/cans/space_up{ pixel_x = 11; pixel_y = -2 }, @@ -3130,11 +3130,11 @@ color = "#ffcc33" }, /obj/machinery/light/directional/east, -/obj/item/reagent_containers/food/condiment/ketchup{ +/obj/item/reagent_containers/condiment/ketchup{ pixel_y = 8; pixel_x = -2 }, -/obj/item/reagent_containers/food/condiment/mayonnaise{ +/obj/item/reagent_containers/condiment/mayonnaise{ pixel_x = 6; pixel_y = 6 }, @@ -3222,18 +3222,18 @@ /area/awaymission/beach) "QH" = ( /obj/structure/fluff/beach_umbrella/science, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_x = -10; pixel_y = -6 }, -/obj/item/reagent_containers/food/drinks/cans/space_up{ +/obj/item/reagent_containers/drinks/cans/space_up{ pixel_x = 12 }, /turf/simulated/floor/beach/away/sand_alternative, /area/awaymission/beach) "QJ" = ( /obj/structure/chair/plastic, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_x = 18; pixel_y = -3 }, @@ -3381,7 +3381,7 @@ /turf/simulated/floor/wood/fancy, /area/awaymission/beach) "Ss" = ( -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_y = 16; pixel_x = -8 }, @@ -3415,7 +3415,7 @@ pixel_y = 4; pixel_x = -4 }, -/obj/item/reagent_containers/food/condiment/soymilk{ +/obj/item/reagent_containers/condiment/soymilk{ pixel_y = 8; pixel_x = 8 }, @@ -3471,7 +3471,7 @@ /turf/simulated/floor/wood/fancy, /area/awaymission/beach) "Us" = ( -/obj/item/reagent_containers/food/drinks/cans/starkist{ +/obj/item/reagent_containers/drinks/cans/starkist{ pixel_x = -6 }, /turf/simulated/floor/beach/away/sand_alternative, @@ -3552,7 +3552,7 @@ pixel_y = 6; pixel_x = 4 }, -/obj/item/reagent_containers/food/drinks/cans/grape_juice{ +/obj/item/reagent_containers/drinks/cans/grape_juice{ pixel_x = -8; pixel_y = 9 }, @@ -3816,12 +3816,12 @@ /area/awaymission/beach) "XW" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, -/obj/item/reagent_containers/food/snacks/salmonmeat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/salmonmeat, +/obj/item/food/snacks/salmonmeat, /turf/simulated/floor/beach/away/sand_alternative, /area/awaymission/beach) "Ya" = ( @@ -3894,11 +3894,11 @@ /area/awaymission/beach) "Ze" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/watermelon{ +/obj/item/food/snacks/grown/watermelon{ pixel_y = 6; pixel_x = 6 }, -/obj/item/reagent_containers/food/snacks/watermelonslice{ +/obj/item/food/snacks/watermelonslice{ pixel_x = -6 }, /turf/simulated/floor/beach/away/sand_alternative, diff --git a/_maps/map_files220/RandomZLevels/blackmarketpackers.dmm b/_maps/map_files220/RandomZLevels/blackmarketpackers.dmm index 70888ba807fc..83bac76a715c 100644 --- a/_maps/map_files220/RandomZLevels/blackmarketpackers.dmm +++ b/_maps/map_files220/RandomZLevels/blackmarketpackers.dmm @@ -61,10 +61,7 @@ pixel_y = -10 }, /obj/item/shard, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/blood/old, /turf/simulated/floor/plating/airless, /area/awaymission/BMPship/TurretsSouth) @@ -147,10 +144,7 @@ /obj/item/shard{ icon_state = "small" }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/landmark/damageturf, /turf/simulated/floor/plating/airless, /area/awaymission/BMPship/TurretsNorth) @@ -275,8 +269,8 @@ /area/awaymission/BMPship/Gate) "bi" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -296,7 +290,7 @@ /area/awaymission/BMPship/Fore) "bl" = ( /obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/drinks/bottle/patron, +/obj/item/reagent_containers/drinks/bottle/patron, /obj/item/flashlight/lamp/green{ pixel_x = -5; pixel_y = 12; @@ -586,7 +580,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 2 }, -/obj/item/reagent_containers/food/drinks/sillycup, +/obj/item/reagent_containers/drinks/sillycup, /obj/item/reagent_containers/pill/methamphetamine, /turf/simulated/floor/wood/fancy/oak, /area/awaymission/BMPship/CommonArea) @@ -728,10 +722,10 @@ dir = 2 }, /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/monstermeat/bearmeat, -/obj/item/reagent_containers/food/snacks/monstermeat/bearmeat, -/obj/item/reagent_containers/food/snacks/monstermeat/bearmeat, -/obj/item/reagent_containers/food/snacks/monstermeat/bearmeat, +/obj/item/food/snacks/monstermeat/bearmeat, +/obj/item/food/snacks/monstermeat/bearmeat, +/obj/item/food/snacks/monstermeat/bearmeat, +/obj/item/food/snacks/monstermeat/bearmeat, /obj/item/clothing/gloves/furgloves, /obj/item/clothing/head/furcap, /obj/item/clothing/shoes/furboots, @@ -782,7 +776,7 @@ "cB" = ( /obj/structure/alien/weeds, /obj/effect/decal/cleanable/greenglow, -/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/item/food/snacks/monstermeat/spiderleg, /turf/simulated/floor/plating/airless, /area/awaymission/BMPship/Fore) "cC" = ( @@ -837,7 +831,7 @@ "cH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light_construct/small/south, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/structure/spider/stickyweb, /obj/structure/spider/cocoon, /turf/simulated/floor/plating, @@ -905,7 +899,7 @@ "cR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light_construct/small/south, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/engine, /area/awaymission/BMPship/Containment) "cS" = ( @@ -964,8 +958,8 @@ /area/awaymission/BMPship/Fore) "cZ" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/monstermeat/lizardmeat, -/obj/item/reagent_containers/food/snacks/monstermeat/lizardmeat, +/obj/item/food/snacks/monstermeat/lizardmeat, +/obj/item/food/snacks/monstermeat/lizardmeat, /obj/item/stack/sheet/animalhide/lizard, /obj/effect/spawner/lootdrop/lizardboots, /obj/effect/decal/cleanable/dirt, @@ -1145,8 +1139,8 @@ /area/awaymission/BMPship/Engines) "dA" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -1248,7 +1242,7 @@ /obj/item/kitchen/utensil/fork{ pixel_x = 7 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_y = 15 }, /turf/simulated/floor/plasteel{ @@ -1264,11 +1258,11 @@ /obj/item/clothing/glasses/sunglasses/noir{ pixel_y = -3 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 10; pixel_y = 8 }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_y = 10; layer = 2.9 }, @@ -1325,7 +1319,7 @@ /turf/simulated/floor/mineral/plastitanium/red, /area/awaymission/BMPship/Containment) "dU" = ( -/obj/item/reagent_containers/food/drinks/sillycup, +/obj/item/reagent_containers/drinks/sillycup, /obj/effect/landmark/damageturf, /turf/simulated/floor/wood/fancy/oak, /area/awaymission/BMPship/CommonArea) @@ -1519,7 +1513,7 @@ "ey" = ( /obj/structure/table, /obj/item/kitchen/knife/butcher, -/obj/item/reagent_containers/food/snacks/monstermeat/lizardmeat, +/obj/item/food/snacks/monstermeat/lizardmeat, /obj/item/trash/plate{ pixel_x = -5; pixel_y = -1; @@ -1625,7 +1619,7 @@ layer = 2.9 }, /obj/item/kitchen/utensil/fork, -/obj/item/reagent_containers/food/drinks/britcup{ +/obj/item/reagent_containers/drinks/britcup{ pixel_x = 8 }, /turf/simulated/floor/plasteel{ @@ -1649,7 +1643,7 @@ color = "yellow"; layer = 2.9 }, -/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, /turf/simulated/floor/grass, /area/awaymission/BMPship/Kitchen) "eR" = ( @@ -1899,8 +1893,7 @@ /area/awaymission/BMPship/Buffer) "fx" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-dead"; +/obj/item/kirbyplants/dead{ tag = "plant-dead" }, /obj/machinery/light/small/directional/south, @@ -1909,7 +1902,7 @@ "fy" = ( /obj/structure/table, /obj/item/storage/box/donkpockets, -/obj/item/reagent_containers/food/snacks/fried_vox{ +/obj/item/food/snacks/fried_vox{ pixel_x = 4; pixel_y = 12; layer = 2.9 @@ -2026,8 +2019,7 @@ /obj/structure/spider/stickyweb, /obj/effect/decal/cleanable/dirt, /obj/machinery/light_construct/small/north, -/obj/item/kirbyplants{ - icon_state = "plant-dead"; +/obj/item/kirbyplants/dead{ tag = "plant-dead" }, /turf/simulated/floor/mineral/plastitanium/red, @@ -2258,7 +2250,7 @@ /area/space) "gv" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/sliceable/xenomeatbread, +/obj/item/food/snacks/sliceable/xenomeatbread, /obj/item/kitchen/knife, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -2327,8 +2319,7 @@ /obj/structure/spider/stickyweb, /obj/effect/decal/cleanable/dirt, /obj/machinery/light_construct/small/south, -/obj/item/kirbyplants{ - icon_state = "plant-dead"; +/obj/item/kirbyplants/dead{ tag = "plant-dead" }, /turf/simulated/floor/mineral/plastitanium/red, @@ -2361,7 +2352,7 @@ }, /area/awaymission/BMPship/Kitchen) "gM" = ( -/obj/item/reagent_containers/food/snacks/hugemushroomslice, +/obj/item/food/snacks/hugemushroomslice, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/awaymission/BMPship/Kitchen) @@ -2570,7 +2561,7 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/greenglow, -/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/item/food/snacks/monstermeat/spiderleg, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/mineral/plastitanium/red, /area/awaymission/BMPship/Containment) @@ -2678,10 +2669,7 @@ }, /obj/item/shard, /obj/effect/landmark/damageturf, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plating/airless, /area/awaymission/BMPship/Fore) "hV" = ( @@ -2749,10 +2737,7 @@ /area/awaymission/BMPship/Armory) "ii" = ( /obj/structure/window/reinforced, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/shard{ icon_state = "medium"; pixel_x = -7; @@ -2802,12 +2787,12 @@ /area/awaymission/BMPship/Kitchen) "it" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/hugemushroomslice, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/hugemushroomslice, /obj/effect/turf_decal/stripes/line{ dir = 2 }, -/obj/item/reagent_containers/food/snacks/monstermeat/spidermeat, +/obj/item/food/snacks/monstermeat/spidermeat, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/awaymission/BMPship/Gate) @@ -2880,10 +2865,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/engine/vacuum, /area/awaymission/BMPship/TurretsSouth) "iH" = ( @@ -2920,7 +2902,7 @@ /area/awaymission/BMPship/ChemLab) "iL" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /obj/item/grenade/chem_grenade/drugs, /turf/simulated/floor/plating, /area/awaymission/BMPship/ChemLab) @@ -2996,7 +2978,7 @@ /turf/simulated/floor/plating, /area/awaymission/BMPship/ChemLab) "iZ" = ( -/obj/item/reagent_containers/food/snacks/chips, +/obj/item/food/snacks/chips, /turf/simulated/floor/plating, /area/awaymission/BMPship/ChemLab) "ja" = ( @@ -3058,7 +3040,7 @@ /obj/item/kitchen/utensil/fork{ pixel_x = -2 }, -/obj/item/reagent_containers/food/snacks/pastatomato, +/obj/item/food/snacks/pastatomato, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -3117,9 +3099,9 @@ "jB" = ( /obj/structure/window/reinforced, /obj/structure/table, -/obj/item/reagent_containers/food/snacks/candy/candycane, -/obj/item/reagent_containers/food/snacks/candy/confectionery/caramel_nougat, -/obj/item/reagent_containers/food/snacks/candy/confectionery/toffee, +/obj/item/food/snacks/candy/candycane, +/obj/item/food/snacks/candy/confectionery/caramel_nougat, +/obj/item/food/snacks/candy/confectionery/toffee, /turf/simulated/floor/plasteel{ icon_state = "barber"; tag = "icon-barber" @@ -3132,7 +3114,7 @@ /area/space) "jF" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/xenomeatbreadslice{ +/obj/item/food/snacks/xenomeatbreadslice{ pixel_x = -8 }, /obj/item/trash/plate{ @@ -3152,7 +3134,7 @@ "jG" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /obj/structure/alien/weeds, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/machinery/light_construct/small/north, /turf/simulated/floor/engine, /area/awaymission/BMPship/Containment) @@ -3245,7 +3227,7 @@ "kx" = ( /obj/structure/table/survival_pod, /obj/item/reagent_containers/glass/beaker/drugs/meth, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ pixel_x = -3; pixel_y = 4; layer = 2.9 @@ -3305,10 +3287,7 @@ dir = 1 }, /obj/effect/landmark/damageturf, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plating/airless, /area/awaymission/BMPship/Fore) "ld" = ( @@ -3381,7 +3360,7 @@ /obj/structure/closet/critter{ opened = 1 }, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/engine, /area/awaymission/BMPship/Containment) "lL" = ( @@ -3475,8 +3454,7 @@ /area/awaymission/BMPship/Kitchen) "mA" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-dead"; +/obj/item/kirbyplants/dead{ tag = "plant-dead" }, /obj/machinery/light_construct/small/north, @@ -3591,8 +3569,7 @@ "nO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light_construct/small/south, -/obj/item/kirbyplants{ - icon_state = "plant-dead"; +/obj/item/kirbyplants/dead{ tag = "plant-dead" }, /obj/machinery/light/small/directional/south, @@ -3719,7 +3696,7 @@ icon_state = "small" }, /obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 11; pixel_y = 13 }, @@ -3749,19 +3726,16 @@ pixel_x = 9; pixel_y = -9 }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/space, /area/space) "pc" = ( -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana{ pixel_x = -6; pixel_y = 3 }, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_x = 7; pixel_y = 3 }, @@ -3858,14 +3832,14 @@ /area/awaymission/BMPship/Dormitories) "pG" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 3; pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -3; pixel_y = 5; layer = 2.9 @@ -4630,7 +4604,7 @@ /area/awaymission/BMPship/CommonArea) "wG" = ( /obj/effect/decal/cleanable/greenglow, -/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/item/food/snacks/monstermeat/spiderleg, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/mineral/plastitanium/red, /area/awaymission/BMPship/Containment) @@ -4826,7 +4800,7 @@ /turf/simulated/wall/indestructible/whiteshuttle/nodiagonal, /area/awaymission/BMPship/Fore) "yu" = ( -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/decal/cleanable/dirt, /obj/machinery/light_construct/small/north, /mob/living/simple_animal/hostile/poison/giant_spider/hunter{ @@ -4942,7 +4916,7 @@ opened = 1 }, /obj/structure/spider/stickyweb, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/engine, /area/awaymission/BMPship/Containment) @@ -4991,10 +4965,7 @@ /turf/space, /area/space) "Ac" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/shard{ icon_state = "medium"; pixel_x = 9; @@ -5028,7 +4999,7 @@ /obj/item/shard{ icon_state = "small" }, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/engine, /area/awaymission/BMPship/Containment) "Aw" = ( @@ -5105,7 +5076,7 @@ /obj/structure/table, /obj/item/kitchen/utensil/fork, /obj/item/trash/snack_bowl, -/obj/item/reagent_containers/food/drinks/mug/cap{ +/obj/item/reagent_containers/drinks/mug/cap{ pixel_x = 5; pixel_y = 6 }, @@ -5264,7 +5235,7 @@ /area/awaymission/BMPship/Buffer) "CI" = ( /obj/structure/alien/weeds, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 8; pixel_y = 2 }, @@ -5333,7 +5304,7 @@ /turf/simulated/floor/engine, /area/awaymission/BMPship/Containment) "Dr" = ( -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/engine, /area/awaymission/BMPship/Containment) @@ -5482,10 +5453,7 @@ pixel_x = -7; pixel_y = -10 }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/machinery/door/poddoor/shutters{ dir = 8 }, @@ -5521,7 +5489,7 @@ /turf/simulated/wall/indestructible/whiteshuttle/nodiagonal, /area/awaymission/BMPship/Kitchen) "EO" = ( -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/decal/cleanable/dirt, /obj/structure/spider/stickyweb, /turf/simulated/floor/engine, @@ -5683,7 +5651,7 @@ /area/awaymission/BMPship/Containment) "Gu" = ( /obj/item/assembly/mousetrap/armed, -/obj/item/reagent_containers/food/snacks/breadslice{ +/obj/item/food/snacks/breadslice{ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, @@ -6165,7 +6133,7 @@ icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/mineral/plastitanium/red, /area/awaymission/BMPship/Containment) "Lx" = ( @@ -6203,7 +6171,7 @@ /area/awaymission/BMPship/Gate) "Md" = ( /obj/structure/alien/weeds, -/obj/item/reagent_containers/food/drinks/mug/novelty{ +/obj/item/reagent_containers/drinks/mug/novelty{ pixel_y = 10; pixel_x = 10 }, @@ -6528,19 +6496,18 @@ /area/awaymission/BMPship/CommonArea) "Qi" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/engine, /area/awaymission/BMPship/Containment) "Qj" = ( /obj/structure/alien/weeds, -/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/item/food/snacks/monstermeat/spiderleg, /obj/effect/decal/cleanable/greenglow, /turf/simulated/floor/plating/airless, /area/awaymission/BMPship/Fore) "Qk" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-dead"; +/obj/item/kirbyplants/dead{ tag = "plant-dead" }, /obj/structure/spider/stickyweb, @@ -6589,7 +6556,7 @@ /area/awaymission/BMPship/Containment) "QT" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/drinks/trophy/gold_cup, +/obj/item/reagent_containers/drinks/trophy/gold_cup, /obj/item/storage/box/flashbangs, /obj/item/fluff/dogwhistle, /obj/structure/alien/weeds, @@ -6781,16 +6748,16 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/item/reagent_containers/food/snacks/meat/corgi, -/obj/item/reagent_containers/food/snacks/meat/corgi, -/obj/item/reagent_containers/food/snacks/meat/corgi, -/obj/item/reagent_containers/food/snacks/meat/corgi, -/obj/item/reagent_containers/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi, +/obj/item/food/snacks/meat/corgi, /turf/simulated/floor/plating, /area/awaymission/BMPship/Gate) "Tv" = ( /mob/living/simple_animal/hostile/retaliate/poison/snake, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/item/shard, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/engine, @@ -6909,7 +6876,7 @@ /area/awaymission/BMPship/Engines) "UI" = ( /obj/structure/alien/weeds, -/obj/item/reagent_containers/food/drinks/mug{ +/obj/item/reagent_containers/drinks/mug{ pixel_x = -8 }, /turf/simulated/floor/plating/airless, @@ -7002,7 +6969,7 @@ /area/awaymission/BMPship/CommonArea) "VG" = ( /obj/effect/decal/cleanable/greenglow, -/obj/item/reagent_containers/food/snacks/monstermeat/spiderleg, +/obj/item/food/snacks/monstermeat/spiderleg, /obj/structure/spider/stickyweb, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/mineral/plastitanium/red, @@ -7201,8 +7168,7 @@ /obj/structure/spider/stickyweb, /obj/effect/decal/cleanable/dirt, /obj/machinery/light_construct/small/south, -/obj/item/kirbyplants{ - icon_state = "plant-dead"; +/obj/item/kirbyplants/dead{ tag = "plant-dead" }, /obj/structure/spider/stickyweb, @@ -7253,7 +7219,7 @@ "Yh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light_construct/small/south, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/structure/spider/stickyweb, /obj/structure/spider/cocoon, /turf/simulated/floor/engine, @@ -7326,8 +7292,7 @@ /area/awaymission/BMPship/Fore) "YU" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-dead"; +/obj/item/kirbyplants/dead{ tag = "plant-dead" }, /obj/machinery/light/small/directional/north, @@ -7353,7 +7318,7 @@ "Zg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/engine, /area/awaymission/BMPship/Containment) "Zj" = ( @@ -7399,10 +7364,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/stack/rods/ten, /turf/simulated/floor/plating/airless, /area/awaymission/BMPship/MedBay) diff --git a/_maps/map_files220/RandomZLevels/blackmesa.dmm b/_maps/map_files220/RandomZLevels/blackmesa.dmm index 4355cb0db799..0daab42322a5 100644 --- a/_maps/map_files220/RandomZLevels/blackmesa.dmm +++ b/_maps/map_files220/RandomZLevels/blackmesa.dmm @@ -44,7 +44,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/lambda_hallway) "aez" = ( -/obj/item/reagent_containers/food/snacks/choccherrycakeslice, +/obj/item/food/snacks/choccherrycakeslice, /obj/structure/table/wood, /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) @@ -95,7 +95,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/cryo_storage) "ajC" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/black_ops_science_room) "akl" = ( @@ -448,7 +448,7 @@ /turf/simulated/floor/engine, /area/awaymission/black_mesa/resonant_chamber) "aDI" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /obj/machinery/light_construct/directional/east, @@ -757,7 +757,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/high_security_hallway) "baj" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /turf/simulated/floor/plasteel, @@ -959,13 +959,13 @@ }, /area/awaymission/black_mesa/xen/entering_zone) "bpU" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/deep_sci_turret) "bqP" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -1194,7 +1194,7 @@ }, /area/awaymission/black_mesa/cryo_room) "bEg" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1; icon_state = "broken"; icon_screen = "broken"; @@ -1226,8 +1226,8 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/item/reagent_containers/food/drinks/tea{ +/obj/item/reagent_containers/drinks/coffee, +/obj/item/reagent_containers/drinks/tea{ pixel_x = 5; pixel_y = 10 }, @@ -1236,7 +1236,7 @@ }, /area/awaymission/black_mesa/security_outpost) "bFx" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /obj/structure/railing{ @@ -1328,7 +1328,7 @@ /turf/simulated/floor/plasteel/stairs/medium, /area/awaymission/black_mesa/entrance_internal_hall) "bKK" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4; icon_state = "broken"; icon_screen = "broken"; @@ -1359,7 +1359,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/deep_sci_storage) "bLn" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plasteel/smooth, @@ -1523,7 +1523,7 @@ /turf/simulated/wall/indestructible/rock/mineral, /area/awaymission/black_mesa/security_outpost) "bRg" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /obj/structure/alien/xenoweeds, @@ -1629,7 +1629,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/high_security_sec_point) "bYb" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /obj/structure/alien/xenoweeds, @@ -1769,7 +1769,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/cryo_storage) "ciM" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/machinery/light_construct/directional/north, /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/xen/lost_camp) @@ -1927,7 +1927,7 @@ /turf/simulated/floor/bluegrid, /area/awaymission/black_mesa/lambda_teleporter) "cqA" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /turf/simulated/floor/plasteel/dark, @@ -1992,8 +1992,8 @@ pixel_x = 3; pixel_y = 3 }, -/obj/item/reagent_containers/food/snacks/grown/coffee/robusta, -/obj/item/reagent_containers/food/snacks/grown/coffee{ +/obj/item/food/snacks/grown/coffee/robusta, +/obj/item/food/snacks/grown/coffee{ pixel_x = -3; pixel_y = -3 }, @@ -2024,7 +2024,7 @@ /area/awaymission/black_mesa/xen/vortigaunt_village) "cvC" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/sliceable/xenomeatbread, +/obj/item/food/snacks/sliceable/xenomeatbread, /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/black_mesa/xen/vortigaunt_village) "cwd" = ( @@ -2080,7 +2080,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/dorm_computers) "cBF" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "computer"; dir = 8 @@ -2236,7 +2236,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/lambda_hallway) "cLK" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "broken computer"; dir = 8 @@ -2343,7 +2343,7 @@ "cTV" = ( /obj/structure/alien/xenoweeds, /obj/effect/bump_teleporter{ - id = "lambda_xen"; + id = "lambda_lab_gate"; density = 0 }, /turf/simulated/floor/engine, @@ -2467,7 +2467,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/black_ops_entrance) "cZn" = ( -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa/xen/freeman_puzzle) "cZp" = ( @@ -2626,7 +2626,7 @@ /area/awaymission/black_mesa/equipment_room) "dko" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/tea, +/obj/item/reagent_containers/drinks/tea, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/entrance_lobby) "dkq" = ( @@ -2716,7 +2716,7 @@ /turf/simulated/floor/beach/away/coastline/xen, /area/awaymission/black_mesa/xen/entering_zone) "dpl" = ( -/obj/item/reagent_containers/food/snacks/popcorn, +/obj/item/food/snacks/popcorn, /turf/simulated/floor/wood, /area/awaymission/black_mesa/employee_dorm_room) "dpo" = ( @@ -2790,7 +2790,7 @@ /area/awaymission/black_mesa/hecu_zone_infirmary) "duq" = ( /obj/structure/table, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ name = "broken computer"; desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "laptop"; @@ -2977,12 +2977,12 @@ /area/awaymission/black_mesa/black_ops_armory) "dGp" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/candy/candybar, -/obj/item/reagent_containers/food/snacks/candy/confectionery{ +/obj/item/food/snacks/candy/candybar, +/obj/item/food/snacks/candy/confectionery{ pixel_x = 3; pixel_y = 3 }, -/obj/item/reagent_containers/food/snacks/candy/confectionery{ +/obj/item/food/snacks/candy/confectionery{ pixel_x = 6; pixel_y = 6 }, @@ -3002,7 +3002,7 @@ /area/awaymission/black_mesa/entrance_internal_hall) "dGU" = ( /obj/structure/alien/xenoweeds, -/obj/item/reagent_containers/food/drinks/cans/sodawater, +/obj/item/reagent_containers/drinks/cans/sodawater, /turf/simulated/floor/plating/ironsand, /area/awaymission/black_mesa) "dGY" = ( @@ -3121,7 +3121,7 @@ }, /area/awaymission/black_mesa/science_internal) "dPd" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel/dark{ @@ -3619,6 +3619,11 @@ /mob/living/simple_animal/hostile/blackmesa/xen/headcrab/fast, /turf/simulated/floor/mineral/titanium, /area/awaymission/black_mesa/entrance) +"etS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) "etZ" = ( /obj/effect/bump_teleporter{ id = "lambda2"; @@ -3672,7 +3677,7 @@ /area/awaymission/black_mesa/high_security_hallway) "ewJ" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/xenomeatbreadslice, +/obj/item/food/snacks/xenomeatbreadslice, /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/black_mesa/xen/vortigaunt_village) "ewP" = ( @@ -3697,6 +3702,10 @@ /obj/machinery/door/airlock/public, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/black_ops_science_room) +"exS" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel/smooth, +/area/awaymission/black_mesa/deep_sci_storage) "eyf" = ( /obj/structure/flora/biolumini/mine, /turf/simulated/floor/beach/away/coastline/xen{ @@ -3811,15 +3820,15 @@ /area/awaymission/black_mesa/entrance_internal_hall) "eHp" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/soymilk{ +/obj/item/reagent_containers/condiment/soymilk{ pixel_x = 4; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/bottle/cream{ +/obj/item/reagent_containers/drinks/bottle/cream{ pixel_y = 4; pixel_x = -4 }, -/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/condiment/milk, /obj/machinery/light/directional/east, /turf/simulated/floor/plasteel/dark{ icon_state = "dark" @@ -3937,7 +3946,7 @@ /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/hecu_zone_camp) "eOR" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /obj/effect/decal/cleanable/dirt, @@ -4247,7 +4256,7 @@ /area/awaymission/black_mesa/entrance_lobby) "fiC" = ( /obj/structure/closet/crate/wooden/wooden_crate, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/black_mesa/xen/vortigaunt_village) "fje" = ( @@ -4320,7 +4329,7 @@ /area/awaymission/black_mesa/genetics_elevator) "foa" = ( /obj/structure/table, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ name = "broken computer"; desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "laptop"; @@ -4364,7 +4373,7 @@ /area/awaymission/black_mesa/xen/freeman_hallway) "frM" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/doshik_spicy, +/obj/item/food/snacks/doshik_spicy, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/xen/lost_camp) @@ -4539,7 +4548,7 @@ }, /area/awaymission/black_mesa/gas_emitter_chamber) "fBN" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/alien/xenoweeds, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/entrance_large_office) @@ -4683,7 +4692,7 @@ /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa) "fOx" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -4709,7 +4718,7 @@ /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/black_mesa/xen/vortigaunt_village) "fPh" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -5491,7 +5500,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/black_ops_downstairs_atrium) "gLa" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1; icon_state = "broken"; icon_screen = "broken"; @@ -5683,7 +5692,7 @@ }, /area/awaymission/black_mesa/science_decon_room) "gXj" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -5740,7 +5749,7 @@ /area/awaymission/black_mesa/xen/lost_camp) "han" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/monstermeat/xenomeat, +/obj/item/food/snacks/monstermeat/xenomeat, /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/black_mesa/xen/vortigaunt_village) "haK" = ( @@ -5817,7 +5826,7 @@ /area/awaymission/black_mesa/hecu_zone_bathroom) "heL" = ( /obj/structure/table, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ name = "broken computer"; desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "laptop"; @@ -5853,7 +5862,7 @@ /turf/simulated/wall/indestructible/riveted, /area/awaymission/black_mesa/black_ops_turret_blockade) "hhW" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/alien/xenoweeds, /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/scientist_hall) @@ -6181,7 +6190,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/science_decon_room) "hGS" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/hecu_zone_atrium) "hHF" = ( @@ -6202,7 +6211,7 @@ /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/hecu_zone_camp) "hIf" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /obj/structure/alien/xenoweeds, @@ -6260,7 +6269,7 @@ /obj/item/storage/fancy/cigarettes/cigpack_uplift{ pixel_x = 10 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_y = 10; pixel_x = -9 }, @@ -6335,7 +6344,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/entrance_lobby) "hPO" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/employee_dorm_room) "hQh" = ( @@ -6511,12 +6520,12 @@ /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) "iew" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plating/dirt/xen_dirt, /area/awaymission/black_mesa/xen/nihilanth_computer) "ieG" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/tea, +/obj/item/reagent_containers/drinks/tea, /turf/simulated/floor/plasteel{ icon_state = "green"; dir = 4 @@ -6579,7 +6588,7 @@ /area/awaymission/black_mesa/black_ops_armory) "ikb" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_y = 3 }, /turf/simulated/floor/plasteel, @@ -6723,7 +6732,7 @@ }, /area/awaymission/black_mesa/hecu_zone_external_hall) "isF" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /obj/machinery/light/directional/west, @@ -6779,7 +6788,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/entrance_lobby) "ixB" = ( -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa/xen/nihilanth_computer) "iyO" = ( @@ -6857,13 +6866,13 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/reagent_containers/food/snacks/muffin, -/obj/item/reagent_containers/food/snacks/muffin{ +/obj/item/food/snacks/muffin, +/obj/item/food/snacks/muffin{ pixel_x = 3; pixel_y = 3 }, -/obj/item/reagent_containers/food/snacks/poppypretzel, -/obj/item/reagent_containers/food/snacks/plum_pie, +/obj/item/food/snacks/poppypretzel, +/obj/item/food/snacks/plum_pie, /turf/simulated/floor/plasteel/dark{ icon_state = "dark" }, @@ -6989,7 +6998,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/security_outpost) "iKx" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "computer"; dir = 8 @@ -7209,7 +7218,7 @@ /turf/simulated/floor/mineral/titanium, /area/awaymission/black_mesa/genetics_elevator) "iXc" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -7429,7 +7438,7 @@ /area/awaymission/black_mesa/xen/acid_lake_building) "jka" = ( /obj/structure/closet/crate/wooden/wooden_crate, -/obj/item/reagent_containers/food/snacks/doshik_spicy, +/obj/item/food/snacks/doshik_spicy, /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/deep_sci_storage) "jkk" = ( @@ -7633,7 +7642,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/hecu_zone_atrium) "jwD" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /obj/structure/railing{ @@ -7739,11 +7748,11 @@ /area/awaymission/black_mesa/dorm_computers) "jFG" = ( /obj/structure/closet, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/plasteel{ icon_state = "brownfull" }, @@ -7864,6 +7873,14 @@ icon_state = "alienvault" }, /area/awaymission/black_mesa/xen/nihilanth_arena) +"jLi" = ( +/obj/structure/inflatable{ + opacity = 1; + color = "#556B2F" + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/awaymission/black_mesa/xen/acid_lake_building) "jLu" = ( /obj/structure/sign/chemistry{ pixel_y = -32 @@ -7990,7 +8007,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/high_security_servers) "jUS" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -8333,6 +8350,10 @@ /obj/machinery/light/directional/west, /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/black_ops_armory) +"koI" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel/smooth, +/area/awaymission/black_mesa/cryo_room) "kpg" = ( /obj/structure/cable{ d1 = 2; @@ -8361,7 +8382,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/hecu_zone_external_hall) "kqh" = ( -/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, /turf/simulated/floor/plating, /area/awaymission/black_mesa/security_outpost) "kqI" = ( @@ -8433,7 +8454,7 @@ /turf/simulated/floor/mineral/titanium, /area/awaymission/black_mesa/tram_room) "ktX" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -8508,7 +8529,7 @@ /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) "kzB" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -8784,19 +8805,19 @@ /area/awaymission/black_mesa/resonant_chamber) "kRb" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/bbqsauce, -/obj/item/reagent_containers/food/condiment/diablo_sauce, -/obj/item/reagent_containers/food/condiment/tomato_sauce, -/obj/item/reagent_containers/food/condiment/garlic_sauce, -/obj/item/reagent_containers/food/drinks/chicken_soup, -/obj/item/reagent_containers/food/drinks/chicken_soup, -/obj/item/reagent_containers/food/drinks/chicken_soup, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/bbqsauce, +/obj/item/reagent_containers/condiment/diablo_sauce, +/obj/item/reagent_containers/condiment/tomato_sauce, +/obj/item/reagent_containers/condiment/garlic_sauce, +/obj/item/reagent_containers/drinks/chicken_soup, +/obj/item/reagent_containers/drinks/chicken_soup, +/obj/item/reagent_containers/drinks/chicken_soup, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -8853,7 +8874,7 @@ /turf/simulated/floor/engine, /area/awaymission/black_mesa/hecu_zone_test_chambers) "kUw" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "broken computer"; dir = 8 @@ -9667,7 +9688,7 @@ }, /area/awaymission/black_mesa/lambda_teleporter) "lRP" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/alien/xenoweeds, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/scientist_hall) @@ -9678,7 +9699,7 @@ /area/awaymission/black_mesa/science_labs) "lTy" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/doshik, +/obj/item/food/snacks/doshik, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/xen/lost_camp) @@ -9709,7 +9730,7 @@ /area/awaymission/black_mesa/xen/vortigaunt_village) "lWK" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_y = 10; pixel_x = 9 }, @@ -9751,7 +9772,7 @@ /area/awaymission/black_mesa/xen/nihilanth_computer) "lZi" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee, /turf/simulated/floor/plasteel/dark{ icon_state = "dark" }, @@ -9842,10 +9863,10 @@ /area/awaymission/black_mesa/entrance_large_office) "mdX" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/pack/ketchup, -/obj/item/reagent_containers/food/condiment/pack/hotsauce, -/obj/item/reagent_containers/food/condiment/pack/hotsauce, -/obj/item/reagent_containers/food/condiment/pack/ketchup, +/obj/item/reagent_containers/condiment/pack/ketchup, +/obj/item/reagent_containers/condiment/pack/hotsauce, +/obj/item/reagent_containers/condiment/pack/hotsauce, +/obj/item/reagent_containers/condiment/pack/ketchup, /obj/item/trash/plate, /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/hecu_zone_camp) @@ -10236,7 +10257,7 @@ /area/awaymission/black_mesa/security_outpost) "mHz" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee, /obj/structure/alien/xenoweeds, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/entrance_large_office) @@ -10322,8 +10343,8 @@ /area/awaymission/black_mesa/science_labs) "mMa" = ( /obj/effect/bump_teleporter/lambda{ - id = "lambda_xen2"; - id_target = "lambda2"; + id = "lambda_xen3"; + id_target = "lambda_lab_gate"; color = "lime" }, /turf/simulated/floor/vault{ @@ -10575,7 +10596,7 @@ /turf/simulated/wall/indestructible/riveted, /area/awaymission/black_mesa/high_security_sec_point) "mYx" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1; icon_state = "broken"; icon_screen = "broken"; @@ -10671,12 +10692,12 @@ /area/awaymission/black_mesa/xen/vortigaunt_village) "ncG" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/xen/lost_camp) "ncU" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/black_mesa/xen/vortigaunt_village) "ndr" = ( @@ -10864,7 +10885,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/high_security_servers) "npr" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -11000,7 +11021,7 @@ /turf/simulated/floor/catwalk, /area/awaymission/black_mesa/xen/entering_zone) "nwm" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /obj/structure/alien/xenoweeds, @@ -11126,7 +11147,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/deep_sci_chem) "nFK" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /obj/machinery/light/directional/south, @@ -11217,7 +11238,7 @@ }, /area/awaymission/black_mesa/xen/lost_camp_hallway) "nLK" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plasteel/smooth, @@ -11493,7 +11514,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/entrance_large_office) "ocA" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/dorm_computers) "oee" = ( @@ -11559,7 +11580,7 @@ /turf/simulated/floor/plating, /area/awaymission/black_mesa/xen/acid_lake_building) "ofW" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel/smooth, @@ -11684,7 +11705,7 @@ /turf/simulated/floor/mineral/titanium, /area/awaymission/black_mesa/entrance) "oon" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/xen/lost_camp) "ooy" = ( @@ -11725,7 +11746,7 @@ /area/awaymission/black_mesa/entrance_large_office) "oqn" = ( /obj/structure/table, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ name = "broken computer"; desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "laptop"; @@ -12098,7 +12119,7 @@ /turf/simulated/floor/plating, /area/awaymission/black_mesa/security_outpost) "oMO" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plasteel/smooth, @@ -12111,12 +12132,12 @@ /area/awaymission/black_mesa/hecu_zone_camp) "oNw" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana{ pixel_x = 3; pixel_y = 3 }, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_x = 6; pixel_y = 6 }, @@ -12192,7 +12213,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/security_outpost) "oTy" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -12235,7 +12256,7 @@ /turf/simulated/wall/indestructible/rock/mineral, /area/awaymission/black_mesa/entrance_internal_hall) "oWT" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_state = "broken"; icon_screen = "broken"; @@ -12354,7 +12375,7 @@ /turf/simulated/wall/indestructible/riveted, /area/awaymission/black_mesa/security_outpost) "pbF" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /obj/structure/alien/xenoweeds, @@ -12521,7 +12542,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/black_ops_entrance) "plF" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /obj/structure/alien/xenoweeds, @@ -12546,7 +12567,7 @@ /area/awaymission/black_mesa/entrance_large_office) "pnW" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) "ppc" = ( @@ -12597,7 +12618,7 @@ }, /area/awaymission/black_mesa/hecu_zone_bathroom) "psj" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plating/dirt/xen_dirt, @@ -12772,7 +12793,7 @@ /area/awaymission/black_mesa/deep_sci_turret) "pDq" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/donut/sprinkles, +/obj/item/food/snacks/donut/sprinkles, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/entrance_lobby) "pDE" = ( @@ -13169,7 +13190,7 @@ /area/awaymission/black_mesa/hecu_zone_camp) "qeH" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/doshik_spicy, +/obj/item/food/snacks/doshik_spicy, /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/xen/acid_lake_building) "qfg" = ( @@ -13479,7 +13500,7 @@ /turf/simulated/wall/indestructible/rock/mineral, /area/awaymission/black_mesa/xen/nihilanth_hallway) "qzz" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1; icon_state = "broken"; icon_screen = "broken"; @@ -13662,7 +13683,7 @@ /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa/xen/acid_lake) "qIu" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /turf/simulated/floor/plasteel/dark{ @@ -13736,7 +13757,7 @@ /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/hecu_zone_camp) "qMR" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_state = "broken"; icon_screen = "broken"; @@ -13813,7 +13834,7 @@ /area/awaymission/black_mesa/entrance_large_office) "qPE" = ( /obj/structure/closet/crate/wooden/wooden_crate, -/obj/item/reagent_containers/food/snacks/doshik, +/obj/item/food/snacks/doshik, /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/deep_sci_storage) "qPF" = ( @@ -13882,7 +13903,7 @@ /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/xen/lost_camp) "qUm" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/high_security_emitter) "qUv" = ( @@ -14644,7 +14665,7 @@ /area/awaymission/black_mesa/hecu_zone_external_hall) "rSI" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa/xen/vortigaunt_village) "rSN" = ( @@ -15125,11 +15146,11 @@ /area/awaymission/black_mesa/black_ops_turret_blockade) "swo" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee{ pixel_x = 10 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ desc = "Its cold like the space outside noo!"; pixel_x = -6; pixel_y = 8; @@ -15166,22 +15187,22 @@ /area/awaymission/black_mesa/hecu_zone_infirmary) "szl" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/drinks/cans/sodawater, -/obj/item/reagent_containers/food/drinks/cans/sodawater, -/obj/item/reagent_containers/food/drinks/cans/sodawater, -/obj/item/reagent_containers/food/drinks/cans/sodawater, -/obj/item/reagent_containers/food/drinks/cans/sodawater, -/obj/item/reagent_containers/food/drinks/cans/lemon_lime, -/obj/item/reagent_containers/food/drinks/cans/lemon_lime, -/obj/item/reagent_containers/food/drinks/cans/lemon_lime, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/grape_juice, -/obj/item/reagent_containers/food/drinks/cans/grape_juice, -/obj/item/reagent_containers/food/drinks/cans/grape_juice, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb, +/obj/item/reagent_containers/drinks/cans/sodawater, +/obj/item/reagent_containers/drinks/cans/sodawater, +/obj/item/reagent_containers/drinks/cans/sodawater, +/obj/item/reagent_containers/drinks/cans/sodawater, +/obj/item/reagent_containers/drinks/cans/sodawater, +/obj/item/reagent_containers/drinks/cans/lemon_lime, +/obj/item/reagent_containers/drinks/cans/lemon_lime, +/obj/item/reagent_containers/drinks/cans/lemon_lime, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/grape_juice, +/obj/item/reagent_containers/drinks/cans/grape_juice, +/obj/item/reagent_containers/drinks/cans/grape_juice, +/obj/item/reagent_containers/drinks/cans/dr_gibb, +/obj/item/reagent_containers/drinks/cans/dr_gibb, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -15256,6 +15277,10 @@ /obj/structure/alien/xenoweeds, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/science_decon_room) +"sCM" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/wood/fancy/cherry, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) "sCN" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -15413,7 +15438,7 @@ /area/awaymission/black_mesa/entrance_lobby) "sNn" = ( /obj/structure/closet/crate/can, -/obj/item/reagent_containers/food/snacks/donut/sprinkles, +/obj/item/food/snacks/donut/sprinkles, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/gas_emitter_chamber) "sNG" = ( @@ -15632,7 +15657,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/security_outpost) "tdi" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plasteel, @@ -15789,7 +15814,7 @@ /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa/xen/freeman_puzzle) "tqR" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plasteel/smooth, @@ -15949,7 +15974,7 @@ }, /area/awaymission/black_mesa/xen/lost_camp_hallway) "tDf" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /turf/simulated/floor/plating/dirt/xen_dirt, @@ -16030,7 +16055,7 @@ "tGv" = ( /obj/structure/table, /obj/item/clothing/glasses/regular, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = 10; pixel_y = 10 }, @@ -16399,7 +16424,7 @@ /area/awaymission/black_mesa/entrance_lobby) "uhs" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/candy/taffy, +/obj/item/food/snacks/candy/taffy, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/hecu_zone_infirmary) "uhN" = ( @@ -16428,7 +16453,7 @@ /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa/xen/freeman_puzzle) "uiG" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /obj/machinery/light_construct/directional/east, @@ -16514,7 +16539,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/tram_room) "urb" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_state = "broken"; icon_screen = "broken"; @@ -16674,7 +16699,7 @@ /turf/simulated/floor/engine, /area/awaymission/black_mesa/lambda_teleporter) "uAV" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/black_ops_button) "uBD" = ( @@ -16791,7 +16816,7 @@ /turf/simulated/floor/plating/ironsand, /area/awaymission/black_mesa/hecu_zone_camp) "uGL" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8 }, /turf/simulated/floor/wood, @@ -17253,7 +17278,7 @@ /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/hecu_zone_camp) "vgS" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/alien/xenoweeds, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/science_decon_room) @@ -17406,7 +17431,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/entrance_internal_hall) "vrW" = ( -/obj/item/reagent_containers/food/snacks/donut/sprinkles, +/obj/item/food/snacks/donut/sprinkles, /obj/structure/table/wood, /turf/simulated/floor/wood/fancy/cherry, /area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) @@ -17420,7 +17445,7 @@ /turf/simulated/wall/indestructible/riveted, /area/awaymission/black_mesa/deep_sci_storage) "vtp" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_state = "broken"; icon_screen = "broken"; @@ -17450,6 +17475,10 @@ }, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/security_outpost) +"vug" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/awaymission/black_mesa/xen/acid_lake_building) "vuI" = ( /obj/structure/flora/biolumini/mine/weaklight, /turf/simulated/floor/plating/xen, @@ -17479,7 +17508,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/black_ops_entrance) "vwk" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_state = "broken"; icon_screen = "broken"; @@ -17778,8 +17807,8 @@ /area/awaymission/black_mesa/xen/village_hallway) "vPn" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour, /obj/machinery/light/directional/west, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -17919,7 +17948,7 @@ /obj/structure/table, /obj/item/paper, /obj/item/pen, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = 10 }, /turf/simulated/floor/plasteel, @@ -18007,7 +18036,7 @@ /turf/simulated/floor/catwalk, /area/awaymission/black_mesa/scientist_hall) "wfQ" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/science_labs) "wgt" = ( @@ -18055,7 +18084,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/high_security_surgery) "wlu" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /obj/machinery/light/directional/west, @@ -18111,11 +18140,11 @@ /area/awaymission/black_mesa/xen/acid_lake_building) "wnV" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 8; pixel_y = 2 }, -/obj/item/reagent_containers/food/snacks/chips, +/obj/item/food/snacks/chips, /turf/simulated/floor/plating/ironsand, /area/awaymission/black_mesa/hecu_zone_camp) "woi" = ( @@ -18263,7 +18292,7 @@ /area/awaymission/black_mesa/entrance) "wyF" = ( /obj/structure/table, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_keyboard = ""; icon_screen = "telescreen"; @@ -18298,7 +18327,7 @@ /turf/simulated/floor/plasteel/dark, /area/awaymission/black_mesa/hecu_zone_camp) "wzP" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_state = "broken"; icon_screen = "broken"; @@ -18523,7 +18552,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/entrance_internal_hall) "wNR" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plating/dirt/xen_dirt, @@ -18533,7 +18562,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/black_ops_server) "wOK" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -18651,7 +18680,7 @@ /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/deep_sci_medbay) "wTA" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_state = "broken"; icon_screen = "broken"; @@ -18765,7 +18794,7 @@ }, /area/awaymission/black_mesa/security_outpost) "wZH" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -19106,7 +19135,7 @@ }, /area/awaymission/black_mesa/science_labs) "xwf" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "tcstation"; icon_screen = "tcstation_broken"; icon_keyboard = null @@ -19251,6 +19280,10 @@ /obj/effect/spawner/window/shuttle, /turf/simulated/floor/plating, /area/awaymission/black_mesa/tram_room) +"xGZ" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plasteel/smooth, +/area/awaymission/black_mesa/cryo_storage) "xHI" = ( /obj/effect/landmark/awaymissions/black_mesa/random_mob_placer/xen, /turf/simulated/floor/plasteel, @@ -19318,7 +19351,7 @@ /area/awaymission/black_mesa/employee_dorm_room) "xKX" = ( /obj/structure/closet/crate/wooden/wooden_crate, -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, /turf/simulated/floor/plasteel/smooth, /area/awaymission/black_mesa/deep_sci_storage) "xMb" = ( @@ -19471,7 +19504,7 @@ /turf/simulated/floor/plating/xen, /area/awaymission/black_mesa/xen/freeman_puzzle) "xVR" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "broken computer"; dir = 8 @@ -19604,7 +19637,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/science_decon_room) "ycg" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "computer"; dir = 8 @@ -19696,7 +19729,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/black_mesa/security_outpost) "yjJ" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -32451,7 +32484,7 @@ qeH rvt pTC uzo -uzo +etS pzr uzo lUJ @@ -32563,7 +32596,7 @@ qQx lQm lQm nmA -aHI +sCM aHI aHI nmA @@ -32966,9 +32999,9 @@ pzr aNx pzr pzr -pzr +jLi uzo -xlP +vug pzr jSI uCx @@ -57660,7 +57693,7 @@ cBU cBU cBU dgN -sHE +exS mIc wBx mIc @@ -65679,9 +65712,9 @@ ptr ptr uDt pOl -pOl +koI xZT -bBe +xGZ xzz bBe bBe diff --git a/_maps/map_files220/RandomZLevels/caves.dmm b/_maps/map_files220/RandomZLevels/caves.dmm index bd2186504249..3b95b5e5952c 100644 --- a/_maps/map_files220/RandomZLevels/caves.dmm +++ b/_maps/map_files220/RandomZLevels/caves.dmm @@ -458,7 +458,7 @@ pixel_y = 10 }, /obj/effect/spawner/random_spawners/dirt_often, -/obj/item/reagent_containers/food/snacks/grown/apple/poisoned, +/obj/item/food/snacks/grown/apple/poisoned, /turf/simulated/floor/wood/lavaland_air, /area/awaymission/caves) "bY" = ( @@ -486,7 +486,8 @@ "cg" = ( /obj/effect/spawner/random_spawners/dirt_often, /mob/living/simple_animal/pet/cat/Runtime{ - name = "Witches Familiar" + name = "Witches Familiar"; + desc = "Witch!" }, /turf/simulated/floor/wood/lavaland_air{ icon_state = "wood-broken3" @@ -1400,7 +1401,7 @@ /turf/simulated/floor/plating, /area/awaymission/caves/build/reqpower_build) "gu" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -1789,7 +1790,7 @@ /turf/simulated/floor/plating/lavaland_air, /area/awaymission/caves) "iy" = ( -/obj/item/reagent_containers/food/snacks/grown/poppy{ +/obj/item/food/snacks/grown/poppy{ pixel_y = -15; pixel_x = -5 }, @@ -2184,7 +2185,7 @@ /area/awaymission/caves/build) "kC" = ( /obj/effect/decal/remains/human, -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /obj/item/clothing/suit/armor/riot/knight/red, /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/awaymission/caves) @@ -2347,13 +2348,13 @@ /area/awaymission/caves/build/reqpower_build) "lw" = ( /obj/structure/table/wood/fancy/red, -/obj/item/reagent_containers/food/snacks/candy/cotton/poison, -/obj/item/reagent_containers/food/snacks/candy/jellybean/poison{ +/obj/item/food/snacks/candy/cotton/poison, +/obj/item/food/snacks/candy/jellybean/poison{ pixel_x = -5; pixel_y = 4 }, -/obj/item/reagent_containers/food/snacks/candy/gummyworm/poison, -/obj/item/reagent_containers/food/snacks/candy/gummybear/poison{ +/obj/item/food/snacks/candy/gummyworm/poison, +/obj/item/food/snacks/candy/gummybear/poison{ pixel_x = 5; pixel_y = 5 }, @@ -5332,7 +5333,7 @@ }, /area/awaymission/caves) "Bq" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "guest"; density = 0; pixel_x = -32; @@ -6253,7 +6254,7 @@ }, /area/awaymission/caves) "Gk" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "guest"; pixel_y = -32; density = 0; @@ -6472,7 +6473,7 @@ /turf/simulated/floor/plating/lavaland_air, /area/awaymission/caves) "Hn" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "guest"; density = 0; pixel_x = -32; @@ -6996,7 +6997,7 @@ }, /area/awaymission/caves/build/reqpower_build) "JW" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "guest"; icon_screen = "guest_lightmask"; icon_keyboard = null; @@ -7388,7 +7389,7 @@ /turf/simulated/floor/wood/oak, /area/awaymission/caves/build/reqpower_build) "LM" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "tcstation"; icon_screen = "tcstation_broken"; icon_keyboard = null @@ -7710,7 +7711,7 @@ }, /area/awaymission/caves) "Oc" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "entertainment_console"; pixel_x = -32; icon_keyboard = null; @@ -7724,10 +7725,6 @@ /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/wood/oak, /area/awaymission/caves/build/reqpower_build) -"Og" = ( -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/awaymission/caves) "Oi" = ( /obj/effect/spawner/random_spawners/dirt_often, /obj/effect/decal/cleanable/generic, @@ -7985,7 +7982,7 @@ /turf/simulated/mineral/volcanic/lava_land_surface, /area/awaymission/caves) "PA" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4; icon_state = "broken"; icon_screen = "broken"; @@ -8092,7 +8089,7 @@ /turf/simulated/floor/plasteel/lavaland_air, /area/awaymission/caves/build) "Qc" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /obj/effect/spawner/random_spawners/blood_often, @@ -8360,7 +8357,7 @@ }, /area/awaymission/caves/build/reqpower_build) "RM" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "guest"; icon_screen = "guest_lightmask"; icon_keyboard = null; @@ -8478,7 +8475,9 @@ /mob/living/simple_animal/hostile/hellhound/tear, /obj/effect/gibspawner/human, /obj/effect/spawner/random_spawners/dirt_often, -/turf/simulated/floor/wood/lavaland_air, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken4" + }, /area/awaymission/caves) "Su" = ( /obj/structure/cable{ @@ -8900,7 +8899,7 @@ }, /area/awaymission/caves/build) "Uv" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -9068,7 +9067,7 @@ /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/awaymission/caves) "UZ" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -9361,8 +9360,8 @@ /area/awaymission/caves) "Wr" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 5; pixel_y = 7 }, @@ -9715,7 +9714,9 @@ /area/awaymission/caves) "XS" = ( /obj/structure/bookcase/random, -/turf/simulated/floor/wood/oak, +/turf/simulated/floor/wood/lavaland_air{ + icon_state = "wood-broken4" + }, /area/awaymission/caves) "XT" = ( /obj/effect/spawner/random_spawners/dirt_often, @@ -9842,8 +9843,9 @@ /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/awaymission/caves) "Yx" = ( -/obj/effect/spawner/window/reinforced/grilled, -/turf/simulated/floor/plating, +/obj/structure/grille/broken, +/obj/effect/landmark/damageturf, +/turf/simulated/floor/plating/lavaland_air, /area/awaymission/caves) "YC" = ( /obj/effect/decal/solgov_logo{ @@ -9994,8 +9996,8 @@ "Zz" = ( /obj/structure/closet/crate/wooden/wooden_crate, /obj/structure/stone_tile/slab, -/obj/item/reagent_containers/food/drinks/trophy/bronze_cup, -/obj/item/reagent_containers/food/drinks/bottle/wine{ +/obj/item/reagent_containers/drinks/trophy/bronze_cup, +/obj/item/reagent_containers/drinks/bottle/wine{ name = "Thousand-year-old wine"; icon_state = "patronbottle" }, @@ -40843,7 +40845,7 @@ BH NN Do BH -Og +bt dU zm pZ @@ -41072,7 +41074,7 @@ BH BH BH BH -XZ +Yx XL BH BH @@ -41771,7 +41773,7 @@ BH bt au oB -Yx +pZ nu aV pZ diff --git a/_maps/map_files220/RandomZLevels/gate_lizard.dmm b/_maps/map_files220/RandomZLevels/gate_lizard.dmm index 541121815f81..4755a594d948 100644 --- a/_maps/map_files220/RandomZLevels/gate_lizard.dmm +++ b/_maps/map_files220/RandomZLevels/gate_lizard.dmm @@ -150,7 +150,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/jungle_planet/inside/complex) "ajt" = ( -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /obj/effect/spawner/random_spawners/dirt_often, /turf/simulated/floor/plasteel, /area/awaymission/jungle_planet/inside/complex) @@ -309,7 +309,7 @@ /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave/pirate) "ati" = ( -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /obj/effect/spawner/random_spawners/dirt_maybe, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/inside/complex) @@ -324,7 +324,7 @@ "atT" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box/empty, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_y = 9; pixel_x = 13 }, @@ -1005,9 +1005,9 @@ /area/awaymission/jungle_planet/outside/river) "bru" = ( /obj/structure/closet/crate/wooden/barrel, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave) "brT" = ( @@ -1219,13 +1219,13 @@ }, /area/awaymission/jungle_planet/outside) "bBR" = ( -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, -/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, -/obj/item/reagent_containers/food/snacks/grown/onion, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/food/snacks/grown/chili, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/mushroom/chanterelle, +/obj/item/food/snacks/grown/mushroom/chanterelle, +/obj/item/food/snacks/grown/onion, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, /obj/structure/closet/crate/wooden/wooden_crate, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave/small) @@ -1411,7 +1411,7 @@ }, /area/awaymission/jungle_planet/inside/complex) "bNN" = ( -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /obj/structure/stone_tile/slab/cracked{ dir = 4 }, @@ -1574,7 +1574,7 @@ /area/awaymission/jungle_planet/outside/waterfall) "caT" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/effect/spawner/random_spawners/dirt_frequent, @@ -1607,7 +1607,7 @@ /area/awaymission/jungle_planet/outside) "ccc" = ( /obj/structure/closet/crate/wooden/barrel, -/obj/item/reagent_containers/food/snacks/monkeykabob, +/obj/item/food/snacks/monkeykabob, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave) "cco" = ( @@ -2613,7 +2613,7 @@ /area/awaymission/jungle_planet/outside) "dpL" = ( /obj/structure/closet, -/obj/item/reagent_containers/food/snacks/candy/candybar, +/obj/item/food/snacks/candy/candybar, /obj/item/stack/spacecash/c10, /obj/item/flashlight/seclite, /obj/item/clothing/shoes/combat, @@ -3130,7 +3130,7 @@ /obj/structure/table/reinforced, /obj/item/trash/chips, /obj/item/stack/tape_roll, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ desc = "Its cold like the space outside noo!"; list_reagents = list("coffee" = 0) }, @@ -3168,7 +3168,7 @@ /area/awaymission/jungle_planet/inside/complex) "efS" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave/pirate) "egj" = ( @@ -3194,7 +3194,7 @@ /obj/structure/chair/sofa/left{ dir = 8 }, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_keyboard = ""; icon_screen = "telescreen"; @@ -3588,9 +3588,9 @@ name = "kitchen Cabinet"; req_access = list(201) }, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/sugar, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -3623,7 +3623,7 @@ /area/awaymission/jungle_planet/outside/river) "eJx" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ list_reagents = list("rum" = 50) }, /obj/item/clothing/mask/cigarette/pipe, @@ -4124,7 +4124,7 @@ /turf/simulated/floor/beach/away/water/deep/dense_canpass, /area/awaymission/jungle_planet/outside/river) "frZ" = ( -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0) }, /turf/simulated/floor/plating/asteroid/ancient{ @@ -4298,19 +4298,19 @@ pixel_x = 6; pixel_y = 7 }, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_keyboard = ""; icon_screen = "telescreen"; icon_state = "telescreen_console"; pixel_x = -32 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/inside/complex) "fFa" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /obj/structure/reagent_dispensers/fueltank/chem{ pixel_y = 30 }, @@ -4486,7 +4486,7 @@ /turf/simulated/floor/plating, /area/awaymission/jungle_planet/inside/complex) "fNF" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ name = "broken computer"; desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "computer"; @@ -4599,7 +4599,7 @@ /area/awaymission/jungle_planet/outside/river) "fYG" = ( /obj/effect/spawner/random_spawners/dirt_often, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ list_reagents = list("rum" = 0) }, /obj/effect/landmark/damageturf, @@ -4623,11 +4623,11 @@ /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave/small) "gaG" = ( -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = 9 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0) }, /turf/simulated/floor/wood/oak, @@ -4822,7 +4822,7 @@ /turf/simulated/floor/indestructible/grass, /area/awaymission/jungle_planet/outside) "gpD" = ( -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ layer = 5; pixel_y = 14 }, @@ -4964,7 +4964,7 @@ /area/awaymission/jungle_planet/inside/complex) "gAD" = ( /obj/structure/curtain/black, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ list_reagents = list("rum" = 0) }, /obj/effect/mob_spawn/human/corpse/skeleton, @@ -5296,8 +5296,8 @@ /area/awaymission/jungle_planet/inside/complex) "gYH" = ( /obj/structure/stone_tile/slab/cracked, -/obj/item/reagent_containers/food/snacks/grown/poppy/lily, -/obj/item/reagent_containers/food/snacks/grown/moonflower, +/obj/item/food/snacks/grown/poppy/lily, +/obj/item/food/snacks/grown/moonflower, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) "gZm" = ( @@ -5755,10 +5755,10 @@ /area/awaymission/jungle_planet/outside/abandoned) "hws" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave) "hwW" = ( @@ -6008,11 +6008,11 @@ /area/awaymission/jungle_planet/outside/cave) "hOx" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mushroom_bowl{ +/obj/item/reagent_containers/drinks/mushroom_bowl{ pixel_y = -23; pixel_x = 9 }, -/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, +/obj/item/food/snacks/grown/mushroom/chanterelle, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) "hPx" = ( @@ -6487,7 +6487,7 @@ /area/awaymission/jungle_planet/outside/waterfall) "isZ" = ( /obj/machinery/photocopier, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_keyboard = ""; icon_screen = "telescreen"; @@ -6778,7 +6778,7 @@ /turf/simulated/floor/plating, /area/awaymission/jungle_planet/inside) "iKW" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_keyboard = ""; icon_screen = "telescreen"; @@ -7149,7 +7149,7 @@ /area/awaymission/jungle_planet/outside/waterfall) "jie" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mushroom_bowl, +/obj/item/reagent_containers/drinks/mushroom_bowl, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) "jiu" = ( @@ -7173,7 +7173,7 @@ }, /area/awaymission/jungle_planet/outside/river) "jjL" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "computer"; dir = 8 @@ -7590,8 +7590,8 @@ /obj/item/reagent_containers/glass/beaker/waterbottle/large, /obj/item/reagent_containers/glass/beaker/waterbottle/large, /obj/item/reagent_containers/glass/beaker/waterbottle/large, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /turf/simulated/floor/plasteel, /area/awaymission/jungle_planet/inside/complex) "jIo" = ( @@ -8182,10 +8182,10 @@ /turf/simulated/floor/plating, /area/awaymission/jungle_planet/inside/complex) "kvb" = ( -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 3 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -3 }, /obj/structure/table, @@ -8337,7 +8337,7 @@ }, /area/awaymission/jungle_planet/inside/complex) "kDy" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -8392,7 +8392,7 @@ /area/awaymission/jungle_planet/inside/complex) "kHh" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/monkeysdelight, +/obj/item/food/snacks/monkeysdelight, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave) "kHP" = ( @@ -8545,7 +8545,7 @@ /obj/item/shard{ icon_state = "small" }, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_keyboard = ""; icon_screen = "telescreen"; @@ -8616,7 +8616,7 @@ }, /area/awaymission/jungle_planet/inside/complex) "kUl" = ( -/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/item/reagent_containers/drinks/bottle/tequila, /obj/effect/spawner/random_spawners/dirt_often, /obj/structure/closet/crate/wooden/wooden_crate, /turf/simulated/floor/wood/oak, @@ -8805,12 +8805,12 @@ "lfb" = ( /obj/effect/turf_decal/delivery/white, /obj/structure/closet/cardboard, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/beans, -/obj/item/reagent_containers/food/snacks/candy/donor, -/obj/item/reagent_containers/food/snacks/candy/donor, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/beans, +/obj/item/food/snacks/candy/donor, +/obj/item/food/snacks/candy/donor, /turf/simulated/floor/plasteel, /area/awaymission/jungle_planet/inside/complex) "lfj" = ( @@ -8876,19 +8876,19 @@ /turf/simulated/floor/plasteel, /area/awaymission/jungle_planet/outside) "liO" = ( -/obj/item/reagent_containers/food/drinks/mushroom_bowl{ +/obj/item/reagent_containers/drinks/mushroom_bowl{ pixel_y = -11; pixel_x = -11 }, -/obj/item/reagent_containers/food/drinks/mushroom_bowl{ +/obj/item/reagent_containers/drinks/mushroom_bowl{ pixel_y = -23; pixel_x = 9 }, -/obj/item/reagent_containers/food/snacks/grown/mushroom/libertycap, -/obj/item/reagent_containers/food/snacks/grown/mushroom/reishi{ +/obj/item/food/snacks/grown/mushroom/libertycap, +/obj/item/food/snacks/grown/mushroom/reishi{ pixel_x = -7 }, -/obj/item/reagent_containers/food/snacks/grown/mushroom/amanita, +/obj/item/food/snacks/grown/mushroom/amanita, /obj/structure/stone_tile/block/cracked, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) @@ -8955,7 +8955,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/jungle_planet/inside/complex) "lms" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 2; icon_state = "broken"; icon_screen = "broken"; @@ -9991,7 +9991,7 @@ /area/awaymission/jungle_planet/inside/complex) "mBN" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/plating/asteroid/ancient{ name = "ground" }, @@ -10197,8 +10197,8 @@ /area/awaymission/jungle_planet/outside/cave) "mMo" = ( /obj/structure/closet/crate/wooden/barrel, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/landmark/damageturf, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave) @@ -10306,7 +10306,7 @@ /turf/simulated/floor/indestructible/grass, /area/awaymission/jungle_planet/outside) "mSW" = ( -/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey, /obj/effect/spawner/random_spawners/dirt_often, /obj/structure/closet/crate/wooden/wooden_crate, /obj/effect/landmark/damageturf, @@ -10566,7 +10566,7 @@ /turf/simulated/floor/indestructible/grass, /area/awaymission/jungle_planet/outside/river) "nhA" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ name = "broken computer"; desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "computer"; @@ -10613,7 +10613,7 @@ /area/awaymission/jungle_planet/outside/abandoned) "njL" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/monkeysdelight, +/obj/item/food/snacks/monkeysdelight, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) "njP" = ( @@ -10630,8 +10630,8 @@ /area/awaymission/jungle_planet/outside/river) "nok" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mushroom_bowl, -/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, +/obj/item/reagent_containers/drinks/mushroom_bowl, +/obj/item/food/snacks/grown/mushroom/chanterelle, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) "nou" = ( @@ -11118,7 +11118,7 @@ /turf/simulated/floor/mineral/plastitanium, /area/awaymission/jungle_planet/outside/abandoned) "nZe" = ( -/obj/item/reagent_containers/food/drinks/trophy/silver_cup, +/obj/item/reagent_containers/drinks/trophy/silver_cup, /obj/item/clothing/gloves/ring/gold, /obj/effect/spawner/random_spawners/dirt_often, /obj/structure/closet/crate/wooden/wooden_crate, @@ -11269,7 +11269,7 @@ /turf/simulated/floor/beach/away/sand, /area/awaymission/jungle_planet/outside/waterfall) "oke" = ( -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /turf/simulated/floor/beach/away/sand, /area/awaymission/jungle_planet/outside/river) "okx" = ( @@ -11299,11 +11299,11 @@ "omT" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/closet/crate/wooden/wooden_crate, -/obj/item/reagent_containers/food/snacks/grown/cannabis, -/obj/item/reagent_containers/food/snacks/grown/cannabis, -/obj/item/reagent_containers/food/snacks/grown/cannabis/ultimate, -/obj/item/reagent_containers/food/snacks/grown/cannabis/ultimate, -/obj/item/reagent_containers/food/snacks/grown/cannabis/ultimate, +/obj/item/food/snacks/grown/cannabis, +/obj/item/food/snacks/grown/cannabis, +/obj/item/food/snacks/grown/cannabis/ultimate, +/obj/item/food/snacks/grown/cannabis/ultimate, +/obj/item/food/snacks/grown/cannabis/ultimate, /obj/effect/landmark/damageturf, /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/outside/cave) @@ -11736,7 +11736,7 @@ "oMg" = ( /obj/structure/table/wood, /obj/item/storage/fancy/cigarettes/cigpack_robust, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer" = 0); pixel_x = -11; pixel_y = 2 @@ -11877,7 +11877,7 @@ /area/awaymission/jungle_planet/inside/complex) "oTJ" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mushroom_bowl{ +/obj/item/reagent_containers/drinks/mushroom_bowl{ pixel_y = -11; pixel_x = -11 }, @@ -12205,7 +12205,7 @@ /obj/structure/table, /obj/item/wrench, /obj/item/screwdriver, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ desc = "Its cold like the space outside noo!"; pixel_x = -6; pixel_y = 8; @@ -12632,7 +12632,7 @@ /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/inside/complex) "pZY" = ( -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /turf/simulated/floor/plating, /area/awaymission/jungle_planet/inside/complex) "qaT" = ( @@ -12715,11 +12715,11 @@ /area/awaymission/jungle_planet/outside/cave) "qgA" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/milk, /obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/reagent_containers/drinks/bottle/cream, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -12818,7 +12818,7 @@ /area/awaymission/jungle_planet/inside/complex) "qmr" = ( /obj/structure/table, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ name = "broken computer"; desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_state = "laptop"; @@ -13291,11 +13291,11 @@ /area/awaymission/jungle_planet/inside/complex) "qOH" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/meat{ +/obj/item/food/snacks/meat{ pixel_y = -22; pixel_x = -7 }, -/obj/item/reagent_containers/food/snacks/monkeysdelight, +/obj/item/food/snacks/monkeysdelight, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) "qOM" = ( @@ -13415,7 +13415,7 @@ /turf/simulated/floor/plasteel, /area/awaymission/jungle_planet/outside) "qVg" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_state = "broken"; icon_screen = "broken"; @@ -13438,7 +13438,7 @@ /area/awaymission/jungle_planet/inside/complex) "qVY" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) "qVZ" = ( @@ -13580,7 +13580,7 @@ }, /obj/item/coin/gold, /obj/item/clothing/mask/cigarette/pipe/cobpipe, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ list_reagents = list("rum" = 0) }, /turf/simulated/floor/wood/oak, @@ -13944,7 +13944,7 @@ /area/awaymission/jungle_planet/inside/complex) "rBr" = ( /obj/structure/chair/office/dark, -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; icon_keyboard = ""; icon_screen = "telescreen"; @@ -14011,7 +14011,7 @@ /area/awaymission/jungle_planet/outside/abandoned) "rHT" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/item/storage/fancy/matches, /obj/effect/decal/cleanable/cobweb2, /obj/item/clothing/mask/cigarette/pipe, @@ -14846,8 +14846,8 @@ /area/awaymission/jungle_planet/inside/complex) "sDQ" = ( /obj/structure/stone_tile/slab/cracked, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, +/obj/item/food/snacks/grown/poppy, +/obj/item/food/snacks/grown/poppy/geranium, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) "sFa" = ( @@ -14884,8 +14884,8 @@ /area/awaymission/jungle_planet/outside/cave/pirate) "sIz" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/shaker, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -4 }, /obj/effect/spawner/random_spawners/dirt_maybe, @@ -15039,7 +15039,7 @@ }, /area/awaymission/jungle_planet/outside/river) "sRJ" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "broken computer" }, @@ -15220,13 +15220,13 @@ }, /area/awaymission/jungle_planet/outside/river) "tey" = ( -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, -/obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, -/obj/item/reagent_containers/food/snacks/grown/onion, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/food/snacks/grown/chili, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/mushroom/chanterelle, +/obj/item/food/snacks/grown/mushroom/chanterelle, +/obj/item/food/snacks/grown/onion, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, /obj/effect/decal/cleanable/cobweb2, /obj/structure/closet/crate/wooden/wooden_crate, /turf/simulated/floor/wood/oak, @@ -17310,7 +17310,7 @@ /area/awaymission/jungle_planet/outside/cave) "vCb" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/fried_vox{ +/obj/item/food/snacks/fried_vox{ pixel_y = 5 }, /turf/simulated/floor/wood/oak, @@ -17409,7 +17409,7 @@ pixel_x = -3; pixel_y = 18 }, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/plating, /area/awaymission/jungle_planet/inside/complex) "vHh" = ( @@ -18249,7 +18249,7 @@ /area/awaymission/jungle_planet/inside) "wMk" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ list_reagents = list("rum" = 50) }, /turf/simulated/floor/wood/oak, @@ -18702,8 +18702,8 @@ /turf/simulated/floor/plasteel, /area/awaymission/jungle_planet/inside/complex) "xmJ" = ( -/obj/item/reagent_containers/food/drinks/mushroom_bowl, -/obj/item/reagent_containers/food/snacks/badrecipe, +/obj/item/reagent_containers/drinks/mushroom_bowl, +/obj/item/food/snacks/badrecipe, /turf/simulated/floor/engine/cult, /area/awaymission/jungle_planet/outside/cave) "xmQ" = ( @@ -19008,7 +19008,7 @@ }, /area/awaymission/jungle_planet/inside) "xJT" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ icon_state = "computer"; dir = 8; name = "arrival console" @@ -19184,7 +19184,7 @@ /obj/structure/table/wood, /obj/item/flashlight/lamp, /obj/item/pen/fancy, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ list_reagents = list("whiskey" = 0); pixel_x = -9 }, @@ -19192,8 +19192,8 @@ /turf/simulated/floor/wood/oak, /area/awaymission/jungle_planet/inside/complex) "xSz" = ( -/obj/item/reagent_containers/food/drinks/bottle/rum, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum, +/obj/item/reagent_containers/drinks/bottle/rum{ list_reagents = list("rum" = 0) }, /obj/structure/closet/crate/wooden/wooden_crate, diff --git a/_maps/map_files220/RandomZLevels/wildwest.dmm b/_maps/map_files220/RandomZLevels/wildwest.dmm index 4721a0588752..8b1697467a94 100644 --- a/_maps/map_files220/RandomZLevels/wildwest.dmm +++ b/_maps/map_files220/RandomZLevels/wildwest.dmm @@ -130,7 +130,7 @@ /area/awaymission/wildwest/wildwest_refine) "bd" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/snacks/mint, +/obj/item/food/snacks/mint, /obj/item/kitchen/utensil/fork, /turf/simulated/floor/wood/oak, /area/awaymission/wildwest/wildwest_mines) @@ -783,7 +783,7 @@ /obj/structure/table, /obj/item/megaphone, /obj/structure/extinguisher_cabinet/directional/east, -/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee, /obj/item/folder/yellow{ pixel_x = 2; pixel_y = 2 @@ -1006,7 +1006,7 @@ /area/awaymission/wildwest/wildwest_refine) "jM" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/wood/oak, /area/awaymission/wildwest/wildwest_mines) "jP" = ( @@ -1156,16 +1156,16 @@ /area/awaymission/wildwest/wildwest_vault) "ll" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ layer = 5; pixel_x = 8; pixel_y = 6 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 11 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8; pixel_y = 1 }, @@ -1608,8 +1608,8 @@ /area/awaymission/wildwest/wildwest_vault) "oR" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/soda, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/drinkingglass/soda, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -7 }, /turf/simulated/floor/wood/oak, @@ -1641,11 +1641,11 @@ "ps" = ( /obj/structure/table/holotable/wood, /obj/item/reagent_containers/glass/rag, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ +/obj/item/reagent_containers/drinks/shaker, +/obj/item/reagent_containers/drinks/drinkingglass/soda{ pixel_x = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ +/obj/item/reagent_containers/drinks/drinkingglass/soda{ pixel_x = 11; pixel_y = 3 }, @@ -1686,7 +1686,7 @@ /turf/simulated/floor, /area/awaymission/wildwest/wildwest_refine) "pQ" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 8; icon_keyboard = "syndie_key"; icon_screen = "syndinavigation" @@ -2288,7 +2288,7 @@ /area/awaymission/wildwest/wildwest_mines) "vL" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/syndicake, +/obj/item/food/snacks/syndicake, /turf/simulated/floor/mineral/plastitanium/red, /area/awaymission/wildwest/wildwest_refine) "wh" = ( @@ -2305,7 +2305,7 @@ /turf/simulated/wall/mineral/sandstone, /area/awaymission/wildwest/wildwest_mines) "wk" = ( -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /obj/effect/decal/cleanable/blood/oil, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2515,7 +2515,7 @@ /area/awaymission/wildwest/wildwest_mines) "yH" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/wood/oak, /area/awaymission/wildwest/wildwest_mines) "yK" = ( @@ -2525,7 +2525,7 @@ /area/awaymission/wildwest/wildwest_mines) "yP" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ +/obj/item/reagent_containers/drinks/drinkingglass/soda{ pixel_x = 6 }, /obj/effect/decal/cleanable/dirt, @@ -2890,7 +2890,7 @@ /area/awaymission/wildwest/wildwest_vault) "Cw" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ +/obj/item/reagent_containers/drinks/drinkingglass/soda{ pixel_x = 11 }, /obj/structure/sign/poster/official/random/south, @@ -3401,7 +3401,7 @@ /area/awaymission/wildwest/wildwest_mines) "Hj" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/snacks/mint, +/obj/item/food/snacks/mint, /turf/simulated/floor/wood/oak, /area/awaymission/wildwest/wildwest_mines) "Hm" = ( @@ -3799,7 +3799,7 @@ /turf/simulated/floor/carpet/orange, /area/awaymission/wildwest/wildwest_mines) "Md" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4 }, /turf/simulated/floor/wood/oak, @@ -4150,7 +4150,7 @@ /area/awaymission/wildwest/wildwest_mines) "Pz" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/snacks/mint, +/obj/item/food/snacks/mint, /obj/item/kitchen/utensil/spoon, /obj/item/kitchen/utensil/fork{ pixel_x = 6 @@ -4400,7 +4400,7 @@ }, /area/awaymission/wildwest/wildwest_mines) "Sf" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 4; icon_keyboard = "syndie_key"; icon_screen = "syndinavigation" @@ -4419,10 +4419,10 @@ /area/awaymission/wildwest/wildwest_mines) "Sq" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -7 }, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/wood/oak, /area/awaymission/wildwest/wildwest_mines) "Sr" = ( @@ -4732,7 +4732,7 @@ /area/awaymission/wildwest/wildwest_mines) "VG" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/snacks/mint, +/obj/item/food/snacks/mint, /obj/item/kitchen/utensil/fork, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/oak, @@ -4769,7 +4769,7 @@ "VW" = ( /obj/structure/table/holotable/wood, /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/soda{ +/obj/item/reagent_containers/drinks/drinkingglass/soda{ pixel_x = 6 }, /turf/simulated/floor/wood/oak, @@ -5094,7 +5094,7 @@ /area/awaymission/wildwest/wildwest_mines) "ZG" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/oak, /area/awaymission/wildwest/wildwest_mines) diff --git a/_maps/map_files220/cyberiad/cyberiad.dmm b/_maps/map_files220/cyberiad/cyberiad.dmm index 14f84816fd05..f9305dbb456a 100644 --- a/_maps/map_files220/cyberiad/cyberiad.dmm +++ b/_maps/map_files220/cyberiad/cyberiad.dmm @@ -137,7 +137,7 @@ }, /area/station/security/armory/secure) "abP" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/window/reinforced{ dir = 1 }, @@ -427,7 +427,7 @@ }, /area/station/security/armory/secure) "adh" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/window/reinforced{ dir = 1 }, @@ -481,9 +481,8 @@ /turf/simulated/floor/plasteel, /area/station/security/permabrig) "adp" = ( -/obj/machinery/door/airlock/bathroom{ - name = "Unisex Restrooms" - }, +/obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, @@ -525,7 +524,7 @@ }, /area/station/security/main) "adH" = ( -/obj/machinery/suit_storage_unit/security/hos, +/obj/machinery/suit_storage_unit/security/hos/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -688,9 +687,9 @@ "aem" = ( /obj/machinery/door/airlock/external{ id_tag = "laborcamp_home"; - locked = 1; - name = "Labor Camp Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, @@ -756,7 +755,7 @@ /area/station/security/main) "aeC" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/hos, +/obj/item/reagent_containers/drinks/mug/hos, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -1022,7 +1021,6 @@ /area/station/engineering/control) "afV" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, @@ -1147,7 +1145,6 @@ /area/station/security/brig) "agZ" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, @@ -1158,9 +1155,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/multi_tile/security/glass{ - name = "Labor Camp Transfer" - }, +/obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -1672,6 +1669,7 @@ }, /obj/structure/chair/stool, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "ajg" = ( @@ -1991,10 +1989,9 @@ /area/station/security/range) "akC" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -2099,9 +2096,8 @@ /area/station/legal/lawoffice) "ald" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/lawyer/glass{ - name = "Internal Affairs Office" - }, +/obj/machinery/door/airlock/lawyer/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -2194,7 +2190,6 @@ id_tag = "Secure Gate"; name = "Security Blast Door" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -2228,11 +2223,11 @@ id_tag = "Secure Gate"; name = "Security Blast Door" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/airlock/multi_tile/security/glass{ - id_tag = "BrigLeft"; - name = "Brig Foyer Left Entrance" + id_tag = "BrigLeft" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -2347,9 +2342,9 @@ "alR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ - id_tag = "Brig"; - name = "Prisoner Processing" + id_tag = "Brig" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -2382,9 +2377,8 @@ /area/station/security/evidence) "alT" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Warden's Office" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -2409,9 +2403,8 @@ /area/station/security/warden) "alV" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Warden's Office" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -2441,10 +2434,10 @@ dir = 1; name = "Secure Armory" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general, /obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -2489,15 +2482,15 @@ /area/station/security/main) "ame" = ( /obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; security_level = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/station/maintenance/fore) "amf" = ( @@ -2603,11 +2596,11 @@ name = "Security Blast Door" }, /obj/machinery/door/window/classic/reversed, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, /obj/structure/plasticflaps{ opacity = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fore) "amy" = ( @@ -2831,15 +2824,16 @@ id = "HoS" }, /obj/machinery/door/airlock/command/hos/glass{ - id_tag = "hosofficedoor"; - name = "Head of Security" + id_tag = "hosofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -2918,6 +2912,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/spawner/prisoner, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -3100,10 +3095,7 @@ /area/station/security/lobby) "anZ" = ( /obj/structure/table, -/obj/item/camera{ - pixel_x = 3; - pixel_y = -4 - }, +/obj/item/camera, /obj/item/taperecorder{ pixel_x = -4; pixel_y = 2 @@ -3257,12 +3249,12 @@ /turf/simulated/floor/plasteel, /area/station/security/storage) "aoC" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/security/glass{ - dir = 2; - name = "Equipment Storage" + dir = 2 }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" }, @@ -3273,11 +3265,16 @@ "aoL" = ( /obj/structure/table, /obj/item/taperecorder, -/obj/machinery/light_switch/west, /obj/item/radio/intercom/department/security{ pixel_y = 22 }, /obj/machinery/light/directional/north, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console"; + pixel_x = -30 + }, /turf/simulated/floor/plasteel, /area/station/security/main) "aoM" = ( @@ -3395,10 +3392,7 @@ /area/station/security/prison/cell_block/A) "apa" = ( /obj/structure/table, -/obj/item/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "Camera" - }, +/obj/item/camera, /turf/simulated/floor/plasteel, /area/station/security/processing) "apc" = ( @@ -3557,7 +3551,7 @@ req_one_access_txt = "63" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 8 }, /turf/simulated/floor/plasteel{ @@ -3690,7 +3684,6 @@ /area/station/security/storage) "apT" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3806,10 +3799,9 @@ /area/station/security/warden) "aqy" = ( /obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/machinery/door/airlock/multi_tile/security/glass{ - name = "Equipment Storage" - }, /turf/simulated/floor/plasteel, /area/station/security/storage) "aqE" = ( @@ -3842,10 +3834,10 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/command/hos{ - name = "Head of Security" - }, +/obj/machinery/door/airlock/command/hos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/security/hos, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -4251,6 +4243,7 @@ /area/station/security/permabrig) "ass" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/any/security/armory, /turf/simulated/floor/plating, @@ -4537,7 +4530,7 @@ dir = 8; req_one_access_txt = "63" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 8 }, /turf/simulated/floor/plasteel{ @@ -4546,16 +4539,16 @@ /area/station/security/evidence) "atr" = ( /obj/machinery/door/airlock{ - id_tag = "secmaintdorm1"; - name = "Room 1" + id_tag = "secmaintdorm1" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fore) "ats" = ( /obj/machinery/door/airlock{ - id_tag = "secmaintdorm2"; - name = "Room 2" + id_tag = "secmaintdorm2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fore) "att" = ( @@ -4593,9 +4586,8 @@ }, /area/station/security/brig) "atA" = ( -/obj/machinery/door/airlock/silver{ - name = "Prison Showers" - }, +/obj/machinery/door/airlock/silver, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ @@ -4651,9 +4643,8 @@ }, /area/station/security/brig) "atO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Forestry" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -4884,7 +4875,8 @@ "auJ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/reinforced/normal{ - name = "Security Reception" + name = "Security Reception"; + dir = 1 }, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; @@ -4895,7 +4887,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general, /obj/item/paper_bin{ pixel_y = 3; pixel_x = -4 @@ -4904,6 +4895,9 @@ pixel_x = -2; pixel_y = 5 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, @@ -5016,9 +5010,11 @@ dir = 4 }, /obj/machinery/light/directional/west, -/obj/machinery/button/windowtint/west{ - id = "Processing"; - req_one_access_txt = "63" +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console"; + pixel_x = -30 }, /turf/simulated/floor/plasteel, /area/station/security/processing) @@ -5043,6 +5039,10 @@ "auW" = ( /obj/machinery/power/apc/directional/east, /obj/structure/cable, +/obj/machinery/button/windowtint/south{ + id = "Processing"; + req_one_access_txt = "63" + }, /turf/simulated/floor/plasteel, /area/station/security/processing) "auX" = ( @@ -5206,9 +5206,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "avs" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fore) "avt" = ( @@ -5218,9 +5217,9 @@ name = "escape pod 3" }, /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Escape Pod Hatch" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_3) "avu" = ( @@ -5353,7 +5352,6 @@ /area/station/security/prison/cell_block/A) "awa" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkredcorners" @@ -5368,7 +5366,6 @@ id_tag = "Secure Gate"; name = "Security Blast Door" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkredcorners" @@ -5385,11 +5382,11 @@ /obj/effect/mapping_helpers/airlock/polarized{ id = "Processing" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/airlock/security/glass{ - id_tag = "Brig"; - name = "Prisoner Processing" + id_tag = "Brig" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "redcorner" @@ -5531,12 +5528,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/airlock/multi_tile/security/glass{ dir = 2; - id_tag = "BrigEast"; - name = "Brig East Entrance" + id_tag = "BrigEast" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkredcorners" @@ -5771,11 +5768,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/airlock/multi_tile/security/glass{ - dir = 2; - name = "Brig" + dir = 2 }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ icon_state = "darkredcorners" }, @@ -5857,11 +5854,11 @@ /obj/effect/mapping_helpers/airlock/polarized{ id = "Processing" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/airlock/security/glass{ - id_tag = "Brig"; - name = "Prisoner Processing" + id_tag = "Brig" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "redcorner" @@ -5910,7 +5907,7 @@ /obj/item/radio{ pixel_x = 5 }, -/obj/item/reagent_containers/food/drinks/mug/sec, +/obj/item/reagent_containers/drinks/mug/sec, /turf/simulated/floor/plating, /area/station/maintenance/fore) "axX" = ( @@ -6081,11 +6078,7 @@ /obj/item/camera_film{ pixel_y = 7 }, -/obj/item/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera"; - pixel_y = 2 - }, +/obj/item/camera/detective, /turf/simulated/floor/wood/oak, /area/station/security/detective) "ayB" = ( @@ -6150,7 +6143,7 @@ "ayM" = ( /obj/machinery/light/directional/south, /obj/machinery/ai_status_display/south, -/obj/item/reagent_containers/food/drinks/mug/sec, +/obj/item/reagent_containers/drinks/mug/sec, /obj/structure/table, /turf/simulated/floor/plasteel{ icon_state = "redcorner" @@ -6288,9 +6281,8 @@ /area/station/security/interrogation/observation) "azd" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Interrogation" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6306,7 +6298,7 @@ /obj/effect/mapping_helpers/airlock/polarized{ id = "Interrogation" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -6441,10 +6433,10 @@ }, /obj/effect/turf_decal/delivery/red, /obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - dir = 4 + dir = 8 }, /obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - dir = 8 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -6467,9 +6459,8 @@ }, /area/station/security/execution) "azy" = ( -/obj/machinery/door/airlock/security{ - name = "Prisoner Re-education Centre" - }, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -6601,13 +6592,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" }, @@ -7223,11 +7213,10 @@ }, /area/station/security/execution) "aBR" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/simulated/floor/plating, /area/station/maintenance/fore) "aBS" = ( @@ -7293,9 +7282,8 @@ /area/station/legal/lawoffice) "aCc" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/lawyer/glass{ - name = "Internal Affairs Office" - }, +/obj/machinery/door/airlock/lawyer/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "IAA" }, @@ -7602,7 +7590,7 @@ /area/station/maintenance/abandonedbar) "aCW" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/patron, +/obj/item/reagent_containers/drinks/bottle/patron, /obj/item/storage/fancy/cigarettes/cigpack_shadyjims, /obj/machinery/light_construct/small/east, /turf/simulated/floor/plating, @@ -7616,10 +7604,7 @@ /area/station/hallway/primary/fore) "aDb" = ( /obj/structure/table, -/obj/item/camera{ - pixel_x = 3; - pixel_y = -4 - }, +/obj/item/camera, /obj/machinery/door_control/shutter/north{ id = "brig_courtroom"; name = "Brig Courtroom Shutter Control"; @@ -7731,7 +7716,7 @@ "aDq" = ( /obj/effect/decal/cleanable/dust, /obj/structure/table, -/obj/item/reagent_containers/food/snacks/cheesewedge, +/obj/item/food/snacks/cheesewedge, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aDr" = ( @@ -7839,7 +7824,7 @@ /obj/item/clothing/suit/wcoat, /obj/item/clothing/suit/blacktrenchcoat, /obj/item/clothing/under/suit/tan, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "aDD" = ( @@ -7876,19 +7861,19 @@ "aDI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; security_level = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/poddoor/shutters{ id_tag = "brig_courtroom"; name = "Brig Courtroom Shutters" }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ icon_state = "darkred" }, @@ -8150,11 +8135,10 @@ /area/station/maintenance/fpmaint2) "aEL" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/door/airlock/atmos{ - name = "Fore-Port Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "aEN" = ( @@ -8234,7 +8218,7 @@ /obj/structure/sign/poster/contraband/random/east, /obj/structure/sink/kitchen/east, /obj/structure/closet/walllocker/medlocker/south, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = -8; pixel_y = 2 }, @@ -8243,8 +8227,8 @@ /area/station/maintenance/abandonedbar) "aFb" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/condiment/saltshaker, +/obj/item/reagent_containers/condiment/peppermill, /turf/simulated/floor/plating, /area/station/maintenance/abandonedbar) "aFc" = ( @@ -8385,7 +8369,7 @@ /obj/item/clothing/glasses/sunglasses{ pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/flask/detflask{ +/obj/item/reagent_containers/drinks/flask/detflask{ pixel_x = 16; pixel_y = 4 }, @@ -8427,9 +8411,8 @@ /area/station/hallway/primary/fore) "aFG" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office" - }, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -8784,6 +8767,7 @@ d2 = 2; icon_state = "0-2" }, +/obj/effect/landmark/start/barber, /turf/simulated/floor/plasteel{ icon_state = "barber" }, @@ -8822,6 +8806,7 @@ c_tag = "Arcade" }, /obj/machinery/firealarm/directional/north, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "aGQ" = ( @@ -8833,6 +8818,7 @@ dir = 8 }, /obj/machinery/newscaster/directional/north, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "aGT" = ( @@ -8913,9 +8899,8 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/fpmaint2) "aHh" = ( -/obj/machinery/door/airlock/engineering{ - name = "Fore Port Solar Access" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -8955,11 +8940,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/wall, /area/station/maintenance/fpmaint2) -"aHp" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/fore) "aHq" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" @@ -9007,7 +8987,7 @@ /area/station/legal/courtroom) "aHx" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /obj/item/radio/intercom/directional/west, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ @@ -9148,9 +9128,6 @@ name = "Forensic laboratory"; dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/forensics{ - dir = 4 - }, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -9358,9 +9335,8 @@ /area/station/maintenance/fpmaint2) "aIM" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/lawyer/glass{ - name = "Magistrate's Office" - }, +/obj/machinery/door/airlock/lawyer/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "Magistrate" }, @@ -9424,7 +9400,7 @@ /obj/item/reagent_containers/glass/beaker/waterbottle{ pixel_x = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/structure/window/basic, @@ -9436,8 +9412,8 @@ "aIY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fore) "aJa" = ( @@ -9544,6 +9520,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/barber, /turf/simulated/floor/plasteel{ icon_state = "barber" }, @@ -9734,7 +9711,7 @@ /area/station/maintenance/fpmaint) "aKl" = ( /obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/item/reagent_containers/glass/beaker/waterbottle{ @@ -9773,9 +9750,9 @@ "aKx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/lawyer/glass{ - id_tag = "magistrateofficedoor"; - name = "Magistrate's Office" + id_tag = "magistrateofficedoor" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "Magistrate" }, @@ -9808,9 +9785,9 @@ /area/station/hallway/primary/fore) "aKE" = ( /obj/machinery/door/airlock/maintenance{ - name = "Detective Maintenance"; security_level = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/security/forensics, /turf/simulated/floor/plating, /area/station/maintenance/fore) @@ -9849,6 +9826,7 @@ /obj/machinery/computer/mob_healer_terminal{ pixel_x = -30 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "aKK" = ( @@ -9973,18 +9951,17 @@ /area/shuttle/pod_2) "aLh" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Detective" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "Detective" }, -/obj/effect/mapping_helpers/airlock/access/any/security/forensics, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/forensics, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -9996,12 +9973,13 @@ /area/station/maintenance/fpmaint2) "aLn" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/landmark/damageturf, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/wood/oak, /area/station/maintenance/fpmaint2) "aLr" = ( @@ -10069,7 +10047,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aLG" = ( -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -10189,9 +10167,8 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "aMg" = ( -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10203,7 +10180,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plating, /area/station/maintenance/electrical) "aMi" = ( @@ -10243,6 +10220,7 @@ /area/station/maintenance/aft) "aMn" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -10446,6 +10424,7 @@ /area/station/maintenance/fsmaint) "aNi" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -10491,9 +10470,9 @@ name = "escape pod 1" }, /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Escape Pod Hatch" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_1) "aNu" = ( @@ -10524,9 +10503,9 @@ name = "escape pod 2" }, /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Escape Pod Hatch" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_2) "aNA" = ( @@ -10651,10 +10630,10 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ icon_state = "darkyellow" }, @@ -10666,6 +10645,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/landmark/start/assistant, /turf/simulated/floor/carpet, /area/station/public/mrchangs) "aOn" = ( @@ -10676,7 +10656,7 @@ /area/station/maintenance/fpmaint2) "aOo" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -10705,15 +10685,15 @@ /area/station/maintenance/fpmaint) "aOv" = ( /obj/machinery/door/airlock/maintenance{ - name = "Courtroom Maintenance"; security_level = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/access/any/security/court, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "aOw" = ( @@ -10721,7 +10701,7 @@ /obj/item/reagent_containers/glass/beaker/waterbottle{ pixel_x = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5 }, /obj/structure/cable{ @@ -10778,7 +10758,7 @@ }, /area/station/security/interrogation) "aOF" = ( -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "aOI" = ( @@ -10869,7 +10849,7 @@ "aPa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random_spawners/blood_maybe, -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /obj/item/clothing/mask/face/fox, /turf/simulated/floor/plasteel, /area/station/maintenance/fpmaint2) @@ -10885,21 +10865,20 @@ }, /obj/machinery/door/airlock/external{ id_tag = "apsolar_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/north{ autolink_id = "apsolar_btn_ext"; req_one_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "aPe" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Barber Shop" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -10918,9 +10897,8 @@ /area/station/public/arcade) "aPg" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Arcade" - }, +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -11160,9 +11138,8 @@ }, /area/station/hallway/secondary/entry) "aPZ" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/caution, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) @@ -11546,7 +11523,7 @@ /obj/machinery/computer/mob_healer_terminal{ pixel_y = 30 }, -/obj/item/reagent_containers/food/drinks/britcup{ +/obj/item/reagent_containers/drinks/britcup{ list_reagents = list("tea"=15); pixel_x = 4; pixel_y = 2 @@ -11685,7 +11662,8 @@ "aRC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "aRF" = ( @@ -11761,9 +11739,8 @@ /turf/simulated/floor/wood/fancy, /area/station/legal/courtroom) "aRU" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "aRV" = ( @@ -11865,7 +11842,7 @@ /obj/structure/closet/wardrobe/white, /obj/item/clothing/shoes/jackboots, /obj/item/reagent_containers/iv_bag/blood/OMinus, -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "aSp" = ( @@ -11940,9 +11917,8 @@ /area/station/service/hydroponics) "aSR" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -12109,6 +12085,7 @@ /obj/structure/chair{ dir = 4 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -12121,6 +12098,7 @@ /obj/structure/window/reinforced{ dir = 1 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood/oak, /area/station/public/dorms) "aTF" = ( @@ -12134,6 +12112,7 @@ /obj/structure/window/reinforced{ dir = 1 }, +/obj/effect/landmark/start/bath, /turf/simulated/floor/wood/oak, /area/station/public/dorms) "aTI" = ( @@ -12169,9 +12148,9 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyerPort"; - name = "Medbay Entrance" + id_tag = "MedbayFoyerPort" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -12569,15 +12548,14 @@ /turf/space, /area/station/hallway/secondary/entry) "aVa" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "aVc" = ( @@ -12601,9 +12579,8 @@ /area/station/public/storage/tools) "aVh" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/public/storage/tools) "aVi" = ( @@ -12743,16 +12720,6 @@ icon_state = "whiteblue" }, /area/station/medical/reception) -"aVL" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint2) "aVN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12786,6 +12753,7 @@ /area/shuttle/arrival/station) "aVX" = ( /obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/arrival/station) @@ -12852,7 +12820,7 @@ dir = 9; icon_state = "darkblue" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "aWh" = ( /obj/machinery/requests_console{ department = "Security"; @@ -13014,6 +12982,7 @@ /obj/structure/chair/sofa/right{ dir = 4 }, +/obj/effect/landmark/start/bath, /turf/simulated/floor/wood/oak, /area/station/public/dorms) "aWD" = ( @@ -13190,9 +13159,8 @@ }, /area/station/service/chapel/office) "aXd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13427,9 +13395,8 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/garden) "aXL" = ( -/obj/machinery/door/airlock{ - name = "Garden" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/garden) "aXM" = ( @@ -13635,6 +13602,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/eva, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -13663,6 +13631,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/eva, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -13929,7 +13898,7 @@ /obj/machinery/light_switch/south, /obj/item/clothing/head/bearpelt, /obj/item/folder/documents, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/stack/spacecash/c1000, @@ -13976,9 +13945,8 @@ }, /area/station/public/dorms) "aZx" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, /area/station/hallway/primary/fore) @@ -13994,6 +13962,7 @@ /obj/structure/chair{ dir = 4 }, +/obj/effect/landmark/start/bath, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "arrival" @@ -14096,7 +14065,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "baa" = ( -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "bab" = ( @@ -14123,14 +14092,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "bah" = ( -/obj/machinery/suit_storage_unit/clown, +/obj/machinery/suit_storage_unit/clown/secure, /obj/effect/turf_decal/delivery/blue/hollow, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/ai_monitored/storage/eva) "bai" = ( -/obj/machinery/suit_storage_unit/mime, +/obj/machinery/suit_storage_unit/mime/secure, /obj/effect/turf_decal/delivery/blue/hollow, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -14268,9 +14237,8 @@ }, /area/station/service/chapel) "baE" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14289,9 +14257,8 @@ /area/station/security/prison/cell_block/A) "baI" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Crematorium" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/crematorium, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -14306,9 +14273,9 @@ "baM" = ( /obj/machinery/door/airlock/public/glass{ id_tag = "vipbar_bolt"; - locked = 1; - name = "ViP Room" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -14338,6 +14305,7 @@ /obj/machinery/door/airlock/vault{ locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -14354,9 +14322,9 @@ "bbg" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ - id_tag = "Cryogenics"; - name = "Cryodorms" + id_tag = "Cryogenics" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -14477,7 +14445,7 @@ /area/station/maintenance/fpmaint) "bbH" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/food/snacks/baguette, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "bbI" = ( @@ -14498,7 +14466,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "bbJ" = ( -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /obj/item/storage/backpack/duffel/clown, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) @@ -14651,6 +14619,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood/oak, /area/station/service/library) "bck" = ( @@ -14733,7 +14702,7 @@ "bcu" = ( /obj/structure/table/wood, /obj/item/pen, -/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/item/reagent_containers/drinks/bottle/holywater, /obj/machinery/light/directional/north, /turf/simulated/floor/carpet/black, /area/station/service/chapel/office) @@ -14879,9 +14848,8 @@ /area/station/hallway/secondary/entry) "bcX" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint" - }, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/security/general, @@ -15111,9 +15079,9 @@ /area/station/hallway/secondary/garden) "bdI" = ( /obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Dormitories" + dir = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15123,11 +15091,6 @@ /turf/simulated/floor/plasteel, /area/station/public/dorms) "bdK" = ( -/obj/machinery/access_button{ - autolink_id = "evamaint_btn_int"; - pixel_y = 25; - req_one_access_txt = "13" - }, /obj/structure/cable{ d1 = 2; d2 = 8; @@ -15387,9 +15350,8 @@ /area/station/hallway/secondary/garden) "beQ" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Garden" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/garden) "beR" = ( @@ -15398,9 +15360,8 @@ /area/station/public/storage/tools) "beX" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "E.V.A." - }, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -15473,6 +15434,13 @@ icon_state = "neutralcorner" }, /area/station/public/dorms) +"bfl" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "bfo" = ( /obj/effect/turf_decal/delivery/white, /obj/machinery/kitchen_machine/oven{ @@ -15713,8 +15681,8 @@ /area/station/service/chapel) "bgj" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/food/snacks/chips, +/obj/item/reagent_containers/drinks/cans/cola, /turf/simulated/floor/carpet, /area/station/hallway/secondary/entry) "bgk" = ( @@ -15991,9 +15959,8 @@ }, /area/station/hallway/primary/central/north) "bgZ" = ( -/obj/machinery/door/airlock/tranquillite{ - name = "Mime's Office" - }, +/obj/machinery/door/airlock/tranquillite, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/mime, /turf/simulated/floor/mineral/tranquillite, /area/station/service/mime) @@ -16044,6 +16011,12 @@ name = "Hydroponics Delivery"; req_one_access_txt = "35" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -16064,6 +16037,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood/oak, /area/station/service/library) "bhz" = ( @@ -16184,6 +16158,7 @@ /area/station/hallway/primary/central/north) "bhX" = ( /obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dust, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -16241,9 +16216,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "bir" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16368,6 +16342,7 @@ /obj/structure/chair/wood{ dir = 4 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet, /area/station/public/mrchangs) "biQ" = ( @@ -16381,6 +16356,7 @@ /obj/structure/chair/wood{ dir = 8 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet, /area/station/public/mrchangs) "biT" = ( @@ -16399,13 +16375,11 @@ /turf/simulated/floor/carpet/black, /area/station/command/meeting_room) "bjg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "bji" = ( @@ -16522,7 +16496,7 @@ }, /obj/machinery/alarm/directional/north, /obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ pixel_x = 8; pixel_y = 8 }, @@ -16663,9 +16637,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "bks" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/nw) @@ -16714,9 +16687,8 @@ dir = 4; pixel_y = -25 }, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard/west) @@ -17055,9 +17027,8 @@ }, /area/station/service/expedition) "bml" = ( -/obj/machinery/door/airlock/maintenance{ - name = "E.V.A. Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17383,10 +17354,7 @@ }, /area/station/command/bridge) "bnr" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, +/obj/structure/closet/wardrobe/mixed, /turf/simulated/floor/plasteel, /area/station/public/locker) "bns" = ( @@ -17421,8 +17389,10 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "bnv" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/portable/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, /turf/simulated/floor/plasteel, /area/station/public/locker) "bnw" = ( @@ -17431,10 +17401,12 @@ /area/station/maintenance/port) "bny" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" }, @@ -17446,15 +17418,18 @@ /turf/simulated/floor/plating, /area/station/public/storage/emergency/port) "bnA" = ( -/obj/machinery/light_switch/north, +/obj/structure/closet/wardrobe/xenos, +/obj/machinery/firealarm/directional/north, /turf/simulated/floor/plasteel, /area/station/public/locker) "bnB" = ( /obj/machinery/economy/vending/cola, +/obj/machinery/light/directional/north, /turf/simulated/floor/plasteel, /area/station/public/locker) "bnC" = ( /obj/machinery/economy/vending/artvend, +/obj/machinery/light_switch/north, /turf/simulated/floor/plasteel, /area/station/public/locker) "bnD" = ( @@ -17702,9 +17677,9 @@ /obj/machinery/door/airlock/external{ hackProof = 1; id_tag = "emergency_home"; - locked = 1; - name = "Escape Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -17767,11 +17742,12 @@ /area/station/medical/morgue) "boZ" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/public/locker) "bpa" = ( -/obj/effect/turf_decal/delivery, +/obj/structure/closet/wardrobe/white, /turf/simulated/floor/plasteel, /area/station/public/locker) "bpb" = ( @@ -17795,6 +17771,10 @@ /area/station/public/locker) "bpe" = ( /obj/structure/sign/poster/official/random/east, +/obj/machinery/camera{ + c_tag = "Locker Room East"; + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/public/locker) "bpf" = ( @@ -17994,14 +17974,12 @@ }, /area/station/service/chapel) "bqj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/library, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "bql" = ( @@ -18010,9 +17988,8 @@ /area/station/hallway/primary/port) "bqm" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Mr. Chang's" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -18053,15 +18030,24 @@ }, /area/station/hallway/primary/central/ne) "bqu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, /obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/closet/wardrobe/xenos, -/turf/simulated/floor/plasteel, -/area/station/public/locker) +/obj/structure/window/reinforced, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Research Division Delivery" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 8 + }, +/turf/simulated/floor/plasteel{ + icon_state = "white" + }, +/area/station/science/rnd) "bqv" = ( /obj/structure/chair/stool{ dir = 4 @@ -18083,10 +18069,6 @@ "bqz" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/alarm/directional/east, -/obj/machinery/camera{ - c_tag = "Locker Room East"; - dir = 8 - }, /obj/machinery/light/directional/east, /turf/simulated/floor/plasteel, /area/station/public/locker) @@ -18562,10 +18544,9 @@ "bsD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ - locked = 1; - name = "Assembly Line (KEEP OUT)" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -18578,6 +18559,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/maintenance/assembly_line) "bsE" = ( @@ -18809,10 +18791,6 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "btO" = ( -/obj/machinery/camera{ - c_tag = "Locker Room West"; - dir = 1 - }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -18965,7 +18943,6 @@ /area/station/maintenance/fpmaint) "buQ" = ( /obj/machinery/door/airlock/command/glass, -/obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18974,6 +18951,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel, /area/station/command/bridge) "buS" = ( @@ -19003,9 +18981,8 @@ /area/station/public/vacant_office) "bva" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/carpet, /area/station/service/chapel) "bvb" = ( @@ -19051,6 +19028,7 @@ id_tag = "ferry_home"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "bvm" = ( @@ -19130,9 +19108,8 @@ /area/station/hallway/primary/central/ne) "bvN" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel Office" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -19195,10 +19172,10 @@ /turf/simulated/floor/wood/fancy/oak, /area/station/command/meeting_room) "bvX" = ( -/obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "blue" @@ -19254,9 +19231,8 @@ }, /area/station/hallway/primary/central/ne) "bwt" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -19284,7 +19260,7 @@ /area/station/maintenance/port) "bwA" = ( /obj/effect/decal/cleanable/dust, -/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, /obj/effect/decal/cleanable/glass, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9 @@ -19369,20 +19345,25 @@ pixel_y = 8 }, /obj/machinery/light/small/directional/west, +/obj/machinery/door_control/bolt_control/south{ + id = "toilet_ass1" + }, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bwQ" = ( /obj/machinery/door/airlock{ - name = "Unit 1" + id_tag = "toilet_ass3" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bwS" = ( /obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -19400,11 +19381,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel, /area/station/command/bridge) "bwW" = ( @@ -19424,9 +19404,8 @@ /turf/simulated/wall, /area/station/supply/storage) "bxc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plating, /area/station/maintenance/port) @@ -19517,10 +19496,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/blueshield{ dir = 4 }, /turf/simulated/floor/carpet/royalblue, @@ -19631,12 +19613,6 @@ }, /area/station/service/hydroponics) "bxO" = ( -/obj/machinery/turretid/stun{ - control_area = "\improper AI Upload Chamber"; - name = "AI Upload Turret Control"; - pixel_y = -24; - req_access = list(75) - }, /turf/simulated/floor/plasteel{ icon_state = "blue" }, @@ -19768,7 +19744,7 @@ /area/station/public/toilet/lockerroom) "byn" = ( /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "byp" = ( @@ -19779,6 +19755,7 @@ /area/station/public/locker) "byq" = ( /obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -19790,11 +19767,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel, /area/station/command/bridge) "byr" = ( @@ -19933,24 +19909,18 @@ }, /obj/machinery/light/small/directional/west, /obj/effect/landmark/start/assistant, -/turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/station/public/toilet/lockerroom) -"bzv" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" +/obj/machinery/door_control/bolt_control/south{ + id = "toilet_ass2" }, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bzx" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Escape Shuttle Cell" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -19972,9 +19942,8 @@ /area/station/supply/storage) "bzD" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Escape Shuttle Cell" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/corner, /obj/structure/cable{ d1 = 1; @@ -19983,7 +19952,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -20071,9 +20040,8 @@ }, /area/station/maintenance/apmaint) "bzQ" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -20082,7 +20050,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bzT" = ( @@ -20105,6 +20073,7 @@ /area/station/command/office/ntrep) "bAc" = ( /obj/machinery/door/airlock/command/cap, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -20113,13 +20082,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/command/captain, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/wood/fancy/cherry, /area/station/command/office/captain/bedroom) -"bAe" = ( -/obj/machinery/light/directional/south, -/turf/simulated/floor/plasteel, -/area/station/public/locker) "bAf" = ( /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/east) @@ -20132,9 +20096,8 @@ dir = 1; pixel_y = 39 }, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/sign/directions/bridge{ dir = 8; @@ -20148,6 +20111,7 @@ dir = 8; pixel_x = -5 }, +/obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -20233,6 +20197,7 @@ "bAD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -20241,7 +20206,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -20308,9 +20272,8 @@ /area/station/hallway/primary/starboard/east) "bAX" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/carpet, /area/station/service/library) "bAY" = ( @@ -20362,9 +20325,8 @@ }, /area/station/hallway/primary/central/west) "bBr" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Vacant Office" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -20423,7 +20385,7 @@ "bBN" = ( /obj/machinery/light_switch/north, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bBP" = ( @@ -20439,7 +20401,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bBQ" = ( @@ -20474,14 +20436,6 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/simulated/floor/plasteel, /area/station/maintenance/port) -"bCm" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/station/public/toilet/lockerroom) "bCo" = ( /obj/machinery/atmospherics/binary/valve, /obj/effect/decal/cleanable/dirt, @@ -20497,6 +20451,7 @@ /area/station/maintenance/port) "bCq" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) @@ -20794,8 +20749,11 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/mirror{ + pixel_x = 28 + }, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bDx" = ( @@ -20818,6 +20776,7 @@ id_tag = "specops_home"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "bDH" = ( @@ -20915,9 +20874,8 @@ /area/station/hallway/primary/central/west) "bEl" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/service/chapel) @@ -21021,7 +20979,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bEA" = ( @@ -21052,15 +21010,16 @@ /area/station/medical/morgue) "bEJ" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/simulated/floor/plating, /area/station/maintenance/maintcentral2) "bEK" = ( @@ -21299,9 +21258,8 @@ }, /area/station/hallway/primary/central/se) "bFV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21311,13 +21269,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, -/area/station/medical/morgue) +/area/station/maintenance/asmaint2) "bFW" = ( /obj/machinery/firealarm/directional/east, /turf/simulated/floor/plasteel, @@ -21423,12 +21381,12 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard/east) "bGk" = ( -/obj/machinery/light/directional/west, /obj/machinery/hologram/holopad{ pixel_y = 16 }, +/obj/machinery/light/small/directional/west, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bGl" = ( @@ -21690,11 +21648,11 @@ /area/station/supply/office) "bHn" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/cola{ +/obj/item/reagent_containers/drinks/cans/cola{ pixel_x = -6; pixel_y = 8 }, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "arrival" @@ -21755,7 +21713,7 @@ /area/station/medical/reception) "bHJ" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/med{ +/obj/item/reagent_containers/drinks/mug/med{ pixel_x = 7; pixel_y = -10 }, @@ -21765,7 +21723,7 @@ /obj/item/storage/fancy/donut_box{ pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb{ +/obj/item/reagent_containers/drinks/cans/dr_gibb{ pixel_y = -15; pixel_x = -5 }, @@ -21812,9 +21770,8 @@ /area/station/medical/reception) "bHS" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "bHY" = ( @@ -21849,9 +21806,8 @@ /area/station/hallway/secondary/entry) "bIc" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard"; name = "Biohazard Shutter" @@ -22016,7 +21972,7 @@ /obj/structure/table/wood, /obj/item/radio/intercom/directional/south, /obj/item/storage/fancy/matches, -/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/reagent_containers/drinks/flask/gold, /obj/item/clothing/mask/cigarette/cigar, /obj/item/razor{ pixel_x = -4; @@ -22138,36 +22094,36 @@ }, /area/station/medical/patients_rooms) "bJc" = ( -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = -11; pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = -3; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = 11; pixel_y = 9 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = 5; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = -8 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = -1; pixel_y = -4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ list_reagents = list("beer"=0); pixel_x = 9; pixel_y = -3 @@ -22237,7 +22193,7 @@ /obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "bJA" = ( @@ -22282,6 +22238,7 @@ /area/station/medical/chemistry) "bJJ" = ( /obj/machinery/door/airlock/wood, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -22401,7 +22358,7 @@ /area/station/science/robotics) "bKo" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "whitepurple" @@ -22416,8 +22373,9 @@ /area/station/hallway/secondary/entry) "bKs" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -22471,8 +22429,8 @@ /area/station/command/office/hop) "bKQ" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 4; pixel_y = 4 }, @@ -22502,9 +22460,8 @@ }, /area/station/engineering/gravitygenerator) "bLj" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Checkpoint" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -22519,7 +22476,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint2) @@ -22810,8 +22766,8 @@ name = "Body delivery system" }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -23002,9 +22958,8 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23066,9 +23021,8 @@ }, /area/station/medical/chemistry) "bNH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -23319,9 +23273,8 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/aft) "bOM" = ( @@ -23589,9 +23542,10 @@ /obj/machinery/computer/security/mining, /obj/machinery/firealarm/directional/north, /obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Requests Console"; + department = "Quartermaster's Desk"; + departmentType = 5; + name = "Quartermaster Requests Console"; + announcementConsole = 1; pixel_x = -30 }, /turf/simulated/floor/carpet, @@ -23654,6 +23608,9 @@ /obj/item/desk_bell{ anchored = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/general{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/supply/office) "bQf" = ( @@ -24071,7 +24028,6 @@ dir = 1; name = "Anti-Theft Shield" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ dir = 1 }, @@ -24091,9 +24047,7 @@ }, /area/station/command/office/cmo) "bSy" = ( -/obj/item/kirbyplants{ - icon_state = "plant-32" - }, +/obj/item/kirbyplants/plant32, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whiteblue" @@ -24228,9 +24182,8 @@ /area/station/medical/chemistry) "bSP" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -24337,12 +24290,6 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/access_button{ - autolink_id = "eng_s_tesla_btn_int"; - pixel_x = -25; - pixel_y = 25; - req_access_txt = "10;13" - }, /turf/simulated/floor/plasteel{ icon_state = "darkyellowfull" }, @@ -24386,9 +24333,9 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ id_tag = "supply_home"; - locked = 1; - name = "Cargo Docking Hatch" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plating, /area/station/supply/storage) @@ -24609,9 +24556,8 @@ }, /area/station/science/robotics) "bUk" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard"; name = "Biohazard Shutter" @@ -24674,8 +24620,13 @@ "bUy" = ( /obj/machinery/door/airlock/external{ id_tag = "eng_atmos_door_ext"; - locked = 1; - name = "Atmospherics External Access" + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/access_button{ + autolink_id = "eng_atmos_btn_ext"; + pixel_y = 24; + req_access_txt = "13" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, @@ -24747,16 +24698,6 @@ dir = 8; location = "Research Division" }, -/obj/machinery/door/window/classic/reversed{ - dir = 4; - name = "Research Division Delivery" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 4 - }, /obj/structure/plasticflaps{ opacity = 1 }, @@ -24781,19 +24722,17 @@ /area/station/maintenance/turbine) "bVk" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/office) "bVl" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/storage) "bVp" = ( @@ -24887,9 +24826,8 @@ /turf/simulated/floor/plasteel, /area/station/supply/office) "bVL" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 4; @@ -24921,9 +24859,9 @@ /area/station/hallway/primary/central/se) "bVV" = ( /obj/machinery/door/airlock/medical/glass{ - id_tag = "CloningDoor"; - name = "Genetics Cloning" + id_tag = "CloningDoor" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 @@ -24948,7 +24886,7 @@ /obj/effect/mapping_helpers/airlock/polarized{ id = "cloning" }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -25268,9 +25206,9 @@ /area/station/medical/sleeper) "bXM" = ( /obj/machinery/door/airlock/medical/glass{ - id_tag = "medcabin1"; - name = "Patients Room" + id_tag = "medcabin1" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -25404,9 +25342,8 @@ /area/station/medical/cloning) "bYl" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Surgery Room" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/science/robotics, @@ -25416,7 +25353,7 @@ /area/station/science/robotics) "bYm" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /turf/simulated/floor/wood/oak, /area/station/maintenance/asmaint2) "bYr" = ( @@ -25577,16 +25514,21 @@ "bYQ" = ( /obj/machinery/door/airlock/external{ id_tag = "eng_s_tesla_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/access_button{ + autolink_id = "eng_s_tesla_btn_ext"; + pixel_y = 24; + req_access_txt = "10;13" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -25604,6 +25546,7 @@ /area/station/hallway/primary/central/sw) "bYZ" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -25612,7 +25555,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/aft) "bZh" = ( @@ -25812,26 +25754,6 @@ icon_state = "whitegreen" }, /area/station/medical/virology) -"bZI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/research, -/turf/simulated/floor/plating, -/area/station/maintenance/asmaint2) "bZJ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -25859,9 +25781,8 @@ }, /area/station/medical/sleeper) "bZN" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Workstation" - }, +/obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -25892,6 +25813,7 @@ /obj/structure/chair/wood{ dir = 4 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/carpet, /area/station/maintenance/aft) "cam" = ( @@ -25928,9 +25850,8 @@ /turf/simulated/floor/wood/oak, /area/station/command/office/ntrep) "cas" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Dock" - }, +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -25941,6 +25862,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "cat" = ( @@ -26231,10 +26153,9 @@ /area/station/science/robotics) "cbn" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/rd{ - name = "Server Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/machinery/door/airlock/command/rd, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -26308,9 +26229,8 @@ /area/station/medical/sleeper) "cbz" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -26320,7 +26240,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plasteel, /area/station/supply/office) "cbB" = ( @@ -26352,10 +26272,7 @@ dir = 1; name = "Cryo Tank Storage" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/general{ dir = 1 }, /turf/simulated/floor/plasteel{ @@ -26566,9 +26483,8 @@ }, /area/station/medical/virology) "ccm" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/se) @@ -26790,15 +26706,9 @@ /obj/machinery/door/window/classic/reversed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 8 - }, /obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ dir = 8 }, -/obj/structure/plasticflaps{ - opacity = 1 - }, /turf/simulated/floor/plasteel, /area/station/supply/office) "ccZ" = ( @@ -26807,6 +26717,9 @@ id = "packageExternal" }, /obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps{ + opacity = 1 + }, /turf/simulated/floor/plasteel, /area/station/supply/office) "cdb" = ( @@ -26830,9 +26743,9 @@ "cdf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/rd/glass{ - id_tag = "rdofficedoor"; - name = "Research Director's Office" + id_tag = "rdofficedoor" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "rd" }, @@ -26845,6 +26758,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -26895,12 +26809,12 @@ dir = 4; name = "Body Utilizer" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ - dir = 4 - }, /obj/structure/disposalpipe/trunk{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -26927,9 +26841,8 @@ }, /area/station/hallway/primary/central/sw) "cdJ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/sw) @@ -27462,9 +27375,8 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/medical{ - name = "Durka" - }, +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" @@ -27882,7 +27794,7 @@ c_tag = "Research Director's Office"; network = list("Research","SS13") }, -/obj/item/reagent_containers/food/drinks/mug/rd, +/obj/item/reagent_containers/drinks/mug/rd, /obj/item/taperecorder{ pixel_x = -3 }, @@ -27915,10 +27827,10 @@ "chU" = ( /obj/structure/sign/poster/contraband/random/north, /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/bottler/glass_bottle{ +/obj/item/reagent_containers/drinks/cans/bottler/glass_bottle{ pixel_x = 4 }, -/obj/item/reagent_containers/food/drinks/cans/bottler/glass_bottle{ +/obj/item/reagent_containers/drinks/cans/bottler/glass_bottle{ pixel_x = -9 }, /turf/simulated/floor/wood/oak, @@ -27998,7 +27910,7 @@ /obj/machinery/alarm/directional/south, /obj/effect/landmark/spawner/xeno, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "ciD" = ( @@ -28066,9 +27978,8 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/central/south) "ciN" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "yellowcorner" @@ -28184,9 +28095,8 @@ /area/station/hallway/primary/central/se) "cjq" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28244,6 +28154,7 @@ /area/station/medical/medbay2) "cjA" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) "cjB" = ( @@ -28380,6 +28291,7 @@ /area/station/supply/miningdock) "ckp" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28402,6 +28314,7 @@ /obj/machinery/door/airlock/medical/glass{ id = "surgery1" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -28410,10 +28323,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /obj/effect/mapping_helpers/airlock/polarized{ id = "surgery1" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -28520,12 +28433,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/access_button{ - autolink_id = "eng_s_tesla_btn_ext"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "10;13" - }, /turf/simulated/floor/plating/airless, /area/station/engineering/control) "ckI" = ( @@ -28548,10 +28455,9 @@ "ckN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - id_tag = "ntrepofficedoor"; - name = "NT Representative's Office" + id_tag = "ntrepofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/command/ntrep, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -28565,6 +28471,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/mapping_helpers/airlock/access/any/command/ntrep, /turf/simulated/floor/wood/oak, /area/station/command/office/ntrep) "ckP" = ( @@ -28777,9 +28684,8 @@ /turf/simulated/floor/plating/airless, /area/station/science/toxins/test) "clB" = ( -/obj/machinery/door/airlock/external{ - name = "Toxins Test Chamber" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating/airless, /area/station/science/toxins/test) "clE" = ( @@ -28820,9 +28726,8 @@ /turf/simulated/floor/engine/co2, /area/station/engineering/atmos) "clN" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -28830,9 +28735,8 @@ /turf/simulated/floor/plasteel, /area/station/hallway/primary/aft) "clO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; @@ -28852,12 +28756,11 @@ /turf/simulated/floor/wood/oak, /area/station/command/office/blueshield) "clU" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Staff Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -28890,6 +28793,22 @@ name = "Distribution and Waste Monitor" }, /obj/machinery/firealarm/directional/east, +/obj/machinery/door_control/shutter/north{ + desc = "A remote control-switch for the engineering lobby emergency supply room."; + id = "engemergencyeva"; + name = "Lobby Emergency Supply"; + pixel_x = 24; + req_access_txt = "32"; + pixel_y = 8 + }, +/obj/machinery/door_control/normal/north{ + desc = "A remote control-switch for the engineering lobby doors."; + id = "englobby"; + name = "Lobby Entrance"; + pixel_x = 24; + req_access_txt = "32"; + pixel_y = -8 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "yellowcorner" @@ -28930,14 +28849,14 @@ }, /obj/machinery/door/airlock/external{ id_tag = "apsolar_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/south{ autolink_id = "apsolar_btn_int"; req_one_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "cmd" = ( @@ -29094,7 +29013,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics{ +/obj/effect/mapping_helpers/airlock/windoor/access/all/science/research{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/genetics{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -29140,10 +29062,10 @@ /turf/simulated/wall, /area/station/service/janitor) "cmT" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass, /obj/structure/closet/cabinet, /obj/machinery/light/directional/east, /turf/simulated/floor/wood/oak, @@ -29422,11 +29344,7 @@ /area/station/security/range) "cnW" = ( /obj/structure/table, -/obj/item/camera{ - name = "Autopsy Camera"; - pixel_x = 4; - pixel_y = 8 - }, +/obj/item/camera/autopsy, /obj/item/scalpel{ pixel_y = 2 }, @@ -29760,10 +29678,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) "cpz" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29775,6 +29691,8 @@ id_tag = "engsm2"; name = "SM Radiation Security Lock" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -29866,9 +29784,8 @@ /area/station/science/hallway) "cqc" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/access/any/science/tox_storage, /turf/simulated/floor/plasteel, @@ -29970,7 +29887,7 @@ /area/station/maintenance/fsmaint) "cqF" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) @@ -29995,7 +29912,7 @@ dir = 4; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "cqK" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, @@ -30048,9 +29965,9 @@ icon_state = "0-4" }, /obj/structure/closet/secure_closet/psychiatrist, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass/soda, -/obj/item/reagent_containers/food/drinks/drinkingglass/soda, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass/soda, +/obj/item/reagent_containers/drinks/drinkingglass/soda, /turf/simulated/floor/carpet, /area/station/medical/psych) "cre" = ( @@ -30390,10 +30307,9 @@ "csw" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - id_tag = "blueshieldofficedoor"; - name = "Blueshield's Office" + id_tag = "blueshieldofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/command/blueshield, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -30407,6 +30323,7 @@ d2 = 4; icon_state = "2-4" }, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood/oak, /area/station/command/office/blueshield) "csB" = ( @@ -30535,10 +30452,8 @@ /turf/simulated/floor/plating, /area/station/engineering/supermatter_room) "csQ" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -30554,15 +30469,15 @@ dir = 4 }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, /area/station/service/janitor) "csS" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Emergency Entrance" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, @@ -30746,11 +30661,11 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/airlock/multi_tile/security/glass{ - id_tag = "BrigRight"; - name = "Brig Foyer Right Entrance" + id_tag = "BrigRight" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -30975,7 +30890,7 @@ }, /area/station/medical/medbay2) "cuw" = ( -/obj/machinery/suit_storage_unit/cmo, +/obj/machinery/suit_storage_unit/cmo/secure, /obj/effect/turf_decal/delivery/blue/hollow, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -31065,9 +30980,9 @@ }, /obj/effect/mapping_helpers/airlock/unres, /obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyerPort"; - name = "Medbay Entrance" + id_tag = "MedbayFoyerPort" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ dir = 4; @@ -31094,9 +31009,9 @@ /area/station/medical/virology) "cuL" = ( /obj/machinery/door/airlock/medical/glass{ - id = "paramedic"; - name = "Paramedic" + id = "paramedic" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31134,9 +31049,8 @@ /turf/simulated/wall, /area/station/maintenance/asmaint2) "cuW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31167,9 +31081,8 @@ /area/station/science/toxins/mixing) "cvc" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Storage" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/science/hallway) @@ -31298,7 +31211,7 @@ /area/station/engineering/controlroom) "cvC" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -31310,6 +31223,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/aft) "cvD" = ( @@ -31388,7 +31302,7 @@ /area/station/medical/morgue) "cvU" = ( /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ +/obj/item/storage/surgical_tray{ pixel_y = 8 }, /turf/simulated/floor/plasteel{ @@ -31505,11 +31419,11 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/incinerator) "cwy" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/window/reinforced{ +/obj/machinery/camera{ + c_tag = "Locker Room West"; dir = 1 }, /turf/simulated/floor/plasteel, @@ -31522,10 +31436,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/obj/machinery/door/airlock/atmos{ - name = "Aft-Port Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "cwG" = ( @@ -31581,15 +31495,14 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/aft) "cwS" = ( -/obj/machinery/door/airlock/engineering{ - name = "Toxin Testing EVA Maintenance" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "cwU" = ( @@ -31635,7 +31548,7 @@ pixel_y = -4 }, /obj/machinery/light/directional/north, -/obj/item/reagent_containers/food/drinks/mug/sci{ +/obj/item/reagent_containers/drinks/mug/sci{ desc = "A purple mug with a small piece of duct tape on it that has 'Janitor's' written on it in sharpie. Looks a bit too.. scientific to belong to the Janitor."; name = "Janitor's mug"; pixel_x = 6; @@ -31737,9 +31650,8 @@ }, /area/station/medical/virology) "cxJ" = ( -/obj/machinery/door/airlock/virology{ - name = "Virology Bedroom" - }, +/obj/machinery/door/airlock/virology, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31795,7 +31707,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/start/geneticist, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/windoor/access/all/science/research, +/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/genetics, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whitehall" @@ -31995,14 +31908,18 @@ "cyz" = ( /obj/machinery/door/airlock/external{ id_tag = "aisat_door_int"; - locked = 1; - name = "MiniSat External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/access_button{ + autolink_id = "aisat_btn_int"; + pixel_y = 24 + }, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior) "cyA" = ( @@ -32081,6 +31998,7 @@ /area/station/engineering/atmos/control) "cyH" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -32179,7 +32097,7 @@ dir = 1 }, /obj/machinery/light/directional/south, -/obj/item/reagent_containers/food/drinks/britcup{ +/obj/item/reagent_containers/drinks/britcup{ list_reagents = list("tea"=15); pixel_x = 4; pixel_y = 2 @@ -32409,9 +32327,8 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/incinerator) "czN" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -32512,7 +32429,6 @@ "cAg" = ( /obj/machinery/light/small/directional/south, /obj/machinery/turretid/stun{ - control_area = "\improper AI Satellite Antechamber"; name = "AI Antechamber Turret Control"; pixel_y = -24; req_one_access_txt = "75" @@ -32557,7 +32473,6 @@ /area/station/hallway/secondary/entry) "cAo" = ( /obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable{ d1 = 1; @@ -32702,10 +32617,9 @@ }, /area/station/science/hallway) "cAT" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Closet" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, /turf/simulated/floor/plasteel, /area/station/service/janitor) "cAU" = ( @@ -33004,12 +32918,11 @@ /area/space/nearstation) "cCi" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Test Lab" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/any/science/tox, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/science/misc_lab) "cCo" = ( @@ -33027,7 +32940,7 @@ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "cCq" = ( /turf/simulated/floor/engine, /area/station/maintenance/incinerator) @@ -33051,18 +32964,17 @@ /area/station/maintenance/incinerator) "cCC" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Incinerator Access" - }, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/simulated/floor/plating, /area/station/maintenance/incinerator) "cCD" = ( @@ -33107,13 +33019,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/turretid/stun{ - control_area = "\improper AI Satellite Hallway"; - name = "AI Chamber Hallway Turret Control"; - pixel_x = 24; - pixel_y = -24; - req_one_access_txt = "75" - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -33484,11 +33389,15 @@ "cEa" = ( /obj/machinery/door/airlock/external{ id_tag = "aisat_door_ext"; - locked = 1; - name = "MiniSat External Access" + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/access_button{ + autolink_id = "aisat_btn_ext"; + pixel_y = 24 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plating, /area/station/turret_protected/aisat/interior) "cEb" = ( @@ -33558,13 +33467,14 @@ /area/station/maintenance/aft) "cEr" = ( /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkyellowcorners" @@ -33606,24 +33516,14 @@ }, /area/station/engineering/control) "cEz" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, /obj/effect/turf_decal/delivery/hollow, -/obj/machinery/door/window/classic/reversed{ - dir = 1; - name = "Custodial Closet" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/janitor{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 1 - }, /obj/machinery/navbeacon{ codes_txt = "delivery"; location = "Janitor" }, +/obj/structure/plasticflaps{ + opacity = 1 + }, /turf/simulated/floor/plating, /area/station/service/janitor) "cEB" = ( @@ -33780,11 +33680,10 @@ /area/station/command/office/cmo) "cFA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) "cFB" = ( @@ -33803,9 +33702,8 @@ /area/station/engineering/break_room) "cFI" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Test Lab" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -33820,7 +33718,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/science/tox, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -33917,9 +33815,8 @@ }, /area/station/science/misc_lab) "cFX" = ( -/obj/machinery/door/airlock/welded{ - name = "Maintenance Airlock" - }, +/obj/machinery/door/airlock/welded, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -34017,6 +33914,7 @@ /mob/living/simple_animal/bot/floorbot{ on = 0 }, +/obj/item/radio/intercom/directional/south, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -34038,9 +33936,9 @@ /area/station/engineering/tech_storage) "cGw" = ( /obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medical Supplies" + id_tag = "MedbayFoyer" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ @@ -34508,14 +34406,16 @@ /area/station/engineering/break_room) "cHR" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plasteel, /area/station/maintenance/disposal) "cHS" = ( @@ -34544,9 +34444,9 @@ /area/station/hallway/primary/aft) "cHW" = ( /obj/machinery/door/airlock/bathroom{ - name = "Private Restroom"; id_tag = "toilet_sec_2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -34794,9 +34694,6 @@ dir = 1; name = "Testing Chamber Delivery Chute" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox{ - dir = 1 - }, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "whitepurple" @@ -34842,7 +34739,7 @@ pixel_x = 3; pixel_y = -3 }, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plasteel{ icon_state = "whitepurple" }, @@ -34866,9 +34763,8 @@ }, /area/station/science/robotics) "cIN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "E.X.P.E.R.I-MENTOR Lab Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard"; name = "Biohazard Shutter" @@ -34903,20 +34799,6 @@ /obj/structure/chair/office/dark{ dir = 1 }, -/obj/machinery/door_control/shutter/north{ - desc = "A remote control-switch for the engineering lobby emergency supply room."; - id = "engemergencyeva"; - name = "Lobby Emergency Supply"; - pixel_x = -6; - req_access_txt = "32" - }, -/obj/machinery/door_control/normal/north{ - desc = "A remote control-switch for the engineering lobby doors."; - id = "englobby"; - name = "Lobby Entrance"; - pixel_x = 6; - req_access_txt = "32" - }, /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/engineer, /turf/simulated/floor/plasteel{ @@ -35048,10 +34930,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/engineering/glass{ - id_tag = "englobby"; - name = "Engineering" + id_tag = "englobby" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -35059,6 +34940,7 @@ name = "Engineering Security Doors"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "yellow" @@ -35266,17 +35148,16 @@ id_tag = "RnDChem"; name = "Biohazard Shutter" }, -/obj/machinery/door/airlock/research/glass{ - name = "Test Chamber" - }, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/any/science/tox, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -35412,9 +35293,10 @@ "cKD" = ( /obj/machinery/door/airlock/medical{ locked = 1; - name = "Abandoned Chemistry"; req_one_access_txt = "33" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, /turf/simulated/floor/plating, /area/station/maintenance/aft) "cKE" = ( @@ -35596,10 +35478,9 @@ "cLz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ - locked = 1; - name = "Assembly Line (KEEP OUT)" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/poddoor{ density = 0; @@ -35613,13 +35494,13 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/maintenance/assembly_line) "cLA" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Atmospherics" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -36134,9 +36015,8 @@ /area/station/engineering/atmos) "cOd" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -36154,7 +36034,7 @@ /turf/simulated/floor/plasteel{ icon_state = "dark" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "cOf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -36330,10 +36210,8 @@ /area/station/science/rnd) "cOE" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Drone Fabricator Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -36341,6 +36219,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -36418,13 +36297,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/general{ - dir = 4 - }, /obj/machinery/door/window/reinforced/normal{ dir = 4; name = "Suit Storage" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/general{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkyellowcorners" @@ -36560,9 +36439,6 @@ name = "Area control access" }, /obj/machinery/atmospherics/pipe/simple/hidden/purple, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox{ - dir = 1 - }, /turf/simulated/floor/engine, /area/station/science/test_chamber) "cPA" = ( @@ -36587,7 +36463,7 @@ }, /area/station/engineering/controlroom) "cPD" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /obj/effect/turf_decal/delivery/hollow, /obj/structure/sign/atmosplaque{ pixel_y = 32 @@ -37003,6 +36879,7 @@ /obj/structure/chair/wheelchair{ dir = 4 }, +/obj/item/radio/intercom/directional/west, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitegreen" @@ -37531,9 +37408,8 @@ }, /area/station/engineering/gravitygenerator) "cSt" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plating, @@ -38158,6 +38034,7 @@ /area/station/maintenance/aft) "cUi" = ( /obj/structure/chair/wood, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet, /area/station/public/mrchangs) "cUj" = ( @@ -38455,19 +38332,9 @@ /turf/simulated/floor/plating/airless, /area/station/engineering/control) "cVn" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/access_button{ - autolink_id = "eng_n_tesla_btn_ext"; - pixel_x = 25; - pixel_y = -25; - req_access_txt = "10;13" - }, -/turf/simulated/floor/plating/airless, -/area/station/engineering/control) +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/plasteel, +/area/station/public/locker) "cVo" = ( /obj/machinery/door/poddoor/shutters{ dir = 2; @@ -38577,7 +38444,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkblue" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "cVI" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -38602,9 +38469,8 @@ /area/station/engineering/break_room) "cVL" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/engineering/break_room) "cVM" = ( @@ -38769,7 +38635,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkblue" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "cWz" = ( /obj/machinery/light/small/directional/south, /obj/item/radio/intercom/directional/south, @@ -38810,10 +38676,10 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/construction{ dir = 1 }, /obj/structure/plasticflaps{ @@ -38857,7 +38723,7 @@ }, /area/station/engineering/hallway) "cWL" = ( -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/plating, /area/station/command/office/blueshield) "cWM" = ( @@ -38867,16 +38733,15 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Equipment Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -38924,13 +38789,18 @@ "cWW" = ( /obj/machinery/door/airlock/external{ id_tag = "eng_atmos_door_int"; - locked = 1; - name = "Atmospherics External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, +/obj/machinery/access_button{ + autolink_id = "eng_atmos_btn_int"; + pixel_y = 24; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/storage) "cWX" = ( @@ -39173,7 +39043,7 @@ /area/station/engineering/supermatter_room) "cXV" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -6; pixel_y = 3 }, @@ -39213,16 +39083,6 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) -"cXZ" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/access_button{ - autolink_id = "eng_atmos_btn_ext"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "10;13" - }, -/turf/space, -/area/space/nearstation) "cYa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -39249,10 +39109,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkyellow" @@ -39331,12 +39191,11 @@ "cYv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/catwalk, /area/station/maintenance/storage) "cYy" = ( @@ -39374,11 +39233,7 @@ /turf/simulated/floor/plasteel, /area/station/public/storage/office) "cYM" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gravity Generator Area" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/rd, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -39397,6 +39252,9 @@ icon_state = "2-8" }, /obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -39528,10 +39386,9 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plating, /area/station/maintenance/storage) "cZh" = ( @@ -39666,10 +39523,8 @@ /area/space/nearstation) "cZG" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -39684,6 +39539,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkyellowcorners" @@ -39775,12 +39631,10 @@ }, /area/station/maintenance/fsmaint) "cZW" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -39862,7 +39716,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "dah" = ( @@ -40198,9 +40051,8 @@ }, /area/station/ai_monitored/storage/eva) "dbx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Science Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard"; name = "Biohazard Shutter" @@ -40232,12 +40084,11 @@ /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "dbI" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public{ - name = "Kitchen" - }, +/obj/machinery/door/airlock/public, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/kitchen, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" @@ -40331,11 +40182,9 @@ "dbZ" = ( /obj/machinery/door/airlock/external{ id_tag = "eng_s_tesla_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -40344,6 +40193,13 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/access_button{ + autolink_id = "eng_s_tesla_btn_int"; + pixel_y = 24; + req_access_txt = "10;13" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -40381,6 +40237,7 @@ /area/station/engineering/engine/supermatter) "dci" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "dcj" = ( @@ -40397,9 +40254,8 @@ /turf/simulated/floor/plating, /area/station/engineering/secure_storage) "dcm" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Starboard Solar Access" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -40425,10 +40281,9 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkyellowcorners" @@ -40452,7 +40307,8 @@ "dct" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkyellowcorners" @@ -40466,12 +40322,10 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -40743,16 +40597,16 @@ }, /area/station/engineering/supermatter_room) "ddD" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plating, /area/station/engineering/supermatter_room) "ddE" = ( @@ -41299,8 +41153,8 @@ }, /area/station/engineering/break_room) "dfh" = ( -/obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/portable/scrubber, +/obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/public/locker) "dfj" = ( @@ -41357,7 +41211,7 @@ /area/station/engineering/engine/supermatter) "dfr" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/cans/sodawater, +/obj/item/reagent_containers/drinks/cans/sodawater, /turf/simulated/floor/plasteel{ icon_state = "darkyellowfull" }, @@ -41580,7 +41434,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/aft) "dgn" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -41656,14 +41510,13 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/shutters/radiation/preopen{ id_tag = "engsm2"; name = "SM Radiation Security Lock" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -41674,14 +41527,14 @@ /area/station/maintenance/asmaint2) "dgz" = ( /obj/structure/table/holotable/wood, -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -8; pixel_y = 7 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 10 }, /turf/simulated/floor/beach/sand, @@ -41694,7 +41547,7 @@ /area/shuttle/pod_4) "dgH" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug, +/obj/item/reagent_containers/drinks/mug, /obj/machinery/power/apc/directional/south, /obj/structure/cable, /turf/simulated/floor/wood/oak, @@ -41728,14 +41581,13 @@ /area/station/engineering/control) "dgP" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/shutters/radiation/preopen{ id_tag = "engsm2"; name = "SM Radiation Security Lock" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -41766,14 +41618,12 @@ dir = 5; icon_state = "darkblue" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "dgU" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/table, +/obj/item/storage/toolbox{ + pixel_y = 3; + color = "pink" }, /turf/simulated/floor/plasteel, /area/station/public/locker) @@ -41830,10 +41680,10 @@ /obj/effect/spawner/window/reinforced/grilled, /obj/structure/transit_tube/crossing/horizontal, /turf/simulated/floor/plating, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "dhp" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 2; pixel_y = 6 }, @@ -41847,6 +41697,7 @@ dir = 8 }, /obj/machinery/light_switch/east, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood/oak, /area/station/public/mrchangs) "dhv" = ( @@ -41955,11 +41806,8 @@ /turf/space, /area/space/nearstation) "dig" = ( -/obj/machinery/requests_console{ - department = "Locker Room"; - name = "Locker Room Requests Console"; - pixel_x = -32 - }, +/obj/machinery/atmospherics/portable/pump, +/obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/public/locker) "dij" = ( @@ -41980,6 +41828,7 @@ "dil" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -42063,17 +41912,16 @@ /area/station/engineering/supermatter_room) "div" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Access" - }, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/any/command/expedition, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/command/expedition, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -42266,7 +42114,7 @@ /obj/structure/railing{ dir = 8 }, -/obj/item/reagent_containers/food/drinks/mug/eng{ +/obj/item/reagent_containers/drinks/mug/eng{ pixel_x = 5; pixel_y = 5 }, @@ -42309,9 +42157,8 @@ /area/station/maintenance/storage) "djg" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Dormitories" - }, +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutral" @@ -42384,10 +42231,9 @@ name = "Singularity Blast Doors"; opacity = 0 }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "darkyellowfull" }, @@ -42498,9 +42344,8 @@ /turf/space, /area/space/nearstation) "djO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 4; @@ -42751,9 +42596,8 @@ /area/space/nearstation) "dkR" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -42948,9 +42792,6 @@ /obj/machinery/porta_turret{ dir = 1 }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners" }, @@ -43162,26 +43003,18 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/machinery/access_button{ - autolink_id = "eng_sm_btn_int"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "10;13" - }, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "dmz" = ( /turf/simulated/wall/r_wall, /area/station/engineering/supermatter_room) "dmA" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/door/airlock/atmos/glass{ - name = "Supermatter Atmospheric Supplies" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/poddoor{ @@ -43191,6 +43024,7 @@ name = "Atmos Blast Door"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -43587,7 +43421,9 @@ }, /area/station/turret_protected/ai) "dnG" = ( -/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/simulated/floor/plasteel, /area/station/public/locker) "dnI" = ( @@ -43609,10 +43445,7 @@ "dnM" = ( /obj/structure/table/wood, /obj/item/taperecorder, -/obj/item/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "Camera" - }, +/obj/item/camera, /obj/item/book/codex_gigas, /turf/simulated/floor/plasteel{ icon_state = "cult" @@ -43827,9 +43660,9 @@ name = "escape pod 4" }, /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Escape Pod Hatch" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_4) "doM" = ( @@ -43910,10 +43743,8 @@ /area/station/engineering/control) "dpp" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -43932,6 +43763,7 @@ name = "Engineering Security Doors"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, /turf/simulated/floor/plating, /area/station/engineering/tech_storage) "dpq" = ( @@ -44234,7 +44066,7 @@ dir = 4; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "dqD" = ( /obj/machinery/atmospherics/binary/valve{ dir = 4 @@ -44304,16 +44136,15 @@ /area/station/aisat/hall) "dqT" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "dqX" = ( @@ -44591,9 +44422,8 @@ /area/station/science/hallway) "dsz" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Server Room" - }, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -44712,16 +44542,15 @@ /area/station/maintenance/port) "dsY" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Equipment Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/engineering/equipmentstorage) "dta" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/structure/window/reinforced{ dir = 4 }, @@ -44916,11 +44745,16 @@ "dur" = ( /obj/machinery/door/airlock/external{ id_tag = "arrivalsmaint_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "arrivalsmaint_btn_int"; + pixel_x = -24; + req_one_access_txt = "13" + }, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "duF" = ( @@ -45139,9 +44973,8 @@ /area/station/hallway/primary/starboard/west) "dzp" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -45156,9 +44989,8 @@ }, /area/station/science/robotics) "dzA" = ( -/obj/machinery/door/airlock/hydroponics{ - name = "Hydroponics" - }, +/obj/machinery/door/airlock/hydroponics, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -45262,15 +45094,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/storage) "dBt" = ( @@ -45380,6 +45211,7 @@ /area/station/science/robotics) "dDk" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -45454,7 +45286,7 @@ /area/station/engineering/utility) "dEb" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "dEc" = ( @@ -45483,12 +45315,12 @@ /area/station/security/lobby) "dEq" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = -3; pixel_y = -3 }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = 3; pixel_y = 3 }, @@ -45667,11 +45499,16 @@ }, /obj/machinery/door/airlock/external{ id_tag = "eng_n_tesla_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/access_button{ + autolink_id = "eng_n_tesla_btn_int"; + pixel_y = -24; + req_access_txt = "10;13" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -45967,6 +45804,7 @@ /area/station/engineering/controlroom) "dMy" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -45982,7 +45820,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "dMJ" = ( @@ -46039,7 +45876,7 @@ /area/station/engineering/hallway) "dOb" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/item/reagent_containers/drinks/bottle/rum, /obj/item/reagent_containers/glass/rag{ pixel_x = -7 }, @@ -46109,10 +45946,11 @@ /area/station/medical/cryo) "dPA" = ( /obj/machinery/door/airlock/engineering/glass{ - heat_proof = 1; - name = "Supermatter Chamber" + heat_proof = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/engine, /area/station/engineering/engine/supermatter) "dQa" = ( @@ -46164,9 +46002,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "dRf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/bar, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -46258,7 +46095,7 @@ /turf/simulated/floor/plasteel/stairs/right{ dir = 8 }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "dTI" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 5 @@ -46541,9 +46378,9 @@ "dYX" = ( /obj/machinery/door/airlock/external{ id_tag = "evamaint_door_ext"; - locked = 1; - name = "EVA External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) @@ -46557,6 +46394,7 @@ /area/station/hallway/primary/central/west) "dZA" = ( /obj/machinery/door/airlock/wood, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "dZB" = ( @@ -46688,7 +46526,7 @@ /area/station/hallway/primary/aft) "ecH" = ( /turf/simulated/wall, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "ecI" = ( /obj/machinery/light/small/directional/south, /obj/structure/chair/office/dark{ @@ -46876,11 +46714,11 @@ /area/station/maintenance/portsolar) "eeF" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = -8; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/flask/barflask{ +/obj/item/reagent_containers/drinks/flask/barflask{ pixel_x = 6; pixel_y = 6 }, @@ -46916,12 +46754,12 @@ /area/station/medical/reception) "efk" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = -3; pixel_y = -3 }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = 3; pixel_y = 3 }, @@ -47072,9 +46910,8 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/aft) "ehb" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Vacant Office" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/wood/oak, /area/station/public/vacant_office) @@ -47157,7 +46994,7 @@ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "eic" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/west, /obj/effect/decal/cleanable/dirt, @@ -47300,16 +47137,16 @@ }, /area/station/security/interrogation) "elC" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plating, /area/station/engineering/supermatter_room) "elE" = ( @@ -47415,9 +47252,9 @@ /area/station/engineering/atmos) "enJ" = ( /obj/machinery/door/airlock/bathroom{ - id_tag = "toilet_unit1"; - name = "Unit 1" + id_tag = "toilet_unit1" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -47468,9 +47305,8 @@ /area/station/maintenance/fsmaint) "epp" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/public/storage/tools) @@ -47618,13 +47454,12 @@ /area/station/supply/miningdock) "esG" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkyellowcorners" @@ -47710,11 +47545,11 @@ /area/station/engineering/atmos) "esV" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8; pixel_y = 1 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 11 }, @@ -47739,9 +47574,9 @@ "etR" = ( /obj/machinery/door/airlock/external{ id_tag = "fpsolar_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -47749,6 +47584,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "fpsolar_btn_int"; + pixel_x = 24; + req_one_access_txt = "13" + }, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "eui" = ( @@ -47808,6 +47648,7 @@ /area/station/maintenance/asmaint) "euT" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dust, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -47829,7 +47670,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" @@ -47851,9 +47692,8 @@ /area/station/science/rnd) "evS" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard"; name = "Biohazard Shutter" @@ -47961,14 +47801,14 @@ "exu" = ( /obj/structure/chair/sofa/left, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) "exC" = ( /obj/machinery/door/airlock{ - name = "Custodial Closet"; req_one_access_txt = "26" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "exD" = ( @@ -48149,15 +47989,15 @@ /area/station/security/permabrig) "eBE" = ( /obj/structure/table/glass/reinforced/plastitanium, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ +/obj/item/reagent_containers/drinks/bottle/vodka/badminka{ pixel_y = 12; pixel_x = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 8; pixel_x = -1 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 2; pixel_x = -1 }, @@ -48188,9 +48028,8 @@ /area/station/maintenance/port) "eCl" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, @@ -48323,7 +48162,7 @@ /obj/effect/decal/cleanable/dust, /obj/item/lighter/random, /obj/item/rollingpaper, -/obj/item/reagent_containers/food/snacks/grown/cannabis, +/obj/item/food/snacks/grown/cannabis, /obj/item/ashtray/plastic, /turf/simulated/floor/carpet/orange, /area/station/maintenance/fsmaint) @@ -48372,6 +48211,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/landmark/start/librarian, /turf/simulated/floor/wood/oak, /area/station/service/library) "eGU" = ( @@ -48404,6 +48244,7 @@ icon_state = "2-8" }, /obj/effect/landmark/damageturf, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/aft) "eGZ" = ( @@ -48599,9 +48440,9 @@ /area/station/maintenance/asmaint) "eKH" = ( /obj/machinery/door/airlock/bathroom{ - id_tag = "toilet_unitc"; - name = "Unit C" + id_tag = "toilet_unitc" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -48715,9 +48556,9 @@ /area/station/security/evidence) "eMu" = ( /obj/machinery/door/airlock/vault{ - locked = 1; - name = "abandoned vault" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, @@ -48749,6 +48590,14 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/aft) +"eNd" = ( +/obj/machinery/turretid/stun{ + name = "AI Satellite Service Bay Turret Control"; + pixel_x = -6; + req_one_access_txt = "75" + }, +/turf/simulated/wall/r_wall, +/area/station/aisat/service) "eNi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -48928,6 +48777,7 @@ /area/station/maintenance/apmaint) "eSa" = ( /obj/structure/chair/sofa/corp/right, +/obj/effect/landmark/start/bar, /turf/simulated/floor/carpet/black, /area/station/service/bar/atrium) "eSg" = ( @@ -49148,6 +48998,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood/fancy/cherry, /area/station/service/bar/atrium) "eWx" = ( @@ -49459,14 +49310,14 @@ /area/station/legal/courtroom) "fdb" = ( /obj/machinery/door/airlock/command/cap, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/any/command/captain, -/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -49577,7 +49428,7 @@ "feq" = ( /obj/effect/decal/cleanable/dust, /obj/effect/spawner/random_spawners/blood_maybe, -/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/condiment/enzyme, /turf/simulated/floor/plating, /area/station/maintenance/abandonedbar) "fes" = ( @@ -49963,9 +49814,6 @@ listening = 0; pixel_y = -22 }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluecorners" @@ -49977,6 +49825,7 @@ /area/station/maintenance/apmaint) "fnX" = ( /obj/machinery/door/airlock/command/qm/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "qm" }, @@ -49984,9 +49833,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, /area/station/supply/qm) "foi" = ( @@ -50340,9 +50188,8 @@ }, /area/station/medical/storage) "fuz" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -50511,7 +50358,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel, /area/station/security/storage) "fxu" = ( @@ -50539,7 +50385,7 @@ /area/station/science/hallway) "fxN" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood/oak, /area/station/maintenance/asmaint) "fxP" = ( @@ -51031,9 +50877,8 @@ /turf/simulated/floor/plating, /area/station/supply/qm) "fFO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 1; @@ -51142,18 +50987,18 @@ /turf/simulated/floor/plating, /area/station/service/mime) "fIC" = ( -/obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "blue" @@ -51342,13 +51187,12 @@ /turf/simulated/floor/grass, /area/station/security/permabrig) "fMR" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Transfer" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, @@ -51386,9 +51230,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -51478,6 +51321,7 @@ /obj/structure/chair/sofa/right{ dir = 4 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/asmaint) "fQr" = ( @@ -51569,8 +51413,10 @@ /area/station/maintenance/fpmaint2) "fSH" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "fSJ" = ( @@ -51591,10 +51437,9 @@ }, /area/station/maintenance/aft) "fSV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Closet Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, /turf/simulated/floor/plating, /area/station/service/janitor) "fTc" = ( @@ -51842,6 +51687,7 @@ /mob/living/simple_animal/bot/cleanbot{ on = 0 }, +/obj/item/radio/intercom/directional/south, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluecorners" @@ -51911,6 +51757,7 @@ /obj/structure/sign/poster/contraband/lusty_xenomorph{ pixel_y = -32 }, +/obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -51988,10 +51835,10 @@ }, /area/station/engineering/break_room) "fZM" = ( -/obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "blue" @@ -52115,7 +51962,7 @@ dir = 1; name = "Engineering Checkpoint" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/construction{ dir = 1 }, /turf/simulated/floor/plasteel{ @@ -52146,7 +51993,7 @@ dir = 9 }, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "gdX" = ( @@ -52180,6 +52027,7 @@ /obj/structure/chair/sofa{ dir = 4 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/asmaint) "geX" = ( @@ -52284,9 +52132,8 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -52295,12 +52142,11 @@ opacity = 0 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, -/area/station/engineering/utility) +/area/station/maintenance/aft) "ggO" = ( /obj/machinery/camera{ c_tag = "Teleporter Room" @@ -52393,9 +52239,8 @@ }, /area/station/medical/surgery/secondary) "gim" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Port Solar Access" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -52616,12 +52461,13 @@ /obj/machinery/door/airlock/virology{ autoclose = 0; id_tag = "viro_door_int"; - locked = 1; - name = "Virology Lab Internal Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/west{ autolink_id = "viro_btn_int"; - name = "Virology Lab Access Button" + name = "Virology Lab Access Button"; + req_one_access_txt = "39" }, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -52729,9 +52575,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/airlock/service{ - name = "Bar Office" - }, +/obj/machinery/door/airlock/service, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -52784,6 +52629,7 @@ d2 = 4; icon_state = "0-4" }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood/fancy/cherry, /area/station/service/bar/atrium) "goX" = ( @@ -53005,7 +52851,7 @@ "gsd" = ( /obj/structure/table/wood, /obj/machinery/light/small/directional/south, -/obj/item/reagent_containers/food/drinks/mug/novelty, +/obj/item/reagent_containers/drinks/mug/novelty, /obj/effect/spawner/lootdrop/officetoys, /turf/simulated/floor/wood/oak, /area/station/command/office/ntrep) @@ -53183,8 +53029,8 @@ /area/station/maintenance/fsmaint) "guQ" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/saltshaker, +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -7 }, /obj/effect/spawner/lootdrop/maintenance, @@ -53355,7 +53201,6 @@ /area/station/maintenance/aft) "gyR" = ( /obj/machinery/door/airlock/command/glass, -/obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -53369,6 +53214,7 @@ d2 = 4; icon_state = "1-4" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel, /area/station/command/bridge) "gyS" = ( @@ -53417,6 +53263,17 @@ icon_state = "darkyellow" }, /area/station/engineering/equipmentstorage) +"gAb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) "gAk" = ( /obj/effect/landmark/start/shaft_miner, /obj/effect/decal/cleanable/dirt, @@ -53584,9 +53441,6 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "gDJ" = ( @@ -53596,11 +53450,10 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkyellowcorners" @@ -53709,9 +53562,8 @@ /area/station/hallway/primary/central/sw) "gFG" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "holodeck" }, @@ -53784,9 +53636,8 @@ }, /area/station/engineering/supermatter_room) "gGq" = ( -/obj/machinery/door/airlock/bathroom{ - name = "Unisex Restrooms" - }, +/obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -53883,9 +53734,9 @@ /area/station/maintenance/aft) "gIU" = ( /obj/machinery/door/airlock/wood{ - desc = "No solicitors please."; - name = "Private Residence" + desc = "No solicitors please." }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/wood/oak, /area/station/maintenance/apmaint) @@ -54022,7 +53873,7 @@ "gMa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, -/obj/item/reagent_containers/food/snacks/dough{ +/obj/item/food/snacks/dough{ desc = "A piece of dough. It looks moldy and is hard as a rock. Hope you're not planning on turning this into a pizza.."; name = "old dough" }, @@ -54032,6 +53883,7 @@ "gMc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -54041,7 +53893,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "gMl" = ( @@ -54358,11 +54210,11 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/spawner/wire_splicing/thirty, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "gQi" = ( /obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/directional/west, /obj/machinery/computer/cryopod/robot{ pixel_x = -30; pixel_y = 30 @@ -54377,11 +54229,10 @@ /area/station/aisat/service) "gQs" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Equipment Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -54412,7 +54263,7 @@ /area/station/maintenance/fsmaint) "gRe" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood/oak, /area/station/maintenance/asmaint2) "gRp" = ( @@ -54766,9 +54617,9 @@ "gWZ" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "perma_door_ext"; - locked = 1; - name = "Prison Wing" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -54908,7 +54759,7 @@ dir = 10; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "gYO" = ( /turf/simulated/floor/plasteel{ dir = 4; @@ -55204,6 +55055,7 @@ /area/station/maintenance/abandonedbar) "heL" = ( /obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dust, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -55220,9 +55072,6 @@ dir = 1; name = "Space Loop Out" }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "hft" = ( @@ -55388,9 +55237,8 @@ /turf/simulated/floor/plasteel, /area/station/science/rnd) "hhX" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Cafeteria" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -55623,12 +55471,6 @@ }, /turf/simulated/floor/plating, /area/station/command/office/blueshield) -"hlM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/simulated/floor/plating, -/area/station/maintenance/fpmaint) "hmj" = ( /obj/effect/turf_decal/siding/white{ dir = 6 @@ -55651,15 +55493,12 @@ /area/station/maintenance/asmaint) "hmR" = ( /obj/machinery/light/small/directional/east, -/obj/machinery/turretid/stun{ - control_area = "\improper AI Satellite Service"; - name = "AI Satellite Service Bay Turret Control"; - pixel_x = 24; - req_one_access_txt = "75" - }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkbluecorners" @@ -55792,12 +55631,6 @@ /turf/space, /area/space) "hoD" = ( -/obj/machinery/access_button{ - autolink_id = "fpsolar_btn_int"; - pixel_x = 25; - pixel_y = 25; - req_one_access_txt = "13" - }, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -55978,10 +55811,9 @@ /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/engineering/glass{ - id_tag = "englobby"; - name = "Engineering" + id_tag = "englobby" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -55989,6 +55821,7 @@ name = "Engineering Security Doors"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "yellow" @@ -56307,6 +56140,7 @@ /obj/machinery/door/airlock/freezer{ req_one_access_txt = "28" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) @@ -56497,6 +56331,12 @@ icon_state = "neutral" }, /area/station/engineering/atmos/storage) +"hBo" = ( +/obj/effect/landmark/start/artist, +/turf/simulated/floor/plasteel{ + icon_state = "dark" + }, +/area/station/public/dorms) "hBu" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance, @@ -56585,9 +56425,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "hDf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Science Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard"; name = "Biohazard Shutter" @@ -56604,7 +56443,8 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/all/medical/genetics, /turf/simulated/floor/plating, /area/station/science/genetics) "hDl" = ( @@ -56621,30 +56461,23 @@ /area/station/service/library) "hDI" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fore) "hDJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - autolink_id = "assolar_btn_ext"; - pixel_x = 25; - pixel_y = 25; - req_one_access_txt = "13" +/obj/machinery/requests_console{ + department = "Locker Room"; + name = "Locker Room Requests Console"; + pixel_y = -32 }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/station/engineering/solar/starboard) +/turf/simulated/floor/plasteel, +/area/station/public/locker) "hDN" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 @@ -56661,7 +56494,7 @@ /area/station/command/bridge) "hDS" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/mug/sci, +/obj/item/reagent_containers/drinks/mug/sci, /obj/machinery/light/directional/west, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -56713,7 +56546,7 @@ }, /area/station/science/server/coldroom) "hEW" = ( -/obj/machinery/suit_storage_unit/ce, +/obj/machinery/suit_storage_unit/ce/secure, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkyellow" @@ -56782,14 +56615,14 @@ /area/station/command/office/cmo) "hGg" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/effect/mapping_helpers/airlock/polarized{ id = "conference" }, /obj/machinery/door/airlock/command/glass{ id_tag = "conference" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/carpet/black, /area/station/command/meeting_room) "hGj" = ( @@ -56817,7 +56650,7 @@ pixel_y = 10; pixel_x = 4 }, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_x = -4; pixel_y = -6 }, @@ -56839,7 +56672,7 @@ /obj/machinery/door/airlock/command/cap{ id_tag = "captainofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -56850,12 +56683,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood/fancy/cherry, /area/station/command/office/captain) "hHp" = ( @@ -57129,11 +56963,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel, /area/station/hallway/primary/starboard/west) -"hMr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/asmaint) "hMt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -57168,11 +56997,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, -/obj/machinery/access_button{ - autolink_id = "aisat_btn_int"; - pixel_x = -25; - pixel_y = 25 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -57196,6 +57020,7 @@ /area/station/security/permabrig) "hNr" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/aft) "hNy" = ( @@ -57240,9 +57065,8 @@ }, /area/station/service/hydroponics) "hOh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "E.V.A. Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -57774,7 +57598,7 @@ /area/station/security/processing) "hYo" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -4; pixel_y = 6 }, @@ -58075,7 +57899,7 @@ /area/station/maintenance/port) "ieC" = ( /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ +/obj/item/storage/surgical_tray{ pixel_y = 8 }, /turf/simulated/floor/plasteel{ @@ -58133,7 +57957,7 @@ /area/station/maintenance/asmaint2) "ifV" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/bottle/wine, +/obj/item/reagent_containers/drinks/bottle/wine, /turf/simulated/floor/plasteel{ icon_state = "cult" }, @@ -58150,6 +57974,7 @@ /obj/structure/chair/sofa/left{ dir = 4 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/asmaint) "igV" = ( @@ -58215,10 +58040,15 @@ }, /obj/machinery/door/airlock/external{ id_tag = "fssolar_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "fssolar_btn_ext"; + pixel_x = -24; + req_one_access_txt = "10;13" + }, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "iip" = ( @@ -58256,6 +58086,7 @@ /area/station/hallway/primary/central/ne) "ijf" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -58263,7 +58094,6 @@ icon_state = "1-2" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fore) "ijg" = ( @@ -58568,6 +58398,7 @@ "ipA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -58657,11 +58488,9 @@ /area/station/hallway/primary/starboard/west) "irE" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Morgue" - }, +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -58670,6 +58499,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /turf/simulated/floor/plasteel{ icon_state = "darkbluefull" }, @@ -58828,12 +58658,13 @@ /turf/simulated/floor/plasteel{ icon_state = "darkbluefull" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "ivY" = ( /obj/structure/sink/directional/west, /obj/machinery/camera{ c_tag = "Virology Airlock" }, +/obj/item/radio/intercom/directional/north, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whitegreen" @@ -58924,6 +58755,7 @@ /area/station/maintenance/fsmaint) "ixh" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -58937,12 +58769,6 @@ /obj/structure/lattice, /turf/space, /area/space) -"ixv" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/simulated/floor/plating, -/area/station/maintenance/fore) "ixy" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "qm" @@ -58960,7 +58786,7 @@ dir = 4; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "ixM" = ( /obj/structure/cable{ d1 = 2; @@ -58987,10 +58813,8 @@ }, /area/station/engineering/atmos) "iyc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmoshperics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59009,13 +58833,13 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/catwalk, /area/station/maintenance/storage) "iyh" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bartender" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/bar, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -59028,6 +58852,11 @@ icon_state = "dark" }, /area/station/command/office/hos) +"iyI" = ( +/obj/structure/weightmachine/stacklifter, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) "iyJ" = ( /obj/machinery/door/poddoor/shutters{ dir = 2; @@ -59084,9 +58913,8 @@ /area/station/public/dorms) "iBI" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "purplecorner" @@ -59161,8 +58989,9 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/machinery/light/small/directional/west, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "iDh" = ( @@ -59357,9 +59186,9 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/command/glass{ - name = "AI Core"; req_one_access_txt = "16" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, @@ -59699,13 +59528,6 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) -"iMM" = ( -/obj/effect/spawner/wire_splicing/thirty, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/apmaint) "iMW" = ( /obj/structure/table/wood, /obj/item/stack/cable_coil, @@ -59808,12 +59630,12 @@ "iOY" = ( /obj/structure/table/wood, /obj/structure/sign/poster/official/random/north, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = 5; pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -8; pixel_y = 7 }, @@ -59855,9 +59677,8 @@ }, /area/station/security/evidence) "iPS" = ( -/obj/machinery/door/airlock/hydroponics{ - name = "Hydroponics" - }, +/obj/machinery/door/airlock/hydroponics, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/siding/white, /obj/effect/turf_decal/siding/white{ dir = 1 @@ -59947,9 +59768,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "iQO" = ( -/obj/machinery/door/airlock/bathroom{ - name = "Private Restroom" - }, +/obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -60114,6 +59934,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/carpet/purple, /area/station/service/bar) "iUf" = ( @@ -60304,11 +60125,6 @@ /obj/machinery/light_switch/south, /turf/simulated/floor/plating, /area/station/public/storage/emergency/port) -"iYQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) "iZj" = ( /obj/structure/chair/stool{ dir = 4 @@ -60325,9 +60141,8 @@ }, /area/station/science/hallway) "iZn" = ( -/obj/machinery/door/airlock/medical{ - name = "Abandoned Equipment Storage" - }, +/obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/effect/mapping_helpers/airlock/locked, /turf/simulated/floor/plating, @@ -60336,11 +60151,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/obj/machinery/door/airlock/atmos{ - name = "Port-Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/simulated/floor/plating, /area/station/maintenance/port) "iZz" = ( @@ -60377,6 +60191,17 @@ /obj/item/seeds/corn, /turf/simulated/floor/grass, /area/station/security/permabrig) +"iZR" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console"; + pixel_y = -30 + }, +/turf/simulated/floor/plasteel{ + icon_state = "darkredcorners" + }, +/area/station/security/brig) "iZV" = ( /obj/effect/spawner/random_spawners/grille_often, /obj/effect/decal/cleanable/dirt, @@ -60894,13 +60719,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/engineering/general{ - dir = 4 - }, /obj/machinery/door/window/reinforced/reversed{ dir = 4; name = "Suit Storage" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/general{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkyellowcorners" @@ -60984,6 +60809,18 @@ icon_state = "whiteblue" }, /area/station/medical/surgery/secondary) +"jog" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/door_control/bolt_control/south{ + id = "toilet_ass3" + }, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet/lockerroom) "joq" = ( /obj/structure/cable{ d1 = 4; @@ -61090,6 +60927,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood/fancy/cherry, /area/station/service/bar/atrium) "jpn" = ( @@ -61177,6 +61015,7 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/mime, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -61280,8 +61119,8 @@ /area/station/public/toilet) "jsv" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/disk, -/obj/item/reagent_containers/food/snacks/disk{ +/obj/item/food/snacks/disk, +/obj/item/food/snacks/disk{ pixel_y = -6; pixel_x = 5 }, @@ -61476,14 +61315,14 @@ "jxo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ - name = "MiniSat Transit Tube"; req_access_txt = "75" }, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ icon_state = "darkbluefull" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "jxs" = ( /turf/simulated/floor/plating, /area/station/engineering/utility) @@ -61775,7 +61614,7 @@ /area/station/maintenance/aft) "jBJ" = ( /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ +/obj/item/storage/surgical_tray{ pixel_y = 8 }, /turf/simulated/floor/plasteel{ @@ -62006,9 +61845,9 @@ autoclose = 0; heat_proof = 1; id_tag = "incinerator_door_int"; - locked = 1; - name = "Mixing Room Interior Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button{ autolink_id = "incinerator_btn_int"; name = "Incinerator Airlock Control"; @@ -62135,6 +61974,7 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -62216,6 +62056,7 @@ /area/station/command/bridge) "jMw" = ( /obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/mineral/titanium, /area/shuttle/arrival/station) "jMx" = ( @@ -62271,6 +62112,7 @@ /area/station/maintenance/asmaint) "jOs" = ( /obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -62286,7 +62128,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/command/bridge) "jOx" = ( @@ -62342,6 +62183,7 @@ /area/station/command/meeting_room) "jPw" = ( /obj/machinery/door/airlock/freezer, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) @@ -62360,6 +62202,7 @@ /area/station/public/dorms) "jPW" = ( /obj/machinery/door/airlock/silver, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -62689,6 +62532,13 @@ }, /turf/simulated/floor/engine, /area/station/engineering/engine/supermatter) +"jVb" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/carpet/black, +/area/station/service/bar/atrium) "jVf" = ( /obj/vehicle/secway, /obj/item/key/security, @@ -62703,11 +62553,6 @@ icon_state = "darkred" }, /area/station/security/warden) -"jVj" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/aft) "jVr" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -62748,6 +62593,7 @@ "jWE" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) "jWV" = ( @@ -62758,10 +62604,15 @@ "jXg" = ( /obj/machinery/door/airlock/external{ id_tag = "arrivalsmaint_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "arrivalsmaint_btn_ext"; + pixel_x = -24; + req_one_access_txt = "13" + }, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "jXI" = ( @@ -62891,12 +62742,10 @@ }, /area/station/hallway/secondary/exit) "kak" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/station/engineering/atmos) +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/space, +/area/space/nearstation) "kaB" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6 @@ -63009,7 +62858,7 @@ "kdh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, -/obj/item/reagent_containers/food/snacks/grown/cannabis, +/obj/item/food/snacks/grown/cannabis, /turf/simulated/floor/carpet, /area/station/maintenance/asmaint) "kdx" = ( @@ -63151,7 +63000,7 @@ }, /area/station/engineering/hallway) "kgc" = ( -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "kgg" = ( @@ -63242,14 +63091,13 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door_control/shutter/east{ id = "Singularity"; name = "Containment Blast Doors" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "darkyellowfull" }, @@ -63259,9 +63107,8 @@ dir = 4 }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Control Room" - }, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -63275,6 +63122,7 @@ /area/station/engineering/atmos) "kil" = ( /obj/machinery/door/airlock/silver, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "kiq" = ( @@ -63343,9 +63191,8 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -63476,6 +63323,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/station/hallway/primary/port) +"klz" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) "klA" = ( /obj/structure/cable{ d1 = 2; @@ -63526,16 +63378,15 @@ /area/station/engineering/atmos) "kmA" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -63706,18 +63557,6 @@ icon_state = "dark" }, /area/station/engineering/supermatter_room) -"kqT" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/research, -/turf/simulated/floor/plating, -/area/station/maintenance/asmaint) "krb" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ @@ -63795,8 +63634,8 @@ /obj/structure/sign/poster/contraband/random/north, /obj/item/clothing/mask/cigarette/random, /obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) @@ -63921,7 +63760,7 @@ "kua" = ( /obj/structure/table/wood, /obj/machinery/power/apc/directional/west, -/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/food/snacks/baguette, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -63974,6 +63813,13 @@ /obj/effect/turf_decal/siding/wood, /turf/simulated/floor/wood/oak, /area/station/maintenance/abandonedbar) +"kuL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) "kuW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/wardrobe/black, @@ -64222,9 +64068,8 @@ }, /area/station/command/office/hos) "kBe" = ( -/obj/machinery/door/airlock/bathroom{ - name = "Prison Toilets" - }, +/obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -64285,7 +64130,10 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics{ +/obj/effect/mapping_helpers/airlock/windoor/access/all/science/research{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/genetics{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -64492,9 +64340,8 @@ }, /area/station/security/permabrig) "kEM" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -64548,10 +64395,8 @@ /area/station/public/dorms) "kGs" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Emergency Supplies" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -64560,6 +64405,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -64636,10 +64482,7 @@ dir = 1; name = "Cryo Tank Storage" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/all/medical/general{ dir = 1 }, /turf/simulated/floor/plasteel{ @@ -64733,9 +64576,9 @@ /obj/structure/fans/tiny, /obj/machinery/door/airlock/external{ id_tag = "mining_home"; - locked = 1; - name = "Mining Dock Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plating, /area/station/supply/miningdock) @@ -64787,9 +64630,8 @@ /turf/simulated/floor/plating/airless, /area/station/science/toxins/test) "kKW" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Isolator" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/shutters/window/preopen{ dir = 1; id_tag = "durka2" @@ -64827,9 +64669,8 @@ /area/station/maintenance/apmaint) "kLn" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -64844,7 +64685,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/general, +/obj/effect/mapping_helpers/airlock/access/any/supply/cargo_bay, /turf/simulated/floor/plasteel, /area/station/supply/storage) "kLp" = ( @@ -64863,7 +64704,7 @@ vent_link_id = "eng_sm_vent" }, /turf/simulated/floor/plating, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "kLR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -65000,6 +64841,7 @@ /area/station/maintenance/assembly_line) "kNX" = ( /obj/structure/chair/sofa/corp/left, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet/green, /area/station/command/bridge) "kNY" = ( @@ -65090,6 +64932,7 @@ cover_color = "#85130b"; dir = 1 }, +/obj/effect/landmark/spawner/prisoner, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "red" @@ -65153,13 +64996,14 @@ /obj/machinery/door/airlock/virology{ autoclose = 0; id_tag = "viro_door_ext"; - locked = 1; - name = "Virology Lab External Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/north{ autolink_id = "viro_btn_ext"; layer = 3.6; - name = "Virology Lab Access Button" + name = "Virology Lab Access Button"; + req_one_access_txt = "39" }, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -65279,13 +65123,13 @@ "kSK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "kSP" = ( /obj/structure/barricade/wooden, -/obj/machinery/door/airlock/welded{ - name = "Maintenance Airlock" - }, +/obj/machinery/door/airlock/welded, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -65309,6 +65153,7 @@ /obj/structure/toilet{ dir = 1 }, +/obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -65371,6 +65216,7 @@ /obj/structure/chair/sofa/corp/left{ dir = 1 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet/purple, /area/station/service/bar) "kVw" = ( @@ -65561,11 +65407,16 @@ }, /obj/machinery/door/airlock/external{ id_tag = "assolar_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "assolar_btn_int"; + pixel_x = -24; + req_one_access_txt = "10;13" + }, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "kYC" = ( @@ -65645,12 +65496,6 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "laU" = ( -/obj/machinery/access_button{ - autolink_id = "fpsolar_btn_ext"; - pixel_x = 25; - pixel_y = -25; - req_one_access_txt = "13" - }, /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -65932,20 +65777,18 @@ }, /area/station/engineering/equipmentstorage) "lgb" = ( -/obj/machinery/access_button{ - autolink_id = "fssolar_btn_ext"; - pixel_x = -25; - pixel_y = -25; - req_one_access_txt = "10;13" +/obj/machinery/door/airlock/external{ + hackProof = 1; + id_tag = "emergency_home"; + locked = 1 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/turf/simulated/floor/plasteel{ + icon_state = "dark" }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/station/engineering/solar/auxstarboard) +/area/station/hallway/secondary/exit) "lgO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -65987,9 +65830,8 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/port) "lhf" = ( -/obj/machinery/door/airlock/bathroom{ - name = "Unisex Restrooms" - }, +/obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -66042,6 +65884,7 @@ dir = 5 }, /obj/structure/chair/sofa/corp/left, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/carpet/purple, /area/station/service/bar) "lie" = ( @@ -66096,9 +65939,9 @@ autoclose = 0; heat_proof = 1; id_tag = "incinerator_door_ext"; - locked = 1; - name = "Mixing Room Exterior Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button{ autolink_id = "incinerator_btn_ext"; layer = 3.1; @@ -66396,7 +66239,7 @@ }, /area/station/medical/morgue) "lqF" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -66440,6 +66283,7 @@ /area/station/maintenance/asmaint) "lrO" = ( /obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/welded, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -66532,6 +66376,15 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/port) +"lsX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "lte" = ( /obj/machinery/light/directional/west, /obj/machinery/papershredder, @@ -66609,11 +66462,9 @@ /turf/simulated/floor/plating, /area/station/science/misc_lab) "lvd" = ( -/obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -66621,6 +66472,8 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "blue" @@ -66834,9 +66687,8 @@ /area/station/ai_monitored/storage/eva) "lzA" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Emergency Entrance" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, @@ -66964,6 +66816,14 @@ /obj/effect/landmark/burnturf, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) +"lCt" = ( +/obj/machinery/turretid/stun{ + name = "AI Chamber Hallway Turret Control"; + pixel_y = 6; + req_one_access_txt = "75" + }, +/turf/simulated/wall/r_wall, +/area/station/aisat/hall) "lCu" = ( /obj/item/toy/crayon/spraycan, /obj/effect/decal/cleanable/dust, @@ -66977,10 +66837,15 @@ }, /obj/machinery/door/airlock/external{ id_tag = "assolar_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "assolar_btn_ext"; + pixel_x = -24; + req_one_access_txt = "13" + }, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "lCQ" = ( @@ -67063,6 +66928,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/station/science/hallway) +"lEA" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/station/security/permabrig) "lED" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/sunglasses/blindfold, @@ -67104,6 +66978,7 @@ /area/station/maintenance/turbine) "lEW" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, @@ -67213,6 +67088,13 @@ icon_state = "darkyellowcorners" }, /area/station/engineering/atmos/control) +"lGD" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/space, +/area/space/nearstation) "lGP" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/shutters/preopen{ @@ -67345,7 +67227,7 @@ pixel_y = 6; pixel_x = 4 }, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ +/obj/item/reagent_containers/drinks/bottle/holywater{ pixel_y = 4; pixel_x = -8 }, @@ -67628,7 +67510,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 + dir = 4 }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) @@ -67649,6 +67531,7 @@ /area/station/security/interrogation) "lPL" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) @@ -67742,9 +67625,6 @@ dir = 1 }, /obj/structure/window/reinforced, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ - dir = 1 - }, /obj/machinery/door/window/classic/normal{ layer = 3; req_one_access_txt = "50"; @@ -67763,6 +67643,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/general{ + dir = 1 + }, /turf/simulated/floor/plating, /area/station/maintenance/disposal) "lQx" = ( @@ -67795,6 +67678,7 @@ /area/shuttle/pod_3) "lQV" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -67807,7 +67691,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "lQZ" = ( @@ -67829,7 +67712,7 @@ /turf/simulated/floor/grass, /area/station/service/hydroponics) "lRi" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 8 }, /obj/machinery/atmospherics/binary/pump{ @@ -67928,9 +67811,8 @@ }, /area/station/science/rnd) "lTB" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Solitary Confinement 1" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, @@ -68011,9 +67893,8 @@ /area/station/medical/reception) "lUK" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Observation" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -68264,6 +68145,17 @@ /obj/effect/decal/cleanable/blood/drip, /turf/simulated/floor/plating, /area/station/maintenance/aft) +"lYd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/ntrep, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) "lYm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -68550,7 +68442,7 @@ /area/station/command/office/cmo) "mcF" = ( /obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -68629,7 +68521,7 @@ /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "mdX" = ( -/obj/item/reagent_containers/food/snacks/grown/cannabis, +/obj/item/food/snacks/grown/cannabis, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/mask/cigarette/medical_marijuana, /obj/effect/landmark/damageturf, @@ -68692,6 +68584,15 @@ icon_state = "dark" }, /area/station/engineering/supermatter_room) +"mfu" = ( +/obj/machinery/door/airlock{ + id_tag = "toilet_ass1" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet/lockerroom) "mfv" = ( /obj/machinery/door/poddoor/preopen{ id_tag = "Singularity"; @@ -68921,9 +68822,8 @@ /area/station/supply/miningdock) "miq" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard"; name = "Biohazard Shutter" @@ -68940,9 +68840,8 @@ /area/station/science/hallway) "miF" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/lawyer/glass{ - name = "Internal Affairs Office" - }, +/obj/machinery/door/airlock/lawyer/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "IAA" }, @@ -69055,9 +68954,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/command/hos/glass{ - name = "Head of Security Bedroom" - }, +/obj/machinery/door/airlock/command/hos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/security/hos, @@ -69114,7 +69012,7 @@ /area/station/telecomms/chamber) "mll" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/food/snacks/meat/slab, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -69214,9 +69112,8 @@ /area/station/engineering/hallway) "mnh" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Hallway" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -69237,10 +69134,8 @@ }, /area/station/maintenance/abandonedbar) "moH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Psychiatrist Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -69248,6 +69143,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /turf/simulated/floor/plating, /area/station/medical/psych) "moN" = ( @@ -69369,16 +69265,15 @@ /area/station/maintenance/aft) "mrd" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -69495,6 +69390,7 @@ /area/station/public/locker) "msY" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -69503,6 +69399,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "mtc" = ( @@ -69608,6 +69505,7 @@ /area/station/service/janitor) "mvm" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -69650,7 +69548,7 @@ /area/station/supply/storage) "mwO" = ( /obj/effect/decal/cleanable/dust, -/obj/item/reagent_containers/food/drinks/cans/badminbrew, +/obj/item/reagent_containers/drinks/cans/badminbrew, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" }, @@ -69755,8 +69653,8 @@ /area/station/security/brig) "mze" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/food/snacks/breadslice, +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 11 }, @@ -69858,15 +69756,21 @@ "mAZ" = ( /obj/machinery/door/airlock/external{ id_tag = "scibomb_door_ext"; - locked = 1; - name = "External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button/west{ + autolink_id = "scibomb_btn_ext"; + pixel_y = 24; + req_one_access_txt = "10;13"; + pixel_x = 0 + }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "mBl" = ( @@ -69880,21 +69784,12 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "mBZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/access_button{ - autolink_id = "eng_atmos_btn_int"; - pixel_x = -25; - pixel_y = 25; - req_access_txt = "10;13" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/storage) +/obj/structure/closet/wardrobe/grey, +/turf/simulated/floor/plasteel, +/area/station/public/locker) "mCc" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Checkpoint" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -69909,7 +69804,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) @@ -70080,9 +69974,8 @@ }, /area/station/security/main) "mEk" = ( -/obj/machinery/door/airlock/welded{ - name = "Maintenance Airlock" - }, +/obj/machinery/door/airlock/welded, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -70439,6 +70332,7 @@ pixel_y = -32 }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -70502,6 +70396,7 @@ /area/station/maintenance/fsmaint) "mNK" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -70593,6 +70488,7 @@ /area/station/service/hydroponics) "mPO" = ( /obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "purplefull" @@ -70942,6 +70838,16 @@ icon_state = "dark" }, /area/station/security/interrogation) +"mYc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/artist, +/turf/simulated/floor/plasteel, +/area/station/public/dorms) "mYn" = ( /obj/structure/cable{ d1 = 4; @@ -70981,9 +70887,8 @@ }, /area/station/engineering/supermatter_room) "mZd" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -71017,6 +70922,7 @@ "mZp" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" }, @@ -71133,9 +71039,8 @@ /turf/simulated/floor/plasteel, /area/station/command/bridge) "nbA" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -71186,9 +71091,8 @@ /turf/simulated/floor/wood/fancy/oak, /area/station/command/meeting_room) "nci" = ( -/obj/machinery/door/airlock/bananium{ - name = "Clown's Office" - }, +/obj/machinery/door/airlock/bananium, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/clown, /turf/simulated/floor/wood/oak, /area/station/service/clown) @@ -71332,7 +71236,7 @@ /area/station/maintenance/assembly_line) "neV" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -71344,6 +71248,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "nfo" = ( @@ -71384,7 +71289,6 @@ "ngQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "ngS" = ( @@ -71407,6 +71311,7 @@ /area/station/medical/psych) "ngT" = ( /obj/structure/chair/sofa/corp/left, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet/black, /area/station/service/bar/atrium) "nhc" = ( @@ -71490,15 +71395,6 @@ name = "Engineering Security Doors"; opacity = 0 }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/general{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 4 - }, /obj/machinery/door/window/reinforced/reversed{ dir = 4; name = "Drone Fabricator Room" @@ -71508,6 +71404,15 @@ dir = 8; location = "Engineering" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/construction{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, /turf/simulated/floor/plating, /area/station/engineering/dronefabricator) "nis" = ( @@ -71774,10 +71679,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/airlock/science{ - name = "Genetics Monkey Pen" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/all/medical/genetics, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -72108,9 +72013,9 @@ "nsq" = ( /obj/machinery/door/airlock/external{ id_tag = "laborcamp_home"; - locked = 1; - name = "Labor Camp Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 @@ -72242,11 +72147,10 @@ name = "Engineering Security Doors"; opacity = 0 }, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "nuM" = ( @@ -72306,7 +72210,7 @@ /area/station/security/brig) "nvN" = ( /turf/simulated/wall/r_wall, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "nvO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, @@ -72461,6 +72365,7 @@ /obj/structure/chair/sofa/corp/left{ dir = 1 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/carpet/black, /area/station/service/bar/atrium) "nzd" = ( @@ -72476,9 +72381,8 @@ /area/station/command/bridge) "nzm" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Telecommunications Access" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -72491,7 +72395,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/science/robotics, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -72616,6 +72519,7 @@ /area/station/maintenance/apmaint) "nBw" = ( /obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -72637,7 +72541,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/command/bridge) "nBz" = ( @@ -72712,11 +72615,10 @@ /area/station/command/office/ce) "nCM" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel Office" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -73007,6 +72909,13 @@ }, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) +"nJA" = ( +/obj/structure/chair/stool{ + dir = 8 + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "nJV" = ( /obj/machinery/access_button{ autolink_id = "evamaint_btn_ext"; @@ -73015,9 +72924,9 @@ }, /obj/machinery/door/airlock/external{ id_tag = "evamaint_door_ext"; - locked = 1; - name = "EVA External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) @@ -73510,6 +73419,7 @@ c_tag = "Bar West"; dir = 4 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/black, /area/station/service/bar/atrium) "nUn" = ( @@ -73530,6 +73440,13 @@ /obj/machinery/firealarm, /turf/simulated/wall, /area/station/engineering/atmos) +"nVn" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/artist, +/turf/simulated/floor/wood/oak, +/area/station/service/library) "nVq" = ( /obj/machinery/light/directional/east, /obj/structure/table, @@ -73771,14 +73688,15 @@ /area/station/maintenance/apmaint) "nZN" = ( /obj/machinery/door/airlock/command/hop, -/obj/effect/mapping_helpers/airlock/access/any/command/hop, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood/fancy/oak, /area/station/command/office/hop) "nZW" = ( @@ -73859,7 +73777,7 @@ /area/station/security/brig) "oaY" = ( /obj/effect/turf_decal/delivery/blue/hollow, -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -73876,12 +73794,12 @@ name = "Kitchen Desk" }, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ - dir = 4 - }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 4 + }, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -74086,9 +74004,8 @@ /turf/simulated/floor/wood/oak, /area/station/security/permabrig) "ogg" = ( -/obj/machinery/door/airlock/research{ - name = "E.X.P.E.R.I-MENTOR Lab" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -74125,7 +74042,7 @@ "ogH" = ( /obj/effect/spawner/random_spawners/wall_rusted_maybe, /turf/simulated/wall, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "ogI" = ( /turf/simulated/wall/r_wall, /area/station/medical/chemistry) @@ -74134,8 +74051,9 @@ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) "ogL" = ( @@ -74274,9 +74192,9 @@ opacity = 0 }, /obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyerPort"; - name = "Medbay Entrance" + id_tag = "MedbayFoyerPort" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres, /obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ @@ -74310,7 +74228,7 @@ name = "Biohazard Shutter" }, /obj/effect/spawner/window/reinforced/plasma/grilled, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/engine, /area/station/science/misc_lab) "ojj" = ( @@ -74333,12 +74251,17 @@ "ojt" = ( /obj/machinery/door/airlock/external{ id_tag = "eng_sm_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "eng_sm_btn_ext"; + pixel_y = 24; + req_access_txt = "13" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plating, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "ojz" = ( /obj/structure/sign/poster/contraband/random/west, /obj/effect/decal/cleanable/dirt, @@ -74387,35 +74310,36 @@ /area/station/security/warden) "okb" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/effect/turf_decal/siding/wood{ dir = 6 }, /turf/simulated/floor/wood/oak, /area/station/maintenance/abandonedbar) "okf" = ( -/obj/machinery/access_button{ - autolink_id = "secmaint_btn_ext"; - pixel_x = -25; - pixel_y = -25; - req_one_access_txt = "13" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) "okj" = ( /obj/machinery/door/airlock/external{ id_tag = "eng_sm_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "eng_sm_btn_int"; + pixel_y = 24; + req_access_txt = "13" + }, /turf/simulated/floor/plating, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "okB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -74606,7 +74530,6 @@ /turf/simulated/floor/engine, /area/station/science/toxins/mixing) "opa" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" @@ -74632,6 +74555,7 @@ /area/station/maintenance/apmaint) "oph" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -74655,6 +74579,7 @@ /area/station/science/hallway) "opY" = ( /obj/machinery/door/airlock/command/qm/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "qm" }, @@ -74673,9 +74598,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, /area/station/supply/qm) "oqc" = ( @@ -74692,11 +74616,17 @@ "oqL" = ( /obj/machinery/door/airlock/external{ id_tag = "secmaint_door_int"; - locked = 1; - name = "External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "secmaint_btn_int"; + name = "interior access button"; + pixel_y = -24; + req_one_access_txt = "13" + }, /turf/simulated/floor/plating, /area/station/maintenance/fore) "oqZ" = ( @@ -74881,6 +74811,7 @@ /area/station/command/office/ntrep) "otJ" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -74889,7 +74820,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) "otL" = ( @@ -75282,6 +75212,7 @@ /obj/machinery/door/airlock/medical/glass{ id = "surgery2" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -75290,10 +75221,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /obj/effect/mapping_helpers/airlock/polarized{ id = "surgery2" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/surgery, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -75303,7 +75234,7 @@ armed = 1 }, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "oBR" = ( @@ -75360,16 +75291,14 @@ }, /area/station/medical/reception) "oDq" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "oDE" = ( /obj/structure/window/reinforced{ dir = 4 @@ -75623,7 +75552,7 @@ }, /area/station/turret_protected/ai_upload) "oGU" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 8 }, /obj/machinery/atmospherics/binary/valve{ @@ -75658,7 +75587,6 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" }, @@ -76064,8 +75992,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/command/general, /obj/effect/mapping_helpers/airlock/polarized{ id = "conference" }, @@ -76075,6 +76001,8 @@ /obj/machinery/door/airlock/command/glass{ id_tag = "conference" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/carpet/black, /area/station/command/meeting_room) "oPX" = ( @@ -76098,10 +76026,15 @@ "oQd" = ( /obj/machinery/door/airlock/external{ id_tag = "secmaint_door_ext"; - locked = 1; - name = "External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "secmaint_btn_ext"; + req_one_access_txt = "13"; + pixel_y = 24 + }, /turf/simulated/floor/plating, /area/station/maintenance/fore) "oQe" = ( @@ -76212,6 +76145,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) +"oSl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) "oSm" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse/rat/irish/Remi, @@ -76363,7 +76302,7 @@ /area/station/security/permabrig) "oUP" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ list_reagents = list("coffee"=0); pixel_x = 6; pixel_y = 4 @@ -76432,6 +76371,7 @@ "oVy" = ( /obj/effect/decal/cleanable/dust, /obj/machinery/door/airlock/public, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -76656,12 +76596,25 @@ /obj/machinery/alarm/directional/south, /turf/simulated/floor/plasteel, /area/station/maintenance/disposal) +"oYI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/service/clown, +/turf/simulated/floor/plating, +/area/station/maintenance/fsmaint) "oYM" = ( /obj/structure/safe/floor{ known_by = list("captain") }, /obj/item/gun/projectile/revolver/russian, -/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/obj/item/reagent_containers/drinks/bottle/absinthe/premium, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/toy/figure/crew/captain, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -76710,6 +76663,14 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"paa" = ( +/obj/machinery/turretid/stun{ + name = "AI Upload Turret Control"; + pixel_y = 6; + req_access = list(75) + }, +/turf/simulated/wall/r_wall, +/area/station/turret_protected/ai_upload) "pak" = ( /obj/structure/rack, /obj/item/circuitboard/chem_heater{ @@ -76819,9 +76780,9 @@ heat_proof = 1; id_tag = "turbine_door_int"; locked = 1; - name = "Incinerator Exterior Airlock"; req_access_txt = "12" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -76831,6 +76792,7 @@ autolink_id = "turbine_btn_int"; name = "Gas Turbine Airlock Control" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/engine, /area/station/maintenance/turbine) "pcF" = ( @@ -77052,15 +77014,6 @@ }, /turf/simulated/floor/plasteel, /area/station/command/office/hop) -"phU" = ( -/obj/machinery/access_button{ - autolink_id = "aisat_btn_ext"; - pixel_x = 25; - pixel_y = 25 - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) "pic" = ( /obj/structure/chair/comfy/beige, /obj/effect/landmark/start/assistant, @@ -77124,9 +77077,9 @@ "piQ" = ( /obj/machinery/door/airlock/external{ id_tag = "admin_home"; - locked = 1; - name = "Arrival Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "pjc" = ( @@ -77213,9 +77166,9 @@ /area/station/public/vacant_office) "pkf" = ( /obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "pko" = ( @@ -77492,12 +77445,11 @@ /area/station/security/permabrig) "pom" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/cmo{ - name = "CMO's Bedroom" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, +/obj/machinery/door/airlock/command/cmo, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, /turf/simulated/floor/plasteel{ icon_state = "darkbluefull" }, @@ -77743,9 +77695,9 @@ /area/station/security/prisonlockers) "psP" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "psT" = ( @@ -77775,6 +77727,13 @@ icon_state = "grimy" }, /area/station/maintenance/fsmaint) +"pty" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/security/permabrig) "ptz" = ( /obj/structure/cable{ d1 = 2; @@ -77836,9 +77795,9 @@ /area/station/engineering/solar/port) "puD" = ( /obj/machinery/door/airlock/bathroom{ - name = "Private Restroom"; id_tag = "toilet_sec_1" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -77888,7 +77847,7 @@ /turf/simulated/floor/wood/fancy/oak, /area/station/service/bar) "pvM" = ( -/obj/item/reagent_containers/food/drinks/mug/med{ +/obj/item/reagent_containers/drinks/mug/med{ pixel_y = 10 }, /obj/structure/table/glass, @@ -77984,10 +77943,8 @@ }, /area/station/science/misc_lab) "pwS" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -77999,6 +77956,8 @@ id_tag = "engsm2"; name = "SM Radiation Security Lock" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -78072,9 +78031,7 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "pyl" = ( -/obj/item/kirbyplants{ - icon_state = "plant-32" - }, +/obj/item/kirbyplants/plant32, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "whiteblue" @@ -78155,9 +78112,9 @@ "pzZ" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "perma_door_int"; - locked = 1; - name = "Prison Wing" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" @@ -78747,16 +78704,15 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "pNw" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Isolator" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /obj/machinery/door/poddoor/shutters/window/preopen{ dir = 1; id_tag = "durka1" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -79067,13 +79023,13 @@ dir = 1; name = "Secure Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/psychology{ - dir = 1 - }, /obj/machinery/door/poddoor/shutters/window/preopen{ dir = 1; id_tag = "durka1" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/psychology{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -79099,25 +79055,7 @@ /obj/machinery/light/small/directional/south, /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) -"pTJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/clown, -/turf/simulated/floor/plating, -/area/station/maintenance/fsmaint) "pTK" = ( -/obj/machinery/access_button{ - autolink_id = "arrivalsmaint_btn_int"; - pixel_x = -25; - pixel_y = 25; - req_one_access_txt = "13" - }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -79214,6 +79152,18 @@ icon_state = "dark" }, /area/station/engineering/atmos/control) +"pVq" = ( +/obj/machinery/airlock_controller/air_cycler{ + ext_button_link_id = "arrivalsmaint_btn_ext"; + ext_door_link_id = "arrivalsmaint_door_ext"; + int_button_link_id = "arrivalsmaint_btn_int"; + int_door_link_id = "arrivalsmaint_door_int"; + pixel_x = 25; + req_one_access_txt = "13"; + vent_link_id = "arrivalsmaint_vent" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) "pVu" = ( /obj/item/kirbyplants, /turf/simulated/floor/plasteel{ @@ -79439,9 +79389,8 @@ /area/station/command/office/hop) "qaD" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -79642,6 +79591,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, +/obj/effect/landmark/start/barber, /turf/simulated/floor/plasteel{ icon_state = "barber" }, @@ -79792,15 +79742,16 @@ /area/station/maintenance/apmaint) "qhO" = ( /obj/machinery/door/airlock/bathroom{ - id_tag = "toilet_unitb"; - name = "Unit B" + id_tag = "toilet_unitb" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, /area/station/public/toilet) "qhY" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/purple, /turf/simulated/floor/plasteel, /area/station/maintenance/asmaint) @@ -79822,12 +79773,11 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/engineering/glass{ - name = "SMES Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/engineering/smes) "qiN" = ( @@ -80224,8 +80174,8 @@ /area/station/engineering/break_room) "qpi" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -7 }, /turf/simulated/floor/plasteel, @@ -80479,13 +80429,6 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "qtm" = ( -/obj/machinery/access_button{ - autolink_id = "secmaint_btn_int"; - name = "interior access button"; - pixel_x = 9; - pixel_y = -25; - req_one_access_txt = "13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, @@ -80678,6 +80621,7 @@ /obj/machinery/camera{ c_tag = "Bridge Lounge Zone Center" }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet/green, /area/station/command/bridge) "qwV" = ( @@ -80851,6 +80795,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "qAH" = ( @@ -81230,6 +81175,7 @@ /area/station/maintenance/apmaint) "qFV" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -81243,9 +81189,8 @@ /area/station/maintenance/fsmaint) "qFW" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -81444,6 +81389,7 @@ "qJx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/hop, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -81452,7 +81398,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/command/hop, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood/oak, /area/station/command/office/hop) "qJB" = ( @@ -81519,9 +81465,8 @@ /area/station/science/xenobiology) "qKv" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -81539,7 +81484,7 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "qKG" = ( @@ -81647,9 +81592,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "qLK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -81664,11 +81608,16 @@ "qMa" = ( /obj/machinery/door/airlock/external{ id_tag = "fpmaint_door_int"; - locked = 1; - name = "External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "fpmaint_btn_int"; + pixel_x = -24; + req_one_access_txt = "13" + }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "qMy" = ( @@ -81725,9 +81674,9 @@ "qNk" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "perma_door_int"; - locked = 1; - name = "Prison Wing" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" @@ -81843,10 +81792,8 @@ /turf/simulated/floor/wood/oak, /area/station/public/vacant_office) "qOP" = ( -/obj/machinery/door/airlock/atmos{ - name = "Fore-Starboard Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, @@ -81948,6 +81895,7 @@ }, /obj/effect/landmark/start/security_officer, /obj/machinery/light/directional/south, +/obj/machinery/light_switch/south, /turf/simulated/floor/plasteel, /area/station/security/main) "qQO" = ( @@ -81956,9 +81904,8 @@ id_tag = "Biohazard"; name = "Biohazard Shutter" }, -/obj/machinery/door/airlock/research{ - name = "Toxins Mixing Room" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -82012,6 +81959,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/port) +"qSh" = ( +/obj/effect/landmark/start/artist, +/turf/simulated/floor/plasteel{ + icon_state = "vault" + }, +/area/station/public/dorms) "qSr" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ @@ -82053,6 +82006,7 @@ "qTA" = ( /obj/structure/chair/sofa/right, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) "qTK" = ( @@ -82080,11 +82034,11 @@ /area/space/nearstation) "qTQ" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 4; pixel_y = 6 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -4; pixel_y = 6 }, @@ -82126,17 +82080,11 @@ /obj/structure/table, /turf/simulated/floor/wood/oak, /area/station/maintenance/aft) -"qVc" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/apmaint) "qVf" = ( /obj/structure/disposalpipe/segment/corner, /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 + dir = 9 }, /turf/space, /area/space/nearstation) @@ -82157,6 +82105,7 @@ /area/station/maintenance/fsmaint) "qVG" = ( /obj/machinery/door/airlock/command/hop, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -82164,7 +82113,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/command/hop, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/carpet, /area/station/command/office/hop) "qVK" = ( @@ -82291,6 +82239,14 @@ icon_state = "bar" }, /area/station/security/permabrig) +"qYn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "qYr" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -82392,9 +82348,9 @@ /area/station/maintenance/aft) "raG" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fore) "raH" = ( @@ -82465,15 +82421,12 @@ c_tag = "AI Satellite Antechamber South"; dir = 4 }, -/obj/machinery/turretid/stun{ - control_area = "\improper AI Satellite Atmospherics"; - name = "AI Satellite Atmospherics Turret Control"; - pixel_x = -28; - req_one_access_txt = "75" - }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkbluecorners" @@ -82817,12 +82770,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/atmos{ - name = "Turbine Access" - }, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/catwalk, /area/station/maintenance/turbine) "riJ" = ( @@ -82888,7 +82840,7 @@ "rkL" = ( /obj/effect/decal/cleanable/dirt, /obj/item/seeds/cannabis, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/food/snacks/grown/ambrosia/vulgaris, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "rkR" = ( @@ -83197,10 +83149,11 @@ "rtA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/science{ - id_tag = "GeneticsDoor"; - name = "Genetics" + id_tag = "GeneticsDoor" }, -/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/effect/mapping_helpers/airlock/access/all/medical/genetics, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -83246,10 +83199,8 @@ "ruR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Control Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -83257,6 +83208,7 @@ name = "Atmos Blast Door"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkyellow" @@ -83381,7 +83333,7 @@ "rxp" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "rxK" = ( /obj/structure/cable{ d1 = 1; @@ -83392,7 +83344,6 @@ dir = 1; name = "AI Core Door" }, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ dir = 1 }, @@ -83534,9 +83485,8 @@ /area/station/maintenance/abandonedbar) "rAN" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -83629,6 +83579,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 10 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/wood/fancy/cherry, /area/station/service/bar/atrium) "rDM" = ( @@ -83650,7 +83601,7 @@ /area/space/nearstation) "rDV" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/cream{ +/obj/item/reagent_containers/drinks/bottle/cream{ pixel_y = 8 }, /turf/simulated/floor/plasteel{ @@ -83790,23 +83741,29 @@ }, /area/station/medical/virology) "rFZ" = ( -/obj/machinery/access_button/west{ - autolink_id = "scibomb_btn_ext"; - pixel_y = 25; - req_one_access_txt = "10;13" - }, -/obj/structure/lattice/catwalk, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/space, -/area/space/nearstation) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint2) "rGa" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "rGR" = ( @@ -83967,6 +83924,15 @@ icon_state = "vault" }, /area/station/service/hydroponics) +"rKP" = ( +/obj/machinery/door/airlock{ + id_tag = "toilet_ass2" + }, +/obj/effect/mapping_helpers/airlock/autoname, +/turf/simulated/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/station/public/toilet/lockerroom) "rKV" = ( /turf/simulated/wall, /area/station/science/hallway) @@ -84088,14 +84054,13 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/machinery/door_control/shutter/east{ id = "Singularity"; name = "Containment Blast Doors" }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engine Room" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "darkyellowfull" }, @@ -84216,9 +84181,8 @@ /area/station/engineering/smes) "rQn" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage" - }, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -84230,7 +84194,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -84303,6 +84267,7 @@ name = "Prison Intercom (General)"; pixel_y = 24 }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -84366,6 +84331,7 @@ /area/station/science/xenobiology) "rSe" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/blood/tracks, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) @@ -84507,6 +84473,7 @@ /obj/structure/sign/poster/contraband/ambrosia_vulgaris{ pixel_x = 32 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/carpet, /area/station/maintenance/asmaint) "rWn" = ( @@ -84732,7 +84699,7 @@ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "rZF" = ( /obj/structure/cable{ d1 = 2; @@ -84891,24 +84858,13 @@ icon_state = "brown" }, /area/station/supply/storage) -"sds" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/access_button{ - autolink_id = "eng_sm_btn_ext"; - pixel_x = -25; - pixel_y = 25; - req_access_txt = "10;13" - }, -/turf/space, -/area/space/nearstation) "sdu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) "sdw" = ( @@ -84938,6 +84894,7 @@ /obj/structure/chair/sofa/corp/right{ dir = 8 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/black, /area/station/service/bar/atrium) "sec" = ( @@ -85033,9 +84990,9 @@ "sft" = ( /obj/machinery/door/airlock/external{ id_tag = "supply_home"; - locked = 1; - name = "Cargo Docking Hatch" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plating, /area/station/supply/storage) @@ -85088,6 +85045,7 @@ /area/station/service/chapel) "shi" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -85104,6 +85062,13 @@ icon_state = "yellow" }, /area/station/hallway/primary/aft) +"shB" = ( +/obj/effect/landmark/start/dealer, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/station/hallway/primary/central/sw) "sim" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -85141,6 +85106,7 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -85162,9 +85128,8 @@ /area/station/command/meeting_room) "siM" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/bathroom{ - name = "Prison Toilets" - }, +/obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -85191,6 +85156,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/black, /area/station/service/bar/atrium) "sjM" = ( @@ -85274,10 +85240,15 @@ "skl" = ( /obj/machinery/door/airlock/external{ id_tag = "fpmaint_door_ext"; - locked = 1; - name = "External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "fpmaint_btn_ext"; + pixel_x = 24; + req_one_access_txt = "13" + }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "skD" = ( @@ -85310,6 +85281,7 @@ /obj/machinery/door/airlock/maintenance{ locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "slC" = ( @@ -85384,7 +85356,7 @@ /area/station/maintenance/apmaint) "smz" = ( /obj/effect/spawner/window/reinforced/plasma/grilled, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "smJ" = ( @@ -85499,9 +85471,8 @@ }, /area/station/engineering/atmos) "sol" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -85602,6 +85573,7 @@ dir = 1 }, /obj/item/bedsheet/orange, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "red" @@ -85724,16 +85696,14 @@ /area/station/security/permabrig) "sst" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Teleporter Room" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, /obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -85808,7 +85778,7 @@ dir = 4; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "stp" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -85855,10 +85825,8 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Control Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor{ density = 0; @@ -85867,6 +85835,7 @@ name = "Atmos Blast Door"; opacity = 0 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkyellow" @@ -86073,8 +86042,8 @@ /area/station/supply/office) "syc" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) @@ -86253,9 +86222,8 @@ /turf/simulated/floor/carpet/black, /area/station/command/meeting_room) "sBh" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prisoner Lockers" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -86274,7 +86242,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/station/security/prisonlockers) "sBi" = ( @@ -86282,14 +86250,9 @@ /turf/simulated/floor/wood/oak, /area/station/command/office/ntrep) "sBx" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/window/reinforced{ - dir = 1 - }, +/obj/machinery/atmospherics/portable/scrubber, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/west, /turf/simulated/floor/plasteel, /area/station/public/locker) "sBN" = ( @@ -86344,9 +86307,8 @@ /turf/simulated/floor/wood/fancy/cherry, /area/station/command/office/captain) "sBW" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Robotics Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard"; name = "Biohazard Shutter" @@ -86431,11 +86393,10 @@ "sDr" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, -/obj/item/reagent_containers/food/snacks/donkpocket, +/obj/item/food/snacks/donkpocket, /turf/simulated/floor/plating, /area/station/maintenance/aft) "sDy" = ( -/obj/effect/spawner/wire_splicing/thirty, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -86455,12 +86416,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/access_button{ - autolink_id = "fssolar_btn_int"; - pixel_x = 25; - pixel_y = 25; - req_one_access_txt = "13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, @@ -86574,9 +86529,8 @@ /turf/simulated/floor/plasteel, /area/station/supply/office) "sFh" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -86726,6 +86680,7 @@ /area/station/medical/ward) "sHW" = ( /obj/machinery/door/airlock/welded, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/structure/cable{ d1 = 1; @@ -86805,8 +86760,7 @@ }, /obj/machinery/door_control/shutter/south{ id = "engsm"; - name = "Radiation Shutters Control"; - req_access_txt = "10" + name = "Radiation Shutters Control" }, /turf/simulated/floor/plasteel{ icon_state = "darkyellow" @@ -86876,6 +86830,7 @@ /obj/structure/chair/wood{ dir = 4 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/carpet, /area/station/maintenance/asmaint) "sMc" = ( @@ -86976,15 +86931,20 @@ "sOr" = ( /obj/machinery/door/airlock/external{ id_tag = "fpsolar_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "fpsolar_btn_ext"; + pixel_x = 24; + req_one_access_txt = "13" + }, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "sOE" = ( @@ -87073,7 +87033,6 @@ /area/station/medical/virology) "sPz" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -87091,9 +87050,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/multi_tile/security/glass{ - name = "Security Office" - }, +/obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/station/security/main) "sPF" = ( @@ -87188,6 +87147,7 @@ dir = 8 }, /obj/effect/landmark/damageturf, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/aft) "sSa" = ( @@ -87210,6 +87170,7 @@ /obj/structure/chair/stool{ dir = 1 }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "sSj" = ( @@ -87733,16 +87694,15 @@ /turf/simulated/floor/wood/fancy/oak, /area/station/maintenance/abandonedbar) "tcw" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plating, /area/station/engineering/supermatter_room) "tcI" = ( @@ -87785,6 +87745,7 @@ /area/station/maintenance/apmaint) "tde" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -87844,6 +87805,17 @@ /area/station/command/office/rd) "tep" = ( /obj/effect/turf_decal/delivery, +/obj/machinery/door/window/classic/reversed{ + dir = 8; + name = "Custodial Closet" + }, +/obj/structure/window/reinforced, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/janitor{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/service/janitor) "teD" = ( @@ -87913,6 +87885,7 @@ /area/station/maintenance/fsmaint) "tfT" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -88182,7 +88155,7 @@ dir = 1; name = "Security Delivery" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 1 }, /turf/simulated/floor/plasteel{ @@ -88348,8 +88321,11 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/mirror{ + pixel_x = 28 + }, /turf/simulated/floor/plasteel{ - icon_state = "freezerfloor" + icon_state = "showroomfloor" }, /area/station/public/toilet/lockerroom) "tlI" = ( @@ -88376,10 +88352,9 @@ name = "Engineering Security Doors"; opacity = 0 }, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/aft) "tmd" = ( @@ -88399,7 +88374,7 @@ /turf/simulated/floor/plasteel/stairs/left{ dir = 8 }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "tmS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -88797,15 +88772,6 @@ /obj/machinery/atmospherics/unary/vent_pump/high_volume{ autolink_id = "arrivalsmaint_vent" }, -/obj/machinery/airlock_controller/air_cycler{ - ext_button_link_id = "arrivalsmaint_btn_ext"; - ext_door_link_id = "arrivalsmaint_door_ext"; - int_button_link_id = "arrivalsmaint_btn_int"; - int_door_link_id = "arrivalsmaint_door_int"; - pixel_x = 25; - req_one_access_txt = "13"; - vent_link_id = "arrivalsmaint_vent" - }, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "twp" = ( @@ -88840,6 +88806,7 @@ /area/station/science/xenobiology) "twH" = ( /obj/structure/chair/sofa/corp/right, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet/green, /area/station/command/bridge) "twL" = ( @@ -89490,9 +89457,9 @@ "tKA" = ( /obj/machinery/door/airlock/external{ id_tag = "evamaint_door_int"; - locked = 1; - name = "EVA Internal Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) @@ -89551,7 +89518,7 @@ "tLs" = ( /obj/structure/safe/floor, /obj/item/coin/mythril, -/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c200, /obj/item/instrument/violin/golden, /turf/simulated/floor/carpet/royalblack, /area/station/maintenance/apmaint) @@ -89615,12 +89582,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/access_button{ - autolink_id = "assolar_btn_int"; - pixel_x = -25; - pixel_y = -25; - req_one_access_txt = "10;13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -89641,7 +89602,7 @@ /area/station/service/library) "tNc" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/wood/oak, /area/station/maintenance/aft) "tNg" = ( @@ -89684,7 +89645,7 @@ /turf/simulated/floor/plasteel, /area/station/security/main) "tOn" = ( -/obj/machinery/suit_storage_unit/captain, +/obj/machinery/suit_storage_unit/captain/secure, /obj/machinery/requests_console{ announcementConsole = 1; department = "Captain's Desk"; @@ -89897,15 +89858,14 @@ /area/station/security/permabrig) "tRD" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Reception" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "tRE" = ( @@ -89952,7 +89912,7 @@ /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "tSx" = ( /obj/structure/cable{ d1 = 4; @@ -90008,11 +89968,16 @@ }, /obj/machinery/door/airlock/external{ id_tag = "fssolar_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "fssolar_btn_int"; + pixel_x = 24; + req_one_access_txt = "13" + }, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "tTf" = ( @@ -90121,6 +90086,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) "tVF" = ( @@ -90165,9 +90131,8 @@ }, /area/station/command/office/hos) "tWt" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -90189,17 +90154,17 @@ /area/station/science/test_chamber) "tWD" = ( /obj/structure/closet/crate, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/onion, -/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/onion, +/obj/item/food/snacks/grown/onion, /obj/item/storage/box/donkpockets, /obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/rice, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -90289,7 +90254,7 @@ /area/station/security/permabrig) "tXI" = ( /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ +/obj/item/storage/surgical_tray{ pixel_y = 8 }, /turf/simulated/floor/plasteel{ @@ -90471,6 +90436,14 @@ }, /turf/simulated/floor/plasteel/airless, /area/station/science/toxins/test) +"uag" = ( +/obj/machinery/turretid/stun{ + name = "AI Satellite Atmospherics Turret Control"; + pixel_x = 4; + req_one_access_txt = "75" + }, +/turf/simulated/wall/r_wall, +/area/station/aisat/atmos) "uax" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -90537,12 +90510,6 @@ }, /area/station/command/office/hop) "ubK" = ( -/obj/machinery/access_button{ - autolink_id = "fpmaint_btn_int"; - pixel_x = -25; - pixel_y = -25; - req_one_access_txt = "13" - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -90631,8 +90598,8 @@ /area/station/science/toxins/test) "uds" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/port) "udz" = ( @@ -90842,11 +90809,6 @@ }, /area/station/medical/paramedic) "uhA" = ( -/obj/machinery/access_button/east{ - autolink_id = "scibomb_btn_int"; - pixel_y = 25; - req_one_access_txt = "10;13" - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -90927,7 +90889,7 @@ dir = 10; icon_state = "darkblue" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "ujX" = ( /obj/effect/spawner/random_spawners/fungus_maybe, /obj/machinery/atmospherics/pipe/simple/visible{ @@ -91029,8 +90991,8 @@ /area/station/medical/medbay2) "uls" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/bottle/wine, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -5 }, /obj/effect/landmark/damageturf, @@ -91099,16 +91061,15 @@ /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "umw" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" }, @@ -91171,10 +91132,9 @@ name = "Engineering Security Doors"; opacity = 0 }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Drone Fabricator Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -91245,9 +91205,9 @@ /area/station/engineering/gravitygenerator) "upW" = ( /obj/machinery/door/airlock/medical/glass{ - id_tag = "medcabin2"; - name = "Patients Room" + id_tag = "medcabin2" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -91264,9 +91224,8 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage" - }, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/storage) @@ -91369,9 +91328,9 @@ /area/station/hallway/primary/central/west) "usw" = ( /obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; security_level = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -91382,7 +91341,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fore) "usH" = ( @@ -91450,7 +91409,7 @@ /area/station/security/permabrig) "utP" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/pie{ +/obj/item/food/snacks/pie{ pixel_y = 2 }, /obj/machinery/power/apc/directional/east, @@ -91525,6 +91484,7 @@ /area/station/engineering/atmos/storage) "uuX" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -91647,9 +91607,8 @@ }, /area/station/science/robotics) "uwB" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Foyer" - }, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/turf_decal/delivery, @@ -91659,7 +91618,6 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/science/rd, /obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -91978,15 +91936,15 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "uBQ" = ( -/obj/machinery/access_button{ - autolink_id = "fpmaint_btn_ext"; - pixel_x = 25; - pixel_y = 8; - req_one_access_txt = "13" +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/apmaint) "uCf" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/unary/passive_vent, @@ -92039,19 +91997,18 @@ /area/station/public/dorms) "uCT" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/lawyer/glass{ - name = "Courtroom" - }, +/obj/machinery/door/airlock/lawyer/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "Courtroom" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/security/court, /turf/simulated/floor/wood/fancy, /area/station/legal/courtroom) "uCU" = ( @@ -92076,6 +92033,7 @@ /area/station/science/toxins/mixing) "uDS" = ( /obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "uEc" = ( @@ -92100,9 +92058,9 @@ "uFa" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "perma_door_ext"; - locked = 1; - name = "Prison Wing" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/access_button/south{ autolink_id = "perma_btn_ext"; @@ -92154,7 +92112,7 @@ /area/station/security/permabrig) "uGf" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/grilledcheese{ +/obj/item/food/snacks/grilledcheese{ pixel_y = 9 }, /turf/simulated/floor/wood/oak, @@ -92192,9 +92150,8 @@ /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "uGG" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Library" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, @@ -92305,11 +92262,16 @@ "uJB" = ( /obj/machinery/door/airlock/external{ id_tag = "evamaint_door_int"; - locked = 1; - name = "EVA Internal Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button{ + autolink_id = "evamaint_btn_int"; + req_one_access_txt = "13"; + pixel_x = 24 + }, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "uKa" = ( @@ -92412,6 +92374,15 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) +"uLw" = ( +/obj/machinery/door/airlock/external{ + id_tag = "secmaint_door_ext"; + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/turf/simulated/floor/plating, +/area/station/maintenance/fore) "uLN" = ( /obj/structure/window/reinforced{ dir = 1 @@ -92505,6 +92476,7 @@ /obj/structure/chair/sofa/corp/right{ dir = 1 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/black, /area/station/service/bar/atrium) "uNj" = ( @@ -92529,13 +92501,13 @@ /area/station/security/warden) "uOF" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plating, /area/station/maintenance/fore) "uOG" = ( @@ -92560,14 +92532,13 @@ /obj/machinery/door/airlock/research{ autoclose = 0; id_tag = "xeno_door_int"; - locked = 1; - name = "Xenobiology Internal Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button{ autolink_id = "xeno_btn_int"; name = "Xenobiology Access Button"; - pixel_x = 8; - pixel_y = 28; + pixel_y = 24; req_one_access_txt = "55" }, /obj/effect/turf_decal/stripes, @@ -92707,7 +92678,7 @@ /area/station/engineering/supermatter_room) "uRK" = ( /obj/item/organ/internal/heart/vox, -/obj/item/reagent_containers/food/snacks/fried_vox, +/obj/item/food/snacks/fried_vox, /obj/structure/table, /obj/item/scalpel, /turf/simulated/floor/plating, @@ -92774,9 +92745,9 @@ "uTo" = ( /obj/machinery/door/airlock/external{ id_tag = "secmaint_door_int"; - locked = 1; - name = "External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -92832,6 +92803,24 @@ /obj/machinery/atmospherics/unary/tank/air, /turf/simulated/floor/plating, /area/station/aisat/atmos) +"uVd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "uVj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -93123,9 +93112,9 @@ /obj/machinery/door/airlock/research{ autoclose = 0; id_tag = "xeno_door_ext"; - locked = 1; - name = "Xenobiology External Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/west{ autolink_id = "xeno_btn_ext"; name = "Xenobiology Access Button"; @@ -93201,16 +93190,15 @@ /obj/structure/sign/securearea{ pixel_x = -32 }, -/obj/machinery/door/airlock/command{ - name = "Teleport Access" - }, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -93247,7 +93235,7 @@ /area/station/engineering/atmos) "vbQ" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/station/maintenance/aft) @@ -93330,9 +93318,8 @@ /area/station/maintenance/assembly_line) "vdh" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/bathroom{ - name = "Unisex Restrooms" - }, +/obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -93380,6 +93367,7 @@ /area/station/security/processing) "vep" = ( /obj/machinery/door/airlock/freezer, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -93432,11 +93420,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/machinery/door/airlock/multi_tile/security/glass{ - dir = 2; - name = "Security Office" + dir = 2 }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "darkredfull" }, @@ -93623,6 +93611,7 @@ /area/station/engineering/engine/supermatter) "vhf" = ( /obj/structure/chair, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/asmaint) "vhs" = ( @@ -93786,13 +93775,14 @@ icon_state = "2-8" }, /obj/machinery/door/airlock/command/cmo/glass{ - id_tag = "cmoofficedoor"; - name = "CMO's Office" + id_tag = "cmoofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "CMO" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/cmo, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "darkbluefull" }, @@ -93888,6 +93878,7 @@ /obj/structure/chair{ dir = 8 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/aft) "vnZ" = ( @@ -93930,14 +93921,14 @@ /area/station/medical/chemistry) "vpE" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fpmaint) "vpR" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Solitary Confinement 2" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -94064,6 +94055,7 @@ cover_color = "#85130b"; dir = 1 }, +/obj/effect/landmark/spawner/prisoner, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -94202,7 +94194,7 @@ /area/station/science/rnd) "vvd" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) @@ -94472,9 +94464,8 @@ /area/station/medical/sleeper) "vzI" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Research and Development" - }, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -94538,7 +94529,6 @@ /area/station/maintenance/fsmaint) "vBs" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -94561,15 +94551,17 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/command/ce/glass{ - id_tag = "ceofficedoor"; - name = "Chief Engineer's Office" + id_tag = "ceofficedoor" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/ce, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "dark" }, /area/station/command/office/ce) "vBv" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/meter{ layer = 3.3 }, @@ -94682,6 +94674,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/bar, /turf/simulated/floor/carpet/black, /area/station/service/bar/atrium) "vDt" = ( @@ -94692,11 +94685,16 @@ }, /obj/machinery/door/airlock/external{ id_tag = "eng_n_tesla_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/access_button{ + autolink_id = "eng_n_tesla_btn_ext"; + pixel_y = -24; + req_access_txt = "10;13" + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -95099,9 +95097,9 @@ "vKE" = ( /obj/machinery/door/airlock/external{ id_tag = "trade_dock"; - locked = 1; - name = "Arrival Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "vKP" = ( @@ -95293,13 +95291,6 @@ icon_state = "whitepurple" }, /area/station/science/hallway) -"vOs" = ( -/obj/machinery/door/airlock/maintenance{ - locked = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/asmaint) "vOy" = ( /obj/effect/spawner/random_spawners/blood_maybe, /obj/effect/spawner/lootdrop/maintenance, @@ -95314,9 +95305,9 @@ /area/station/security/permabrig) "vOE" = ( /obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medical Supplies" + id_tag = "MedbayFoyer" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -95345,8 +95336,8 @@ /area/station/security/permabrig) "vPr" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; @@ -95355,6 +95346,17 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) +"vPw" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/fpmaint2) "vPz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -95434,7 +95436,7 @@ dir = 4; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "vQT" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ @@ -95473,15 +95475,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/asmaint2) "vRp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Blueshield Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/blueshield, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plating, /area/station/maintenance/aft) "vRG" = ( @@ -95525,7 +95526,6 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/science/rd, /obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -95563,7 +95563,7 @@ dir = 8; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "vSH" = ( /obj/structure/closet/crate/can, /obj/effect/spawner/lootdrop/maintenance, @@ -95827,6 +95827,7 @@ /area/station/science/xenobiology) "vYb" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -95981,6 +95982,7 @@ }, /obj/structure/chair/sofa/corp/right, /obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet/purple, /area/station/service/bar) "wbr" = ( @@ -96355,7 +96357,8 @@ electrified_until = -1; locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, /turf/simulated/floor/plating, /area/station/maintenance/aft) "wkM" = ( @@ -96491,9 +96494,8 @@ }, /area/station/command/teleporter) "wny" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Restaurant" - }, +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/siding/wood{ dir = 8 }, @@ -96723,9 +96725,8 @@ /area/station/maintenance/abandonedbar) "wri" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -97293,12 +97294,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -97319,6 +97320,7 @@ pixel_y = 4 }, /obj/structure/table/glass, +/obj/item/radio/intercom/directional/east, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitegreen" @@ -97571,9 +97573,8 @@ /area/station/maintenance/turbine) "wIc" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access" - }, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -97874,9 +97875,8 @@ }, /area/station/science/hallway) "wNp" = ( -/obj/machinery/door/airlock/external{ - name = "Toxins Test Chamber" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -97886,6 +97886,7 @@ /area/station/science/toxins/test) "wNr" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fore) "wNE" = ( @@ -98080,15 +98081,16 @@ /area/station/maintenance/fpmaint) "wQQ" = ( /obj/machinery/door/airlock/engineering/glass{ - heat_proof = 1; - name = "Supermatter Chamber" + heat_proof = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/engine, /area/station/engineering/engine/supermatter) "wRz" = ( @@ -98108,9 +98110,8 @@ /area/station/medical/medbay2) "wRN" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Firing Range" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -98152,9 +98153,8 @@ name = "Quarantine Lockdown"; opacity = 0 }, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -98204,9 +98204,9 @@ /area/station/maintenance/asmaint) "wVH" = ( /obj/machinery/door/airlock/security/glass{ - name = "Prisoner Oversight"; req_one_access_txt = "1" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -98223,7 +98223,7 @@ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -98301,9 +98301,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/engineering{ - name = "Fore Starboard Solar Access" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/maintenance/auxsolarstarboard) @@ -98314,6 +98313,16 @@ icon_state = "green" }, /area/station/service/hydroponics) +"wXK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/station/engineering/atmos) "wYg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -98635,15 +98644,17 @@ }, /area/station/medical/reception) "xdO" = ( -/obj/machinery/access_button{ - autolink_id = "arrivalsmaint_btn_ext"; - pixel_x = -25; - pixel_y = -25; - req_one_access_txt = "13" +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/space/nearstation) +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plating, +/area/station/maintenance/asmaint) "xdS" = ( /obj/structure/table/wood, /obj/item/storage/bag/dice{ @@ -98714,6 +98725,27 @@ icon_state = "freezerfloor" }, /area/station/science/robotics) +"xeC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/spawner/wire_splicing/thirty, +/turf/simulated/floor/plating, +/area/station/maintenance/port) "xeG" = ( /obj/structure/chair/sofa/corp/left, /turf/simulated/floor/plasteel{ @@ -98807,7 +98839,7 @@ dir = 4; icon_state = "darkbluecorners" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "xgn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -98833,9 +98865,8 @@ "xgz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Reception" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/access/any/medical/general, @@ -98973,9 +99004,9 @@ /obj/machinery/door/airlock/external{ hackProof = 1; id_tag = "emergency_home"; - locked = 1; - name = "Escape Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -99071,9 +99102,8 @@ /area/station/maintenance/aft) "xkG" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Service Bay" - }, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -99107,6 +99137,13 @@ /obj/item/poster/random_contraband, /turf/simulated/floor/plating, /area/station/maintenance/aft) +"xlx" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/uncertain, +/turf/simulated/floor/plasteel, +/area/station/maintenance/aft) "xlV" = ( /turf/simulated/floor/plating, /area/station/engineering/supermatter_room) @@ -99292,9 +99329,9 @@ heat_proof = 1; id_tag = "turbine_door_ext"; locked = 1; - name = "Incinerator Interior Airlock"; req_access_txt = "12" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/airlock_controller/access_controller{ ext_button_link_id = "turbine_btn_ext"; ext_door_link_id = "turbine_door_ext"; @@ -99308,6 +99345,7 @@ autolink_id = "turbine_btn_ext"; name = "Gas Turbine Airlock Control" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/engine, /area/station/maintenance/turbine) "xqa" = ( @@ -99348,15 +99386,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/fpmaint2) "xqL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Nanotrasen Representative Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ntrep, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "xqV" = ( @@ -99709,11 +99746,6 @@ icon_state = "whitegreen" }, /area/station/medical/virology) -"xwi" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/asmaint2) "xwS" = ( /obj/machinery/particle_accelerator/control_box, /obj/structure/cable/yellow, @@ -99836,9 +99868,8 @@ }, /area/station/engineering/tech_storage) "xzY" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -99914,6 +99945,7 @@ /area/station/engineering/gravitygenerator) "xBC" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/landmark/damageturf, /turf/simulated/floor/wood/oak, /area/station/maintenance/asmaint2) @@ -100010,7 +100042,7 @@ "xEb" = ( /obj/effect/decal/cleanable/dust, /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/muffin{ +/obj/item/food/snacks/muffin{ pixel_x = -5; pixel_y = 9 }, @@ -100158,10 +100190,10 @@ /area/station/maintenance/abandonedbar) "xHy" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/disk{ +/obj/item/food/snacks/disk{ pixel_x = -6 }, -/obj/item/reagent_containers/food/snacks/disk{ +/obj/item/food/snacks/disk{ pixel_y = 10; pixel_x = 8 }, @@ -100251,7 +100283,7 @@ /area/station/medical/surgery/secondary) "xII" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/pistachios, +/obj/item/food/snacks/pistachios, /obj/item/poster/random_contraband, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) @@ -100622,6 +100654,7 @@ /obj/structure/chair/stool{ dir = 1 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/aft) "xOQ" = ( @@ -100648,6 +100681,7 @@ /area/station/security/permabrig) "xPb" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -100797,9 +100831,8 @@ /area/station/maintenance/fsmaint) "xRk" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/station/service/chapel) @@ -100928,7 +100961,7 @@ /area/station/maintenance/fpmaint2) "xSF" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 8; pixel_x = -6 }, @@ -101149,13 +101182,8 @@ }, /area/station/security/armory/secure) "xWM" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, +/obj/structure/table, +/obj/item/storage/backpack/duffel, /turf/simulated/floor/plasteel, /area/station/public/locker) "xWN" = ( @@ -101316,7 +101344,7 @@ pixel_x = 3; pixel_y = -3 }, -/obj/item/reagent_containers/food/drinks/trophy/bronze_cup, +/obj/item/reagent_containers/drinks/trophy/bronze_cup, /obj/machinery/light/small/directional/north, /turf/simulated/floor/plating, /area/station/maintenance/aft) @@ -101340,9 +101368,8 @@ /turf/simulated/floor/carpet, /area/station/service/chapel) "xZh" = ( -/obj/machinery/door/airlock/virology{ - name = "Virology Bedroom" - }, +/obj/machinery/door/airlock/virology, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -101396,9 +101423,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/psych/glass{ - id_tag = "psych_bolt"; - name = "Psychiatrist Office" + id_tag = "psych_bolt" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "psych" }, @@ -101413,9 +101440,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue{ - dir = 4 - }, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -101424,6 +101448,9 @@ /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/morgue{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkblue" @@ -101458,12 +101485,6 @@ /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 }, -/obj/machinery/access_button{ - autolink_id = "eng_n_tesla_btn_int"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "10;13" - }, /turf/simulated/floor/plasteel{ icon_state = "darkyellowfull" }, @@ -101520,9 +101541,8 @@ /area/station/maintenance/fsmaint) "ydv" = ( /obj/structure/barricade/wooden, -/obj/machinery/door/airlock/welded{ - name = "Maintenance Airlock" - }, +/obj/machinery/door/airlock/welded, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -101712,16 +101732,6 @@ icon_state = "dark" }, /area/station/security/interrogation) -"yhm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/station/maintenance/apmaint) "yhr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -101904,9 +101914,9 @@ "yjR" = ( /obj/machinery/door/airlock/external{ id_tag = "scibomb_door_int"; - locked = 1; - name = "External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -101916,6 +101926,12 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/external, +/obj/machinery/access_button/east{ + autolink_id = "scibomb_btn_int"; + pixel_y = 24; + req_one_access_txt = "10;13"; + pixel_x = 0 + }, /turf/simulated/floor/plating, /area/station/maintenance/asmaint) "yjV" = ( @@ -101935,7 +101951,7 @@ dir = 6; icon_state = "darkblue" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "ykt" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -102005,9 +102021,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/atmos/glass{ - name = "Supermatter Atmospheric Supplies" - }, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -113721,7 +113736,7 @@ aII aII aHl vEo -aVL +vPw aQw aRe aSd @@ -113971,9 +113986,9 @@ aaa aaa aaa aaa -xdO +doE jXg -aHS +pVq tvQ dur pTK @@ -116029,7 +116044,7 @@ aFS aHh gnV fMK -aVL +aVa jgi krJ aGn @@ -116080,13 +116095,13 @@ tZM qRV tZM lrs -qVc +cqF iXf ubK qMa vQt skl -uBQ +doE aaa aaa aaa @@ -116553,7 +116568,7 @@ aHl aSp aGn tqH -aVa +gAb doj aXE aZb @@ -117849,7 +117864,7 @@ bgz vJv bgz blM -bnv +dig dfh sBx dig @@ -118107,10 +118122,10 @@ bly bgz blM bnv -dfh -cwy -bnD -bnD +idz +idz +idz +fmg boZ bnK cEb @@ -118363,10 +118378,10 @@ bgz vJv bgz blM -bnv -dfh -dgU +cVn bnD +bqv +bqv bnD bvs bvs @@ -118620,17 +118635,17 @@ bgq vxC bjY blM -bnv -dfh -xWM -bnD +mBZ bnD +xWM +dgU +hDJ bvs bwP bvs bzu bvs -bwP +jog bvs cRE bnw @@ -118878,16 +118893,16 @@ ueB bgz blM bpa -bpa -bqu bnD +bfc +bfc btO bvs -bwQ +mfu bvs -bzv +rKP bvs -bCm +bwQ bvs bym bvF @@ -118914,7 +118929,7 @@ gYs kQo coL lNb -iMM +gfC bGQ uUe rzr @@ -119135,10 +119150,10 @@ vJv bgz blM bnr -idz -fmg bnD -bwG +bnD +bnD +cwy bvs bBN iDg @@ -119170,7 +119185,7 @@ cgQ cgQ vYQ xLv -xzs +uBQ mWq cHR pey @@ -120176,7 +120191,7 @@ bCp cNA blQ bnw -qiX +xeC bxb bKB bKB @@ -120382,11 +120397,11 @@ avm xhW exh hjX -orU +pty uVr rAe luh -luh +lEA vON xPE aaa @@ -120634,7 +120649,7 @@ hDl vWw ado lZS -xDw +qYn qAH hCs kTP @@ -121418,7 +121433,7 @@ xBl twu aEO jkw -avf +lsX aEO wkg abN @@ -121452,7 +121467,7 @@ bnD bnD bnD knY -bAe +bnD blM fmd blQ @@ -121663,7 +121678,7 @@ qWR fct anf ado -sDL +uVd anf ado anf @@ -121923,7 +121938,7 @@ anf sDL anf eBy -eBy +bfl ado asl lKq @@ -122693,7 +122708,7 @@ abN abN kXd axs -pZj +nJA pZj anf hNf @@ -124099,7 +124114,7 @@ cSU aab aaa doE -cXZ +doE doE doE aaa @@ -124846,7 +124861,7 @@ cyk aaa cSU cSU -cVn +ckG hZR aaa rmT @@ -125068,14 +125083,14 @@ bDX bDX cbz bzJ -cgQ -cgQ -cgQ -cgQ -cgQ -cgQ -cgQ -cgQ +bzJ +bzJ +cam +cam +cam +cam +cam +cam cog nNh coP @@ -125127,7 +125142,7 @@ udO eZi cSU bQq -mBZ +ujG uOG dgc dcq @@ -125325,16 +125340,16 @@ bUU bUU itH bBn -cgQ +bzJ cao iis sXJ nrD ckx cnX -cgQ -cgQ -cgQ +cam +cam +cam xzY cam ckM @@ -125582,7 +125597,7 @@ nIU jox huD ybT -cgQ +bzJ cap kzf kzf @@ -125839,7 +125854,7 @@ dvC bBo bBn bBn -cgQ +bzJ lzN uNj lav @@ -126096,7 +126111,7 @@ dyA bBn bVt bWU -cgQ +bzJ cat qaq lpP @@ -126353,7 +126368,7 @@ uxt bPW bDX bDX -cgQ +bzJ cgQ scY pqG @@ -126612,8 +126627,8 @@ bOw bOw bYO eVK -bOw -bOw +shB +shB bOw bTk cgQ @@ -127700,9 +127715,9 @@ dar dev sLy dcq -aab -aab -aab +lGD +kak +kak qVf ucU xxh @@ -127914,7 +127929,7 @@ cvI cvI cvI cvI -yhm +xqL cvI lQi cqs @@ -127957,10 +127972,10 @@ dar wzQ jPX dcq -aab +rMi cZS cZS -kmr +dij fEE dij dij @@ -128162,7 +128177,7 @@ cgW cgW cgW cgW -xqL +lYd cgW cgW cvI @@ -128214,7 +128229,7 @@ dar iyc dcq dcq -dij +kmr cZS sRi hfb @@ -128471,10 +128486,10 @@ dar yme tIg snV -cde +wXK cde dbt -kak +daM daM xsl dop @@ -129397,7 +129412,7 @@ aLY aOB aOB aOB -hlM +bCq aPi xJn aYa @@ -130402,7 +130417,7 @@ ojV alT rHa tgF -akY +iZR auc ujD kSz @@ -131218,7 +131233,7 @@ bpw bqV hBF bxO -beE +paa bxt vNg byP @@ -131714,7 +131729,7 @@ avq avq avq avq -ixv +okf aRx kGo aDN @@ -136869,7 +136884,7 @@ nQW sea lxc tqo -sea +jVb lxc mFq vAC @@ -137866,7 +137881,7 @@ aIq avq aAc mbb -aHp +wNr aCh aEw aFI @@ -138137,7 +138152,7 @@ aPf aQv jKA aUT -aZG +hBo aWT bbu bdj @@ -138395,7 +138410,7 @@ aZs aZD aVp iBD -aWT +qSh bbu bdj bfv @@ -138651,7 +138666,7 @@ aFI aQE bxP aUT -aZG +hBo aWT bbu bdj @@ -139406,7 +139421,7 @@ ava awF awF avq -ixv +okf aPm aPm lkw @@ -140446,7 +140461,7 @@ sHt sHt sHt aFK -kiu +klz rpd aHW eln @@ -140455,7 +140470,7 @@ pmG lEH udh pni -pTJ +oYI mrk qsA aUS @@ -140706,7 +140721,7 @@ aFK aPm aPm aSM -wsC +mYc vca aIc sbR @@ -141220,7 +141235,7 @@ aOI aPm aPm aSM -wsC +mYc jJh aLA aXi @@ -141474,7 +141489,7 @@ aOI aOI aOI aOI -tuZ +iyI pbz ilS iTC @@ -141714,7 +141729,7 @@ awl aaa awl oQd -oQd +uLw awl auq avu @@ -141837,7 +141852,7 @@ aab aaa aab doE -phU +doE doE aab iUc @@ -141971,7 +141986,7 @@ aaa aaa awl doE -okf +doE awl auq avw @@ -142076,7 +142091,7 @@ cep cxO doE doE -sds +doE doE dgX doE @@ -142620,7 +142635,7 @@ cBY cBY cBY cLA -cBY +uag cVd vdo wCk @@ -143392,7 +143407,7 @@ dkd hmR dlb dlu -cVd +lCt gdq gdq dor @@ -143648,7 +143663,7 @@ aig aig aig xkG -aig +eNd cVd vdo dpK @@ -143878,7 +143893,7 @@ csa mEx chf chf -jVj +hNr chf chf usZ @@ -144280,7 +144295,7 @@ aqZ azU awQ axq -lgb +axq iih utp tSW @@ -144651,7 +144666,7 @@ cxO cxO cPI nDq -jVj +hNr cep cep cep @@ -144918,7 +144933,7 @@ cQo hPE dmP nUn -lyS +xlx lyS chf aaa @@ -145132,7 +145147,7 @@ pPw hwC dHU sQt -xwi +kuL dlD dlD bGG @@ -146372,7 +146387,7 @@ bav bci jqB bfZ -bkn +nVn bcp blj blj @@ -146709,7 +146724,7 @@ gmu aoA cDm chf -iYQ +hNr chf cDm dmb @@ -149257,7 +149272,7 @@ rKV rKV rKV rKV -bZI +rFZ rKV qZN qZN @@ -152048,7 +152063,7 @@ bNu bxX eLE ezy -bIp +bqu yiu tYP bED @@ -152323,7 +152338,7 @@ psP rXw rSz vmk -kqT +xdO wvz wvz gKL @@ -152570,7 +152585,7 @@ csL ceU ciY ciY -hMr +dci ciY ciY cKF @@ -152626,7 +152641,7 @@ tMT kYu sTF lCG -hDJ +ddE ddE ddE ddN @@ -152817,7 +152832,7 @@ bmm bmm bmm iIB -hMr +oSl csL cga gww @@ -153337,7 +153352,7 @@ csL eGo csL mZs -hMr +dci csL dbX tVF @@ -154129,7 +154144,7 @@ jwr fPr mMk ciY -hMr +dci ciY ciY smL @@ -154383,7 +154398,7 @@ doK nBc cgs vDX -uwe +bVd ctq ciY csL @@ -154874,7 +154889,7 @@ yha bmm hnb ciY -hMr +oSl ciY ciY ciY @@ -154906,7 +154921,7 @@ awx jPZ fmn csL -vOs +slp cga ePu cQw @@ -156440,7 +156455,7 @@ aab aab doE doE -rFZ +rPK doE ciY ciY @@ -158202,7 +158217,7 @@ bEG bEG bEG bEG -xir +lgb bjR xir bjR diff --git a/_maps/map_files220/delta/delta.dmm b/_maps/map_files220/delta/delta.dmm index b7dd489da1aa..5d2875b3b5ff 100644 --- a/_maps/map_files220/delta/delta.dmm +++ b/_maps/map_files220/delta/delta.dmm @@ -23,7 +23,7 @@ dir = 9 }, /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_x = 6; pixel_y = 4 }, @@ -399,9 +399,9 @@ name = "escape pod 1" }, /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Escape Pod Hatch" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_1) @@ -416,6 +416,7 @@ id_tag = "admin_home"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -516,6 +517,7 @@ /area/shuttle/pod_4) "aeM" = ( /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "aeN" = ( @@ -533,6 +535,7 @@ "aeP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) @@ -543,9 +546,9 @@ name = "escape pod 4" }, /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Escape Pod Hatch" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_4) @@ -733,15 +736,14 @@ /obj/structure/sign/electricshock{ pixel_y = -32 }, -/obj/machinery/door/airlock/engineering{ - name = "Fore Starboard Solar Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/maintenance/auxsolarstarboard) "afN" = ( @@ -1004,10 +1006,8 @@ /turf/simulated/floor/plasteel, /area/station/security/permabrig) "ahy" = ( -/obj/machinery/door/airlock/glass{ - name = "Vacant Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, @@ -1020,12 +1020,12 @@ id_tag = "ferry_home"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "ahA" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -1035,6 +1035,7 @@ /obj/machinery/door/airlock/titanium{ id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -1048,6 +1049,7 @@ /obj/machinery/door/airlock/titanium{ id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -1055,9 +1057,8 @@ /turf/simulated/floor/plasteel, /area/shuttle/arrival/station) "ahF" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -1361,6 +1362,7 @@ /obj/machinery/door/airlock/titanium{ id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/arrival/station) "ala" = ( @@ -1485,17 +1487,17 @@ "alR" = ( /obj/structure/closet/secure_closet/freezer/fridge/open, /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat, +/obj/item/reagent_containers/condiment/soymilk, +/obj/item/reagent_containers/condiment/soymilk, +/obj/item/reagent_containers/condiment/soymilk, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/milk, +/obj/item/reagent_containers/condiment/milk, /obj/item/storage/fancy/egg_box, /obj/item/storage/fancy/egg_box, /turf/simulated/floor/plasteel{ @@ -1663,12 +1665,10 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = null - }, +/obj/machinery/door/airlock/mining, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -2008,6 +2008,7 @@ dir = 4 }, /obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/wood/fancy/cherry, /area/station/public/vacant_store) "aoo" = ( @@ -2315,9 +2316,6 @@ dir = 8; name = "Atmospherics Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ - dir = 8 - }, /obj/structure/cable{ d1 = 2; d2 = 8; @@ -2331,6 +2329,9 @@ /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) "apv" = ( @@ -2371,10 +2372,9 @@ autoclose = 0; heat_proof = 1; id_tag = "turbine_door_int"; - locked = 1; - name = "Turbine Interior Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -2385,6 +2385,7 @@ name = "Gas Turbine Access Button"; pixel_y = 24 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/engine, /area/station/maintenance/turbine) "apF" = ( @@ -2533,10 +2534,9 @@ /area/station/security/checkpoint/secondary) "aqi" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Customs Desk" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel, /area/station/command/customs) "aqj" = ( @@ -2603,10 +2603,9 @@ /area/station/service/kitchen) "aqu" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel, /area/station/security/checkpoint/secondary) "aqv" = ( @@ -3126,9 +3125,6 @@ dir = 8; name = "Customs Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/general{ - dir = 8 - }, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -3145,11 +3141,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/general{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/command/customs) "arR" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3157,6 +3154,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/item/folder/red, +/obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "red" @@ -3193,7 +3192,7 @@ /area/station/maintenance/fore2) "arV" = ( /obj/machinery/conveyor{ - dir = 4; + dir = 5; id = "cargodisposals_output"; name = "Output Belt" }, @@ -3646,7 +3645,7 @@ dir = 4; name = "Security Checkpoint" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/doors{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 4 }, /turf/simulated/floor/plasteel, @@ -3776,7 +3775,7 @@ /area/station/maintenance/fore) "att" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -4088,15 +4087,14 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/disposal/east) "aut" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/doors, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel, /area/station/maintenance/fore2) "auu" = ( @@ -4139,6 +4137,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/wood/fancy/cherry, /area/station/public/vacant_store) "auz" = ( @@ -4211,10 +4210,12 @@ /area/station/maintenance/electrical_shop) "auM" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/wood/oak, /area/station/maintenance/electrical_shop) "auN" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -4284,15 +4285,14 @@ /turf/simulated/floor/plating, /area/station/engineering/mechanic) "avf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Checkpoint Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "avg" = ( @@ -4404,12 +4404,10 @@ "avr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/qm/glass, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "qmroom" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -4417,6 +4415,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, /turf/simulated/floor/plasteel, /area/station/supply/qm) "avs" = ( @@ -4546,7 +4545,7 @@ /area/station/hallway/secondary/entry) "awq" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4561,16 +4560,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/fore2) "aws" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -7; pixel_y = 7 }, -/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/reagent_containers/condiment/peppermill, /obj/item/radio/intercom/directional/west, /turf/simulated/floor/plasteel{ dir = 8; @@ -4687,9 +4687,6 @@ dir = 4; name = "Danger: Conveyor Access" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/maintenance{ - dir = 4 - }, /obj/machinery/conveyor/northwest/ccw{ id = "garbage" }, @@ -4762,6 +4759,7 @@ /area/station/maintenance/fore) "awY" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -4773,10 +4771,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/fore2) "axb" = ( @@ -4806,6 +4804,7 @@ /area/station/service/janitor) "axg" = ( /obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/fore) "axh" = ( @@ -5094,7 +5093,7 @@ "axV" = ( /obj/machinery/atmospherics/trinary/filter{ dir = 4; - filter_type = "o2"; + filter_type = 1; on = 1 }, /turf/simulated/floor/plasteel{ @@ -5154,12 +5153,12 @@ /turf/simulated/floor/wood/oak, /area/station/maintenance/old_kitchen) "aym" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/security/glass{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkredcorners" @@ -5392,7 +5391,7 @@ pixel_x = 4; pixel_y = 4 }, -/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/food/snacks/baguette, /obj/item/flashlight/lamp/green{ pixel_x = 6; pixel_y = 16 @@ -5665,9 +5664,6 @@ dir = 4; name = "Danger: Conveyor Access" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/maintenance{ - dir = 4 - }, /obj/machinery/conveyor/northeast/ccw{ id = "garbage" }, @@ -5774,7 +5770,7 @@ /area/station/maintenance/fore) "aAk" = ( /obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey, /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fore) @@ -6110,6 +6106,7 @@ dir = 4 }, /obj/machinery/atmospherics/unary/outlet_injector/on, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ icon_state = "chapel" }, @@ -6117,12 +6114,10 @@ "aBK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/qm/glass, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "qm" }, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -6137,6 +6132,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, /area/station/supply/qm) "aBL" = ( @@ -6188,17 +6185,17 @@ /obj/machinery/door/airlock/security/glass{ id_tag = "BrigLeft" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" @@ -6232,9 +6229,8 @@ /area/station/supply/storage) "aBU" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ dir = 4; @@ -6526,17 +6522,17 @@ /area/station/engineering/controlroom) "aCZ" = ( /obj/machinery/door/airlock/atmos/glass{ - heat_proof = 1; - name = "Supermatter Chamber" + heat_proof = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door_control/bolt_control/west{ id = "smint" }, /obj/machinery/door/poddoor/shutters/radiation/preopen{ id_tag = "engsm" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/engine, /area/station/engineering/engine/supermatter) "aDc" = ( @@ -6758,7 +6754,7 @@ "aEd" = ( /obj/machinery/atmospherics/trinary/filter{ dir = 1; - filter_type = "n2"; + filter_type = 2; name = "nitrogen filter"; on = 1 }, @@ -6886,16 +6882,16 @@ pixel_x = 6; pixel_y = 16 }, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_x = 6 }, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_y = 4 }, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_x = -6 }, -/obj/item/reagent_containers/food/snacks/pie, +/obj/item/food/snacks/pie, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -7013,9 +7009,6 @@ /obj/effect/mapping_helpers/airlock/windoor/access/any/service/janitor{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 4 - }, /turf/simulated/floor/plasteel, /area/station/service/janitor) "aEP" = ( @@ -7044,10 +7037,9 @@ /area/station/service/janitor) "aEW" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, @@ -7104,7 +7096,7 @@ /area/station/supply/storage) "aFa" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/engineering/mechanic) @@ -7142,7 +7134,7 @@ "aFf" = ( /obj/machinery/atmospherics/trinary/filter{ dir = 8; - filter_type = "n2" + filter_type = 2 }, /obj/structure/cable/yellow{ d1 = 4; @@ -7305,11 +7297,11 @@ "aFN" = ( /obj/machinery/door/airlock/external{ id_tag = "supply_home"; - locked = 1; - name = "Cargo Docking Hatch" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plating, /area/station/supply/storage) "aFO" = ( @@ -7434,10 +7426,7 @@ /turf/simulated/floor/wood/fancy, /area/station/public/sleep_female) "aGs" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -7534,14 +7523,6 @@ icon_state = "dark" }, /area/station/engineering/mechanic) -"aGW" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/space, -/area/space/nearstation) "aGX" = ( /obj/effect/spawner/window/reinforced/grilled, /turf/simulated/floor/plating, @@ -7697,6 +7678,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood/fancy, /area/station/service/theatre) "aHJ" = ( @@ -7833,13 +7815,14 @@ /area/station/maintenance/disposal/west) "aIe" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/structure/barricade/wooden, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel/dark, /area/station/security/podpilot) "aIf" = ( @@ -7863,9 +7846,8 @@ "aIg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/service{ - name = "Bar Office" - }, +/obj/machinery/door/airlock/service, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/service/bar, /turf/simulated/floor/plasteel{ @@ -8242,8 +8224,7 @@ "aJs" = ( /obj/machinery/door_control/shutter/north{ id = "engsm"; - name = "Radiation Shutters Control"; - req_access_txt = "24" + name = "Radiation Shutters Control" }, /obj/machinery/atmospherics/pipe/manifold/visible, /obj/structure/cable/yellow{ @@ -8422,10 +8403,8 @@ /area/station/engineering/controlroom) "aJZ" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -8434,6 +8413,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "aKa" = ( @@ -8602,11 +8583,10 @@ "aKD" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/airlock/mining/glass, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/cargo_bay, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, /area/station/supply/office) "aKE" = ( @@ -8668,7 +8648,7 @@ dir = 4 }, /obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -8751,15 +8731,14 @@ pixel_y = -32 }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Fore Port Solar Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/maintenance/auxsolarport) "aLs" = ( @@ -8812,9 +8791,8 @@ }, /area/station/maintenance/fore) "aLD" = ( -/obj/machinery/door/airlock/bananium{ - name = "Clown's Office" - }, +/obj/machinery/door/airlock/bananium, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -8823,7 +8801,7 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/clown, +/obj/effect/mapping_helpers/airlock/access/any/service/clown, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -8837,7 +8815,7 @@ /area/station/public/arcade) "aLM" = ( /obj/effect/turf_decal/delivery/hollow, -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) "aLS" = ( @@ -8923,11 +8901,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/airlock/mining/glass, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/cargo_bay, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, /area/station/supply/office) "aMd" = ( @@ -8968,9 +8945,6 @@ }, /obj/structure/window/reinforced, /obj/structure/sign/poster/official/random/north, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply{ - dir = 4 - }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ dir = 4 }, @@ -9002,6 +8976,21 @@ icon_state = "dark" }, /area/station/service/bar) +"aMt" = ( +/obj/machinery/door/morgue{ + name = "Chapel Morgue"; + req_access_txt = "22" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/service/crematorium, +/turf/simulated/floor/plasteel/grimy, +/area/station/service/chapel/office) "aMA" = ( /obj/machinery/atmospherics/unary/portables_connector, /obj/machinery/atmospherics/portable/canister, @@ -9077,9 +9066,9 @@ "aMY" = ( /obj/machinery/door/airlock/bathroom{ id = "toilet2"; - id_tag = "toilet2"; - name = "Toilet" + id_tag = "toilet2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/service/theatre) "aNb" = ( @@ -9314,11 +9303,11 @@ /area/station/engineering/atmos) "aOj" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "aOk" = ( @@ -9331,10 +9320,8 @@ /area/station/engineering/atmos) "aOm" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -9343,6 +9330,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "aOo" = ( @@ -9858,10 +9847,9 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/maintenance{ - name = "Forensics Morgue" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plating, /area/station/supply/storage) "aQs" = ( @@ -9991,10 +9979,10 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, /turf/simulated/floor/plating, /area/station/maintenance/fore) "aRw" = ( @@ -10044,12 +10032,10 @@ /area/station/maintenance/disposal/east) "aRM" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, +/obj/machinery/door/airlock/mining/glass, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/sorting) "aRO" = ( @@ -10808,16 +10794,15 @@ "aVc" = ( /obj/machinery/door/airlock/external{ id_tag = "atmostanks_door_ext"; - locked = 1; - name = "Atmos External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/west{ autolink_id = "atmostanks_btn_ext"; name = "exterior access button"; req_access_txt = "32" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "aVg" = ( @@ -10838,6 +10823,7 @@ /obj/structure/chair/sofa/pew/left{ dir = 4 }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ icon_state = "chapel" }, @@ -10999,9 +10985,9 @@ "aWe" = ( /obj/machinery/door/airlock/glass{ id = "privateroom"; - id_tag = "privateroom"; - name = "Private Room" + id_tag = "privateroom" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "privateroom" }, @@ -11072,10 +11058,6 @@ /obj/machinery/door/window/reinforced/normal{ name = "Forensics Morgue" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - access = 4; - name = "forensics" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -11120,6 +11102,7 @@ /area/space) "aWD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "aWG" = ( @@ -11137,12 +11120,12 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ id_tag = "mining_home"; - locked = 1; - name = "Mining Dock Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "aWI" = ( @@ -11258,11 +11241,9 @@ /area/station/engineering/atmos) "aXp" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage" - }, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -11651,9 +11632,8 @@ /turf/simulated/wall, /area/station/service/kitchen) "aZa" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Restaurant" - }, +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/wood/oak, /area/station/service/bar/atrium) @@ -11770,8 +11750,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/supply/office) "aZt" = ( @@ -11935,7 +11913,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bau" = ( @@ -12295,7 +12273,7 @@ }, /area/station/engineering/atmos) "bbT" = ( -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -12346,6 +12324,7 @@ /area/station/service/kitchen) "bcg" = ( /obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12419,12 +12398,8 @@ }, /area/station/service/kitchen) "bco" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Transit Tube" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/science/minisat, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -12433,8 +12408,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/simulated/floor/plasteel, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "bcq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -12471,10 +12447,9 @@ icon_state = "4-8" }, /obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/kitchen, -/obj/machinery/door/airlock/public{ - name = "Kitchen" - }, /turf/simulated/floor/plasteel/white, /area/station/service/kitchen) "bcs" = ( @@ -12579,8 +12554,6 @@ /area/station/supply/miningdock) "bcI" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, @@ -12637,16 +12610,14 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bdq" = ( -/obj/machinery/door/airlock/security{ - name = "Detective" - }, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -12663,7 +12634,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bdt" = ( @@ -12727,6 +12698,7 @@ /area/station/maintenance/starboard2) "bdK" = ( /obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/structure/cable{ d1 = 1; @@ -12770,11 +12742,11 @@ /area/station/service/kitchen) "bdQ" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -4; pixel_y = 2 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -7; pixel_y = 7 }, @@ -12929,17 +12901,6 @@ icon_state = "redfull" }, /area/station/security/permabrig) -"bel" = ( -/obj/machinery/door/window/classic/reversed, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mining, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "neutralfull" - }, -/area/station/supply/miningdock) "ben" = ( /obj/item/storage/box/donkpockets{ pixel_x = -4; @@ -13094,9 +13055,8 @@ /turf/simulated/floor/plasteel/dark, /area/station/engineering/atmos) "beS" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13342,12 +13302,10 @@ /area/station/engineering/gravitygenerator) "bgf" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -13594,7 +13552,8 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plating, /area/station/supply/miningdock) "bgU" = ( @@ -13696,9 +13655,8 @@ /turf/simulated/floor/engine/n2, /area/station/engineering/atmos) "bhv" = ( -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, +/obj/machinery/door/airlock/hydroponics/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13799,7 +13757,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/security/interrogation) "bhC" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /obj/item/radio/intercom/directional/south, /turf/simulated/floor/plasteel{ dir = 10; @@ -13811,12 +13769,12 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/item/reagent_containers/food/snacks/dough, -/obj/item/reagent_containers/food/snacks/dough{ +/obj/item/food/snacks/dough, +/obj/item/food/snacks/dough{ pixel_x = 2; pixel_y = 2 }, -/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/condiment/enzyme, /turf/simulated/floor/plasteel/white, /area/station/service/kitchen) "bhK" = ( @@ -14260,12 +14218,6 @@ dir = 8; name = "Hydroponics Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ id_tag = "Hydroponics Shutters"; @@ -14276,6 +14228,12 @@ id_tag = "Kitchen Windows"; name = "Kitchen Privacy Shutters" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 + }, /turf/simulated/floor/plasteel/dark, /area/station/service/hydroponics) "bjp" = ( @@ -14414,7 +14372,7 @@ /area/station/security/permabrig) "bjO" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -14426,6 +14384,7 @@ icon_state = "1-4" }, /obj/structure/barricade/wooden, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel/dark, /area/station/security/podpilot) "bjP" = ( @@ -14515,11 +14474,8 @@ /obj/machinery/door/firedoor, /obj/structure/table/reinforced, /obj/machinery/door/window/reinforced/normal{ - name = "IAA reception" - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ - access = 38; - name = "iaa" + name = "IAA reception"; + dir = 1 }, /obj/structure/cable{ d1 = 1; @@ -14536,6 +14492,9 @@ id_tag = "iaashutters"; name = "IAA Shutters" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/iaa{ + dir = 1 + }, /turf/simulated/floor/plating, /area/station/legal/lawoffice) "bkg" = ( @@ -14686,7 +14645,7 @@ }, /area/station/security/permabrig) "blj" = ( -/obj/machinery/smartfridge, +/obj/machinery/smartfridge/food, /obj/machinery/door/window/classic/normal{ dir = 8; name = "Kitchen Desk" @@ -15159,15 +15118,15 @@ dir = 1; name = "Kitchen Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ - dir = 1 - }, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "kitchenhall"; name = "Kitchen Shutters" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 1 + }, /turf/simulated/floor/plating, /area/station/service/kitchen) "bmY" = ( @@ -15220,7 +15179,6 @@ }, /area/station/supply/miningdock) "bnh" = ( -/obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "purple" @@ -15331,15 +15289,14 @@ /area/station/engineering/atmos) "bnV" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bnW" = ( @@ -15485,6 +15442,7 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hydroponics, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, /turf/simulated/floor/plasteel/dark, /area/station/service/hydroponics) @@ -15916,20 +15874,20 @@ /obj/structure/table/reinforced, /obj/item/folder, /obj/item/pen, -/obj/item/reagent_containers/food/snacks/grown/apple, +/obj/item/food/snacks/grown/apple, /obj/machinery/door/window/classic/normal{ dir = 8; name = "Hydroponics Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ - dir = 8 - }, /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/shutters/preopen{ id_tag = "Hydroponics Shutters"; name = "Hydroponics Shutters" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 + }, /turf/simulated/floor/plasteel/dark, /area/station/service/hydroponics) "bqn" = ( @@ -16353,22 +16311,22 @@ /obj/item/seeds/lime, /obj/item/seeds/watermelon, /obj/item/seeds/grape, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/watermelon, +/obj/item/food/snacks/grown/banana, /obj/machinery/door/window/classic/reversed{ dir = 8; name = "Hydroponics Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ - dir = 8 - }, /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/shutters/preopen{ id_tag = "Hydroponics Shutters"; name = "Hydroponics Shutters" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 + }, /turf/simulated/floor/plasteel/dark, /area/station/service/hydroponics) "bsh" = ( @@ -16723,10 +16681,7 @@ /turf/simulated/floor/carpet/cyan, /area/station/security/prison/cell_block/A) "btV" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/shard, /obj/effect/decal/cleanable/glass, /obj/effect/decal/cleanable/dirt, @@ -17072,10 +17027,8 @@ /area/station/service/library) "bvM" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -17084,6 +17037,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "bvO" = ( @@ -17506,6 +17461,7 @@ /area/station/service/hydroponics) "bxy" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" @@ -17559,13 +17515,13 @@ /turf/simulated/floor/plasteel/dark, /area/station/command/vault) "bxJ" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "cellprivacy" }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, +/obj/machinery/door/airlock/security/glass, /turf/simulated/floor/plasteel/dark, /area/station/security/processing) "bxK" = ( @@ -17708,10 +17664,8 @@ /area/station/service/hydroponics) "byx" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -17720,6 +17674,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "byC" = ( @@ -17773,11 +17729,8 @@ }, /area/station/hallway/primary/port) "byI" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ d1 = 1; @@ -17794,6 +17747,8 @@ d2 = 4; icon_state = "2-4" }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/simulated/floor/plasteel, /area/station/engineering/tech_storage) "byJ" = ( @@ -17818,9 +17773,8 @@ /area/station/maintenance/fore) "byN" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ dir = 1; @@ -17903,6 +17857,7 @@ /area/station/command/vault) "bze" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "Surgery1" }, @@ -17922,7 +17877,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/surgery, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -18235,7 +18189,7 @@ "bAF" = ( /obj/machinery/light/small/directional/east, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "bAI" = ( /obj/machinery/alarm/directional/south, /obj/machinery/light/small/directional/south, @@ -18636,7 +18590,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/general, /turf/simulated/floor/plasteel{ icon_state = "darkblue" }, @@ -18728,6 +18682,7 @@ dir = 4; network = list("Prison","SS13") }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "red" @@ -18850,11 +18805,10 @@ /area/station/engineering/gravitygenerator) "bDd" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/simulated/floor/plasteel/dark, /area/station/engineering/gravitygenerator) "bDe" = ( @@ -18907,9 +18861,8 @@ /area/station/engineering/gravitygenerator) "bDi" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Foyer" - }, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -18921,7 +18874,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "bDj" = ( @@ -19030,9 +18983,8 @@ /area/station/engineering/break_room) "bDr" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Storage" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -19201,11 +19153,9 @@ icon_state = "4-8" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/machinery/door/airlock/mining{ - name = null - }, +/obj/machinery/door/airlock/mining, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/disposal/east) "bDN" = ( @@ -19248,10 +19198,8 @@ /area/station/public/storage/tools) "bDT" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -19264,6 +19212,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -19326,15 +19275,14 @@ /area/station/command/bridge) "bEk" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -19348,10 +19296,8 @@ /area/station/command/bridge) "bEn" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -19364,6 +19310,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -19412,9 +19359,8 @@ /area/station/engineering/gravitygenerator) "bEJ" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Storage" - }, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -19426,7 +19372,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "bEK" = ( @@ -19941,7 +19887,7 @@ /area/station/engineering/gravitygenerator) "bGD" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/cans/starkist, +/obj/item/reagent_containers/drinks/cans/starkist, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -20087,9 +20033,8 @@ /area/station/engineering/break_room) "bGN" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -20114,7 +20059,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -20276,10 +20221,8 @@ /area/station/command/meeting_room) "bHl" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Conference Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -20287,6 +20230,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/wood/oak, /area/station/command/meeting_room) "bHn" = ( @@ -20334,12 +20278,6 @@ c_tag = "Bridge Center"; dir = 1 }, -/obj/machinery/turretid/stun{ - control_area = "\improper AI Upload Chamber"; - name = "AI Upload Turret Control"; - pixel_y = -24; - req_one_access_txt = "75" - }, /turf/simulated/floor/carpet, /area/station/command/bridge) "bHt" = ( @@ -20387,10 +20325,9 @@ "bHz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - id_tag = "captainofficedoor"; - name = "Captain's Office" + id_tag = "captainofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -20399,6 +20336,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood/oak, /area/station/command/office/captain) "bHA" = ( @@ -20448,12 +20387,12 @@ /area/station/security/detective) "bHN" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "bHO" = ( /obj/machinery/door/airlock/security/glass, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/security/forensics, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" @@ -20461,6 +20400,7 @@ /obj/effect/mapping_helpers/airlock/polarized{ id = "detective" }, +/obj/effect/mapping_helpers/airlock/access/any/security/forensics, /turf/simulated/floor/plasteel/dark, /area/station/security/prison/cell_block/A) "bHP" = ( @@ -20533,6 +20473,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/abandoned_garden) "bIh" = ( @@ -20549,12 +20490,12 @@ dir = 8; name = "AI Core Door" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ - dir = 8 - }, /obj/machinery/light_switch/north{ pixel_x = -4 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ + dir = 8 + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -20573,15 +20514,15 @@ dir = 4; name = "AI Core Door" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ - dir = 4 - }, /obj/machinery/turretid/lethal{ - control_area = "\improper AI Chamber"; + check_synth = 1; name = "AI Chamber Turret Control"; - pixel_x = -5; + pixel_x = -6; pixel_y = 24; - req_access_txt = "75" + req_one_access_txt = "75" + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ai_upload{ + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -20800,9 +20741,8 @@ /area/station/public/storage/tools) "bIV" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary tool storage" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -20880,10 +20820,8 @@ /turf/simulated/floor/wood/oak, /area/station/command/meeting_room) "bJi" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -20891,6 +20829,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/simulated/floor/plasteel/dark, /area/station/turret_protected/ai_upload) "bJj" = ( @@ -21150,7 +21089,7 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/engineering, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21231,10 +21170,9 @@ "bKk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - id_tag = "ceofficedoor"; - name = "Chief Engineer's Office" + id_tag = "ceofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -21259,6 +21197,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/ce, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel, /area/station/command/office/ce) "bKl" = ( @@ -21682,17 +21622,16 @@ }, /obj/machinery/door/airlock/security/glass{ id_tag = "perma_door_ext"; - locked = 1; - name = "Prison Wing" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/east{ autolink_id = "perma_btn_ext"; name = "Prison Wing Access Button"; req_one_access_txt = "2" }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/station/security/permabrig) "bLM" = ( @@ -21717,12 +21656,11 @@ }, /area/station/turret_protected/ai) "bLP" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/maintenance/port) "bLQ" = ( @@ -21751,8 +21689,12 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bLU" = ( @@ -21765,19 +21707,29 @@ d2 = 4; icon_state = "0-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bLV" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bLZ" = ( @@ -21793,9 +21745,8 @@ /area/station/public/storage/tools) "bMa" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /obj/structure/cable{ d1 = 1; @@ -21810,9 +21761,8 @@ /area/station/hallway/primary/fore) "bMb" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel{ dir = 4; @@ -22345,12 +22295,11 @@ name = "AI Chamber Blast Doors"; opacity = 0 }, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Observation" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -22364,9 +22313,8 @@ /area/station/turret_protected/aisat) "bNU" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -22375,7 +22323,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "bNZ" = ( @@ -22610,13 +22558,13 @@ /turf/simulated/floor/carpet, /area/station/command/meeting_room) "bOH" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood/oak, /area/station/command/office/hop) "bOI" = ( @@ -22811,7 +22759,6 @@ }, /area/station/supply/miningdock) "bPk" = ( -/obj/effect/mapping_helpers/airlock/access/all/security/forensics, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22825,13 +22772,14 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "detective" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/forensics, /turf/simulated/floor/plasteel/dark, /area/station/security/detective) "bPl" = ( @@ -23026,19 +22974,22 @@ /turf/simulated/wall, /area/space/nearstation) "bPU" = ( -/obj/structure/lattice, +/obj/structure/lattice/catwalk, /obj/structure/transit_tube/curved/flipped{ dir = 4 }, /turf/space, /area/space/nearstation) "bPV" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/horizontal, -/turf/space, -/area/space/nearstation) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plasteel/dark, +/area/station/aisat) "bPW" = ( -/obj/structure/lattice, +/obj/structure/lattice/catwalk, /obj/structure/transit_tube/curved{ dir = 8 }, @@ -23098,9 +23049,6 @@ dir = 1; name = "Cargo Bay Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/general{ - dir = 1 - }, /obj/effect/turf_decal/delivery, /obj/item/desk_bell{ anchored = 1; @@ -23117,6 +23065,9 @@ id_tag = "cargodesk"; name = "Cargo Desk Shutters" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/general{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -23389,9 +23340,6 @@ icon_state = "right"; name = "Captain's Desk Door" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ - dir = 1 - }, /obj/item/folder/blue, /obj/item/stamp/captain, /obj/structure/cable{ @@ -23401,6 +23349,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/blueshield{ + dir = 1 + }, /turf/simulated/floor/carpet/black, /area/station/command/office/captain) "bQR" = ( @@ -23413,6 +23367,9 @@ /obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/blueshield{ + dir = 1 + }, /turf/simulated/floor/carpet/black, /area/station/command/office/captain) "bQS" = ( @@ -23614,7 +23571,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bRQ" = ( -/obj/structure/lattice, +/obj/structure/lattice/catwalk, /obj/structure/transit_tube/diagonal/topleft, /turf/space, /area/space/nearstation) @@ -23701,10 +23658,8 @@ /area/station/command/office/ce) "bSa" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Bedroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -23726,6 +23681,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/ce, /turf/simulated/floor/plasteel/dark, /area/station/command/office/ce) "bSb" = ( @@ -24059,16 +24015,15 @@ /area/station/aisat) "bTt" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -24136,10 +24091,8 @@ /area/station/turret_protected/aisat) "bTz" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -24151,6 +24104,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -24237,10 +24191,8 @@ /area/station/turret_protected/aisat) "bTH" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -24252,6 +24204,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/minisat, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -24309,29 +24262,6 @@ icon_state = "dark" }, /area/station/turret_protected/aisat) -"bTM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Teleporter Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, -/obj/effect/mapping_helpers/airlock/access/any/science/minisat, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/station/turret_protected/aisat) "bTN" = ( /obj/structure/cable{ d1 = 4; @@ -24366,10 +24296,12 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bTR" = ( @@ -24379,12 +24311,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -24410,12 +24336,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bTU" = ( @@ -24426,12 +24346,6 @@ dir = 8 }, /obj/structure/transit_tube_pod, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bTV" = ( @@ -24514,10 +24428,8 @@ }, /area/station/command/office/ce) "bUr" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -24525,6 +24437,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tech_storage, /turf/simulated/floor/plasteel, /area/station/engineering/tech_storage) "bUA" = ( @@ -24582,6 +24495,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/space, /area/space/nearstation) "bUL" = ( @@ -24760,6 +24679,12 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/space, /area/space/nearstation) "bVj" = ( @@ -24770,7 +24695,6 @@ pixel_y = -22 }, /obj/machinery/turretid/stun{ - control_area = "\improper AI Satellite"; name = "AI Antechamber Turret Control"; pixel_x = -28; req_access_txt = "75" @@ -24810,6 +24734,12 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/space, /area/space/nearstation) "bVy" = ( @@ -24985,19 +24915,13 @@ /turf/simulated/floor/plasteel/dark, /area/station/aisat) "bWb" = ( -/obj/structure/lattice, +/obj/structure/lattice/catwalk, /obj/structure/transit_tube/diagonal, /turf/space, /area/space/nearstation) "bWd" = ( /obj/structure/transit_tube/horizontal, /obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/space, /area/space/nearstation) "bWl" = ( @@ -25150,7 +25074,7 @@ /area/station/hallway/primary/port) "bWI" = ( /obj/machinery/alarm/directional/east, -/obj/machinery/suit_storage_unit/ce, +/obj/machinery/suit_storage_unit/ce/secure, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -25183,9 +25107,6 @@ dir = 4; name = "Access Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/hop{ - dir = 4 - }, /obj/machinery/door/window/classic/reversed{ dir = 8; name = "Access Queue" @@ -25195,6 +25116,9 @@ id_tag = "hop"; name = "Privacy Shutters" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/hop{ + dir = 4 + }, /turf/simulated/floor/plasteel/dark, /area/station/command/office/hop) "bWQ" = ( @@ -25221,10 +25145,9 @@ /area/station/command/office/hop) "bWW" = ( /obj/machinery/door/airlock/command{ - id_tag = "captainofficedoor"; - name = "Captain's Office" + id_tag = "captainofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -25232,6 +25155,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, /turf/simulated/floor/wood/oak, /area/station/command/office/captain) "bWX" = ( @@ -25284,9 +25208,8 @@ /area/station/medical/paramedic) "bXy" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "neutralcorner" @@ -25316,6 +25239,8 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/space, /area/space/nearstation) "bXH" = ( @@ -25399,14 +25324,14 @@ }, /area/station/turret_protected/aisat) "bXR" = ( -/obj/structure/lattice, +/obj/structure/lattice/catwalk, /obj/structure/transit_tube/curved{ dir = 4 }, /turf/space, /area/space/nearstation) "bXS" = ( -/obj/structure/lattice, +/obj/structure/lattice/catwalk, /obj/structure/transit_tube/curved/flipped{ dir = 8 }, @@ -25492,7 +25417,8 @@ /area/station/hallway/primary/port) "bYi" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/port) "bYj" = ( @@ -25509,6 +25435,12 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/space, /area/space/nearstation) "bYn" = ( @@ -25582,9 +25514,8 @@ /area/station/command/office/captain/bedroom) "bYB" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -25604,9 +25535,8 @@ /turf/simulated/wall, /area/station/command/office/captain/bedroom) "bYE" = ( -/obj/machinery/door/airlock/silver{ - name = "Captain's Bathroom" - }, +/obj/machinery/door/airlock/silver, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/white, /area/station/command/office/captain/bedroom) "bYH" = ( @@ -25626,6 +25556,12 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/space, /area/space/nearstation) "bYK" = ( @@ -25699,10 +25635,8 @@ /obj/machinery/flasher{ pixel_x = -24 }, -/obj/machinery/door/airlock/highsecurity{ - name = "Telecommunications" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -25710,6 +25644,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -25809,19 +25744,6 @@ }, /turf/simulated/floor/plasteel, /area/station/engineering/control) -"bZw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/space, -/area/space/nearstation) "bZx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26454,7 +26376,7 @@ }, /area/station/maintenance/port) "cbz" = ( -/obj/machinery/suit_storage_unit/captain, +/obj/machinery/suit_storage_unit/captain/secure, /obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -26610,8 +26532,8 @@ /area/station/command/office/ntrep) "cca" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/wood/oak, /area/station/command/office/ntrep) "ccb" = ( @@ -26737,14 +26659,14 @@ /obj/machinery/door/window{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ - dir = 8 - }, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/captain{ + dir = 8 + }, /turf/simulated/floor/carpet/black, /area/station/command/office/captain/bedroom) "ccn" = ( @@ -27077,7 +26999,6 @@ /obj/machinery/door/window{ name = "Desk Door" }, -/obj/effect/mapping_helpers/airlock/access/all/command/ntrep, /obj/machinery/light/directional/west, /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -27085,6 +27006,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/ntrep, /turf/simulated/floor/wood/oak, /area/station/command/office/ntrep) "cdJ" = ( @@ -27103,7 +27025,7 @@ /area/station/command/office/ntrep) "cdN" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/item/storage/fancy/donut_box, /turf/simulated/floor/wood/oak, /area/station/command/office/ntrep) @@ -27163,7 +27085,6 @@ /obj/machinery/door/window{ name = "Desk Door" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/command/blueshield, /obj/machinery/keycard_auth/east{ pixel_y = -3 }, @@ -27173,11 +27094,12 @@ /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/command/blueshield, /turf/simulated/floor/wood/oak, /area/station/command/office/blueshield) "cdT" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/reagent_containers/drinks/flask/gold, /obj/item/razor, /turf/simulated/floor/carpet/black, /area/station/command/office/captain/bedroom) @@ -27516,10 +27438,8 @@ /turf/simulated/floor/plating, /area/station/engineering/smes) "cfg" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -27532,6 +27452,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/engineering/smes) "cfh" = ( @@ -27695,10 +27616,10 @@ /area/station/command/office/blueshield) "cfQ" = ( /obj/machinery/door/airlock/command{ - id_tag = "captainofficedoor"; - name = "Captain's Office" + id_tag = "captainofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, /turf/simulated/floor/plasteel, /area/station/command/office/captain/bedroom) "cfX" = ( @@ -27919,9 +27840,8 @@ /area/station/science/xenobiology) "chb" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralcorner" @@ -27998,9 +27918,9 @@ /area/station/command/office/blueshield) "chs" = ( /obj/structure/closet/cabinet, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -28029,12 +27949,17 @@ /area/station/command/teleporter) "chw" = ( /obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/space, /area/space/nearstation) "chy" = ( @@ -28170,10 +28095,8 @@ /area/station/telecomms/chamber) "cia" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -28182,6 +28105,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/control) "cib" = ( @@ -28446,10 +28370,9 @@ /turf/simulated/wall, /area/station/command/office/captain/bedroom) "ciU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Teleporter Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, /turf/simulated/floor/plasteel, /area/station/command/teleporter) "ciV" = ( @@ -28828,6 +28751,7 @@ /area/station/science/explab/chamber) "cjX" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -28875,8 +28799,9 @@ icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/plating, /area/station/maintenance/fore) "ckm" = ( @@ -28916,10 +28841,9 @@ "cku" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - id_tag = "ntrepofficedoor"; - name = "NT Representative's Office" + id_tag = "ntrepofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/command/ntrep, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -28928,6 +28852,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/ntrep, /turf/simulated/floor/wood/oak, /area/station/command/office/ntrep) "ckv" = ( @@ -28938,10 +28863,9 @@ "ckw" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - id_tag = "blueshieldofficedoor"; - name = "Blueshield's Office" + id_tag = "blueshieldofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/command/blueshield, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -28950,6 +28874,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood/oak, /area/station/command/office/blueshield) "ckx" = ( @@ -29099,10 +29024,9 @@ /area/station/maintenance/apmaint) "clo" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Break Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/break_room) "clp" = ( @@ -29273,9 +29197,9 @@ dir = 4 }, /obj/machinery/door/airlock{ - name = "Bedroom"; id_tag = "PrivateRoom2" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, @@ -29558,12 +29482,6 @@ /area/station/command/teleporter) "cnH" = ( /obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/transit_tube/junction{ dir = 4 }, @@ -29691,12 +29609,6 @@ /area/station/engineering/control) "coi" = ( /obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/transit_tube/crossing{ dir = 8 }, @@ -29708,10 +29620,8 @@ /area/station/legal/magistrate) "coq" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29719,6 +29629,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, /turf/simulated/floor/plasteel, /area/station/command/teleporter) "cor" = ( @@ -30563,6 +30474,7 @@ /area/station/public/vacant_store) "csa" = ( /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -30572,7 +30484,6 @@ icon_state = "1-2" }, /obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/dark, /area/station/security/evidence) "csb" = ( @@ -30663,12 +30574,6 @@ /area/station/engineering/control) "csr" = ( /obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/transit_tube/horizontal, /turf/space, /area/space/nearstation) @@ -30722,19 +30627,6 @@ /obj/machinery/power/emitter, /turf/simulated/floor/plating, /area/station/engineering/equipmentstorage) -"csy" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/space, -/area/space/nearstation) "csz" = ( /obj/structure/closet/crate{ name = "solar pack crate" @@ -30853,6 +30745,7 @@ /area/station/security/prison/cell_block/A) "ctn" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/dormitory_maintenance) @@ -30967,19 +30860,6 @@ /obj/machinery/alarm/directional/south, /turf/simulated/floor/carpet, /area/station/service/library) -"ctI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/space, -/area/space/nearstation) "ctJ" = ( /obj/structure/lattice/catwalk, /obj/structure/transit_tube/curved{ @@ -31012,10 +30892,7 @@ /turf/simulated/floor/carpet, /area/station/service/library) "ctS" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/spawner/random_spawners/oil_maybe, /turf/simulated/floor/plating, /area/station/maintenance/port) @@ -31031,9 +30908,8 @@ /area/station/legal/magistrate) "ctX" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "E.V.A." - }, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/command/eva, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) @@ -31188,9 +31064,8 @@ /turf/simulated/floor/plasteel/dark, /area/station/service/hydroponics) "cuA" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 4; @@ -31341,7 +31216,7 @@ }, /area/station/service/expedition) "cuY" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/machinery/ai_status_display/north, /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -31487,9 +31362,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance{ - name = "Forensics Morgue" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -31669,7 +31543,6 @@ dir = 4; name = "Magboot Storage" }, -/obj/effect/mapping_helpers/airlock/access/any/command/eva, /obj/item/clothing/shoes/magboots, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) @@ -31694,7 +31567,7 @@ }, /area/station/engineering/atmos) "cwY" = ( -/obj/machinery/suit_storage_unit/mime, +/obj/machinery/suit_storage_unit/mime/secure, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) @@ -31704,33 +31577,28 @@ "cxc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - id_tag = "pub_room"; - name = "Public Meeting Room" + id_tag = "pub_room" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 2; d2 = 4; icon_state = "2-4" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/wood/oak, /area/station/science/robotics/showroom) "cxd" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, /area/station/public/locker) "cxe" = ( -/obj/structure/table, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/gun/energy/kinetic_accelerator, -/obj/item/gun/energy/kinetic_accelerator, +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/delivery/white/hollow, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -31738,8 +31606,8 @@ /area/station/service/expedition) "cxf" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/mint, -/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/food/snacks/mint, +/obj/item/reagent_containers/drinks/bottle/cream, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, @@ -31808,9 +31676,6 @@ dir = 4; name = "Cargo Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ - dir = 4 - }, /obj/item/folder/yellow, /obj/item/pen, /obj/effect/turf_decal/delivery, @@ -31822,6 +31687,9 @@ /obj/structure/noticeboard{ pixel_y = 32 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mail_sorting{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/supply/sorting) "cxt" = ( @@ -31871,14 +31739,10 @@ /area/station/engineering/control) "cxJ" = ( /obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = -6 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 2 - }, /obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/recharger{ + pixel_y = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkblue" @@ -31980,7 +31844,6 @@ dir = 4; name = "RCD Storage" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) "cyf" = ( @@ -32065,6 +31928,7 @@ /obj/machinery/light/directional/west, /obj/effect/turf_decal/delivery/hollow, /obj/structure/closet/secure_closet/expedition, +/obj/item/pickaxe, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -32185,6 +32049,8 @@ /obj/item/flashlight/seclite, /obj/item/flashlight/seclite, /obj/item/flashlight/seclite, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkblue" @@ -32230,6 +32096,7 @@ /obj/structure/chair/stool{ dir = 8 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/transparent/glass/reinforced, /area/station/public/locker) "cyS" = ( @@ -32257,8 +32124,8 @@ /area/station/hallway/primary/fore) "cyU" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 4; pixel_x = -6 }, @@ -32394,9 +32261,8 @@ /area/station/engineering/control) "czs" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -32419,7 +32285,7 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) "czw" = ( @@ -32525,6 +32391,7 @@ /obj/structure/chair/comfy/brown{ dir = 4 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "czN" = ( @@ -32534,13 +32401,14 @@ /area/station/science/robotics/showroom) "czO" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "czP" = ( /obj/structure/chair/comfy/black{ dir = 8 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "czQ" = ( @@ -32576,6 +32444,7 @@ "czW" = ( /obj/effect/turf_decal/delivery/hollow, /obj/structure/closet/secure_closet/expedition, +/obj/item/pickaxe, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -32868,9 +32737,8 @@ /area/station/ai_monitored/storage/eva) "cBh" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -32914,6 +32782,7 @@ /obj/structure/chair/comfy/black{ dir = 4 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "cBq" = ( @@ -32938,6 +32807,7 @@ /obj/structure/chair/comfy/brown{ dir = 8 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "cBt" = ( @@ -32965,6 +32835,7 @@ /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/delivery/hollow, /obj/structure/closet/secure_closet/expedition, +/obj/item/pickaxe, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkblue" @@ -32972,10 +32843,8 @@ /area/station/service/expedition) "cBA" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Expedition Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/expedition, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -32983,6 +32852,7 @@ dir = 4 }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/command/expedition, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -33252,6 +33122,7 @@ /obj/structure/chair/comfy/brown{ dir = 1 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "cCP" = ( @@ -33262,6 +33133,7 @@ /obj/structure/chair/comfy/black{ dir = 1 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "cCR" = ( @@ -33287,7 +33159,10 @@ /area/station/science/robotics/showroom) "cCV" = ( /obj/structure/table, -/obj/machinery/recharger, +/obj/item/storage/firstaid/regular{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "darkblue" @@ -33307,9 +33182,8 @@ /area/station/service/expedition) "cCY" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -33382,6 +33256,7 @@ /obj/structure/chair/stool{ dir = 1 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/transparent/glass/reinforced, /area/station/public/locker) "cDo" = ( @@ -33605,11 +33480,10 @@ /area/station/medical/chemistry) "cEk" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Expedition Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/expedition, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/any/command/expedition, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -33631,6 +33505,7 @@ /area/station/ai_monitored/storage/eva) "cEt" = ( /obj/structure/chair/sofa/left, +/obj/effect/landmark/start/artist, /turf/simulated/floor/plasteel/dark, /area/station/public/locker) "cEv" = ( @@ -33668,8 +33543,7 @@ }, /obj/effect/turf_decal/delivery, /obj/machinery/door/window/classic/reversed, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/control) "cEI" = ( @@ -34073,16 +33947,9 @@ }, /area/station/security/processing) "cGX" = ( -/obj/machinery/power/treadmill{ - dir = 4; - id = "treadmill2" - }, -/obj/machinery/treadmill_monitor{ - pixel_x = 32; - id = "treadmill2" - }, /obj/effect/turf_decal/delivery/hollow, /obj/item/radio/intercom/directional/south, +/obj/structure/closet/masks, /turf/simulated/floor/plasteel, /area/station/public/fitness) "cGY" = ( @@ -34143,10 +34010,8 @@ /turf/simulated/floor/plating, /area/station/engineering/atmos/control) "cHi" = ( -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ d1 = 1; @@ -34155,6 +34020,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, /turf/simulated/floor/plasteel, /area/station/maintenance/port) "cHk" = ( @@ -34264,11 +34130,10 @@ }, /area/station/hallway/primary/central) "cHR" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plasteel/dark, /area/station/service/chapel) "cHY" = ( @@ -34359,9 +34224,9 @@ name = "escape pod 2" }, /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Escape Pod Hatch" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_2) @@ -34456,7 +34321,7 @@ }, /area/station/science/xenobiology) "cIP" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/equipmentstorage) @@ -34579,11 +34444,11 @@ /area/station/medical/virology/lab) "cJm" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 4; pixel_x = -6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 6 }, /obj/effect/decal/cleanable/dirt, @@ -34677,12 +34542,11 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "cJM" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/maintenance/electrical) "cJO" = ( @@ -35362,10 +35226,7 @@ /turf/simulated/floor/wood/fancy/oak, /area/station/legal/courtroom) "cMG" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -35382,6 +35243,7 @@ /obj/structure/chair/stool{ dir = 4 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "cMP" = ( @@ -35496,16 +35358,15 @@ /area/space/nearstation) "cNo" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) "cNq" = ( @@ -35517,9 +35378,6 @@ dir = 1; name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ - dir = 1 - }, /obj/structure/cable{ d1 = 2; d2 = 4; @@ -35530,6 +35388,9 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) "cNs" = ( @@ -35541,9 +35402,6 @@ dir = 1; name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ - dir = 1 - }, /obj/structure/cable{ d1 = 2; d2 = 4; @@ -35554,6 +35412,9 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) "cNt" = ( @@ -35565,9 +35426,6 @@ dir = 1; name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ - dir = 1 - }, /obj/structure/cable{ d1 = 2; d2 = 4; @@ -35578,6 +35436,9 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) "cNy" = ( @@ -35719,13 +35580,12 @@ }, /area/station/public/fitness) "cOv" = ( -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/bathroom{ id = "toilet2"; - id_tag = "toilet2"; - name = "Toilet" + id_tag = "toilet2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/public/toilet) "cOw" = ( @@ -35806,13 +35666,12 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/electrical) "cOH" = ( -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, /turf/simulated/floor/plasteel, /area/station/maintenance/electrical) "cOI" = ( @@ -36251,13 +36110,13 @@ /obj/machinery/door/window/reinforced/normal{ name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /obj/effect/turf_decal/delivery, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) "cQI" = ( @@ -36376,9 +36235,9 @@ "cRc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - id_tag = "KPPNorth"; - name = "Public Access" + id_tag = "KPPNorth" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "EscapeLockdown"; name = "Escape Shuttle Lockdown" @@ -36541,9 +36400,6 @@ dir = 8; name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 8 - }, /obj/machinery/door/poddoor/preopen{ id_tag = "xenosecure"; name = "Secure Creature Cell" @@ -36558,6 +36414,9 @@ d2 = 4; icon_state = "2-4" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 8 + }, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) "cRQ" = ( @@ -36992,15 +36851,15 @@ dir = 4; name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 4 - }, /obj/effect/turf_decal/delivery, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 4 + }, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) "cTv" = ( @@ -37039,11 +36898,10 @@ /area/station/science/xenobiology) "cTC" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/science/research) "cTD" = ( @@ -37059,7 +36917,6 @@ /obj/machinery/door/window/classic/normal{ name = "Research Lab Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research, /obj/machinery/door/window/classic/normal{ dir = 1 }, @@ -37074,9 +36931,7 @@ pixel_x = -6; pixel_y = 3 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 1 - }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research, /turf/simulated/floor/plasteel/white, /area/station/science/rnd) "cTG" = ( @@ -37284,11 +37139,10 @@ /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_2) "cUS" = ( -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/equipment, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/any/engineering/equipment, /turf/simulated/floor/plasteel, /area/station/maintenance/electrical) "cUT" = ( @@ -37836,7 +37690,6 @@ /obj/machinery/door/window/reinforced/normal{ name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -37847,6 +37700,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) "cWF" = ( @@ -37857,7 +37711,6 @@ /obj/machinery/door/window/reinforced/normal{ name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -37868,6 +37721,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) "cWG" = ( @@ -37878,7 +37732,6 @@ /obj/machinery/door/window/reinforced/normal{ name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -37889,6 +37742,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) "cWH" = ( @@ -38314,9 +38168,8 @@ /turf/simulated/wall, /area/station/medical/psych) "cZl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Gambling Den" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /turf/simulated/floor/plasteel, /area/station/maintenance/abandonedbar) @@ -38343,13 +38196,12 @@ /area/station/maintenance/electrical) "cZr" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/science/research) "cZs" = ( @@ -38387,12 +38239,9 @@ dir = 4; name = "Research Lab Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 4 - }, /obj/effect/turf_decal/delivery, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 8 + dir = 4 }, /turf/simulated/floor/plasteel/white, /area/station/science/rnd) @@ -38604,10 +38453,8 @@ /area/station/maintenance/starboardsolar) "daH" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Research and Development" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -38622,6 +38469,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel/white, /area/station/science/rnd) "daJ" = ( @@ -38744,6 +38592,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/virology_maint) "dbp" = ( @@ -38824,9 +38673,6 @@ dir = 8; name = "Research Lab Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 8 - }, /obj/machinery/door/window/classic/normal{ dir = 4 }, @@ -38838,7 +38684,7 @@ }, /obj/effect/turf_decal/delivery, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ - dir = 4 + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "purplefull" @@ -39030,7 +38876,7 @@ dir = 4; name = "Evidence" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 4 }, /turf/simulated/floor/plasteel{ @@ -39135,9 +38981,8 @@ /area/station/science/rnd) "ddk" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "neutralcorner" }, @@ -39180,9 +39025,9 @@ /obj/machinery/door/airlock/virology{ autoclose = 0; id_tag = "virolab_door_int"; - locked = 1; - name = "Virology Lab Internal Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/south{ autolink_id = "virolab_btn_int"; name = "Virology Lab Access Button"; @@ -39204,7 +39049,6 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/medical/virology, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -39818,6 +39662,7 @@ /area/station/medical/virology/lab) "dhb" = ( /obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/locked, /turf/simulated/floor/plating, /area/station/maintenance/fore) @@ -39938,10 +39783,8 @@ /area/station/command/office/rd) "dhS" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Xenobiology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -39954,6 +39797,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) "dia" = ( @@ -40189,9 +40033,9 @@ /obj/machinery/door/airlock/external{ hackProof = 1; id_tag = "emergency_home"; - locked = 1; - name = "Escape Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit/maintenance) "diY" = ( @@ -40223,6 +40067,7 @@ /area/station/maintenance/port2) "djc" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -40269,6 +40114,7 @@ /area/station/maintenance/medmaint) "dji" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -40380,7 +40226,7 @@ /area/station/maintenance/apmaint) "dka" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 4; pixel_x = -6 }, @@ -40434,9 +40280,8 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "dki" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A" - }, +/obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/item/grown/bananapeel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -40587,10 +40432,9 @@ "dkU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - id_tag = "rdofficedoor"; - name = "Research Director's Office" + id_tag = "rdofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -40605,6 +40449,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel/white, /area/station/command/office/rd) "dkV" = ( @@ -40695,13 +40541,6 @@ icon_state = "darkblue" }, /area/station/medical/surgery/primary) -"dlE" = ( -/obj/effect/turf_decal/delivery/partial, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "browncorner" - }, -/area/station/hallway/primary/central/north) "dlJ" = ( /obj/effect/decal/cleanable/fungus, /turf/simulated/wall, @@ -40712,6 +40551,7 @@ /area/station/maintenance/abandonedbar) "dlL" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -40841,8 +40681,6 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "dmA" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; @@ -40952,6 +40790,7 @@ /area/station/science/misc_lab) "dnh" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "Surgery1" }, @@ -40969,7 +40808,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/surgery, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -41079,9 +40917,8 @@ /area/station/hallway/primary/aft) "dnF" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/science/robotics, /turf/simulated/floor/plasteel/white, /area/station/science/robotics/chargebay) @@ -41341,13 +41178,12 @@ /area/station/hallway/primary/aft) "dpc" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, /turf/simulated/floor/plasteel/white, /area/station/science/robotics/chargebay) "dpf" = ( @@ -41748,8 +41584,8 @@ /area/station/maintenance/port) "dro" = ( /obj/machinery/door/airlock/virology/glass, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -41769,19 +41605,14 @@ }, /area/station/security/processing) "drs" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/port) "drv" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Quarters" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -41789,6 +41620,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, /turf/simulated/floor/plasteel/white, /area/station/command/office/rd) "drz" = ( @@ -41955,9 +41787,7 @@ /area/station/medical/cryo) "drZ" = ( /obj/structure/table/reinforced, -/obj/item/camera{ - pixel_y = 2 - }, +/obj/item/camera, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -42087,7 +41917,7 @@ /area/station/supply/miningdock) "dsI" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -42185,6 +42015,7 @@ /area/station/medical/virology/lab) "dsR" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/station/maintenance/aft) @@ -42370,10 +42201,7 @@ }, /area/station/science/research) "dtU" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plating, /area/station/maintenance/port) "dtY" = ( @@ -42552,11 +42380,11 @@ /area/station/engineering/engine/supermatter) "duP" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/armory, /obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "WardenD" }, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, /turf/simulated/floor/plasteel/dark, /area/station/security/warden) "duQ" = ( @@ -42603,10 +42431,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/port2) "duZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Robotics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -42616,6 +42442,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "dvc" = ( @@ -42737,9 +42564,9 @@ /area/station/maintenance/starboard2) "dvM" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -42802,9 +42629,6 @@ dir = 8; name = "Robotics Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ - dir = 8 - }, /obj/machinery/door/window/classic/normal{ dir = 4 }, @@ -42813,6 +42637,9 @@ name = "Robotics Desk Shutters" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics{ + dir = 8 + }, /turf/simulated/floor/plasteel, /area/station/science/robotics) "dwq" = ( @@ -42930,23 +42757,21 @@ /turf/simulated/floor/plasteel/dark, /area/station/science/server) "dxv" = ( -/obj/machinery/door/airlock/command{ - name = "Server Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, /turf/simulated/floor/plasteel/dark, /area/station/science/server) "dxB" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) "dxD" = ( @@ -42976,6 +42801,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, +/obj/effect/landmark/start/bath, /turf/simulated/floor/plasteel{ icon_state = "neutral" }, @@ -43000,10 +42826,8 @@ /area/station/science/server) "dyJ" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, /obj/structure/cable{ d1 = 1; @@ -43015,6 +42839,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/mapping_helpers/airlock/access/any/science/rd, /turf/simulated/floor/plasteel/dark, /area/station/science/server) "dyL" = ( @@ -43068,9 +42893,8 @@ opacity = 1 }, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/access/any/science/robotics, -/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, /obj/machinery/door/window/classic/reversed, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/robotics, /turf/simulated/floor/plasteel, /area/station/science/robotics) "dyR" = ( @@ -43081,14 +42905,6 @@ /obj/effect/landmark/start/roboticist, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) -"dyU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Auxiliary Storage" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel, -/area/station/maintenance/fore) "dzb" = ( /obj/machinery/light/small/directional/north, /turf/simulated/floor/plating, @@ -43181,7 +42997,6 @@ pixel_x = -4; pixel_y = 3 }, -/obj/effect/mapping_helpers/airlock/access/any/command/eva, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) "dzS" = ( @@ -43422,6 +43237,7 @@ /area/station/hallway/primary/aft) "dBm" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" @@ -43433,13 +43249,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/aft) "dBo" = ( @@ -43921,8 +43736,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel/dark, /area/station/security/prison/cell_block/A) @@ -43979,9 +43792,8 @@ /area/station/maintenance/apmaint) "dEl" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -43991,9 +43803,8 @@ /area/station/hallway/primary/aft) "dEm" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/hallway/primary/aft) @@ -44742,6 +44553,7 @@ /area/station/maintenance/apmaint) "dIG" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -44752,7 +44564,6 @@ /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "dIH" = ( @@ -44771,9 +44582,8 @@ d2 = 4; icon_state = "1-4" }, -/obj/machinery/door/airlock/command/glass{ - name = "Customs Desk" - }, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ icon_state = "bluefull" @@ -44912,9 +44722,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/public{ - name = "Shower" - }, +/obj/machinery/door/airlock/public, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/freezer, /area/station/public/pool) "dJE" = ( @@ -45114,10 +44923,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "dKK" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel Morgue" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) "dKL" = ( @@ -45126,9 +44934,9 @@ "dKO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Chapel" + dir = 2 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -45147,19 +44955,17 @@ /obj/machinery/door/airlock/external{ hackProof = 1; id_tag = "emergency_home"; - locked = 1; - name = "Escape Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "dKY" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -45167,6 +44973,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/apmaint) "dKZ" = ( @@ -45274,7 +45081,7 @@ "dMg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/friedegg, +/obj/item/food/snacks/friedegg, /turf/simulated/floor/wood/oak, /area/station/maintenance/starboard) "dMh" = ( @@ -45289,17 +45096,21 @@ /area/station/service/chapel/office) "dMi" = ( /obj/structure/table/reinforced, -/obj/machinery/door/window/reinforced/normal, +/obj/machinery/door/window/reinforced/normal{ + dir = 1 + }, /obj/machinery/door/poddoor/shutters{ dir = 2; id_tag = "Secure Armory"; name = "Secure Armory Shutters" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general, /obj/machinery/door/poddoor/preopen{ id_tag = "ArmoryLock"; name = "Armory Lockdown" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ + dir = 1 + }, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) "dMj" = ( @@ -45392,9 +45203,8 @@ /area/station/maintenance/old_kitchen) "dMP" = ( /obj/machinery/door/airlock/security/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/effect/mapping_helpers/airlock/autoname, +/obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -45403,6 +45213,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel/dark, /area/station/security/storage) "dMQ" = ( @@ -45520,11 +45331,6 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -45657,7 +45463,7 @@ }, /area/station/hallway/secondary/exit) "dOz" = ( -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plasteel{ icon_state = "whitepurple" }, @@ -45678,6 +45484,7 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = "MedbayFoyerPort" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, @@ -45701,7 +45508,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, @@ -45849,9 +45655,9 @@ "dPu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - id_tag = "KPPNorth"; - name = "Public Access" + id_tag = "KPPNorth" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -46107,10 +45913,8 @@ /area/station/maintenance/apmaint) "dQg" = ( /obj/structure/barricade/wooden, -/obj/machinery/door/airlock/command/glass{ - name = "Auxiliary E.V.A." - }, -/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -46155,10 +45959,8 @@ /area/station/service/chapel) "dQn" = ( /obj/structure/barricade/wooden, -/obj/machinery/door/airlock/command/glass{ - name = "Auxiliary E.V.A." - }, -/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) @@ -46244,7 +46046,7 @@ /obj/structure/table/reinforced, /obj/item/stack/packageWrap, /obj/item/hand_labeler, -/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) @@ -46321,10 +46123,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "dRc" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Port Solar Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/sign/electricshock{ pixel_y = -32 }, @@ -46336,6 +46136,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/maintenance/portsolar) "dRj" = ( @@ -46408,7 +46209,7 @@ /obj/item/clothing/gloves/color/black, /obj/item/clothing/suit/storage/hazardvest, /obj/item/clothing/mask/breath, -/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee, /obj/machinery/newscaster/directional/east, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/apmaint) @@ -46599,7 +46400,6 @@ dir = 1; name = "Anti-Theft Shield" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ dir = 1 }, @@ -46686,13 +46486,6 @@ /obj/effect/turf_decal/delivery, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) -"dSr" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, -/turf/simulated/floor/plasteel/dark, -/area/station/service/chapel/office) "dSs" = ( /turf/simulated/floor/plasteel{ icon_state = "green" @@ -46875,7 +46668,7 @@ /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency, /obj/item/wrench, -/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/drinks/coffee, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/apmaint) "dTg" = ( @@ -46897,8 +46690,9 @@ /area/station/maintenance/apmaint) "dTh" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "dTj" = ( @@ -47128,7 +46922,7 @@ /area/station/service/chapel/office) "dUf" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/item/reagent_containers/drinks/bottle/holywater, /turf/simulated/floor/carpet, /area/station/service/chapel/office) "dUg" = ( @@ -47202,15 +46996,14 @@ }, /area/station/hallway/secondary/exit) "dUu" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, @@ -47338,8 +47131,8 @@ /area/station/service/chapel/office) "dUK" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, -/obj/item/reagent_containers/food/snacks/grown/poppy/lily{ +/obj/item/food/snacks/grown/poppy/geranium, +/obj/item/food/snacks/grown/poppy/lily{ pixel_x = 4; pixel_y = 5 }, @@ -47465,6 +47258,7 @@ /area/station/service/library) "dVj" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -47477,7 +47271,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/hallway/primary/aft) "dVn" = ( @@ -47682,15 +47475,15 @@ dir = 1; name = "Creature Pen" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ - dir = 1 - }, /obj/effect/turf_decal/delivery, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/xenobio{ + dir = 1 + }, /turf/simulated/floor/plasteel/white, /area/station/science/xenobiology) "dWr" = ( @@ -47779,10 +47572,8 @@ /area/station/hallway/secondary/exit) "dWC" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = null - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -47797,7 +47588,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "dWI" = ( @@ -47839,20 +47630,19 @@ }, /area/station/hallway/primary/central/se) "dXa" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel/dark, /area/station/maintenance/apmaint) "dXj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - id_tag = "KPPNorth"; - name = "Public Access" + id_tag = "KPPNorth" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "EscapeLockdown"; name = "Escape Shuttle Lockdown" @@ -47886,10 +47676,7 @@ /turf/simulated/wall/r_wall, /area/station/hallway/secondary/exit) "dXo" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -47938,10 +47725,7 @@ /turf/simulated/floor/plasteel, /area/station/science/robotics) "dXs" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutral" @@ -48563,9 +48347,9 @@ "ebA" = ( /obj/machinery/door/airlock/external{ id_tag = "trade_dock"; - locked = 1; - name = "Arrivals External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "ebC" = ( @@ -48933,6 +48717,7 @@ /obj/structure/chair/comfy/brown{ dir = 1 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -48964,6 +48749,7 @@ /area/station/maintenance/port) "ehj" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -48973,13 +48759,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/medical/paramedic, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/station/medical/paramedic) "ehm" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 8 }, /obj/effect/decal/cleanable/dirt, @@ -49069,6 +48854,13 @@ /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/wood/oak, /area/station/maintenance/library) +"eiG" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/carpet/orange, +/area/station/service/theatre) "eiL" = ( /obj/effect/spawner/window/reinforced/grilled, /obj/machinery/door/poddoor/preopen{ @@ -49173,9 +48965,8 @@ }, /area/station/maintenance/starboard2) "elb" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/port) "elg" = ( @@ -49341,7 +49132,6 @@ /area/station/maintenance/fore2) "enC" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -49352,6 +49142,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel/dark, /area/station/security/range) "enE" = ( @@ -49421,7 +49212,7 @@ /area/station/legal/courtroom) "eoB" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -4; pixel_y = 2 }, @@ -49439,9 +49230,8 @@ /turf/simulated/wall/r_wall, /area/station/security/permabrig) "epE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Forensics Morgue" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/fsmaint) @@ -49569,6 +49359,7 @@ /area/station/science/test_chamber) "erQ" = ( /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" @@ -49614,7 +49405,7 @@ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "esw" = ( /obj/machinery/access_button{ autolink_id = "enginen_btn_ext"; @@ -49632,11 +49423,11 @@ /area/station/engineering/control) "esC" = ( /obj/machinery/door/airlock{ - name = "Bedroom"; id_tag = "PrivateRoom2" }, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/public/vacant_store) "esG" = ( @@ -49722,9 +49513,9 @@ }, /obj/machinery/door/airlock/security/glass{ id_tag = "perma_door_int"; - locked = 1; - name = "Prison Wing" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/south{ autolink_id = "perma_btn_int"; name = "Prison Wing Access Button"; @@ -49732,10 +49523,9 @@ pixel_y = 0; pixel_x = 24 }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -49760,6 +49550,7 @@ /area/station/hallway/secondary/bridge) "euA" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/station/maintenance/fore) @@ -49974,17 +49765,17 @@ /area/station/maintenance/fore) "exJ" = ( /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/shutters{ dir = 2; id_tag = "Secure Armory"; name = "Secure Armory Shutters" }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "ArmoryLock"; name = "Armory Lockdown" }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) "exS" = ( @@ -50220,10 +50011,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/plating, /area/station/maintenance/fore) "eBE" = ( @@ -50303,6 +50095,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -50614,7 +50407,7 @@ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "eJJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -50630,7 +50423,7 @@ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "eJO" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -50646,7 +50439,7 @@ /area/station/hallway/primary/central/east) "eJW" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/redbeet, +/obj/item/food/snacks/grown/redbeet, /obj/item/clothing/head/ushanka, /turf/simulated/floor/plating, /area/station/maintenance/old_kitchen) @@ -50718,6 +50511,7 @@ /obj/structure/chair/wood{ dir = 4 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/old_kitchen) "eKD" = ( @@ -50911,7 +50705,7 @@ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "eNt" = ( /turf/simulated/wall, /area/station/maintenance/fsmaint) @@ -51096,7 +50890,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "eQc" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -51139,9 +50933,9 @@ /area/station/security/permabrig) "eQv" = ( /obj/machinery/door/airlock{ - name = "Toilet"; id_tag = "DormToilet4" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -51186,8 +50980,8 @@ /area/station/hallway/secondary/entry) "eQP" = ( /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ - pixel_y = 6 +/obj/item/storage/surgical_tray{ + pixel_y = 8 }, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" @@ -51220,6 +51014,14 @@ icon_state = "neutralfull" }, /area/station/engineering/tech_storage) +"eRj" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel{ + icon_state = "cmo" + }, +/area/station/security/permabrig) "eRl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -51428,8 +51230,8 @@ /area/station/medical/medbay2) "eUZ" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/random_drink, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/bottle/random_drink, +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 5 }, /obj/machinery/light/small/directional/north, @@ -51441,6 +51243,7 @@ /area/station/maintenance/dormitory_maintenance) "eVl" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, @@ -51451,6 +51254,7 @@ /area/station/engineering/hardsuitstorage) "eVA" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -51479,7 +51283,7 @@ /obj/machinery/door/airlock/vault{ locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -51491,12 +51295,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/vault, /turf/simulated/floor/plasteel/dark, /area/station/command/vault) "eXa" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 }, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/wood/fancy/cherry, /area/station/public/vacant_store) "eXm" = ( @@ -51508,6 +51314,7 @@ "eXw" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" }, @@ -51601,13 +51408,13 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/glass{ - name = "Service Hall" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/service/theatre, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -51629,6 +51436,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/north, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -51723,13 +51531,13 @@ }, /area/station/service/bar) "fby" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/court, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "court" }, /obj/machinery/door/airlock/lawyer/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/court, /turf/simulated/floor/carpet/black, /area/station/legal/courtroom) "fbB" = ( @@ -51801,14 +51609,14 @@ /area/station/public/fitness) "fdo" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/bottleofbanana{ +/obj/item/reagent_containers/drinks/bottle/bottleofbanana{ pixel_y = 16 }, -/obj/item/reagent_containers/food/drinks/bottle/milk{ +/obj/item/reagent_containers/drinks/bottle/milk{ pixel_y = 2; pixel_x = -6 }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ +/obj/item/reagent_containers/drinks/bottle/orangejuice{ pixel_y = 4; pixel_x = 6 }, @@ -52070,10 +51878,7 @@ }, /area/station/public/vacant_store) "fhI" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, /obj/item/shard, /turf/simulated/floor/plating, @@ -52116,6 +51921,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/carpet, /area/station/service/library) +"fiz" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/carpet/orange, +/area/station/service/theatre) "fiC" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Surgery2" @@ -52157,9 +51969,9 @@ "fiK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - id_tag = "KPPSouth"; - name = "Public Access" + id_tag = "KPPSouth" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52225,12 +52037,12 @@ /area/station/hallway/secondary/exit) "fkv" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/armory, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "ArmoryLock"; name = "Armory Lockdown" }, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) "fkz" = ( @@ -52346,16 +52158,12 @@ /area/station/maintenance/dormitory_maintenance) "fmc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plasteel, /area/station/maintenance/dormitory_maintenance) "fmg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Forensics Morgue" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -52367,7 +52175,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/security/forensics, +/obj/effect/mapping_helpers/airlock/access/any/security/forensics, /turf/simulated/floor/plating, /area/station/security/detective) "fmm" = ( @@ -52577,12 +52385,13 @@ /area/station/medical/surgery/secondary) "fpv" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) "fqb" = ( @@ -52781,10 +52590,8 @@ }, /area/station/engineering/mechanic) "ftB" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Transit Tube" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/minisat, +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "transitlock"; name = "Transit Tube Lockdown" @@ -52802,8 +52609,9 @@ icon_state = "1-4" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/minisat, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "ftD" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -52827,11 +52635,9 @@ "fuc" = ( /obj/machinery/door/airlock/external{ id_tag = "apmaint2_door_int"; - locked = 1; - name = "West Maintenance External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -52839,6 +52645,7 @@ autolink_id = "apmaint2_btn_int"; name = "interior access button" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/port) "fun" = ( @@ -53260,10 +53067,7 @@ }, /area/station/hallway/primary/central/ne) "fAW" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -53420,8 +53224,8 @@ /area/station/maintenance/starboard) "fDY" = ( /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ - pixel_y = 6 +/obj/item/storage/surgical_tray{ + pixel_y = 8 }, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" @@ -53478,6 +53282,7 @@ "fFE" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -53593,8 +53398,14 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "fGU" = ( /obj/structure/cable{ d1 = 4; @@ -54317,6 +54128,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood/fancy, /area/station/service/theatre) "fSx" = ( @@ -54341,11 +54153,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -54436,6 +54243,7 @@ dir = 8 }, /obj/effect/decal/cleanable/ants, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/old_kitchen) "fTR" = ( @@ -54461,6 +54269,7 @@ "fTX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -54603,12 +54412,12 @@ /turf/simulated/wall, /area/station/maintenance/electrical) "fWF" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ id_tag = "BrigRight" }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -54705,6 +54514,7 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "fYd" = ( @@ -55013,7 +54823,6 @@ /turf/simulated/floor/wood/oak, /area/station/command/office/hop) "gcZ" = ( -/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55025,14 +54834,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/welded, /obj/machinery/door/airlock/psych, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /turf/simulated/floor/wood/oak, /area/station/medical/patients_rooms) "gdK" = ( @@ -55065,6 +54875,7 @@ /area/station/science/test_chamber) "geW" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -55091,10 +54902,8 @@ /area/station/maintenance/starboard) "gfN" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Desk" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55106,6 +54915,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) "gfY" = ( @@ -55479,7 +55289,7 @@ /area/station/engineering/controlroom) "glD" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/effect/decal/cleanable/dirt, /obj/item/gun/projectile/revolver/russian{ pixel_y = 12 @@ -55672,7 +55482,7 @@ /area/station/medical/virology) "gpn" = ( /obj/effect/spawner/window/reinforced/plasma/grilled, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/station/science/toxins/mixing) "gpy" = ( @@ -55741,6 +55551,13 @@ icon_state = "neutralcorner" }, /area/station/public/locker) +"gqV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/dealer, +/turf/simulated/floor/wood/fancy/cherry, +/area/station/public/vacant_store) "grg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55774,8 +55591,8 @@ /area/station/security/checkpoint/south) "grj" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_y = 4; pixel_x = -6 }, @@ -55964,7 +55781,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore2) "gtR" = ( -/obj/item/seeds/coffee, +/obj/machinery/economy/vending/coffee, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurplecorner" @@ -56036,10 +55853,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plating, /area/station/maintenance/fore) "gvn" = ( @@ -56244,6 +56058,7 @@ "gyL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -56253,15 +56068,16 @@ "gyY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - id_tag = "pub_room"; - name = "Public Meeting Room" + id_tag = "pub_room" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "gzd" = ( @@ -56313,8 +56129,8 @@ /area/station/service/theatre) "gAT" = ( /obj/effect/spawner/random_spawners/blood_maybe, -/obj/item/reagent_containers/food/snacks/meat/human, -/obj/item/reagent_containers/food/snacks/meat/human, +/obj/item/food/snacks/meat/human, +/obj/item/food/snacks/meat/human, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -56426,9 +56242,6 @@ pixel_x = -3; pixel_y = 3 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ - dir = 8 - }, /obj/machinery/camera{ c_tag = "Brig Secure Armory East"; dir = 8 @@ -56437,6 +56250,9 @@ pixel_x = -3; pixel_y = 3 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ + dir = 8 + }, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) "gCs" = ( @@ -56481,6 +56297,10 @@ /obj/machinery/door/window/classic/reversed{ name = "Toxins Launcher" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox{ + dir = 1 + }, /turf/simulated/floor/plating, /area/station/science/toxins/launch) "gCT" = ( @@ -56538,10 +56358,8 @@ /area/station/maintenance/starboard2) "gEj" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -56563,6 +56381,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -56677,10 +56496,7 @@ }, /area/station/maintenance/fsmaint) "gGM" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/fore) @@ -56932,9 +56748,6 @@ dir = 4; name = "Medbay Reception" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ - dir = 4 - }, /obj/effect/landmark/damageturf, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -56960,10 +56773,9 @@ "gLy" = ( /obj/machinery/door/airlock/external{ id_tag = "apsolar_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -56977,6 +56789,7 @@ name = "interior access button"; req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "gLB" = ( @@ -57117,7 +56930,6 @@ /area/station/science/misc_lab) "gNh" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/armory, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -57134,14 +56946,14 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) "gNi" = ( -/obj/machinery/door/airlock/research{ - name = "Abandoned Equipment Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "gNj" = ( @@ -57194,7 +57006,7 @@ /area/station/medical/virology) "gOz" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/disk, +/obj/item/food/snacks/disk, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkbluecorners" @@ -57307,10 +57119,7 @@ /turf/simulated/floor/carpet/royalblack, /area/station/legal/magistrate) "gQm" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/shard, /obj/item/shard{ icon_state = "small" @@ -57455,10 +57264,7 @@ }, /area/station/maintenance/fsmaint) "gSY" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, /obj/item/shard, /turf/simulated/floor/plating, @@ -57533,7 +57339,9 @@ }, /area/station/engineering/control) "gTF" = ( -/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + volume = 200 + }, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) @@ -57565,10 +57373,7 @@ /turf/simulated/wall, /area/station/supply/abandoned_boxroom) "gUg" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/structure/chair/stool/bar{ dir = 8 }, @@ -57594,6 +57399,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/damageturf, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/old_kitchen) "gUx" = ( @@ -57620,7 +57426,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "gVw" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -57628,9 +57434,9 @@ /area/station/medical/chemistry) "gVD" = ( /obj/machinery/door/airlock{ - name = "Toilet"; id_tag = "DormToilet2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -57944,7 +57750,7 @@ /obj/item/toy/figure/crew/captain, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/lighter/zippo/nt_rep, -/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, +/obj/item/reagent_containers/drinks/bottle/absinthe/premium, /turf/simulated/floor/carpet/black, /area/station/command/office/captain/bedroom) "hbH" = ( @@ -58047,8 +57853,6 @@ name = "Dungeon"; req_access = list(63) }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -58056,6 +57860,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel/dark, /area/station/security/interrogation) "hcY" = ( @@ -58245,11 +58050,11 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ id_tag = "mining_home"; - locked = 1; - name = "Mining Dock Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel, /area/station/supply/miningdock) "hgg" = ( @@ -58257,14 +58062,11 @@ /obj/structure/transit_tube/station{ dir = 1 }, -/obj/structure/transit_tube_pod{ - dir = 8 - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "hgs" = ( /obj/structure/cable{ d1 = 1; @@ -58303,16 +58105,14 @@ }, /area/station/medical/virology/lab) "hhp" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/brig, /obj/structure/cable{ d1 = 1; d2 = 8; @@ -58328,6 +58128,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, @@ -58613,6 +58414,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/carpet, /area/station/security/permabrig) "hlS" = ( @@ -58645,8 +58447,8 @@ "hmU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -58760,6 +58562,7 @@ /obj/machinery/door/airlock/command/cmo/glass{ id_tag = "CMO" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "CMO" }, @@ -58789,7 +58592,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/cmo, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -58800,10 +58603,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/medmaint) "hqq" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel Morgue" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -58811,10 +58612,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/service/crematorium, /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) "hqG" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -58840,9 +58643,9 @@ /area/station/supply/storage) "hqM" = ( /obj/machinery/door/airlock{ - name = "Bedroom"; id_tag = "PrivateRoom2" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -58851,7 +58654,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/wood/fancy/oak, /area/station/public/sleep_male) "hqR" = ( @@ -58898,6 +58700,7 @@ /area/station/maintenance/medmaint) "hrU" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/holosign/surgery{ id = "Surgery2" }, @@ -58917,7 +58720,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/surgery, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -59111,6 +58913,16 @@ }, /turf/simulated/floor/plasteel/white, /area/station/science/research) +"hvN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/landmark/start/bath, +/turf/simulated/floor/plasteel/freezer, +/area/station/public/pool) "hvS" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; @@ -59229,16 +59041,15 @@ }, /area/station/science/misc_lab) "hxF" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, /turf/simulated/floor/plasteel/dark, /area/station/service/chapel/office) "hxL" = ( @@ -59359,7 +59170,7 @@ /area/station/engineering/break_room) "hzw" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/disk{ +/obj/item/food/snacks/disk{ pixel_x = -6 }, /turf/simulated/floor/plasteel{ @@ -59554,17 +59365,15 @@ /area/station/science/research) "hCM" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/science/research) "hCZ" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/wood/parquet, /area/station/service/library) "hDf" = ( @@ -60004,9 +59813,6 @@ /obj/machinery/door/window{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/chapel_office{ - dir = 1 - }, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "hJe" = ( @@ -60029,17 +59835,17 @@ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit/maintenance) "hJo" = ( @@ -60062,11 +59868,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull" }, @@ -60106,6 +59907,7 @@ "hKc" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -60362,10 +60164,7 @@ }, /area/station/security/permabrig) "hNR" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/shard{ icon_state = "small"; pixel_x = -8; @@ -60565,10 +60364,10 @@ }, /area/station/bridge/checkpoint/south) "hQJ" = ( -/obj/effect/mapping_helpers/airlock/access/any/command/magistrate, /obj/machinery/door/airlock/command, -/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/magistrate, /turf/simulated/floor/wood/oak, /area/station/legal/magistrate) "hQV" = ( @@ -60799,6 +60598,7 @@ /obj/structure/chair/sofa/right{ dir = 1 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/plasteel/dark, /area/station/public/locker) "hVo" = ( @@ -60855,7 +60655,7 @@ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "hVT" = ( /obj/effect/turf_decal/stripes/white/line{ color = "lightblue" @@ -60880,10 +60680,7 @@ /area/station/medical/morgue) "hWh" = ( /obj/machinery/light/small/directional/north, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, @@ -61125,13 +60922,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/public/fitness) "ibG" = ( @@ -61300,6 +61097,7 @@ /area/station/engineering/control) "ieo" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -61318,7 +61116,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -61362,6 +61159,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/tox{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "iex" = ( @@ -61397,7 +61197,7 @@ pixel_x = -4; pixel_y = -4 }, -/obj/item/reagent_containers/food/drinks/flask/detflask, +/obj/item/reagent_containers/drinks/flask/detflask, /obj/item/radio/intercom/directional/west, /turf/simulated/floor/carpet, /area/station/security/detective) @@ -61411,10 +61211,7 @@ }, /area/station/security/permabrig) "ieW" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, /obj/item/shard{ icon_state = "small" @@ -61510,6 +61307,7 @@ /area/station/maintenance/fore) "igB" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -61518,7 +61316,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) "igI" = ( @@ -61752,8 +61550,8 @@ /area/station/ai_monitored/storage/eva) "ikQ" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 7 }, /obj/effect/decal/cleanable/dirt, @@ -61995,6 +61793,7 @@ /area/station/supply/storage) "iol" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -62011,7 +61810,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "cmo" }, @@ -62092,9 +61890,8 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint" - }, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -62105,7 +61902,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/simulated/floor/plasteel, /area/station/maintenance/dormitory_maintenance) "ipy" = ( @@ -62205,8 +62001,6 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/mapping_helpers/airlock/access/any/security/iaa, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -62224,16 +62018,18 @@ icon_state = "2-8" }, /obj/machinery/door/airlock/lawyer/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "iaa" }, +/obj/effect/mapping_helpers/airlock/access/any/security/iaa, /turf/simulated/floor/wood/fancy/oak, /area/station/legal/lawoffice) "iqN" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -62241,6 +62037,7 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/service/theatre) "iqR" = ( @@ -62473,6 +62270,7 @@ /area/station/service/bar/atrium) "itO" = ( /obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -62502,9 +62300,8 @@ /area/station/maintenance/starboard) "iud" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering" - }, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62529,7 +62326,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -62582,6 +62379,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) +"iuP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel{ + icon_state = "bar" + }, +/area/station/security/permabrig) "iuU" = ( /obj/structure/chair{ dir = 4 @@ -62644,9 +62448,9 @@ /area/station/security/podpilot) "iwz" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -62889,9 +62693,9 @@ /area/station/hallway/primary/central/north) "iBn" = ( /obj/machinery/door/airlock/freezer, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/effect/mapping_helpers/airlock/welded, -/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, /turf/simulated/floor/plating, /area/station/maintenance/dormitory_maintenance) "iBr" = ( @@ -62937,7 +62741,9 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + volume = 200 + }, /obj/structure/window/reinforced{ dir = 8 }, @@ -63140,6 +62946,7 @@ /area/station/service/bar/atrium) "iFR" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -63151,12 +62958,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/hallway/primary/aft) "iGm" = ( @@ -63473,9 +63278,9 @@ /area/station/security/detective) "iLJ" = ( /obj/machinery/door/airlock{ - name = "Bedroom"; id_tag = "PrivateRoom1" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -63484,7 +63289,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/wood/fancy, /area/station/public/sleep_female) "iMa" = ( @@ -63577,6 +63381,7 @@ /obj/structure/chair/sofa/right{ dir = 1 }, +/obj/effect/landmark/start/vip, /turf/simulated/floor/plasteel/dark, /area/station/service/theatre) "iNL" = ( @@ -63648,6 +63453,7 @@ "iOx" = ( /obj/machinery/hologram/holopad, /obj/effect/spawner/xmastree, +/obj/effect/landmark/start/artist, /turf/simulated/floor/wood/fancy, /area/station/service/theatre) "iOy" = ( @@ -63702,12 +63508,13 @@ /area/station/medical/medbay) "iPE" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/port) "iPQ" = ( @@ -63854,6 +63661,7 @@ /area/station/maintenance/medmaint) "iRO" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -63873,7 +63681,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -63883,7 +63690,7 @@ /area/station/maintenance/medmaint) "iSe" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ +/obj/item/reagent_containers/drinks/bottle/vodka{ pixel_y = 10 }, /obj/effect/decal/cleanable/dirt, @@ -64229,10 +64036,9 @@ /obj/machinery/door/airlock/research/glass{ autoclose = 0; id_tag = "tox_airlock_exterior"; - locked = 1; - name = "Xenobiology Kill Room" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 2; d2 = 8; @@ -64243,6 +64049,7 @@ d2 = 4; icon_state = "2-4" }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/simulated/floor/plasteel/dark, /area/station/science/xenobiology) "iYd" = ( @@ -64573,8 +64380,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "jeJ" = ( @@ -64657,10 +64464,10 @@ /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel/dark, /area/station/security/prison/cell_block/A) "jfO" = ( @@ -64739,9 +64546,6 @@ dir = 1; name = "Cargo Bay Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/general{ - dir = 1 - }, /obj/effect/turf_decal/delivery, /obj/item/desk_bell{ anchored = 1; @@ -64754,6 +64558,9 @@ id_tag = "cargodesk"; name = "Cargo Desk Shutters" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/general{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -65011,9 +64818,8 @@ }, /area/station/science/research) "jjl" = ( -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, +/obj/machinery/door/airlock/hydroponics/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -65141,16 +64947,16 @@ "jkM" = ( /obj/machinery/door/airlock/external{ id_tag = "enginen_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/control) @@ -65187,14 +64993,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/port) "jmi" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Turbine Generator Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "jmD" = ( @@ -65327,7 +65133,7 @@ "jof" = ( /obj/structure/transit_tube/horizontal, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "jog" = ( /obj/effect/turf_decal/delivery/hollow, /obj/structure/closet/secure_closet/engineering_electrical, @@ -65429,7 +65235,7 @@ }, /area/station/science/genetics) "jpy" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/effect/turf_decal/stripes/line, /turf/simulated/floor/plasteel, /area/station/engineering/hardsuitstorage) @@ -65619,7 +65425,6 @@ /obj/effect/mapping_helpers/airlock/polarized{ id = "psych" }, -/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -65631,8 +65436,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/psych/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /turf/simulated/floor/wood/oak, /area/station/medical/psych) "jsE" = ( @@ -66118,13 +65924,13 @@ dir = 4 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/public, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/public/fitness) "jBa" = ( @@ -66177,6 +65983,7 @@ dir = 1 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/old_kitchen) "jCz" = ( @@ -66293,6 +66100,7 @@ /obj/structure/chair/comfy/brown{ dir = 1 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -66382,6 +66190,7 @@ /obj/structure/chair/comfy/black{ dir = 8 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/carpet, /area/station/service/bar/atrium) "jGG" = ( @@ -66445,8 +66254,8 @@ /area/station/service/theatre) "jHK" = ( /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ - pixel_y = 6 +/obj/item/storage/surgical_tray{ + pixel_y = 8 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -66487,6 +66296,7 @@ "jIg" = ( /obj/machinery/light_construct/directional/east, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "chapel" @@ -66499,12 +66309,12 @@ /area/station/maintenance/disposal/west) "jIO" = ( /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/processing) "jJc" = ( @@ -66705,9 +66515,9 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/dark, /area/station/security/brig) "jKL" = ( @@ -66731,10 +66541,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plasteel{ icon_state = "black" }, @@ -66933,6 +66740,14 @@ icon_state = "darkredfull" }, /area/station/security/permabrig) +"jOu" = ( +/obj/machinery/turretid/stun{ + name = "AI Upload Turret Control"; + pixel_y = 8; + req_one_access_txt = "75" + }, +/turf/simulated/wall, +/area/station/turret_protected/ai_upload) "jOB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -67280,6 +67095,7 @@ dir = 1 }, /obj/machinery/light/directional/south, +/obj/effect/landmark/start/artist, /turf/simulated/floor/plasteel/dark, /area/station/public/locker) "jTW" = ( @@ -67364,6 +67180,7 @@ /area/station/public/pool) "jVi" = ( /obj/machinery/door/airlock/freezer, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -67384,6 +67201,7 @@ /obj/structure/chair/stool{ dir = 1 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "jWq" = ( @@ -67487,8 +67305,8 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -67548,6 +67366,7 @@ /area/station/maintenance/starboard) "jZi" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/holosign/surgery{ id = "Surgery2" }, @@ -67565,7 +67384,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/surgery, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -67818,15 +67636,16 @@ "kdg" = ( /obj/machinery/door/airlock/external{ id_tag = "escape_door_ext"; - locked = 1; - name = "Escape External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, /obj/machinery/access_button/east{ autolink_id = "escape_btn_ext"; name = "exterior access button"; req_access_txt = "10;13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/exit) "kdm" = ( @@ -67844,6 +67663,7 @@ dir = 1 }, /obj/machinery/newscaster/directional/south, +/obj/effect/landmark/start/bar, /turf/simulated/floor/plasteel/dark, /area/station/service/theatre) "kdu" = ( @@ -68147,9 +67967,8 @@ }, /area/station/hallway/primary/central/west) "khL" = ( -/obj/machinery/door/airlock/tranquillite{ - name = "Mime's Office" - }, +/obj/machinery/door/airlock/tranquillite, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -68158,7 +67977,7 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/mime, +/obj/effect/mapping_helpers/airlock/access/any/service/mime, /turf/simulated/floor/mineral/tranquillite, /area/station/service/mime) "khQ" = ( @@ -68196,7 +68015,6 @@ /obj/machinery/door/window/classic/reversed{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -68268,6 +68086,7 @@ dir = 9 }, /obj/effect/spawner/random_spawners/blood_maybe, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "kjw" = ( @@ -68290,6 +68109,7 @@ /area/station/public/fitness) "kjP" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -68302,7 +68122,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/maintenance/apmaint) "kjR" = ( @@ -68349,10 +68168,8 @@ }, /area/station/maintenance/apmaint) "kkD" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Break Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/door/airlock/engineering/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -68368,6 +68185,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/control) "kkR" = ( @@ -68384,6 +68202,19 @@ "klf" = ( /turf/simulated/floor/plasteel/dark, /area/station/public/locker) +"klu" = ( +/obj/machinery/door/airlock/external{ + hackProof = 1; + id_tag = "emergency_home"; + locked = 1 + }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, +/turf/simulated/floor/plasteel, +/area/station/hallway/secondary/exit) "klz" = ( /obj/structure/cable{ d1 = 4; @@ -68424,10 +68255,8 @@ /area/station/medical/morgue) "kmi" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Toxins Mixing Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/tox, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -68436,6 +68265,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/tox, /turf/simulated/floor/plasteel, /area/station/science/toxins/mixing) "kmy" = ( @@ -68527,10 +68357,8 @@ /area/station/security/warden) "knY" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -68562,6 +68390,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -69013,18 +68842,18 @@ "kxP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/any/security/court, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/lawyer/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "court" }, +/obj/effect/mapping_helpers/airlock/access/any/security/court, /turf/simulated/floor/wood/fancy/oak, /area/station/legal/courtroom) "kxX" = ( @@ -69079,16 +68908,15 @@ /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) "kyz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Science Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/port) "kyI" = ( @@ -69231,11 +69059,11 @@ /area/station/service/theatre) "kAG" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/plasteel, /area/station/engineering/controlroom) "kAK" = ( @@ -69346,15 +69174,14 @@ "kDl" = ( /obj/structure/table/reinforced, /obj/item/trash/plate, -/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/condiment/enzyme, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" }, /area/station/maintenance/old_kitchen) "kDv" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Restaurant" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/wood/oak, /area/station/service/bar/atrium) @@ -69433,26 +69260,19 @@ }, /area/station/security/permabrig) "kFr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "kFG" = ( /obj/effect/mapping_helpers/airlock/polarized{ id = "HoS" }, /obj/machinery/door/airlock/command/hos/glass{ - id_tag = "hosofficedoor"; - name = "Head of Security" + id_tag = "hosofficedoor" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/hos, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -69480,6 +69300,8 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel/dark, /area/station/command/office/hos) "kFL" = ( @@ -69620,6 +69442,13 @@ icon_state = "grimy" }, /area/station/maintenance/old_detective) +"kGD" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) "kGI" = ( /obj/effect/turf_decal{ dir = 1 @@ -69673,7 +69502,7 @@ /area/station/service/hydroponics) "kHq" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/candy/caramel, +/obj/item/food/snacks/candy/caramel, /obj/structure/window/reinforced{ dir = 8 }, @@ -69706,6 +69535,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 1 }, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/wood/fancy/cherry, /area/station/public/vacant_store) "kIl" = ( @@ -69909,7 +69739,7 @@ /area/station/science/toxins/mixing) "kME" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/mug/sci, +/obj/item/reagent_containers/drinks/mug/sci, /turf/simulated/floor/plasteel/white, /area/station/science/break_room) "kMH" = ( @@ -70069,11 +69899,7 @@ /area/station/maintenance/fore2) "kOr" = ( /obj/structure/table, -/obj/item/camera{ - name = "Autopsy Camera"; - pixel_x = 4; - pixel_y = 8 - }, +/obj/item/camera/autopsy, /obj/item/autopsy_scanner{ pixel_x = -2; pixel_y = 4 @@ -70088,13 +69914,15 @@ }, /area/station/medical/morgue) "kOs" = ( -/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + volume = 200 + }, /turf/simulated/floor/plasteel, /area/station/science/storage) "kOA" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "kOD" = ( @@ -70107,6 +69935,7 @@ "kOE" = ( /obj/structure/weightmachine/weightlifter, /obj/effect/turf_decal/delivery/hollow, +/obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "caution" @@ -70315,15 +70144,14 @@ /turf/simulated/floor/wood/fancy/cherry, /area/station/public/vacant_store) "kTo" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, /turf/simulated/floor/plasteel, /area/station/maintenance/port) "kTs" = ( @@ -70338,6 +70166,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "kTw" = ( @@ -70405,10 +70234,7 @@ /area/station/maintenance/starboard2) "kUF" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/stack/rods, /obj/effect/decal/cleanable/glass, /turf/simulated/floor/plating, @@ -70542,13 +70368,11 @@ /turf/simulated/floor/carpet, /area/station/security/permabrig) "kWx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/service/library, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/port) @@ -70558,11 +70382,12 @@ id_tag = "vir_int_door"; locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/east{ autolink_id = "vir_int_button"; name = "interior access button" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "kWB" = ( @@ -70995,9 +70820,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore) "lfg" = ( -/obj/machinery/door/airlock/bathroom{ - name = "Toilet" - }, +/obj/machinery/door/airlock/bathroom, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -71088,7 +70912,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ - name = "Bedroom"; id_tag = "PrivateRoom2" }, /obj/effect/mapping_helpers/airlock/autoname, @@ -71149,6 +70972,7 @@ /area/station/service/kitchen) "lhF" = ( /obj/machinery/door/airlock/virology, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -71165,7 +70989,6 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/medical/virology, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -71187,8 +71010,8 @@ "lhR" = ( /obj/structure/table/reinforced, /obj/machinery/light/directional/west, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour{ +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour{ pixel_x = 2; pixel_y = 2 }, @@ -71233,10 +71056,8 @@ }, /area/station/hallway/primary/central/se) "liD" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/tox, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71249,6 +71070,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/science/tox, /turf/simulated/floor/plasteel, /area/station/science/toxins/launch) "liZ" = ( @@ -71265,20 +71087,20 @@ /area/station/maintenance/old_kitchen) "ljm" = ( /obj/structure/safe/floor, -/obj/item/reagent_containers/food/drinks/bottle/cognac, -/obj/item/reagent_containers/food/drinks/bottle/cognac, -/obj/item/reagent_containers/food/drinks/bottle/cognac, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/bottle/random_drink, -/obj/item/reagent_containers/food/drinks/bottle/random_drink, -/obj/item/reagent_containers/food/drinks/bottle/random_drink, -/obj/item/reagent_containers/food/drinks/bottle/random_drink, -/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/obj/item/reagent_containers/drinks/bottle/cognac, +/obj/item/reagent_containers/drinks/bottle/cognac, +/obj/item/reagent_containers/drinks/bottle/cognac, +/obj/item/reagent_containers/drinks/bottle/goldschlager, +/obj/item/reagent_containers/drinks/bottle/goldschlager, +/obj/item/reagent_containers/drinks/bottle/goldschlager, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/random_drink, +/obj/item/reagent_containers/drinks/bottle/random_drink, +/obj/item/reagent_containers/drinks/bottle/random_drink, +/obj/item/reagent_containers/drinks/bottle/random_drink, +/obj/item/reagent_containers/drinks/bottle/random_drink, /turf/simulated/floor/wood/oak, /area/station/maintenance/old_kitchen) "ljq" = ( @@ -71391,6 +71213,7 @@ /obj/machinery/door/airlock/multi_tile/glass{ dir = 2 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71407,14 +71230,14 @@ /area/station/maintenance/old_kitchen) "lkZ" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/frozen/icecream/icecreamcone, -/obj/item/reagent_containers/food/snacks/frozen/icecream/icecreamcone, -/obj/item/reagent_containers/food/snacks/frozen/icecream/icecreamcone, -/obj/item/reagent_containers/food/snacks/frozen/icecream/icecreamcone, -/obj/item/reagent_containers/food/snacks/frozen/icecream, -/obj/item/reagent_containers/food/snacks/frozen/icecream, -/obj/item/reagent_containers/food/snacks/frozen/icecreamsandwich, -/obj/item/reagent_containers/food/snacks/frozen/icecreamsandwich, +/obj/item/food/snacks/frozen/icecream/icecreamcone, +/obj/item/food/snacks/frozen/icecream/icecreamcone, +/obj/item/food/snacks/frozen/icecream/icecreamcone, +/obj/item/food/snacks/frozen/icecream/icecreamcone, +/obj/item/food/snacks/frozen/icecream, +/obj/item/food/snacks/frozen/icecream, +/obj/item/food/snacks/frozen/icecreamsandwich, +/obj/item/food/snacks/frozen/icecreamsandwich, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "redyellowfull" @@ -71736,6 +71559,16 @@ icon_state = "neutralcorner" }, /area/station/hallway/secondary/bridge) +"lqB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "lqJ" = ( /obj/machinery/camera{ c_tag = "Aft Starboard Solars" @@ -71836,9 +71669,8 @@ }, /area/station/maintenance/starboard2) "lsd" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ icon_state = "redfull" @@ -72050,13 +71882,12 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/door/airlock/command/hos/glass{ - name = "Head of Security Bedroom" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/hos, +/obj/machinery/door/airlock/command/hos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "hosroom" }, +/obj/effect/mapping_helpers/airlock/access/any/security/hos, /turf/simulated/floor/wood, /area/station/command/office/hos) "lvO" = ( @@ -72379,15 +72210,13 @@ /turf/simulated/wall, /area/station/engineering/mechanic) "lBa" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/any/service/library, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/service/library) @@ -72407,10 +72236,8 @@ /area/station/command/office/rd) "lBi" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Break Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/science, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -72419,6 +72246,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel/white, /area/station/science/break_room) "lBj" = ( @@ -72439,7 +72267,7 @@ }, /area/station/hallway/primary/central/sw) "lBT" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ icon_state = "whiteblue" }, @@ -72493,9 +72321,10 @@ /area/station/maintenance/electrical) "lCy" = ( /obj/machinery/door/airlock/vault, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "lCD" = ( @@ -72521,10 +72350,10 @@ /area/station/hallway/primary/central/se) "lCR" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/welded, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -72552,6 +72381,7 @@ /area/station/medical/storage/secondary) "lDp" = ( /obj/structure/chair/sofa/left, +/obj/effect/landmark/start/vip, /turf/simulated/floor/plasteel/dark, /area/station/service/theatre) "lDq" = ( @@ -72743,13 +72573,12 @@ }, /area/station/security/processing) "lHc" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Head of Personnel Bedroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, /turf/simulated/floor/wood/oak, /area/station/command/office/hop) "lHp" = ( @@ -72839,7 +72668,7 @@ }, /area/station/maintenance/disposal/west) "lIv" = ( -/obj/machinery/suit_storage_unit/clown, +/obj/machinery/suit_storage_unit/clown/secure, /obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) @@ -72884,7 +72713,7 @@ /turf/simulated/floor/plasteel/dark, /area/station/ai_monitored/storage/eva) "lIQ" = ( -/obj/machinery/suit_storage_unit/clown, +/obj/machinery/suit_storage_unit/clown/secure, /obj/machinery/door_control/shutter/east{ id = "Clown"; name = "Clowns Privacy Shutters Control" @@ -73091,16 +72920,16 @@ /area/station/maintenance/starboard2) "lLS" = ( /obj/structure/closet/crate, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/breadslice, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/onion, -/obj/item/reagent_containers/food/snacks/grown/onion, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/breadslice, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/onion, +/obj/item/food/snacks/grown/onion, /obj/item/storage/box/donkpockets, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/rice, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "bar" @@ -73251,6 +73080,13 @@ icon_state = "darkred" }, /area/station/security/storage) +"lOT" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) "lOZ" = ( /obj/structure/cable{ d1 = 1; @@ -73378,9 +73214,8 @@ }, /area/station/security/storage) "lPW" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Containment Cells" - }, +/obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -73400,7 +73235,7 @@ /turf/simulated/floor/plasteel, /area/station/medical/virology/lab) "lPY" = ( -/obj/machinery/suit_storage_unit/security/hos, +/obj/machinery/suit_storage_unit/security/hos/secure, /obj/effect/turf_decal/siding/wood{ dir = 9 }, @@ -73554,11 +73389,11 @@ /area/station/science/test_chamber) "lSB" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -7; pixel_y = 7 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -4; pixel_y = 2 }, @@ -73633,6 +73468,7 @@ /area/station/security/permabrig) "lTY" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -73828,7 +73664,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "lYg" = ( -/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + volume = 200 + }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/aft) @@ -74001,7 +73839,7 @@ /turf/simulated/floor/plasteel/grimy, /area/station/service/chapel) "mbC" = ( -/obj/machinery/suit_storage_unit/cmo, +/obj/machinery/suit_storage_unit/cmo/secure, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -74018,6 +73856,7 @@ /area/station/command/bridge) "mbV" = ( /obj/structure/chair/stool, +/obj/effect/landmark/start/artist, /turf/simulated/floor/transparent/glass/reinforced, /area/station/public/locker) "mbY" = ( @@ -74243,7 +74082,7 @@ /turf/simulated/floor/plasteel, /area/station/maintenance/electrical) "mgx" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /obj/machinery/light/directional/south, /obj/structure/sign/poster/official/random/south, /turf/simulated/floor/plasteel{ @@ -74341,9 +74180,8 @@ /area/station/public/toilet) "mit" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public{ - name = "Bar" - }, +/obj/machinery/door/airlock/public, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/service/bar, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -74537,8 +74375,8 @@ name = "Kitchen Shutters" }, /obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/snacks/burrito, -/obj/item/reagent_containers/food/snacks/burrito{ +/obj/item/food/snacks/burrito, +/obj/item/food/snacks/burrito{ pixel_x = 5; pixel_y = 5 }, @@ -74660,10 +74498,10 @@ /area/station/security/warden) "mng" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/candy/cotton/blue, -/obj/item/reagent_containers/food/snacks/candy/cotton/pink, -/obj/item/reagent_containers/food/snacks/candy/cotton/rainbow, -/obj/item/reagent_containers/food/snacks/candy/cotton/yellow, +/obj/item/food/snacks/candy/cotton/blue, +/obj/item/food/snacks/candy/cotton/pink, +/obj/item/food/snacks/candy/cotton/rainbow, +/obj/item/food/snacks/candy/cotton/yellow, /obj/structure/sign/poster/official/random/north, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -74697,9 +74535,9 @@ /area/station/maintenance/aft) "mnw" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "darkred" @@ -75006,7 +74844,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -75116,11 +74954,11 @@ /area/station/engineering/mechanic) "muR" = ( /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/medical/chemistry, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -75219,12 +75057,12 @@ "mxm" = ( /obj/machinery/door/airlock/atmos/glass{ heat_proof = 1; - name = "Supermatter Chamber"; id_tag = "smint"; locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/engine, /area/station/engineering/engine/supermatter) "mxB" = ( @@ -75272,13 +75110,14 @@ }, /area/station/hallway/primary/fore) "myi" = ( -/obj/item/vending_refill/cola, +/obj/machinery/economy/vending/cola, /turf/simulated/floor/plasteel{ icon_state = "whitepurple" }, /area/station/science/break_room) "myI" = ( /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "myP" = ( @@ -75373,15 +75212,15 @@ /area/station/service/library) "mzE" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat{ +/obj/item/food/snacks/meat, +/obj/item/food/snacks/meat{ pixel_x = 4 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -7; pixel_y = 7 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -4; pixel_y = 2 }, @@ -75497,16 +75336,14 @@ /turf/simulated/floor/carpet, /area/station/legal/lawoffice) "mBY" = ( -/obj/machinery/door/airlock/engineering{ - name = "Fore Starboard Solar Access" - }, +/obj/machinery/door/airlock/engineering, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "mCt" = ( @@ -75775,17 +75612,16 @@ }, /obj/machinery/door/airlock/security/glass{ id_tag = "perma_door_ext"; - locked = 1; - name = "Prison Wing" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/west{ autolink_id = "perma_btn_ext"; name = "Prison Wing Access Button"; req_one_access_txt = "2" }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/station/security/permabrig) "mIK" = ( @@ -76031,10 +75867,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plating, /area/station/maintenance/fore) "mPO" = ( @@ -76114,10 +75947,9 @@ "mQK" = ( /obj/machinery/door/airlock/external{ id_tag = "fssolar_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -76131,6 +75963,7 @@ name = "interior access button"; req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "mQL" = ( @@ -76553,9 +76386,8 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/airlock/public{ - name = "Shower" - }, +/obj/machinery/door/airlock/public, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/public/pool) "mVy" = ( @@ -76675,15 +76507,8 @@ }, /area/station/maintenance/starboard2) "mYH" = ( -/obj/machinery/power/treadmill{ - dir = 4; - id = "treadmill1" - }, -/obj/machinery/treadmill_monitor{ - pixel_x = 32; - id = "treadmill1" - }, /obj/effect/turf_decal/delivery/hollow, +/obj/structure/closet/boxinggloves, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "caution" @@ -76763,9 +76588,9 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/bathroom{ id = "toilet2"; - id_tag = "toilet2"; - name = "Toilet" + id_tag = "toilet2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "mZR" = ( @@ -76890,11 +76715,9 @@ "naY" = ( /obj/machinery/door/airlock/external{ id_tag = "fssolar_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -76905,6 +76728,7 @@ name = "exterior access button"; req_access_txt = "10;13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarstarboard) "nbx" = ( @@ -76954,9 +76778,9 @@ /obj/machinery/door/airlock/virology{ autoclose = 0; id_tag = "virolab_door_ext"; - locked = 1; - name = "Virology Lab External Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/south{ layer = 3.6; autolink_id = "virolab_btn_ext"; @@ -76973,7 +76797,6 @@ icon_state = "4-8" }, /obj/effect/mapping_helpers/airlock/access/any/medical/virology, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -77149,9 +76972,8 @@ /turf/simulated/floor/carpet/cyan, /area/station/security/prison/cell_block/A) "neI" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Patients Room" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -77308,6 +77130,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -77460,11 +77285,12 @@ codes_txt = "delivery"; location = "Science" }, -/obj/effect/mapping_helpers/airlock/access/any/science/research, /obj/machinery/door/window/classic/normal{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, +/obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ + dir = 4 + }, /turf/simulated/floor/plating, /area/station/science/break_room) "njJ" = ( @@ -77492,11 +77318,11 @@ /area/station/security/warden) "njV" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/bottleofnothing{ +/obj/item/reagent_containers/drinks/bottle/bottleofnothing{ pixel_y = 19 }, /obj/item/grown/bananapeel, -/obj/item/reagent_containers/food/drinks/bottle/cream{ +/obj/item/reagent_containers/drinks/bottle/cream{ pixel_x = -9 }, /turf/simulated/floor/plating, @@ -77717,10 +77543,8 @@ /area/station/medical/medbay) "nnL" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/robotics, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -77732,19 +77556,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, /turf/simulated/floor/plasteel/white, /area/station/science/robotics/chargebay) "nnM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - id_tag = "pub_room"; - name = "Public Meeting Room" + id_tag = "pub_room" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/wood/oak, /area/station/science/robotics/showroom) "nnZ" = ( @@ -77820,7 +77646,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/grown/pineapple{ +/obj/item/food/snacks/grown/pineapple{ name = "Старый ананас"; desc = "Довольно старый ананас. Интересно как он тут оказался и почему он так странно пахнет..." }, @@ -77971,9 +77797,8 @@ /turf/simulated/wall/r_wall, /area/station/security/permabrig) "nra" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/public/fitness) "nri" = ( @@ -78017,9 +77842,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock{ - name = "Custodial Closet" - }, +/obj/machinery/door/airlock/service/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/service/janitor, /turf/simulated/floor/plasteel, @@ -78139,6 +77963,7 @@ }, /obj/effect/turf_decal/delivery/hollow, /obj/machinery/light/small/directional/east, +/obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -78169,7 +77994,6 @@ /area/station/hallway/primary/central/west) "nvb" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -78178,6 +78002,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/public/pool) "nvd" = ( @@ -78366,11 +78191,8 @@ }, /area/station/medical/storage) "nxO" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/genetics, -/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -78380,6 +78202,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/science/research) "nyl" = ( @@ -78554,7 +78377,7 @@ /turf/simulated/floor/plasteel/white, /area/station/science/research) "nAV" = ( -/obj/machinery/suit_storage_unit/cmo/secure/sec_storage, +/obj/machinery/suit_storage_unit/cmo/sec_storage/secure, /turf/simulated/floor/plasteel{ dir = 6; icon_state = "whiteblue" @@ -78569,10 +78392,9 @@ "nAX" = ( /obj/machinery/door/airlock/external{ id_tag = "assolar_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable{ d1 = 1; @@ -78582,12 +78404,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /obj/machinery/access_button/west{ autolink_id = "assolar_btn_int"; name = "interior access button"; req_access_txt = "10;13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "nAZ" = ( @@ -78743,6 +78565,7 @@ /obj/structure/chair/sofa/pew/right{ dir = 4 }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "chapel" @@ -79123,12 +78946,12 @@ "nHK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 6; pixel_x = -6; volume = 0 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 6; pixel_x = 8; volume = 0 @@ -79302,12 +79125,11 @@ /turf/simulated/floor/plasteel, /area/station/security/processing) "nJW" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Science Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) "nKf" = ( @@ -79949,6 +79771,7 @@ /area/station/engineering/controlroom) "nRz" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -79963,7 +79786,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/science/research, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/port) @@ -80123,9 +79945,9 @@ /area/station/medical/medbay2) "nUC" = ( /obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Restaurant" + dir = 2 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -80187,6 +80009,13 @@ icon_state = "neutralfull" }, /area/station/maintenance/starboard) +"nVU" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/transparent/glass/reinforced, +/area/station/public/pool) "nWe" = ( /obj/machinery/door/poddoor/multi_tile/two_tile_hor{ id_tag = "unknowndoor" @@ -80222,8 +80051,8 @@ /area/station/command/office/ce) "nWy" = ( /obj/machinery/door/airlock/psych, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -80231,6 +80060,7 @@ dir = 4 }, /obj/structure/barricade/wooden, +/obj/effect/mapping_helpers/airlock/access/any/medical/psychology, /turf/simulated/floor/plating, /area/station/medical/patients_rooms) "nWC" = ( @@ -80320,10 +80150,12 @@ /obj/machinery/door/airlock/external{ id_tag = "arrivalsn_door_ext" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/east{ autolink_id = "arrivalsn_btn_ext"; name = "exterior access button" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "nXR" = ( @@ -80479,6 +80311,7 @@ /area/station/maintenance/dormitory_maintenance) "obk" = ( /obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/maintenance/medmaint) @@ -80584,13 +80417,13 @@ /obj/item/toy/minimeteor{ pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 6; pixel_x = 8; initialized = 1; volume = 0 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 6; pixel_x = -6; initialized = 1; @@ -80691,7 +80524,7 @@ /area/station/engineering/atmos) "oeG" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ +/obj/item/reagent_containers/drinks/bottle/holywater{ pixel_y = 4; pixel_x = -8; initialized = 1 @@ -81189,6 +81022,7 @@ /area/station/maintenance/port) "omF" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -81201,7 +81035,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/maintenance/port) "omI" = ( @@ -81309,6 +81142,7 @@ /obj/machinery/computer/guestpass{ pixel_y = 30 }, +/obj/machinery/recharge_station, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "yellow" @@ -81470,7 +81304,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/item/reagent_containers/food/snacks/grown/redbeet, +/obj/item/food/snacks/grown/redbeet, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/oak, @@ -81488,12 +81322,12 @@ /area/station/maintenance/old_kitchen) "ori" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" @@ -81506,9 +81340,6 @@ dir = 4; name = "Kitchen Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply{ - dir = 4 - }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ dir = 4 }, @@ -81618,6 +81449,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/old_kitchen) "otb" = ( @@ -81672,6 +81504,10 @@ /obj/machinery/light/directional/east, /turf/simulated/floor/plating, /area/station/supply/storage) +"otB" = ( +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "otH" = ( /obj/machinery/kitchen_machine/grill, /obj/machinery/newscaster/directional/north, @@ -82119,12 +81955,10 @@ }, /area/station/medical/virology) "oCI" = ( -/obj/effect/mapping_helpers/airlock/access/all/supply/general, /obj/effect/mapping_helpers/airlock/welded, +/obj/machinery/door/airlock/mining, /obj/effect/mapping_helpers/airlock/autoname, -/obj/machinery/door/airlock/mining{ - name = null - }, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plating, /area/station/supply/abandoned_boxroom) "oCK" = ( @@ -82221,13 +82055,13 @@ "oEO" = ( /obj/machinery/door/airlock/highsecurity, /obj/effect/mapping_helpers/airlock/autoname, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/engine, /area/station/maintenance/incinerator) "oEP" = ( @@ -82281,18 +82115,18 @@ "oFN" = ( /obj/machinery/door/airlock/external{ id_tag = "laborcamp_home"; - locked = 1; - name = "Labor Camp Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/security/brig, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/station/security/permabrig) "oFY" = ( @@ -82300,6 +82134,7 @@ /obj/structure/chair/comfy/red{ dir = 8 }, +/obj/effect/landmark/start/bar, /turf/simulated/floor/carpet, /area/station/service/theatre) "oGe" = ( @@ -82357,10 +82192,15 @@ /obj/machinery/economy/vending/coffee, /turf/simulated/floor/plasteel/dark, /area/station/hallway/primary/starboard) -"oHG" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" +"oHD" = ( +/obj/effect/landmark/start/barber, +/turf/simulated/floor/plasteel{ + icon_state = "barber" }, +/area/station/service/barber) +"oHG" = ( +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/dark, /area/station/public/fitness) "oHK" = ( @@ -82461,11 +82301,11 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/multi_tile/supply/glass{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, @@ -82500,7 +82340,9 @@ /area/station/science/break_room) "oKf" = ( /obj/structure/window/reinforced, -/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + volume = 200 + }, /obj/structure/window/reinforced{ dir = 8 }, @@ -82514,17 +82356,17 @@ /turf/simulated/floor/plasteel/dark, /area/station/service/hydroponics) "oKN" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/brig, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel/dark, /area/station/security/prisonlockers) "oKV" = ( @@ -82622,7 +82464,6 @@ /area/station/command/office/cmo) "oMr" = ( /obj/machinery/turretid/lethal{ - control_area = "\improper Telecoms Central Compartment"; name = "Telecommunications Turret Control"; pixel_y = 8 }, @@ -82754,6 +82595,7 @@ /area/station/science/research) "oPj" = ( /obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) @@ -82800,10 +82642,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/dormitory_maintenance) "oQJ" = ( @@ -82914,13 +82754,13 @@ "oSD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 6; pixel_x = -6; initialized = 1; volume = 0 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 6; pixel_x = 8; initialized = 1; @@ -83050,14 +82890,13 @@ /area/station/hallway/primary/central/west) "oVj" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel, /area/station/science/research) "oVs" = ( @@ -83230,6 +83069,7 @@ /area/station/engineering/mechanic) "oXr" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/public/pool) @@ -83444,12 +83284,12 @@ /area/station/maintenance/fore) "pai" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" }, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/medical/morgue) "paj" = ( @@ -83523,15 +83363,6 @@ /obj/effect/turf_decal/siding/wood, /turf/simulated/floor/wood/fancy/oak, /area/station/legal/magistrate) -"pbJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) "pbQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -83540,14 +83371,14 @@ /area/station/service/library) "pbY" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ +/obj/item/reagent_containers/drinks/bottle/vodka{ pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth{ +/obj/item/reagent_containers/drinks/bottle/vermouth{ pixel_x = -6; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/bottle/tequila{ +/obj/item/reagent_containers/drinks/bottle/tequila{ pixel_x = 6; pixel_y = 6 }, @@ -83754,9 +83585,8 @@ /area/station/maintenance/old_kitchen) "pfn" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public{ - name = "Shower" - }, +/obj/machinery/door/airlock/public, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -83985,14 +83815,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ - dir = 4 - }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 4 + }, /turf/simulated/floor/plasteel/dark, /area/station/security/execution) "piQ" = ( @@ -84083,11 +83913,9 @@ "pkj" = ( /obj/machinery/door/airlock/external{ id_tag = "apsolar_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -84101,6 +83929,7 @@ name = "exterior access button"; req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "pkv" = ( @@ -84108,6 +83937,7 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -84664,9 +84494,8 @@ /area/station/engineering/hardsuitstorage) "pso" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Public Access" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -84765,10 +84594,8 @@ }, /area/station/supply/storage) "psN" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Storage" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/tox_storage, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -84781,6 +84608,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/tox_storage, /turf/simulated/floor/plasteel/white, /area/station/science/storage) "psZ" = ( @@ -84814,11 +84642,9 @@ "ptq" = ( /obj/machinery/door/airlock/external{ id_tag = "stationai_door_ext"; - locked = 1; - name = "Minisat Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -84829,8 +84655,15 @@ name = "exterior access button"; req_access_txt = "10;13" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "ptU" = ( /obj/effect/spawner/random_spawners/blood_maybe, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -84935,16 +84768,16 @@ "pwY" = ( /obj/machinery/door/airlock/external{ id_tag = "enginen_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/control) @@ -84956,6 +84789,13 @@ icon_state = "neutralfull" }, /area/station/engineering/atmos) +"pxe" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) "pxy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -85023,8 +84863,8 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel/dark, /area/station/security/execution) "pys" = ( @@ -85260,6 +85100,7 @@ }, /obj/effect/turf_decal/delivery/hollow, /obj/machinery/light/small/directional/east, +/obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -85368,18 +85209,18 @@ /turf/simulated/floor/plating, /area/station/command/bridge) "pDk" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/court, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/lawyer/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "court" }, +/obj/effect/mapping_helpers/airlock/access/any/security/court, /turf/simulated/floor/wood/fancy/oak, /area/station/legal/courtroom) "pDS" = ( @@ -85398,7 +85239,7 @@ "pER" = ( /obj/structure/table/wood, /obj/item/book/manual/barman_recipes, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/structure/sign/poster/official/high_class_martini{ pixel_y = 32 }, @@ -85415,9 +85256,9 @@ "pEY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - id_tag = "KPPSouth"; - name = "Public Access" + id_tag = "KPPSouth" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "EscapeLockdown"; name = "Escape Shuttle Lockdown" @@ -85599,6 +85440,7 @@ id_tag = "specops_home"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) "pHK" = ( @@ -85744,6 +85586,7 @@ /obj/structure/chair/wood{ dir = 4 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/old_kitchen) "pKl" = ( @@ -85840,6 +85683,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel/freezer, /area/station/public/pool) "pLI" = ( @@ -85875,6 +85719,7 @@ /obj/structure/chair/plastic{ dir = 8 }, +/obj/effect/landmark/start/bath, /turf/simulated/floor/transparent/glass/reinforced, /area/station/public/pool) "pLU" = ( @@ -86013,11 +85858,11 @@ /area/station/engineering/controlroom) "pOp" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/disk{ +/obj/item/food/snacks/disk{ pixel_y = 10; pixel_x = 8 }, -/obj/item/reagent_containers/food/snacks/disk{ +/obj/item/food/snacks/disk{ pixel_y = -6; pixel_x = 5 }, @@ -86062,7 +85907,6 @@ }, /area/station/bridge/checkpoint/south) "pOZ" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel/dark, /area/station/security/storage) @@ -86134,7 +85978,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "pQa" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "HoS" @@ -86416,10 +86260,8 @@ }, /area/station/hallway/primary/central) "pWh" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Test Chamber" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "RnDChem"; name = "Biohazard Shutter" @@ -86430,6 +86272,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/engine, /area/station/science/test_chamber) "pWq" = ( @@ -86496,6 +86339,7 @@ /area/station/engineering/break_room) "pWT" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/station/maintenance/port) @@ -86587,6 +86431,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel/grimy, /area/station/security/permabrig) "pYo" = ( @@ -86663,7 +86508,7 @@ }, /obj/item/clothing/head/bearpelt, /obj/item/folder/documents, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/drinks/bottle/vodka/badminka, /obj/item/lighter/zippo/nt_rep, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/stack/spacecash/c1000, @@ -86795,6 +86640,7 @@ /area/station/command/office/cmo) "qct" = ( /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -86821,11 +86667,10 @@ d2 = 4; icon_state = "2-4" }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "holdingcellprivacy" }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel, /area/station/security/processing) "qcK" = ( @@ -86855,13 +86700,13 @@ dir = 8; name = "Security Reception" }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ - dir = 8 - }, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ + dir = 8 + }, /turf/simulated/floor/plating, /area/station/security/brig) "qdk" = ( @@ -86891,6 +86736,7 @@ "qdW" = ( /obj/structure/barricade/wooden, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/library) "qeg" = ( @@ -86995,9 +86841,8 @@ /turf/simulated/floor/plasteel, /area/station/security/processing) "qfX" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Garden" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -87318,6 +87163,7 @@ /area/station/security/permabrig) "qlM" = ( /obj/machinery/door/airlock/maintenance/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/effect/mapping_helpers/airlock/access/any/medical/virology, @@ -87355,6 +87201,7 @@ dir = 8 }, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/maintenance/medmaint) "qmz" = ( @@ -87394,11 +87241,9 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/machinery/door/airlock/mining{ - name = null - }, +/obj/machinery/door/airlock/mining, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/storage) "qmT" = ( @@ -87549,6 +87394,7 @@ "qpB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dust, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/wood/oak, /area/station/maintenance/old_kitchen) "qpD" = ( @@ -87731,6 +87577,7 @@ /area/station/science/explab) "qtv" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, @@ -88024,7 +87871,7 @@ /area/station/legal/courtroom) "qwS" = ( /turf/simulated/wall/r_wall, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "qxd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -88052,13 +87899,15 @@ "qxk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "qxs" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "qxt" = ( @@ -88075,6 +87924,7 @@ /area/station/maintenance/dormitory_maintenance) "qxB" = ( /obj/machinery/door/airlock/engineering, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/structure/cable{ d1 = 4; @@ -88236,10 +88086,7 @@ /turf/simulated/floor/plating, /area/station/security/podpilot) "qBo" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dust, /turf/simulated/floor/wood/oak, @@ -88273,7 +88120,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 8 }, /turf/simulated/floor/plasteel/dark, @@ -88297,8 +88144,7 @@ /obj/machinery/door/window/classic/normal{ name = "Bar Delivery" }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, -/obj/effect/mapping_helpers/airlock/access/any/service/bar, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/bar, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -88348,10 +88194,10 @@ /obj/machinery/door/window/classic/reversed{ name = "Library Desk Door" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/library, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/light_switch/east, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/library, /turf/simulated/floor/carpet, /area/station/service/library) "qDj" = ( @@ -88517,7 +88363,7 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = "MedbayFoyerPort" }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/welded, /obj/structure/barricade/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -88649,7 +88495,7 @@ }, /area/station/medical/virology/lab) "qGy" = ( -/obj/machinery/suit_storage_unit/engine, +/obj/machinery/suit_storage_unit/engine/secure, /obj/effect/turf_decal/stripes/line, /obj/structure/table/reinforced, /obj/structure/sign/poster/official/report_crimes{ @@ -88674,14 +88520,14 @@ }, /obj/structure/table/wood, /obj/machinery/light/directional/west, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 5 }, -/obj/item/reagent_containers/food/drinks/bottle/wine{ +/obj/item/reagent_containers/drinks/bottle/wine{ pixel_y = 5 }, /turf/simulated/floor/plasteel/dark, @@ -88757,10 +88603,8 @@ }, /area/station/maintenance/port) "qIe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -88770,7 +88614,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/simulated/floor/plasteel, /area/station/maintenance/port) "qIl" = ( @@ -88825,8 +88669,25 @@ "qJk" = ( /turf/simulated/wall, /area/station/maintenance/old_detective) +"qJx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/bath, +/turf/simulated/floor/plasteel{ + icon_state = "neutral" + }, +/area/station/public/pool) "qJA" = ( -/obj/machinery/atmospherics/pipe/simple/insulated{ +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 8 }, /turf/simulated/floor/plasteel/white, @@ -89328,6 +89189,21 @@ }, /turf/simulated/floor/plasteel, /area/station/hallway/secondary/entry) +"qQX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel, +/area/station/security/permabrig) "qRc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -89400,18 +89276,17 @@ /obj/machinery/door/airlock/external{ hackProof = 1; id_tag = "emergency_home"; - locked = 1; - name = "Escape Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ icon_state = "redfull" }, /area/station/security/checkpoint/south) "qSo" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/dark, /area/station/public/locker) "qSp" = ( @@ -89441,15 +89316,12 @@ name = "Chemistry Delivery"; dir = 1 }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/supply/mule_bot{ - dir = 1 - }, /obj/structure/plasticflaps{ opacity = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/chemistry{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -89498,7 +89370,7 @@ /turf/simulated/floor/plasteel/white, /area/station/science/storage) "qTe" = ( -/obj/item/reagent_containers/food/snacks/candy/gummyworm/green, +/obj/item/food/snacks/candy/gummyworm/green, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ dir = 8; @@ -90205,7 +90077,9 @@ }, /area/station/science/genetics) "red" = ( -/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + volume = 200 + }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -90279,10 +90153,10 @@ dir = 4; name = "Area control access" }, +/obj/item/clothing/mask/gas, /obj/effect/mapping_helpers/airlock/windoor/access/any/science/research{ dir = 4 }, -/obj/item/clothing/mask/gas, /turf/simulated/floor/engine, /area/station/science/test_chamber) "rfB" = ( @@ -90468,7 +90342,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/condiment/enzyme, /turf/simulated/floor/plasteel{ icon_state = "bar" }, @@ -90590,10 +90464,10 @@ /obj/effect/mapping_helpers/airlock/unres{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ icon_state = "darkredcorners" }, @@ -90700,6 +90574,7 @@ /obj/structure/weightmachine/weightlifter, /obj/effect/turf_decal/delivery/hollow, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -90980,6 +90855,7 @@ /area/station/medical/medbay) "rrL" = ( /obj/machinery/door/airlock/freezer, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -91113,12 +90989,14 @@ /obj/machinery/door/airlock/external{ id_tag = "arrivalsn_door_int" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/access_button/west{ autolink_id = "arrivalsn_btn_int"; name = "exterior access button"; pixel_y = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "rtS" = ( @@ -91206,7 +91084,7 @@ /area/station/security/podpilot) "ruI" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 8; pixel_x = -6; initialized = 1 @@ -91267,9 +91145,9 @@ "rvI" = ( /obj/machinery/door/airlock/bathroom{ id = "toilet1"; - id_tag = "toilet1"; - name = "Toilet" + id_tag = "toilet1" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/service/theatre) "rvJ" = ( @@ -91370,10 +91248,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" }, @@ -92000,7 +91875,7 @@ dir = 4 }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "rJi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -92167,7 +92042,7 @@ dir = 8 }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "rMi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/glass, @@ -92231,7 +92106,7 @@ /area/station/medical/storage) "rMZ" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/beans, +/obj/item/food/snacks/beans, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ icon_state = "neutralfull" @@ -92341,12 +92216,12 @@ icon_state = "0-2" }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "rPk" = ( /obj/machinery/door/airlock{ - name = "Toilet"; id_tag = "DormToilet3" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -92623,7 +92498,7 @@ dir = 5 }, /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/grown/banana{ +/obj/item/food/snacks/grown/banana{ pixel_x = 6; pixel_y = 4 }, @@ -92666,11 +92541,11 @@ pixel_y = 3 }, /obj/item/storage/fancy/donut_box, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = 3; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -92769,9 +92644,7 @@ }, /area/station/medical/patients_rooms) "rWk" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/brig, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/dark, /area/station/security/prisonlockers) "rWw" = ( @@ -92848,7 +92721,6 @@ "rXK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -92857,6 +92729,7 @@ d2 = 4; icon_state = "2-4" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/station/security/permabrig) "rXW" = ( @@ -92867,13 +92740,14 @@ /area/station/science/explab/chamber) "rXX" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) "rXY" = ( @@ -92914,7 +92788,7 @@ /area/station/command/bridge) "rYu" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/britcup{ +/obj/item/reagent_containers/drinks/britcup{ pixel_y = 2 }, /obj/machinery/newscaster/directional/south, @@ -92947,7 +92821,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 8 }, /turf/simulated/floor/plasteel/dark, @@ -93063,7 +92937,7 @@ pixel_x = -14; pixel_y = 8 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 6; pixel_x = -6; initialized = 1 @@ -93250,17 +93124,8 @@ }, /area/station/science/break_room) "scR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -93342,6 +93207,7 @@ id = "Cloning Room" }, /obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -93351,9 +93217,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/medical/general, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -93578,6 +93443,7 @@ /area/station/security/storage) "siO" = ( /obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -93594,8 +93460,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -93603,10 +93467,9 @@ "siP" = ( /obj/machinery/door/airlock/external{ id_tag = "engines_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -93621,6 +93484,7 @@ name = "interior access button"; req_access_txt = "10;13" }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/control) @@ -93667,7 +93531,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/suit_storage_unit/atmos/secure, /turf/simulated/floor/plasteel, /area/station/engineering/atmos) "sko" = ( @@ -93684,11 +93548,12 @@ id_tag = "med_outer_door"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/east{ autolink_id = "med_outer_button"; name = "interior access button" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/engine, /area/station/maintenance/starboard2) "skW" = ( @@ -93823,12 +93688,21 @@ }, /turf/simulated/floor/wood/oak, /area/station/command/meeting_room) +"snx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) "snC" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/item/stack/rods{ amount = 3 }, @@ -93849,6 +93723,7 @@ /area/station/maintenance/starboard2) "son" = ( /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" @@ -93856,8 +93731,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/brig, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 2; @@ -93869,6 +93742,7 @@ d2 = 4; icon_state = "2-4" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel/dark, /area/station/security/permabrig) "soV" = ( @@ -93911,6 +93785,7 @@ /area/station/medical/storage) "spf" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) @@ -94011,7 +93886,7 @@ /area/station/service/mime) "sqk" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/maintenance/apmaint) @@ -94045,17 +93920,16 @@ "srs" = ( /obj/machinery/door/airlock/external{ id_tag = "atmostanks_door_int"; - locked = 1; - name = "Atmos External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/access_button/west{ autolink_id = "atmostanks_btn_int"; name = "interior access button"; req_access_txt = "32" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plasteel, /area/station/engineering/gravitygenerator) "srJ" = ( @@ -94147,6 +94021,7 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = "MedbayFoyerPort" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, @@ -94156,7 +94031,6 @@ }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteblue" @@ -94248,17 +94122,22 @@ req_access_txt = "10;13"; vent_link_id = "stationai_vent" }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - autolink_id = "stationai_vent"; - dir = 4 - }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "suE" = ( /obj/machinery/firealarm/directional/south, /obj/machinery/light/directional/south, @@ -94290,6 +94169,7 @@ /obj/structure/chair{ dir = 1 }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "sve" = ( @@ -94330,13 +94210,14 @@ /area/station/hallway/primary/central/sw) "swm" = ( /obj/machinery/computer/card/minor/qm, +/obj/effect/turf_decal/delivery/hollow, /obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Requests Console"; - pixel_y = 30 + department = "Quartermaster's Desk"; + departmentType = 5; + name = "Quartermaster Requests Console"; + pixel_y = 30; + announcementConsole = 1 }, -/obj/effect/turf_decal/delivery/hollow, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "brown" @@ -94693,12 +94574,6 @@ dir = 8; name = "Hydroponics Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ - dir = 4 - }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ id_tag = "Hydroponics Shutters"; @@ -94710,7 +94585,10 @@ name = "Kitchen Privacy Shutters" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ - dir = 1 + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/hydroponics{ + dir = 8 }, /turf/simulated/floor/plating, /area/station/service/hydroponics) @@ -94934,15 +94812,13 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/landmark/start/barber, /turf/simulated/floor/plasteel{ icon_state = "barber" }, /area/station/service/barber) "sCq" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -95095,7 +94971,7 @@ network = list("SS13","Engineering") }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "sEI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -95249,6 +95125,7 @@ /area/station/science/rnd) "sIa" = ( /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" @@ -95256,8 +95133,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/brig, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -95276,6 +95151,7 @@ icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel/dark, /area/station/security/permabrig) "sIg" = ( @@ -95372,6 +95248,7 @@ /area/station/medical/surgery/secondary) "sJZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel, /area/station/security/permabrig) "sKr" = ( @@ -95516,9 +95393,9 @@ name = "escape pod 3" }, /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Escape Pod Hatch" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /turf/simulated/floor/mineral/titanium/blue, /area/shuttle/pod_3) @@ -95671,7 +95548,7 @@ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "sPz" = ( /obj/machinery/light/small/directional/north, /obj/structure/sign/vacuum{ @@ -95706,14 +95583,14 @@ /turf/simulated/floor/plasteel/dark, /area/station/security/execution) "sPW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "sQa" = ( /obj/structure/cable{ d1 = 4; @@ -95721,6 +95598,7 @@ icon_state = "4-8" }, /obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/dealer, /turf/simulated/floor/wood/fancy/cherry, /area/station/public/vacant_store) "sQe" = ( @@ -95830,10 +95708,8 @@ /turf/simulated/floor/plasteel, /area/station/medical/virology/lab) "sRJ" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -95845,7 +95721,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mail_sorting, /turf/simulated/floor/plasteel, /area/station/supply/sorting) "sRU" = ( @@ -95926,6 +95802,7 @@ "sUk" = ( /obj/structure/chair/stool, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/old_kitchen) "sUn" = ( @@ -95981,7 +95858,7 @@ int_button_link_id = "fpsolar_btn_int"; int_door_link_id = "fpsolar_door_int"; pixel_y = 25; - req_access_txt = "32"; + req_access_txt = "24"; vent_link_id = "fpsolar_vent" }, /obj/structure/cable{ @@ -95993,9 +95870,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "sVu" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Gambling Den" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /obj/structure/cable{ d1 = 1; @@ -96070,10 +95946,7 @@ }, /area/station/engineering/control) "sWY" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dust, /turf/simulated/floor/wood/oak, /area/station/maintenance/starboard) @@ -96137,7 +96010,6 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "Interrogation" @@ -96148,6 +96020,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel/dark, /area/station/security/processing) "sYf" = ( @@ -96205,10 +96078,7 @@ /area/station/public/locker) "sYQ" = ( /obj/structure/closet/secure_closet/detective, -/obj/item/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera" - }, +/obj/item/camera/detective, /obj/item/restraints/handcuffs, /obj/item/storage/lockbox/spy_kit, /obj/item/storage/box/bodybags, @@ -96283,7 +96153,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -96291,9 +96160,9 @@ }, /obj/machinery/door/airlock/bathroom{ id = "toilet2"; - id_tag = "toilet2"; - name = "Toilet" + id_tag = "toilet2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/public/toilet) "tad" = ( @@ -96411,10 +96280,8 @@ /area/station/maintenance/starboard2) "tbM" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor{ density = 0; icon_state = "open"; @@ -96443,6 +96310,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -96687,7 +96555,7 @@ /area/station/hallway/secondary/exit) "tgq" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -96702,6 +96570,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fore) "tgD" = ( @@ -96747,6 +96616,7 @@ /obj/structure/weightmachine/stacklifter, /obj/effect/turf_decal/delivery/hollow, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -96815,6 +96685,7 @@ /area/station/security/storage) "tjq" = ( /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Prison Gate"; name = "Prison Lockdown Blast Doors" @@ -97106,7 +96977,7 @@ /area/station/maintenance/starboard2) "tnj" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -7; pixel_y = 7 }, @@ -97182,9 +97053,9 @@ /area/station/hallway/primary/fore) "toG" = ( /obj/machinery/door/airlock/hydroponics, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -97720,12 +97591,11 @@ /area/station/public/fitness) "twD" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "E.X.P.E.R.I-MENTOR Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/tox, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel/white, /area/station/science/explab) "txc" = ( @@ -97736,7 +97606,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/wood/parquet, /area/station/service/library) "txi" = ( @@ -97860,7 +97729,8 @@ /area/station/engineering/controlroom) "tzq" = ( /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/fore) "tAa" = ( @@ -98042,6 +97912,7 @@ /area/station/medical/reception) "tDD" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/wood/oak, /area/station/maintenance/old_kitchen) "tDR" = ( @@ -98084,7 +97955,7 @@ pixel_x = 2; pixel_y = 7 }, -/obj/item/reagent_containers/food/drinks/mug/hos, +/obj/item/reagent_containers/drinks/mug/hos, /obj/machinery/camera{ c_tag = "Brig Head of Security's Bedroom"; dir = 1 @@ -98543,6 +98414,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "tNd" = ( @@ -98635,13 +98507,13 @@ /area/station/command/office/hos) "tOf" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 6 }, -/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/item/reagent_containers/drinks/bottle/vodka, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/blue{ dir = 6 @@ -98813,10 +98685,9 @@ "tRi" = ( /obj/machinery/door/airlock/external{ id_tag = "assolar_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -98830,7 +98701,7 @@ name = "exterior access button"; req_access_txt = "13" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "tRF" = ( @@ -98868,11 +98739,11 @@ /area/station/hallway/secondary/entry) "tSt" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -5; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = 5 }, /turf/simulated/floor/plasteel/white, @@ -98912,6 +98783,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plasteel{ icon_state = "chapel" }, @@ -98934,15 +98806,15 @@ "tTZ" = ( /obj/machinery/door/airlock/external{ id_tag = "laborcamp_home"; - locked = 1; - name = "Labor Camp Airlock" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, -/obj/effect/mapping_helpers/airlock/access/any/security/brig, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/station/security/permabrig) "tUs" = ( @@ -99119,7 +98991,7 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plating, /area/station/public/vacant_office) "tWL" = ( @@ -99508,9 +99380,8 @@ /area/station/maintenance/dormitory_maintenance) "ucc" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Cryogenic Dormitories" - }, +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -99518,13 +99389,14 @@ "uci" = ( /obj/machinery/door/airlock/external{ id_tag = "apmaint2_door_ext"; - locked = 1; - name = "West Maintenance External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/north{ autolink_id = "apmaint2_btn_ext"; name = "exterior access button" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plasteel, /area/station/maintenance/port) "ucm" = ( @@ -99538,6 +99410,7 @@ "ucQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutral" @@ -99635,9 +99508,9 @@ /area/station/command/bridge) "uew" = ( /obj/machinery/door/airlock{ - name = "Toilet"; id_tag = "DormToilet1" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -99962,10 +99835,9 @@ "ujF" = ( /obj/machinery/door/airlock/external{ id_tag = "fpsolar_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -99974,8 +99846,9 @@ /obj/machinery/access_button/south{ autolink_id = "fpsolar_btn_ext"; name = "exterior access button"; - req_access_txt = "32" + req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "ujU" = ( @@ -100158,6 +100031,7 @@ /obj/effect/turf_decal/siding/dark_red{ dir = 6 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "unR" = ( @@ -100171,7 +100045,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "unT" = ( /obj/structure/rack, /obj/effect/turf_decal/delivery/hollow, @@ -100425,8 +100299,9 @@ /obj/machinery/door/window/classic/reversed{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mule_bot, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/windoor/access/any/engineering/atmos{ + dir = 4 + }, /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) "uqn" = ( @@ -100567,6 +100442,13 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/central/sw) +"utu" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/simulated/floor/plasteel, +/area/station/maintenance/fore) "utQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -100775,6 +100657,11 @@ }, /turf/simulated/wall, /area/station/service/kitchen) +"uzH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/turf/simulated/floor/plasteel/freezer, +/area/station/security/permabrig) "uzO" = ( /obj/structure/disposalpipe/junction{ dir = 8; @@ -100903,15 +100790,19 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "uBg" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /obj/effect/decal/cleanable/dirt, @@ -101140,6 +101031,7 @@ "uGe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutral" @@ -101170,12 +101062,13 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/public/fitness) "uHo" = ( @@ -101185,6 +101078,7 @@ /obj/effect/turf_decal/siding/dark_red{ dir = 9 }, +/obj/effect/landmark/start/artist, /turf/simulated/floor/carpet/arcade, /area/station/public/arcade) "uHq" = ( @@ -101218,9 +101112,8 @@ /turf/simulated/floor/carpet/black, /area/station/security/warden) "uHS" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/iaa, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -101228,6 +101121,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/iaa, /turf/simulated/floor/plating, /area/station/legal/lawoffice) "uHX" = ( @@ -101407,9 +101301,9 @@ /area/station/maintenance/medmaint) "uKC" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/multi_tile/supply/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/general, /turf/simulated/floor/plasteel, /area/station/supply/office) "uKF" = ( @@ -101426,7 +101320,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "uKR" = ( -/obj/item/reagent_containers/food/snacks/candy/gummybear/green, +/obj/item/food/snacks/candy/gummybear/green, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/east, /turf/simulated/floor/plasteel{ @@ -101576,9 +101470,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Control Room" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/dark, /area/station/public/fitness) "uMS" = ( @@ -101843,6 +101736,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/spawner/prisoner, /turf/simulated/floor/plasteel/dark, /area/station/security/permabrig) "uPY" = ( @@ -101899,11 +101793,9 @@ "uQJ" = ( /obj/machinery/door/airlock/external{ id_tag = "stationai_door_int"; - locked = 1; - name = "Minisat Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -101917,8 +101809,15 @@ name = "interior access button"; req_access_txt = "10;13" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "uQP" = ( /obj/structure/chair/sofa/right{ dir = 8 @@ -101927,7 +101826,7 @@ /area/station/service/bar/atrium) "uQQ" = ( /obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/condiment/saltshaker, /obj/item/kitchen/utensil/fork{ pixel_x = -5 }, @@ -102041,10 +101940,10 @@ pixel_x = -3; pixel_y = -3 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ +/obj/machinery/light/directional/east, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 8 }, -/obj/machinery/light/directional/east, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) "uSu" = ( @@ -102086,24 +101985,6 @@ icon_state = "darkblue" }, /area/station/security/detective) -"uSM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/autoname, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/starboard) "uST" = ( /obj/effect/turf_decal/delivery/hollow, /obj/effect/decal/cleanable/dirt, @@ -102124,6 +102005,7 @@ /area/station/maintenance/apmaint) "uTf" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -102136,7 +102018,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/mapping_helpers/airlock/access/any/service/bar, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/service/barber) @@ -102231,6 +102112,9 @@ /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/genetics{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general{ + dir = 1 + }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -102263,6 +102147,7 @@ /area/station/engineering/controlroom) "uUo" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -102403,11 +102288,6 @@ dir = 4 }, /obj/effect/landmark/start/doctor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue" @@ -102524,12 +102404,13 @@ id_tag = "med_int_door"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/access_button/east{ autolink_id = "med_int_button"; name = "interior access button" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/engine, /area/station/maintenance/starboard2) "uXV" = ( @@ -102551,7 +102432,7 @@ "uYg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dust, -/obj/item/reagent_containers/food/snacks/meat, +/obj/item/food/snacks/meat, /obj/effect/decal/cleanable/blood/old, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -102637,7 +102518,6 @@ /obj/machinery/door/window/classic/normal{ name = "Cryo Tank Storage" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/general, /obj/machinery/light/directional/north, /turf/simulated/floor/plasteel{ dir = 5; @@ -102659,7 +102539,7 @@ "vaT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/fries{ +/obj/item/food/snacks/fries{ pixel_y = 2 }, /turf/simulated/floor/plating, @@ -102691,7 +102571,7 @@ dir = 1 }, /obj/structure/window/plasmareinforced, -/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/meter{ layer = 3.3 }, @@ -102870,7 +102750,7 @@ /area/station/legal/lawoffice) "veB" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, +/obj/item/food/snacks/grown/poppy/geranium, /obj/item/soap/deluxe, /obj/machinery/power/apc{ cell_type = 25000; @@ -102943,14 +102823,13 @@ /area/station/engineering/atmos/control) "vgr" = ( /obj/machinery/door/airlock/medical, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -102992,9 +102871,9 @@ }, /obj/machinery/door/airlock/security/glass{ id_tag = "perma_door_int"; - locked = 1; - name = "Prison Wing" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/south{ autolink_id = "perma_btn_int"; name = "Prison Wing Access Button"; @@ -103002,10 +102881,9 @@ pixel_y = 0; pixel_x = -24 }, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -103060,9 +102938,9 @@ /area/station/science/toxins/mixing) "vii" = ( /obj/machinery/door/airlock/public/glass{ - id_tag = "ExitPrivate"; - name = "Public Access" + id_tag = "ExitPrivate" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "ExitPrivate" }, @@ -103189,11 +103067,15 @@ /obj/structure/sign/vacuum{ pixel_x = -32 }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + autolink_id = "stationai_vent" + }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "vkw" = ( /obj/machinery/hologram/holopad, /obj/structure/cable{ @@ -103242,11 +103124,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue" @@ -103313,11 +103190,11 @@ /area/station/service/library) "vlR" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = -6; pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_x = 6; pixel_y = 10 }, @@ -103454,7 +103331,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) "voc" = ( @@ -103656,7 +103533,7 @@ /turf/simulated/floor/wood/oak, /area/station/service/theatre) "vrM" = ( -/obj/machinery/suit_storage_unit/security, +/obj/machinery/suit_storage_unit/security/secure, /obj/machinery/light/directional/east, /turf/simulated/floor/plasteel{ dir = 5; @@ -103687,6 +103564,7 @@ /area/station/public/toilet) "vse" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" @@ -103699,16 +103577,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" }, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/medmaint) "vsi" = ( @@ -103810,7 +103686,9 @@ }, /area/station/maintenance/starboard) "vvh" = ( -/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + volume = 200 + }, /obj/effect/turf_decal/delivery/hollow, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -103818,18 +103696,19 @@ /turf/simulated/floor/plasteel, /area/station/engineering/atmos/control) "vvF" = ( -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "cellprivacy" }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel/dark, /area/station/security/processing) "vvS" = ( /obj/structure/table/wood, /obj/item/picket_sign, -/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/condiment/saltshaker, /turf/simulated/floor/wood/oak, /area/station/maintenance/old_kitchen) "vwk" = ( @@ -103912,6 +103791,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/landmark/spawner/prisoner, /turf/simulated/floor/plasteel/dark, /area/station/security/permabrig) "vxH" = ( @@ -104068,15 +103948,15 @@ dir = 1; name = "Kitchen Desk" }, -/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ - dir = 1 - }, /obj/machinery/door/poddoor/shutters/preopen{ dir = 2; id_tag = "kitchenhall"; name = "Kitchen Shutters" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/windoor/access/any/service/kitchen{ + dir = 1 + }, /turf/simulated/floor/plating, /area/station/service/kitchen) "vzG" = ( @@ -104104,9 +103984,8 @@ }, /area/station/medical/storage) "vAj" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -104179,8 +104058,8 @@ /area/station/hallway/secondary/bridge) "vCt" = ( /obj/structure/table/tray, -/obj/item/storage/firstaid/surgery{ - pixel_y = 6 +/obj/item/storage/surgical_tray{ + pixel_y = 8 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -104199,11 +104078,12 @@ id_tag = "vir_outer_door"; locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/access_button/east{ autolink_id = "vir_outer_button"; name = "interior access button" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "vCV" = ( @@ -104335,11 +104215,12 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, /obj/machinery/recharger, -/obj/item/reagent_containers/food/drinks/bottle/random_drink, +/obj/item/reagent_containers/drinks/bottle/random_drink, /turf/simulated/floor/plating, /area/station/maintenance/starboard) "vEN" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Biohazard_medi"; name = "Quarantine Lockdown" @@ -104355,9 +104236,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/station/maintenance/aft) "vEQ" = ( @@ -104382,23 +104261,6 @@ }, /turf/simulated/floor/plasteel/grimy, /area/station/public/vacant_office) -"vFy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/station/medical/medbay2) "vFB" = ( /obj/machinery/hologram/holopad{ pixel_x = 16 @@ -104511,11 +104373,11 @@ /area/station/engineering/controlroom) "vHD" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Turbine Generator Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, /turf/simulated/floor/plasteel, /area/station/maintenance/turbine) "vHE" = ( @@ -104535,10 +104397,7 @@ }, /area/station/medical/morgue) "vHZ" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/maintenance/starboard) @@ -104725,9 +104584,9 @@ "vJP" = ( /obj/machinery/door/airlock/external{ id_tag = "escape_door_int"; - locked = 1; - name = "Escape External Access" + locked = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/access_button/east{ @@ -104735,6 +104594,7 @@ name = "interior access button"; req_access_txt = "10;13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "vKr" = ( @@ -104801,6 +104661,7 @@ /obj/machinery/alarm/directional/north, /obj/structure/sign/poster/official/random/east, /obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/bar, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -104902,9 +104763,9 @@ "vMT" = ( /obj/machinery/door/airlock/bathroom{ id = "toilet2"; - id_tag = "toilet2"; - name = "Toilet" + id_tag = "toilet2" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden/crude, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -104915,6 +104776,7 @@ /obj/item/bedsheet/red, /obj/effect/decal/cleanable/dirt, /obj/machinery/alarm/directional/east, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plating, /area/station/maintenance/virology_maint) "vNh" = ( @@ -104936,9 +104798,8 @@ /area/station/security/processing) "vNm" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary tool storage" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -105109,10 +104970,7 @@ "vQN" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/reinforced/normal{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/armory{ - dir = 8 + dir = 4 }, /obj/machinery/door/poddoor/shutters/preopen{ dir = 8; @@ -105124,6 +104982,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/armory{ + dir = 4 + }, /turf/simulated/floor/plasteel/dark, /area/station/security/warden) "vQR" = ( @@ -105152,10 +105013,9 @@ autoclose = 0; heat_proof = 1; id_tag = "turbine_door_ext"; - locked = 1; - name = "Turbine Exterior Airlock" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -105166,6 +105026,7 @@ name = "Gas Turbine Access Button"; pixel_y = 24 }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /turf/simulated/floor/engine, /area/station/maintenance/turbine) "vRk" = ( @@ -105257,15 +105118,16 @@ "vTv" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - id_tag = "pub_room"; - name = "Public Meeting Room" + id_tag = "pub_room" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/carpet, /area/station/science/robotics/showroom) "vTJ" = ( @@ -105464,10 +105326,8 @@ /area/station/security/prisonlockers) "vVZ" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -105492,6 +105352,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "vault" @@ -105530,10 +105391,8 @@ /area/station/maintenance/fsmaint) "vWB" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -105542,6 +105401,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/science/robotics, /turf/simulated/floor/plasteel/white, /area/station/science/robotics) "vWK" = ( @@ -105551,6 +105411,7 @@ /area/station/maintenance/medmaint) "vWU" = ( /obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/polarized{ id = "VirRest" @@ -105567,7 +105428,6 @@ icon_state = "4-8" }, /obj/effect/mapping_helpers/airlock/access/any/medical/virology, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -105601,6 +105461,7 @@ /area/station/security/permabrig) "vXG" = ( /obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -105612,7 +105473,6 @@ }, /obj/effect/mapping_helpers/airlock/access/any/medical/genetics, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -105729,10 +105589,8 @@ }, /area/station/hallway/secondary/bridge) "vZO" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Science Chemistry" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/research, +/obj/machinery/door/airlock/research/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -105748,6 +105606,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/science/research, /turf/simulated/floor/plasteel/white, /area/station/science/misc_lab) "waa" = ( @@ -105782,6 +105641,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/abandoned_garden) "waz" = ( +/obj/effect/landmark/spawner/prisoner, /turf/simulated/floor/plasteel/dark, /area/station/security/permabrig) "waQ" = ( @@ -105928,7 +105788,7 @@ /area/space/nearstation) "wdu" = ( /turf/simulated/wall, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "wdz" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -106004,7 +105864,7 @@ "weH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/birthdaycakeslice, +/obj/item/food/snacks/birthdaycakeslice, /turf/simulated/floor/plating, /area/station/maintenance/fsmaint) "weO" = ( @@ -106201,7 +106061,7 @@ /obj/item/clothing/mask/cigarette/pipe, /obj/item/clothing/accessory/holster, /obj/item/clothing/suit/jacket/leather/overcoat, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/drinks/bottle/whiskey, /obj/item/clothing/head/fedora/brownfedora, /turf/simulated/floor/plating, /area/station/maintenance/old_detective) @@ -106411,13 +106271,6 @@ icon_state = "green" }, /area/station/hallway/secondary/exit) -"wlY" = ( -/obj/machinery/door/airlock/external{ - id_tag = "trade_dock"; - locked = 1 - }, -/turf/simulated/floor/plasteel, -/area/station/hallway/secondary/entry) "wmc" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -106456,9 +106309,8 @@ }, /area/station/medical/virology) "wmB" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B" - }, +/obj/machinery/door/airlock/virology/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/item/soap, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -106542,10 +106394,9 @@ "wou" = ( /obj/machinery/door/airlock/external{ id_tag = "engines_door_ext"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -106557,6 +106408,7 @@ name = "exterior access button"; req_access_txt = "10;13" }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, /obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/simulated/floor/plasteel, /area/station/engineering/control) @@ -106751,8 +106603,8 @@ /area/station/maintenance/fsmaint) "wtG" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -106767,6 +106619,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel, /area/station/maintenance/dormitory_maintenance) "wtM" = ( @@ -107040,14 +106893,8 @@ dir = 8 }, /obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plasteel/dark, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "wxg" = ( /obj/machinery/light/small/directional/north, /obj/effect/turf_decal/delivery/hollow, @@ -107135,10 +106982,9 @@ "wzi" = ( /obj/machinery/door/airlock/external{ id_tag = "fpsolar_door_int"; - locked = 1; - name = "Engineering External Access" + locked = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -107150,8 +106996,9 @@ /obj/machinery/access_button/north{ autolink_id = "fpsolar_btn_int"; name = "interior access button"; - req_access_txt = "32" + req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/external, /turf/simulated/floor/plating, /area/station/maintenance/auxsolarport) "wzJ" = ( @@ -107359,6 +107206,7 @@ /area/station/command/office/cmo) "wDr" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -107626,7 +107474,9 @@ /obj/machinery/atmospherics/unary/portables_connector{ dir = 8 }, -/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + volume = 200 + }, /obj/effect/turf_decal/delivery/red/hollow, /turf/simulated/floor/plasteel/dark, /area/station/security/execution) @@ -107759,7 +107609,7 @@ /obj/item/stack/packageWrap{ pixel_y = 7 }, -/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/condiment/enzyme, /obj/item/reagent_containers/glass/bucket{ pixel_x = 6 }, @@ -107813,9 +107663,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance{ - name = "Forensics Morgue" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/disposal/west) @@ -107829,9 +107678,9 @@ /area/station/engineering/mechanic) "wMZ" = ( /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel, /area/station/security/processing) "wNp" = ( @@ -107852,10 +107701,8 @@ /area/station/science/research) "wNv" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Expedition Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/expedition, +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -107863,6 +107710,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/command/expedition, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -107997,16 +107845,16 @@ id_tag = "Secure Gate"; name = "Security Blast Door" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ id_tag = "BrigLeft" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Secure Gate"; name = "Security Blast Door" }, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -108099,6 +107947,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/landmark/start/prisoner, /turf/simulated/floor/carpet, /area/station/security/permabrig) "wRE" = ( @@ -108137,10 +107986,7 @@ /turf/simulated/floor/engine, /area/station/science/explab/chamber) "wRZ" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plating, /area/station/maintenance/fore) "wSa" = ( @@ -108241,10 +108087,7 @@ }, /area/station/maintenance/fsmaint) "wTf" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) "wTo" = ( @@ -108261,6 +108104,7 @@ id = "CMO_Bedroom" }, /obj/machinery/door/airlock/command/cmo/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -108269,7 +108113,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/mapping_helpers/airlock/access/any/medical/cmo, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -108346,9 +108189,9 @@ /obj/machinery/door/airlock/security/glass{ id_tag = "BrigRight" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/doors, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" @@ -108445,7 +108288,7 @@ pixel_x = -3; pixel_y = -3 }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general{ dir = 8 }, /turf/simulated/floor/plasteel/dark, @@ -108550,7 +108393,7 @@ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "wWY" = ( /obj/effect/spawner/window/reinforced/polarized/grilled{ id = "Interrogation" @@ -108665,9 +108508,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/fore2) "wYw" = ( -/obj/machinery/door/airlock/glass{ - name = "Barber Shop" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "barber" }, @@ -108700,10 +108542,7 @@ /turf/simulated/floor/plating, /area/station/engineering/mechanic) "wYP" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -108823,9 +108662,8 @@ "xaO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -108886,9 +108724,9 @@ /area/station/medical/virology/lab) "xcg" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/meat/human, -/obj/item/reagent_containers/food/snacks/meat/human, -/obj/item/reagent_containers/food/snacks/meat/human, +/obj/item/food/snacks/meat/human, +/obj/item/food/snacks/meat/human, +/obj/item/food/snacks/meat/human, /obj/machinery/alarm/directional/south, /turf/simulated/floor/plasteel{ dir = 10; @@ -108993,8 +108831,8 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass, -/obj/effect/mapping_helpers/airlock/access/any/security/general, /obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkred" @@ -109040,6 +108878,10 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/simulated/floor/plating, /area/station/maintenance/fore) +"xeo" = ( +/obj/effect/landmark/start/artist, +/turf/simulated/floor/wood/fancy, +/area/station/service/theatre) "xeI" = ( /obj/structure/cable{ d1 = 1; @@ -109110,8 +108952,6 @@ id_tag = "Secure Gate"; name = "Security Blast Door" }, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel/dark, /area/station/security/prison/cell_block/A) @@ -109222,7 +109062,7 @@ }, /obj/effect/landmark/spawner/rev, /obj/machinery/light/small/directional/south, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 6; pixel_x = 8; volume = 0 @@ -109338,9 +109178,10 @@ "xkM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/medical/genetics, +/obj/effect/mapping_helpers/airlock/access/any/medical/morgue, /obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -109359,6 +109200,7 @@ /area/station/service/expedition) "xkZ" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -109371,7 +109213,7 @@ }, /area/station/medical/virology/lab) "xli" = ( -/obj/machinery/suit_storage_unit/mime, +/obj/machinery/suit_storage_unit/mime/secure, /obj/machinery/door_control/shutter/west{ id = "Mime"; name = "Mimes Privacy Shutters Control" @@ -109601,10 +109443,9 @@ "xoD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - id_tag = "hopofficedoor"; - name = "Head of Personnel" + id_tag = "hopofficedoor" }, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -109613,6 +109454,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/wood/oak, /area/station/command/office/hop) "xoF" = ( @@ -109693,11 +109536,10 @@ /area/station/maintenance/medmaint) "xqb" = ( /obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/security/armory, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -109712,6 +109554,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/security/armory, /turf/simulated/floor/plasteel/dark, /area/station/security/warden) "xqd" = ( @@ -109733,6 +109576,7 @@ "xql" = ( /obj/structure/weightmachine/stacklifter, /obj/effect/turf_decal/delivery/hollow, +/obj/effect/landmark/start/assistant, /turf/simulated/floor/plasteel, /area/station/public/fitness) "xqw" = ( @@ -109811,14 +109655,15 @@ /area/station/public/pool) "xrW" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /turf/simulated/floor/plasteel, /area/station/maintenance/fore) "xse" = ( @@ -109876,7 +109721,6 @@ icon_state = "1-2" }, /obj/effect/mapping_helpers/airlock/windoor/access/any/medical/virology, -/obj/effect/mapping_helpers/airlock/windoor/access/any/medical/virology, /turf/simulated/floor/plasteel, /area/station/medical/virology/lab) "xsR" = ( @@ -110258,15 +110102,15 @@ icon_state = "1-4" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/command/magistrate, -/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "magistrate" }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/command/magistrate, /turf/simulated/floor/wood/fancy/oak, /area/station/legal/magistrate) "xxW" = ( @@ -110366,14 +110210,13 @@ /turf/simulated/floor/carpet/royalblack, /area/station/legal/courtroom) "xBs" = ( -/obj/machinery/door/airlock/multi_tile/security/glass{ - name = "Brig" - }, +/obj/machinery/door/airlock/multi_tile/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/security/doors, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/security/general, /turf/simulated/floor/plasteel/dark, /area/station/security/storage) "xBx" = ( @@ -110704,6 +110547,18 @@ /obj/effect/landmark/start/psychiatrist, /turf/simulated/floor/carpet, /area/station/medical/psych) +"xGk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start/assistant, +/turf/simulated/floor/plasteel, +/area/station/public/fitness) "xGw" = ( /turf/simulated/floor/plasteel{ dir = 1; @@ -110765,10 +110620,7 @@ }, /area/station/medical/reception) "xHN" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, +/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -110797,6 +110649,9 @@ c_tag = "Brig Prison Hall"; dir = 8 }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/brig{ + dir = 8 + }, /turf/simulated/floor/plasteel/dark, /area/station/security/permabrig) "xIf" = ( @@ -110924,7 +110779,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/drinks/drinkingglass, /turf/simulated/floor/plating, /area/station/maintenance/disposal/east) "xJH" = ( @@ -111318,7 +111173,9 @@ }, /area/station/hallway/secondary/entry) "xOZ" = ( -/obj/machinery/atmospherics/portable/canister/sleeping_agent, +/obj/machinery/atmospherics/portable/canister/sleeping_agent{ + volume = 200 + }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/station/science/storage) @@ -111333,16 +111190,12 @@ id_tag = "Secure Armory"; name = "Secure Armory Shutters" }, -/obj/machinery/door/window/reinforced/normal{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/windoor/access/all/security/general{ - dir = 1 - }, +/obj/machinery/door/window/reinforced/normal, /obj/machinery/door/poddoor/preopen{ id_tag = "ArmoryLock"; name = "Armory Lockdown" }, +/obj/effect/mapping_helpers/airlock/windoor/access/any/security/general, /turf/simulated/floor/plasteel/dark, /area/station/security/armory/secure) "xPs" = ( @@ -111573,6 +111426,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/uncertain, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "chapel" @@ -111678,8 +111532,16 @@ icon_state = "neutralfull" }, /area/station/hallway/primary/port) +"xTY" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/effect/landmark/start/bar, +/turf/simulated/floor/carpet/orange, +/area/station/service/bar/atrium) "xUg" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/barricade/wooden, /turf/simulated/floor/plating, /area/station/maintenance/starboard2) @@ -112459,16 +112321,15 @@ /area/station/engineering/atmos/control) "yhe" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ icon_state = "purplefull" }, @@ -112562,7 +112423,7 @@ dir = 8; icon_state = "vault" }, -/area/station/engineering/aitransit) +/area/station/engineering/ai_transit_tube) "yiO" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -112644,6 +112505,10 @@ }, /turf/simulated/floor/plating, /area/station/security/processing) +"yku" = ( +/obj/effect/landmark/start/artist, +/turf/simulated/floor/carpet/arcade, +/area/station/public/arcade) "ykw" = ( /obj/structure/cable{ d1 = 1; @@ -121562,7 +121427,7 @@ bLR bNM bNM bNM -bTM +bTH bNM bNM bNM @@ -123104,7 +122969,7 @@ bUJ aaa bku bmq -bTS +bPV bpq brr aaa @@ -123875,7 +123740,7 @@ bUJ aaa bPU bms -bZw +oMO bms bXR aaa @@ -124130,11 +123995,11 @@ aaa aaa bUJ abj -bPV +csr abj -chw abj -bPV +abj +csr aaa aaa aaa @@ -124389,7 +124254,7 @@ bUJ aaa bPW wXe -chw +abj wXe bXS aaa @@ -124646,7 +124511,7 @@ bUJ aaa abj bRQ -chw +abj bWb abj aaa @@ -127674,7 +127539,7 @@ aaa aaa dij dij -aGW +sso dij dij aaa @@ -130810,7 +130675,7 @@ bge bGu bwN abj -bUJ +chw abj abj abj @@ -131071,7 +130936,7 @@ ptq qwS qwS abj -csy +bPW abj bXU bZl @@ -131328,7 +131193,7 @@ suC vkv qwS bZf -ctI +bZf ctJ bXU bZm @@ -131786,7 +131651,7 @@ aaa aaa dij dij -aGW +sso dij abj aaa @@ -131796,7 +131661,7 @@ abj aaa abj dij -aGW +sso dij dij abj @@ -131842,7 +131707,7 @@ fGI eNr pPZ rJg -pbJ +kFr jof bXU bXU @@ -140768,7 +140633,7 @@ abj abj abj syc -wlY +ebA ebA acC abj @@ -143346,7 +143211,7 @@ aaa acC ant jTD -dyU +utu aAj apI lpk @@ -143618,7 +143483,7 @@ hle bGx rwU kyg -tEA +oHD sCp tEA wYw @@ -144003,7 +143868,7 @@ dPE dQi fGy hRF -dRM +aMt fTn dRM ozL @@ -144398,7 +144263,7 @@ jZx idp aKl kAy -hEG +eiG lSB hEG vrJ @@ -144652,7 +144517,7 @@ sGa vxa aOx uDK -idp +xeo aKl dBq dBq @@ -144914,7 +144779,7 @@ aKl lSB aPS kAy -aPS +fiz nkM aYZ aYZ @@ -145680,7 +145545,7 @@ aEx qKt aOx aHJ -idp +xeo aKl dBq dBq @@ -146199,7 +146064,7 @@ aIX kAy hEG lSB -hEG +eiG dBq dBq dBq @@ -146453,7 +146318,7 @@ aGy cnC rza efP -dDJ +dBq dBq dBq dBq @@ -146831,7 +146696,7 @@ duw duw duw dJx -dSr +dKK dIx dIx dIx @@ -146979,11 +146844,11 @@ rWV rWV gRS bcv -bhK +kGD onD gRS bhK -onD +lOT gRS sKr xfy @@ -147497,7 +147362,7 @@ ldZ bTg mDu uQP -bTg +xTY blo yed xfy @@ -148524,7 +148389,7 @@ bdR uQP bTg gRS -uQP +pxe bTg gRS sKr @@ -149312,7 +149177,7 @@ bCs bHr rDN bHs -bOT +jOu bKS bMY gTy @@ -150421,7 +150286,7 @@ hhp dUu jev dTy -dKQ +klu dXn dKQ dIO @@ -151449,7 +151314,7 @@ hId ryk dTy dTy -dKQ +klu dXn dKQ dIO @@ -153924,8 +153789,8 @@ bgS wGq wXc bnh -bel -dlE +bbi +bov hMM spq wkq @@ -158091,7 +157956,7 @@ qRc wQQ rbM yff -vFy +dtz dtz toO dtz @@ -158348,7 +158213,7 @@ gbi gbi gbi gbi -uSM +kOA gbi nTE nLC @@ -159095,7 +158960,7 @@ pbz hTV bCH wDd -ygh +gqV jtC coM crX @@ -160303,7 +160168,7 @@ aaa aaa dij dij -aGW +sso dij abj adg @@ -161831,7 +161696,7 @@ aaa aaa aaa dij -aGW +sso dij dij abj @@ -163232,7 +163097,7 @@ jWj cIk kYb cIk -cIk +yku anv hmU gnn @@ -163375,7 +163240,7 @@ aaa aaa aaa aaa -aGW +sso abj ace aco @@ -163473,11 +163338,11 @@ hYU cwk uMO cAs -cAs +snx cAs qqh kQm -kQm +xGk kQm ibt nQT @@ -165537,7 +165402,7 @@ cJC prx cHa cJn -qGm +qJx kaG kyI xrg @@ -166059,7 +165924,7 @@ cWh cWh ckX cWh -nZg +hvN wqV hQq abj @@ -167268,13 +167133,13 @@ wcy qnD saC fGi -uFf +lqB saC qnD saC rRb bfH -bfH +uzH rRb eYN rRb @@ -167339,11 +167204,11 @@ hQq wIb pLT wgH -pLT +nVU tfF pLT bUe -pLT +nVU aTC hQq cHa @@ -168302,7 +168167,7 @@ bil syi rRb uWd -cyV +iuP xmd lLS xPW @@ -169849,11 +169714,11 @@ bSX axt vXr bfC +otB tqm +qQX tqm -hZR -tqm -tqm +otB qgl rRb nCq @@ -170101,7 +169966,7 @@ axA dgi rRb cXP -nRv +eRj aXt axt fxa diff --git a/_maps/map_files220/generic/Admin_Zone.dmm b/_maps/map_files220/generic/Admin_Zone.dmm index c794f3ba7784..cb4a80df0e1e 100644 --- a/_maps/map_files220/generic/Admin_Zone.dmm +++ b/_maps/map_files220/generic/Admin_Zone.dmm @@ -691,13 +691,13 @@ /area/admin) "kQ" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/grown/citrus/lemon, -/obj/item/reagent_containers/food/snacks/grown/berries, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/cherries, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/mushroom/amanita, +/obj/item/food/snacks/grown/citrus/lemon, +/obj/item/food/snacks/grown/berries, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/cherries, +/obj/item/food/snacks/grown/citrus/orange, +/obj/item/food/snacks/grown/corn, +/obj/item/food/snacks/grown/mushroom/amanita, /turf/simulated/floor/wood/oak, /area/admin) "kT" = ( @@ -3247,7 +3247,7 @@ "Vh" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_y = 5 }, /turf/simulated/floor/plasteel{ diff --git a/_maps/map_files220/generic/Lavaland.dmm b/_maps/map_files220/generic/Lavaland.dmm index f05615226571..cc3eeb2e9c3e 100644 --- a/_maps/map_files220/generic/Lavaland.dmm +++ b/_maps/map_files220/generic/Lavaland.dmm @@ -178,9 +178,8 @@ /turf/simulated/floor/plasteel, /area/mine/laborcamp) "aB" = ( -/obj/machinery/door/airlock{ - name = "Labor Camp Bathroom" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel/white, @@ -363,10 +362,8 @@ /area/mine/laborcamp/security) "ba" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Security" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Labor"; name = "labor camp blast door" @@ -382,6 +379,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -606,16 +604,15 @@ /turf/simulated/floor/plasteel, /area/mine/laborcamp) "bA" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Backroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/mine/laborcamp) "bB" = ( @@ -674,22 +671,22 @@ /area/shuttle/mining) "bG" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/drinks/cans/beer, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -1; pixel_y = 9 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -8 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 4; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -7 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 7; pixel_y = 5 }, @@ -732,22 +729,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/dark, /area/mine/laborcamp) "bM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Labor Camp Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/mine/laborcamp) "bN" = ( @@ -755,9 +750,9 @@ /area/mine/outpost/cafeteria) "bO" = ( /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Labor Shuttle Airlock" + id_tag = "s_docking_airlock" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/docking_port/mobile/labour, /obj/structure/fans/tiny, /obj/docking_port/stationary{ @@ -774,11 +769,8 @@ /area/shuttle/siberia) "bP" = ( /obj/structure/fans/tiny, -/obj/machinery/door/airlock/maintenance/external{ - name = "Catwalk Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/machinery/door/airlock/maintenance/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -786,6 +778,7 @@ /obj/structure/cable/cyan{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/catwalk, /area/mine/outpost/engineering) "bQ" = ( @@ -799,9 +792,8 @@ /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "bR" = ( -/obj/machinery/door/airlock/glass{ - name = "Cafeteria" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -811,7 +803,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" @@ -974,7 +965,7 @@ /area/mine/outpost/storage) "cl" = ( /obj/structure/lattice/catwalk/mining, -/obj/item/reagent_containers/food/snacks/fortunecookie{ +/obj/item/food/snacks/fortunecookie{ pixel_y = -5; pixel_x = -6 }, @@ -1253,8 +1244,9 @@ }, /area/mine/outpost/cafeteria) "cV" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/south) "cW" = ( @@ -1292,10 +1284,10 @@ "cZ" = ( /obj/structure/fans/tiny, /obj/machinery/door/airlock/multi_tile/supply/glass, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, /obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -1715,12 +1707,10 @@ /area/mine/outpost/hallway/east) "dL" = ( /obj/machinery/door/airlock/maintenance/external{ - name = "Processing Room"; welded = 1 }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -1729,6 +1719,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/production) "dM" = ( @@ -1829,15 +1820,14 @@ /turf/simulated/floor/plating, /area/mine/outpost/maintenance/east) "dX" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "EVA Storage" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -1966,9 +1956,8 @@ /turf/simulated/floor/lava/lava_land_surface, /area/lavaland/surface/outdoors/legion) "ek" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Hallway" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1976,8 +1965,8 @@ dir = 8 }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -2221,9 +2210,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/airlock/mining/glass{ - name = "Hallway" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2233,22 +2221,19 @@ icon_state = "4-8" }, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /obj/structure/disposalpipe/segment{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ icon_state = "darkgreencorners"; dir = 4 }, /area/mine/outpost/hallway/west) "eI" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/obj/machinery/door/airlock/maintenance{ - name = "Infirmary Maintence" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/medbay) "eJ" = ( @@ -2348,9 +2333,8 @@ }, /area/mine/outpost/storage) "eT" = ( -/obj/machinery/door/airlock/command/qm/glass{ - name = "Quartermaster's Office" - }, +/obj/machinery/door/airlock/command/qm/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, @@ -2362,11 +2346,11 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/effect/mapping_helpers/airlock/access/all/command/general, /obj/effect/mapping_helpers/airlock/polarized{ id = "mining qm" }, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, +/obj/effect/mapping_helpers/airlock/access/any/command/blueshield, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -2388,11 +2372,11 @@ /area/mine/outpost/hallway/west) "eW" = ( /obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 2; pixel_y = 6 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -2; pixel_y = 4 }, @@ -2426,19 +2410,17 @@ }, /area/mine/outpost/hallway/west) "fa" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Hallway" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ icon_state = "darkpurplecorners" }, /area/mine/outpost/hallway/west) "fb" = ( /obj/structure/reagent_dispensers/oil, -/obj/item/reagent_containers/food/drinks/oilcan, +/obj/item/reagent_containers/drinks/oilcan, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/south) "fc" = ( @@ -2559,18 +2541,17 @@ /area/mine/outpost/hallway/west) "fn" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Box Storage" - }, +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -2597,9 +2578,8 @@ /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "fr" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, +/obj/machinery/door/airlock/medical/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -2613,7 +2593,6 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -2621,13 +2600,12 @@ /area/mine/outpost/medbay) "fs" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Box Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -2688,15 +2666,14 @@ }, /area/mine/outpost/hallway/west) "fz" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Shuttle Dock" - }, +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "darkredfull" @@ -2954,16 +2931,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/airlock/atmos{ - name = "Life Support" - }, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/catwalk, /area/mine/outpost/engineering) "gf" = ( @@ -3085,9 +3059,8 @@ /turf/simulated/floor/lava/mapping_lava, /area/lavaland/surface/outdoors/legion) "gp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Central Hallway Maintence" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -3095,8 +3068,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/hallway/west) "gq" = ( @@ -3182,9 +3154,9 @@ dir = 4 }, /obj/machinery/door/airlock/external{ - id_tag = "laborcamp_away2"; - name = "Labor Camp Airlock" + id_tag = "laborcamp_away2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/mine/laborcamp) "gy" = ( @@ -3258,9 +3230,9 @@ /obj/structure/fans/tiny, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external{ - id_tag = "laborcamp_away2"; - name = "Labor Camp Airlock" + id_tag = "laborcamp_away2" }, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel, /area/mine/laborcamp) "gG" = ( @@ -4504,12 +4476,10 @@ /area/lavaland/surface/outdoors) "lx" = ( /obj/structure/fans/tiny, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, /obj/effect/spawner/random_spawners/dirt_maybe, -/obj/machinery/door/airlock/maintenance/external/glass{ - name = "Landing Pad" - }, +/obj/machinery/door/airlock/maintenance/external/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/catwalk, /area/mine/outpost/hallway/west) "ly" = ( @@ -5029,10 +4999,9 @@ /area/lavaland/surface/outdoors/legion) "mU" = ( /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/obj/machinery/door/airlock/research{ - name = "Mech Bay" - }, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel, /area/mine/outpost/mechbay) "mV" = ( @@ -5231,13 +5200,11 @@ /turf/simulated/floor/carpet, /area/mine/outpost/quartermaster) "nX" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "Catwalk Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/machinery/door/airlock/maintenance/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/south) "ob" = ( @@ -5301,7 +5268,7 @@ "oB" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, -/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/food/snacks/grown/harebell, /obj/item/radio/intercom/directional/south, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/east) @@ -5704,12 +5671,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/obj/machinery/door/airlock/atmos{ - name = "Life Support" - }, +/obj/machinery/door/airlock/atmos, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, /obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/catwalk, /area/mine/outpost/hallway/west) @@ -5749,9 +5713,8 @@ /turf/simulated/floor/carpet, /area/mine/outpost/quartermaster) "st" = ( -/obj/machinery/door/airlock/glass{ - name = "Construction Site" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5760,6 +5723,7 @@ /obj/machinery/atmospherics/pipe/cap/hidden/supply{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/south) "sv" = ( @@ -5782,9 +5746,8 @@ /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors/outpost/catwalk) "sD" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Hallway" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/disposalpipe/segment{ dir = 8 }, @@ -5792,8 +5755,8 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -5801,6 +5764,7 @@ /area/mine/outpost/hallway/west) "sF" = ( /obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /turf/simulated/floor/plasteel/white, /area/mine/laborcamp) "sL" = ( @@ -6133,11 +6097,9 @@ /area/mine/outpost/hallway/east) "uq" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintence" - }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/mechbay) "us" = ( @@ -6174,9 +6136,9 @@ "uG" = ( /obj/structure/fans/tiny, /obj/machinery/door/airlock/external/glass{ - name = "Shuttle Airlock"; id_tag = "mining_away" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plasteel{ dir = 8; @@ -6296,9 +6258,8 @@ dir = 8 }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public{ - name = "Tool Storage" - }, +/obj/machinery/door/airlock/public, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -6319,10 +6280,9 @@ /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "vk" = ( -/obj/machinery/door/airlock/titanium{ - name = "Labor Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/titanium, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/mineral/plastitanium/red, /area/shuttle/siberia) "vm" = ( @@ -6561,9 +6521,8 @@ "wI" = ( /obj/structure/fans/tiny, /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/highsecurity{ - name = "Communications" - }, +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6575,8 +6534,8 @@ icon_state = "4-8" }, /obj/effect/spawner/random_spawners/dirt_maybe, -/obj/effect/mapping_helpers/airlock/access/any/supply/qm, /obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, /turf/simulated/floor/plasteel/dark, /area/mine/outpost/comms) "wN" = ( @@ -6971,9 +6930,8 @@ }, /area/mine/outpost/mechbay) "zt" = ( -/obj/machinery/door/airlock/glass{ - name = "Labor Camp Bedroom" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/landmark/damageturf, @@ -7293,6 +7251,7 @@ id_tag = "s_docking_airlock"; req_access_txt = "48" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/docking_port/mobile/mining, /obj/structure/fans/tiny, /obj/docking_port/stationary{ @@ -7305,6 +7264,7 @@ turf_type = /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface; width = 7 }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /turf/simulated/floor/plating, /area/shuttle/mining) "AP" = ( @@ -7424,16 +7384,14 @@ }, /area/mine/outpost/lockers) "BE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Airlock Maintence" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/airlock) "BH" = ( @@ -7543,9 +7501,8 @@ /turf/simulated/floor/lava/mapping_lava, /area/lavaland/surface/outdoors/outpost/catwalk) "Cy" = ( -/obj/machinery/door/airlock{ - name = "Labor Camp Prisoner Lockers" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/poddoor/preopen{ id_tag = "Labor"; name = "labor camp blast door" @@ -7736,9 +7693,8 @@ /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "Dz" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Main Airlock" - }, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7750,7 +7706,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, /obj/structure/sign/directions/cargo{ dir = 8; pixel_y = -24 @@ -7760,6 +7715,7 @@ pixel_y = -30 }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -7887,16 +7843,14 @@ }, /area/mine/outpost/hallway/west) "El" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Storage Maintence" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/custodial) "Em" = ( @@ -8136,11 +8090,11 @@ /area/mine/laborcamp) "FW" = ( /obj/machinery/door/airlock/titanium{ - id_tag = "s_docking_airlock"; - name = "Labor Shuttle Airlock" + id_tag = "s_docking_airlock" }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/shuttle/siberia) "FX" = ( @@ -8281,11 +8235,11 @@ /area/lavaland/surface/outdoors/legion) "Hc" = ( /obj/machinery/door/airlock/external{ - id_tag = "laborcamp_away"; - name = "Labor Camp Airlock" + id_tag = "laborcamp_away" }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plating, /area/mine/laborcamp/security) "Hd" = ( @@ -8420,10 +8374,9 @@ /turf/simulated/floor/lava/mapping_lava, /area/lavaland/surface/outdoors/outpost/catwalk) "HN" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Security" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/airlock/security/glass, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/security/brig, /turf/simulated/floor/plasteel, /area/mine/laborcamp/security) "HO" = ( @@ -8920,12 +8873,10 @@ icon_state = "1-2" }, /obj/structure/fans/tiny, -/obj/machinery/door/airlock/maintenance/external{ - name = "Processing Room Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/machinery/door/airlock/maintenance/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/south) "KD" = ( @@ -8945,12 +8896,10 @@ /area/lavaland/surface/outdoors/legion) "KL" = ( /obj/structure/fans/tiny, -/obj/machinery/door/airlock/maintenance/external/glass{ - name = "Landing Pad" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/machinery/door/airlock/maintenance/external/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/spawner/random_spawners/dirt_maybe, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/catwalk, /area/mine/outpost/hallway/west) "KN" = ( @@ -8979,9 +8928,8 @@ /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "KY" = ( -/obj/machinery/door/airlock{ - name = "Custodial Storage" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -8991,7 +8939,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, /obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ icon_state = "darkgreencorners" @@ -9461,12 +9408,6 @@ }, /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors/outpost/catwalk) -"NV" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/plating, -/area/mine/outpost/maintenance/south) "NW" = ( /obj/effect/spawner/window/shuttle, /turf/simulated/floor/plating, @@ -9582,9 +9523,10 @@ /turf/simulated/floor/indestructible/boss, /area/lavaland/surface/outdoors/legion) "OM" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/effect/spawner/random_spawners/dirt_maybe, /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/autoname, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plating, /area/mine/outpost/maintenance/south) "OS" = ( @@ -9654,10 +9596,8 @@ /turf/simulated/floor/indestructible/boss, /area/lavaland/surface/outdoors/legion) "Pu" = ( -/obj/machinery/door/airlock/mining{ - name = "Miner Lockers" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, +/obj/machinery/door/airlock/mining, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -9666,6 +9606,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -10281,9 +10222,9 @@ /area/mine/outpost/hallway/east) "TU" = ( /obj/machinery/door/airlock/external{ - id_tag = "laborcamp_away"; - name = "Labor Camp Airlock" + id_tag = "laborcamp_away" }, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /turf/simulated/floor/plating, /area/mine/laborcamp) @@ -10599,9 +10540,8 @@ /turf/simulated/floor/indestructible/boss, /area/lavaland/surface/outdoors/legion) "Vz" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10611,15 +10551,13 @@ /turf/simulated/floor/plasteel, /area/mine/laborcamp) "VD" = ( -/obj/machinery/door/airlock/glass{ - name = "Cafeteria" - }, +/obj/machinery/door/airlock/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 8 }, /obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/plasteel{ icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" @@ -10965,14 +10903,12 @@ /turf/simulated/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "Xy" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "Catwalk Access" - }, +/obj/machinery/door/airlock/maintenance/external, +/obj/effect/mapping_helpers/airlock/autoname, /obj/structure/fans/tiny, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining_station, /turf/simulated/floor/catwalk, /area/mine/outpost/storage) "XD" = ( @@ -11160,9 +11096,8 @@ /turf/simulated/floor/plasteel, /area/mine/laborcamp) "YJ" = ( -/obj/machinery/door/airlock{ - name = "Labor Camp Storage" - }, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/autoname, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -11175,14 +11110,12 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/command/qm/glass{ - name = "Quartermaster's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/door/airlock/command/qm/glass, +/obj/effect/mapping_helpers/airlock/autoname, /obj/effect/mapping_helpers/airlock/polarized{ id = "mining qm" }, +/obj/effect/mapping_helpers/airlock/access/any/supply/qm, /turf/simulated/floor/catwalk, /area/mine/outpost/quartermaster) "YV" = ( @@ -26540,7 +26473,7 @@ zy NR io ft -NV +cV eM ff ft diff --git a/_maps/map_files220/generic/centcomm.dmm b/_maps/map_files220/generic/centcomm.dmm index e55dcea3e40d..f0102f850792 100644 --- a/_maps/map_files220/generic/centcomm.dmm +++ b/_maps/map_files220/generic/centcomm.dmm @@ -159,7 +159,7 @@ /turf/simulated/floor/carpet, /area/syndicate_mothership/control) "afe" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /obj/structure/window/reinforced, @@ -385,15 +385,15 @@ /area/centcom/ss220/admin3) "anM" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -8; pixel_y = 5 }, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = -8 }, /obj/item/kitchen/knife, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ pixel_y = 5 }, /obj/machinery/reagentgrinder{ @@ -1122,7 +1122,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/lemoncakeslice, +/obj/item/food/snacks/lemoncakeslice, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "aMw" = ( @@ -1386,7 +1386,7 @@ /area/ghost_bar) "aXh" = ( /obj/structure/table/wood/poker, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ +/obj/item/reagent_containers/drinks/bottle/vodka{ pixel_x = -5; pixel_y = 9 }, @@ -1669,13 +1669,13 @@ /area/shuttle/trade/sol) "bjU" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ pixel_x = 10 }, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ pixel_x = 5 }, -/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/condiment/enzyme, /turf/simulated/floor/plating{ icon = 'icons/turf/floors.dmi'; icon_state = "elevatorshaft"; @@ -2662,7 +2662,7 @@ /area/syndicate_mothership) "bUl" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/bottle/vermouth, +/obj/item/reagent_containers/drinks/bottle/vermouth, /turf/simulated/floor/carpet/black, /area/syndicate_mothership/elite_squad) "bUU" = ( @@ -2830,8 +2830,8 @@ /turf/simulated/floor/carpet/black, /area/syndicate_mothership/jail) "bWK" = ( -/obj/machinery/jukebox/disco/anchored/indestructible, /obj/effect/turf_decal/box/white, +/obj/machinery/jukebox/disco/indestructible, /turf/simulated/floor/mineral/abductor, /area/centcom/ss220/bar) "bWW" = ( @@ -3792,7 +3792,7 @@ /turf/simulated/floor/grass/jungle/no_creep, /area/centcom/ss220/admin1) "cHl" = ( -/obj/item/reagent_containers/food/drinks/bottle/rum{ +/obj/item/reagent_containers/drinks/bottle/rum{ pixel_x = 6; pixel_y = 2 }, @@ -3806,7 +3806,7 @@ pixel_x = -7; pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/mugwort{ +/obj/item/reagent_containers/drinks/mugwort{ pixel_x = 8; pixel_y = 6 }, @@ -3883,15 +3883,15 @@ /area/wizard_station) "cKt" = ( /obj/machinery/economy/vending/boozeomat, -/obj/item/reagent_containers/food/drinks/bottle/cognac{ +/obj/item/reagent_containers/drinks/bottle/cognac{ pixel_x = 9; pixel_y = 23 }, -/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium{ +/obj/item/reagent_containers/drinks/bottle/absinthe/premium{ pixel_x = -8; pixel_y = 25 }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_y = 23 }, /turf/simulated/floor/carpet/red, @@ -3938,7 +3938,7 @@ /area/syndicate_mothership/elite_squad) "cLC" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/burger/bigbite{ +/obj/item/food/snacks/burger/bigbite{ pixel_y = 4 }, /turf/simulated/floor/carpet/black, @@ -4617,11 +4617,11 @@ /area/centcom/ss220/admin3) "djm" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = 6; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = -6; pixel_y = 4 }, @@ -4764,7 +4764,7 @@ }, /area/syndicate_mothership/jail) "doZ" = ( -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, +/obj/item/reagent_containers/drinks/bottle/goldschlager, /obj/structure/table/wood/fancy/black, /turf/simulated/floor/plating{ icon = 'icons/turf/floors.dmi'; @@ -4775,13 +4775,13 @@ /area/syndicate_mothership/elite_squad) "dpf" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/bottle/cream{ +/obj/item/reagent_containers/drinks/bottle/cream{ pixel_y = 8 }, -/obj/item/reagent_containers/food/condiment/soysauce{ +/obj/item/reagent_containers/condiment/soysauce{ pixel_x = 12 }, -/obj/item/reagent_containers/food/condiment/sugar{ +/obj/item/reagent_containers/condiment/sugar{ pixel_x = -9; pixel_y = -4 }, @@ -4889,7 +4889,7 @@ /area/ninja/holding) "dsw" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/mug/med, +/obj/item/reagent_containers/drinks/mug/med, /obj/machinery/light/directional/west, /turf/simulated/floor/plasteel{ icon_state = "cmo" @@ -5104,7 +5104,7 @@ /area/syndicate_mothership/cargo) "dzI" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/sliceable/chocolatecake, +/obj/item/food/snacks/sliceable/chocolatecake, /turf/simulated/floor/wood/oak, /area/syndicate_mothership/elite_squad) "dzJ" = ( @@ -5304,9 +5304,7 @@ /area/centcom/ss220/admin1) "dFj" = ( /obj/structure/window/reinforced, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, +/obj/item/kirbyplants/applebush, /turf/simulated/floor/plasteel{ icon_state = "darkneutralfull" }, @@ -5420,11 +5418,11 @@ /area/shuttle/syndicate) "dIR" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/peppermill{ +/obj/item/reagent_containers/condiment/peppermill{ pixel_x = 4; pixel_y = 6 }, -/obj/item/reagent_containers/food/condiment/saltshaker{ +/obj/item/reagent_containers/condiment/saltshaker{ pixel_x = -4; pixel_y = 6 }, @@ -5758,7 +5756,7 @@ "dSq" = ( /obj/structure/window/reinforced, /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -6; pixel_y = 4 }, @@ -6526,24 +6524,24 @@ /area/shuttle/syndicate_elite) "eyi" = ( /obj/structure/closet/secure_closet/freezer/meat/open, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/raw_bacon, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/catfishmeat, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/rawcutlet, -/obj/item/reagent_containers/food/snacks/spaghetti, -/obj/item/reagent_containers/food/snacks/spaghetti, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/raw_bacon, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/sausage, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/catfishmeat, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/rawcutlet, +/obj/item/food/snacks/spaghetti, +/obj/item/food/snacks/spaghetti, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -7143,11 +7141,11 @@ /obj/structure/table/reinforced{ color = "#996633" }, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = -8; pixel_y = 2 }, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = 4; pixel_y = 2 }, @@ -7512,7 +7510,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/sliceable/pizza/diablo, +/obj/item/food/snacks/sliceable/pizza/diablo, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "fbl" = ( @@ -7630,19 +7628,19 @@ /area/syndicate_mothership/cargo) "fgh" = ( /obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 8; pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 8; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -2; pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -2; pixel_y = 4 }, @@ -7837,25 +7835,25 @@ /obj/structure/closet/secure_closet/freezer/kitchen{ req_access = null }, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/vanillapod, -/obj/item/reagent_containers/food/snacks/grown/vanillapod, -/obj/item/reagent_containers/food/snacks/grown/sugarcane, -/obj/item/reagent_containers/food/snacks/grown/sugarcane, -/obj/item/reagent_containers/food/snacks/grown/oat, -/obj/item/reagent_containers/food/snacks/grown/oat, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/wheat, +/obj/item/food/snacks/grown/vanillapod, +/obj/item/food/snacks/grown/vanillapod, +/obj/item/food/snacks/grown/sugarcane, +/obj/item/food/snacks/grown/sugarcane, +/obj/item/food/snacks/grown/oat, +/obj/item/food/snacks/grown/oat, +/obj/item/food/snacks/grown/grapes, +/obj/item/food/snacks/grown/grapes, +/obj/item/food/snacks/grown/corn, +/obj/item/food/snacks/grown/corn, +/obj/item/food/snacks/grown/chili, +/obj/item/food/snacks/grown/chili, +/obj/item/food/snacks/grown/carrot, +/obj/item/food/snacks/grown/apple, +/obj/item/food/snacks/grown/ambrosia/vulgaris, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -8297,7 +8295,7 @@ /area/syndicate_mothership) "fAT" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/birthdaycakeslice, +/obj/item/food/snacks/birthdaycakeslice, /obj/item/kitchen/utensil/fork{ pixel_x = 11; pixel_y = 8 @@ -8762,7 +8760,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/onionrings, +/obj/item/food/snacks/onionrings, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "fTe" = ( @@ -9049,10 +9047,10 @@ /area/ghost_bar) "gff" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass/bluespace{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass/bluespace{ pixel_x = 16; pixel_y = 9 }, @@ -9381,27 +9379,27 @@ /area/syndicate_mothership) "gtk" = ( /obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -14; pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 6; pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 6; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -4; pixel_y = 10 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -4; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -14; pixel_y = 4 }, @@ -9528,7 +9526,7 @@ pixel_x = -18; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -6; pixel_y = 4 }, @@ -9578,9 +9576,9 @@ /turf/simulated/floor/carpet/black, /area/ghost_bar) "gyx" = ( -/obj/item/reagent_containers/food/snacks/grown/cannabis/rainbow, -/obj/item/reagent_containers/food/snacks/grown/cannabis/rainbow, -/obj/item/reagent_containers/food/snacks/grown/cannabis/rainbow, +/obj/item/food/snacks/grown/cannabis/rainbow, +/obj/item/food/snacks/grown/cannabis/rainbow, +/obj/item/food/snacks/grown/cannabis/rainbow, /turf/simulated/floor/wood/fancy/cherry, /area/trader_station/sol) "gzd" = ( @@ -9757,22 +9755,22 @@ /area/centcom/ss220/bar) "gDl" = ( /obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/icepepper, -/obj/item/reagent_containers/food/snacks/grown/icepepper, -/obj/item/reagent_containers/food/snacks/grown/citrus/lemon, -/obj/item/reagent_containers/food/snacks/grown/citrus/lime, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/cherries, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/deus, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/potato, +/obj/item/food/snacks/grown/whitebeet, +/obj/item/food/snacks/grown/whitebeet, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/tomato, +/obj/item/food/snacks/grown/rice, +/obj/item/food/snacks/grown/rice, +/obj/item/food/snacks/grown/icepepper, +/obj/item/food/snacks/grown/icepepper, +/obj/item/food/snacks/grown/citrus/lemon, +/obj/item/food/snacks/grown/citrus/lime, +/obj/item/food/snacks/grown/citrus/orange, +/obj/item/food/snacks/grown/cherries, +/obj/item/food/snacks/grown/apple, +/obj/item/food/snacks/grown/ambrosia/deus, /turf/simulated/floor/plasteel{ icon_state = "cafeteria" }, @@ -10247,7 +10245,6 @@ /turf/simulated/floor/plasteel/dark, /area/centcom/ss220/admin3) "gSz" = ( -/obj/effect/landmark/spawner/teleport_scroll, /obj/structure/table/wood/fancy/black, /obj/item/paper/crumpled/bloody/ruins/lavaland/clown_planet{ info = "Deliver five cream pies to the agreed place or your apprentice gets honked again"; @@ -10443,7 +10440,7 @@ /area/syndicate_mothership) "gXA" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/novelty, +/obj/item/reagent_containers/drinks/mug/novelty, /obj/item/candle/eternal/wizard{ pixel_y = 11 }, @@ -10843,7 +10840,7 @@ /obj/item/ashtray/glass{ pixel_x = 16 }, -/obj/item/reagent_containers/food/snacks/sliceable/turkey{ +/obj/item/food/snacks/sliceable/turkey{ pixel_y = 6 }, /turf/simulated/floor/carpet/red, @@ -10916,7 +10913,7 @@ /area/centcom/ss220/admin3) "hqi" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater/hell{ +/obj/item/reagent_containers/drinks/bottle/holywater/hell{ pixel_y = 2 }, /turf/simulated/floor/carpet, @@ -11942,7 +11939,7 @@ /area/syndicate_mothership) "hTA" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/benedict{ +/obj/item/food/snacks/benedict{ pixel_y = 6 }, /obj/item/kitchen/utensil/fork{ @@ -12004,7 +12001,7 @@ /area/space/centcomm) "hVt" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/enzyme{ +/obj/item/reagent_containers/condiment/enzyme{ layer = 5; pixel_x = 12; pixel_y = 8 @@ -12712,11 +12709,11 @@ /area/centcom/ss220/admin3) "iuR" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = 6; pixel_y = 4 }, -/obj/item/reagent_containers/food/drinks/cans/beer{ +/obj/item/reagent_containers/drinks/cans/beer{ pixel_x = -6; pixel_y = 4 }, @@ -12749,18 +12746,18 @@ /area/abductor_ship) "ivy" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -8; pixel_y = -6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 11; pixel_y = 13 }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ +/obj/item/reagent_containers/drinks/bottle/vodka{ pixel_x = 4; pixel_y = 7 }, @@ -12805,7 +12802,7 @@ /area/shuttle/syndicate) "iwf" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chocolatecakeslice, +/obj/item/food/snacks/chocolatecakeslice, /turf/simulated/floor/wood/oak, /area/syndicate_mothership/elite_squad) "iwk" = ( @@ -12815,7 +12812,7 @@ /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "iwE" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "navybluefull" @@ -12882,7 +12879,7 @@ /area/syndicate_mothership) "ize" = ( /obj/structure/table, -/obj/item/storage/firstaid/surgery{ +/obj/item/storage/surgical_tray{ pixel_y = 6 }, /obj/item/clothing/gloves/color/latex/nitrile, @@ -13383,7 +13380,7 @@ dir = 1; name = "Стойка выдачи" }, -/obj/item/reagent_containers/food/snacks/sliceable/braincake{ +/obj/item/food/snacks/sliceable/braincake{ pixel_y = 4 }, /turf/simulated/floor/plasteel{ @@ -14228,7 +14225,7 @@ /area/centcom/ss220/supply) "jAn" = ( /obj/machinery/kitchen_machine/oven, -/obj/item/reagent_containers/food/snacks/rawcookies/chocochips{ +/obj/item/food/snacks/rawcookies/chocochips{ pixel_x = -1; pixel_y = 6 }, @@ -14575,11 +14572,11 @@ /obj/item/stack/spacecash/c10000, /obj/item/stack/spacecash/c10000, /obj/item/stack/spacecash/c10000, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, +/obj/item/reagent_containers/drinks/bottle/goldschlager, /obj/item/coin/gold, /obj/item/toy/plushie/corgi, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin2) "jNJ" = ( @@ -14794,10 +14791,10 @@ /area/centcom/ss220/admin1) "jZg" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/tofukabob, -/obj/item/reagent_containers/food/snacks/tofukabob, -/obj/item/reagent_containers/food/snacks/tofukabob, -/obj/item/reagent_containers/food/snacks/tofukabob, +/obj/item/food/snacks/tofukabob, +/obj/item/food/snacks/tofukabob, +/obj/item/food/snacks/tofukabob, +/obj/item/food/snacks/tofukabob, /turf/simulated/floor/plasteel{ icon_state = "darkyellowfull" }, @@ -16164,7 +16161,7 @@ /turf/simulated/floor/grass/no_creep, /area/centcom/ss220/bar) "leo" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/window/reinforced{ dir = 4 }, @@ -16257,7 +16254,7 @@ /area/centcom/ss220/command) "liv" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/applepie, +/obj/item/food/snacks/applepie, /obj/item/kitchen/utensil/fork{ pixel_x = -12; pixel_y = 8 @@ -16272,7 +16269,7 @@ /area/syndicate_mothership/jail) "liW" = ( /obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/drinks/trophy/gold_cup, +/obj/item/reagent_containers/drinks/trophy/gold_cup, /obj/effect/turf_decal/siding/wood{ dir = 1 }, @@ -16702,7 +16699,7 @@ }, /area/centcom/ss220/general) "lvh" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/window/reinforced{ dir = 1 }, @@ -16741,7 +16738,7 @@ pixel_x = 18; pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -6; pixel_y = 4 }, @@ -17811,7 +17808,7 @@ }, /area/centcom/ss220/command) "lYC" = ( -/obj/machinery/computer{ +/obj/machinery/computer/nonfunctional{ dir = 1 }, /turf/simulated/floor/plasteel{ @@ -18612,7 +18609,7 @@ /area/syndicate_mothership/elite_squad) "mIR" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/bananacakeslice{ +/obj/item/food/snacks/bananacakeslice{ pixel_y = 4 }, /obj/item/kitchen/utensil/fork{ @@ -18960,7 +18957,7 @@ amount = 115; desc = null }, -/obj/item/reagent_containers/food/snacks/soup/beetsoup{ +/obj/item/food/snacks/soup/beetsoup{ desc = "Со вкусом политических убийств"; name = "Борщ"; pixel_y = 16 @@ -19282,11 +19279,11 @@ /area/shuttle/syndicate) "nkM" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/burger/superbite, -/obj/item/reagent_containers/food/snacks/burger/superbite, -/obj/item/reagent_containers/food/snacks/burger/superbite, -/obj/item/reagent_containers/food/snacks/burger/superbite, -/obj/item/reagent_containers/food/snacks/burger/superbite, +/obj/item/food/snacks/burger/superbite, +/obj/item/food/snacks/burger/superbite, +/obj/item/food/snacks/burger/superbite, +/obj/item/food/snacks/burger/superbite, +/obj/item/food/snacks/burger/superbite, /turf/simulated/floor/plasteel{ icon_state = "darkyellowfull" }, @@ -19612,7 +19609,7 @@ /area/centcom/ss220/command) "nvT" = ( /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /obj/structure/light_fake{ dir = 4 }, @@ -19842,7 +19839,7 @@ }, /area/centcom/ss220/admin2) "nDz" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/window/reinforced{ dir = 4 }, @@ -19876,7 +19873,7 @@ /area/centcom/ss220/jail) "nES" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_y = 6 }, /turf/simulated/floor/plasteel/dark, @@ -20449,7 +20446,7 @@ /obj/structure/light_fake/spot{ dir = 8 }, -/obj/item/reagent_containers/food/snacks/sliceable/limecake{ +/obj/item/food/snacks/sliceable/limecake{ pixel_y = 2 }, /turf/simulated/floor/plasteel{ @@ -20619,7 +20616,7 @@ /turf/simulated/floor/plating, /area/shuttle/administration) "oiT" = ( -/obj/item/reagent_containers/food/drinks/bottle/vodka{ +/obj/item/reagent_containers/drinks/bottle/vodka{ pixel_x = -8; pixel_y = 4 }, @@ -20666,7 +20663,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/sliceable/pizza/bacon, +/obj/item/food/snacks/sliceable/pizza/bacon, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "olA" = ( @@ -21249,7 +21246,7 @@ /obj/structure/table/holotable/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/burger/cheese, +/obj/item/food/snacks/burger/cheese, /turf/simulated/floor/carpet/black, /area/trader_station/sol) "oGr" = ( @@ -21784,7 +21781,7 @@ /area/centcom/ss220/general) "oYY" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/burger/cheese{ +/obj/item/food/snacks/burger/cheese{ pixel_y = 3 }, /turf/simulated/floor/carpet/black, @@ -22166,11 +22163,11 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/bottle/wine, +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = 8 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ +/obj/item/reagent_containers/drinks/drinkingglass/shotglass{ pixel_x = -5 }, /turf/simulated/floor/plating{ @@ -22382,7 +22379,7 @@ /turf/simulated/floor/plasteel/dark, /area/centcom/ss220/supply) "pyl" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /obj/structure/window/reinforced{ dir = 8 }, @@ -23153,7 +23150,7 @@ /area/centcom/ss220/admin2) "qbf" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/drinks/cans/cola, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -24781,7 +24778,7 @@ /area/ghost_bar) "rjq" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/watermelonslice, +/obj/item/food/snacks/watermelonslice, /obj/effect/decal/syndie_logo{ icon_state = "logo11" }, @@ -24947,7 +24944,7 @@ "rqA" = ( /obj/structure/table/wood/fancy, /obj/effect/spawner/lootdrop{ - loot = list(/obj/item/reagent_containers/food/snacks/baguette=10,/obj/item/reagent_containers/food/snacks/applepie=10,/obj/item/reagent_containers/food/snacks/applepie=10,/obj/item/reagent_containers/food/snacks/soup/bloodsoup=10,/obj/item/reagent_containers/food/snacks/boiledrice=10,/obj/item/reagent_containers/food/snacks/carrotfries=10,/obj/item/reagent_containers/food/drinks/cans/cola=10,""=70); + loot = list(/obj/item/food/snacks/baguette=10,/obj/item/food/snacks/applepie=10,/obj/item/food/snacks/applepie=10,/obj/item/food/snacks/soup/bloodsoup=10,/obj/item/food/snacks/boiledrice=10,/obj/item/food/snacks/carrotfries=10,/obj/item/reagent_containers/drinks/cans/cola=10,""=70); name = "Food CC Spawner #1" }, /turf/simulated/floor/wood, @@ -25230,7 +25227,7 @@ /area/centcom/ss220/supply) "rtF" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/drinks/shaker, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -25740,7 +25737,7 @@ /area/centcom/ss220/court) "rOo" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/boiledbuckwheat{ +/obj/item/food/snacks/boiledbuckwheat{ pixel_y = 2 }, /obj/item/kitchen/utensil/spoon{ @@ -25996,7 +25993,7 @@ /area/ghost_bar) "rVg" = ( /obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = -8; pixel_y = 4 }, @@ -26820,11 +26817,11 @@ /area/syndicate_mothership/infteam) "sDS" = ( /obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/appletart{ +/obj/item/food/snacks/appletart{ pixel_x = -16; pixel_y = -10 }, -/obj/item/reagent_containers/food/snacks/applecakeslice{ +/obj/item/food/snacks/applecakeslice{ pixel_y = 4 }, /obj/item/kitchen/utensil/fork{ @@ -26949,7 +26946,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/meatsteak, +/obj/item/food/snacks/meatsteak, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "sIn" = ( @@ -27697,7 +27694,7 @@ /obj/structure/table/holotable/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/sliceable/turkey, +/obj/item/food/snacks/sliceable/turkey, /turf/simulated/floor/carpet/black, /area/trader_station/sol) "thG" = ( @@ -28043,7 +28040,7 @@ /turf/simulated/floor/mineral/plastitanium, /area/shuttle/syndicate) "tuO" = ( -/obj/item/reagent_containers/food/snacks/pie{ +/obj/item/food/snacks/pie{ pixel_x = -8; pixel_y = 13 }, @@ -28476,7 +28473,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -6; pixel_y = 4 }, @@ -28677,7 +28674,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/sliceable/pizza/macpizza, +/obj/item/food/snacks/sliceable/pizza/macpizza, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "tQU" = ( @@ -28703,12 +28700,12 @@ }, /obj/item/stack/cable_coil/random, /obj/item/stack/cable_coil/random, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, +/obj/item/food/snacks/grown/banana, /turf/simulated/floor/wood/oak, /area/syndicate_mothership/infteam) "tSu" = ( @@ -29060,12 +29057,12 @@ /obj/structure/sign/securearea{ pixel_x = -32 }, -/obj/machinery/suit_storage_unit/gamma, +/obj/machinery/suit_storage_unit/gamma/secure, /turf/simulated/floor/mineral/plastitanium/red, /area/shuttle/gamma/space) "ued" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/coffee{ +/obj/item/reagent_containers/drinks/coffee{ pixel_y = 8 }, /turf/simulated/floor/plasteel/dark, @@ -29423,7 +29420,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/salad/herb, +/obj/item/food/snacks/salad/herb, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "utb" = ( @@ -29932,10 +29929,10 @@ /area/centcom/ss220/admin1) "uMM" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = 7 }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ +/obj/item/reagent_containers/drinks/bottle/whiskey{ pixel_x = -7; pixel_y = 7 }, @@ -30778,7 +30775,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ +/obj/item/reagent_containers/drinks/drinkingglass{ pixel_x = -6; pixel_y = 4 }, @@ -30943,7 +30940,7 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = 30 }, -/obj/item/reagent_containers/food/drinks/cans/beer, +/obj/item/reagent_containers/drinks/cans/beer, /turf/simulated/floor/wood/oak, /area/syndicate_mothership) "vwP" = ( @@ -31781,7 +31778,7 @@ /turf/simulated/floor/plasteel/dark, /area/centcom/ss220/admin3) "wdR" = ( -/obj/machinery/computer, +/obj/machinery/computer/nonfunctional, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "dark" @@ -32172,9 +32169,7 @@ /area/shuttle/trade/sol) "wtd" = ( /obj/structure/table/wood/fancy/royalblack, -/obj/item/radio/phone{ - desc = "How else would the wizards order pizza?" - }, +/obj/structure/pondering_orb, /obj/effect/turf_decal/woodsiding{ dir = 6 }, @@ -32388,7 +32383,7 @@ /area/shuttle/syndicate) "wBj" = ( /obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ +/obj/item/reagent_containers/drinks/bottle/vodka/badminka{ pixel_x = 8; pixel_y = 7 }, @@ -32456,7 +32451,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/drinks/shaker{ +/obj/item/reagent_containers/drinks/shaker{ pixel_x = -7 }, /obj/structure/curtain/black{ @@ -32763,9 +32758,9 @@ /obj/structure/closet/secure_closet/freezer/kitchen{ req_access = null }, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour, +/obj/item/reagent_containers/condiment/flour, /obj/structure/curtain/black{ pixel_y = 32; anchored = 1 @@ -33037,7 +33032,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/hotdog, +/obj/item/food/snacks/hotdog, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "wVB" = ( @@ -33780,7 +33775,7 @@ /obj/structure/table/wood{ color = "#996633" }, -/obj/item/reagent_containers/food/snacks/sliceable/birthdaycake, +/obj/item/food/snacks/sliceable/birthdaycake, /turf/simulated/floor/wood/parquet/tile, /area/centcom/ss220/admin1) "xpi" = ( @@ -33971,7 +33966,7 @@ /area/centcom/ss220/command) "xtE" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/wine{ +/obj/item/reagent_containers/drinks/bottle/wine{ pixel_x = -5; pixel_y = 6 }, diff --git a/code/__DEFINES/_tgs_defines.dm b/code/__DEFINES/_tgs_defines.dm index 4aa8662ec4ca..b8ec5f16be5d 100644 --- a/code/__DEFINES/_tgs_defines.dm +++ b/code/__DEFINES/_tgs_defines.dm @@ -3,7 +3,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, "
/proc/recover_all_SS_and_recreate_master
: Most stuff should still function but expect instability/runtimes/broken stuff.")
- message_admins("/proc/delete_all_SS_and_recreate_master
: Most stuff will be broken but basic stuff like movement and chat should still work.")
+ message_admins("Failsafe failed critically while trying to recreate broken MC. Please manually fix the MC or reboot the server. Failsafe exiting now.")
+ message_admins("You can try manually calling these two procs:.")
+ message_admins("/proc/recover_all_SS_and_recreate_master
: Most stuff should still function but expect instability/runtimes/broken stuff.")
+ message_admins("/proc/delete_all_SS_and_recreate_master
: Most stuff will be broken but basic stuff like movement and chat should still work.")
else if(recovery_result == -1) //Failed to recreate MC
defcon--
sleep(initial(processing_interval)) //Wait a bit until the next try
@@ -77,11 +77,11 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
--defcon
if(2)
- to_chat(GLOB.admins, "Warning: DEFCON [defcon_pretty()]. The Master Controller has not fired in the last [(5-defcon) * processing_interval] ticks. Automatic restart in [processing_interval] ticks.")
+ to_chat(GLOB.admins, "Warning: DEFCON [defcon_pretty()]. The Master Controller has not fired in the last [(5-defcon) * processing_interval] ticks. Automatic restart in [processing_interval] ticks.")
--defcon
if(1)
- to_chat(GLOB.admins, "Warning: DEFCON [defcon_pretty()]. The Master Controller has still not fired within the last [(5-defcon) * processing_interval] ticks. Killing and restarting...")
+ to_chat(GLOB.admins, "Warning: DEFCON [defcon_pretty()]. The Master Controller has still not fired within the last [(5-defcon) * processing_interval] ticks. Killing and restarting...")
--defcon
var/rtn = Recreate_MC()
if(rtn > 0)
@@ -90,7 +90,7 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
to_chat(GLOB.admins, "MC restarted successfully")
else if(rtn < 0)
log_game("FailSafe: Could not restart MC, runtime encountered. Entering defcon 0")
- to_chat(GLOB.admins, "ERROR: DEFCON [defcon_pretty()]. Could not restart MC, runtime encountered. I will silently keep retrying.")
+ to_chat(GLOB.admins, "ERROR: DEFCON [defcon_pretty()]. Could not restart MC, runtime encountered. I will silently keep retrying.")
//if the return number was 0, it just means the mc was restarted too recently, and it just needs some time before we try again
//no need to handle that specially when defcon 0 can handle it
@@ -131,7 +131,7 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
to_chat(GLOB.admins, "Failsafe recovered MC while in emergency state [defcon_pretty()]")
else
log_game("FailSafe: Failsafe in emergency state and was unable to recreate MC while in defcon state [defcon_pretty()].")
- message_admins("Failsafe in emergency state and master down, trying to recreate MC while in defcon level [defcon_pretty()] failed.")
+ message_admins("Failsafe in emergency state and master down, trying to recreate MC while in defcon level [defcon_pretty()] failed.")
///Recreate all SSs which will still cause data survive due to Recover(), the new Master will then find and take them from global.vars
/proc/recover_all_SS_and_recreate_master()
@@ -149,7 +149,7 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
Master.Initialize(10, FALSE, TRUE) //Need to manually start the MC, normally world.new would do this
to_chat(GLOB.admins, "MC successfully recreated after recovering all subsystems!")
else
- message_admins("Failed to create new MC!")
+ message_admins("Failed to create new MC!")
///Delete all existing SS to basically start over
/proc/delete_all_SS_and_recreate_master()
diff --git a/code/controllers/master.dm b/code/controllers/master.dm
index bfaae9a4d2b4..54d7c3b019b7 100644
--- a/code/controllers/master.dm
+++ b/code/controllers/master.dm
@@ -185,7 +185,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
msg = "The [BadBoy.name] subsystem seems to be destabilizing the MC and will be offlined. The following implications are now in effect: [BadBoy.offline_implications]"
BadBoy.flags |= SS_NO_FIRE
if(msg)
- to_chat(GLOB.admins, "[msg]")
+ to_chat(GLOB.admins, "[msg]")
log_world(msg)
if(istype(Master.subsystems))
@@ -195,10 +195,9 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
current_runlevel = Master.current_runlevel
StartProcessing(10)
else
- to_chat(world, "The Master Controller is having some issues, we will need to re-initialize EVERYTHING")
+ to_chat(world, "The Master Controller is having some issues, we will need to re-initialize EVERYTHING")
Initialize(20, TRUE)
-
// Please don't stuff random bullshit here,
// Make a subsystem, give it the SS_NO_FIRE flag, and do your work in it's Initialize()
/datum/controller/master/Initialize(delay, init_sss, tgs_prime)
@@ -326,7 +325,8 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
SS.state = SS_IDLE
if((SS.flags & (SS_TICKER|SS_BACKGROUND)) == SS_TICKER)
tickersubsystems += SS
- timer += world.tick_lag * rand(1, 5)
+ // Timer subsystems aren't allowed to bunch up, so we offset them a bit
+ timer += world.tick_lag * rand(0, 1)
SS.next_fire = timer
continue
@@ -401,14 +401,15 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
var/checking_runlevel = current_runlevel
if(cached_runlevel != checking_runlevel)
//resechedule subsystems
+ var/list/old_subsystems = current_runlevel_subsystems
cached_runlevel = checking_runlevel
current_runlevel_subsystems = runlevel_sorted_subsystems[cached_runlevel]
- var/stagger = world.time
- for(var/I in current_runlevel_subsystems)
- var/datum/controller/subsystem/SS = I
- if(SS.next_fire <= world.time)
- stagger += world.tick_lag * rand(1, 5)
- SS.next_fire = stagger
+ //now we'll go through all the subsystems we want to offset and give them a next_fire
+ for(var/datum/controller/subsystem/SS as anything in current_runlevel_subsystems)
+ //we only want to offset it if it's new and also behind
+ if(SS.next_fire > world.time || (SS in old_subsystems))
+ continue
+ SS.next_fire = world.time + world.tick_lag * rand(0, DS2TICKS(min(SS.wait, 2 SECONDS)))
subsystems_to_check = current_runlevel_subsystems
else
@@ -530,7 +531,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
queue_node = queue_node.queue_next
continue
- if((queue_node_flags & SS_BACKGROUND))
+ if(queue_node_flags & SS_BACKGROUND)
if(!bg_calc)
current_tick_budget = queue_priority_count_bg
bg_calc = TRUE
diff --git a/code/controllers/subsystem/SSair.dm b/code/controllers/subsystem/SSair.dm
index 0a97e76490e5..0d4f7b8858f0 100644
--- a/code/controllers/subsystem/SSair.dm
+++ b/code/controllers/subsystem/SSair.dm
@@ -361,6 +361,7 @@ SUBSYSTEM_DEF(air)
for(var/obj/machinery/atmospherics/A in machines_to_init)
A.atmos_init()
count++
+ CHECK_TICK
return count
//this can't be done with setup_atmos_machinery() because
diff --git a/code/controllers/subsystem/SSchat.dm b/code/controllers/subsystem/SSchat.dm
new file mode 100644
index 000000000000..604f18c2d7c4
--- /dev/null
+++ b/code/controllers/subsystem/SSchat.dm
@@ -0,0 +1,99 @@
+/**
+ * Copyright (c) 2020 Aleksej Komarov
+ * SPDX-License-Identifier: MIT
+ */
+
+SUBSYSTEM_DEF(chat)
+ name = "Chat"
+ flags = SS_TICKER|SS_NO_INIT
+ wait = 1
+ priority = FIRE_PRIORITY_CHAT
+ init_order = INIT_ORDER_CHAT
+ offline_implications = "Chat will no longer function correctly. Immediate server restart recommended."
+
+ /// Associates a ckey with a list of messages to send to them.
+ var/list/list/datum/chat_payload/client_to_payloads = list()
+
+ /// Associates a ckey with an associative list of their last CHAT_RELIABILITY_HISTORY_SIZE messages.
+ var/list/list/datum/chat_payload/client_to_reliability_history = list()
+
+ /// Associates a ckey with their next sequence number.
+ var/list/client_to_sequence_number = list()
+
+/datum/controller/subsystem/chat/proc/generate_payload(client/target, message_data)
+ var/sequence = client_to_sequence_number[target.ckey]
+ client_to_sequence_number[target.ckey] += 1
+
+ var/datum/chat_payload/payload = new
+ payload.sequence = sequence
+ payload.content = message_data
+
+ if(!(target.ckey in client_to_reliability_history))
+ client_to_reliability_history[target.ckey] = list()
+ var/list/client_history = client_to_reliability_history[target.ckey]
+ client_history["[sequence]"] = payload
+
+ if(length(client_history) > CHAT_RELIABILITY_HISTORY_SIZE)
+ var/oldest = text2num(client_history[1])
+ for(var/index in 2 to length(client_history))
+ var/test = text2num(client_history[index])
+ if(test < oldest)
+ oldest = test
+ client_history -= "[oldest]"
+ return payload
+
+/datum/controller/subsystem/chat/proc/send_payload_to_client(client/target, datum/chat_payload/payload)
+ target.tgui_panel.window.send_message("chat/message", payload.into_message())
+ SEND_TEXT(target, payload.get_content_as_html())
+
+/datum/controller/subsystem/chat/fire()
+ for(var/ckey in client_to_payloads)
+ var/client/target = GLOB.directory[ckey]
+ if(isnull(target)) // verify client still exists
+ LAZYREMOVE(client_to_payloads, ckey)
+ continue
+
+ for(var/datum/chat_payload/payload as anything in client_to_payloads[ckey])
+ send_payload_to_client(target, payload)
+ LAZYREMOVE(client_to_payloads, ckey)
+
+ if(MC_TICK_CHECK)
+ return
+
+/datum/controller/subsystem/chat/proc/queue(queue_target, list/message_data)
+ var/list/targets = islist(queue_target) ? queue_target : list(queue_target)
+ for(var/target in targets)
+ var/client/client = CLIENT_FROM_VAR(target)
+ if(isnull(client))
+ continue
+ LAZYADDASSOC(client_to_payloads, client.ckey, generate_payload(client, message_data))
+
+/datum/controller/subsystem/chat/proc/send_immediate(send_target, list/message_data)
+ var/list/targets = islist(send_target) ? send_target : list(send_target)
+ for(var/target in targets)
+ var/client/client = CLIENT_FROM_VAR(target)
+ if(isnull(client))
+ continue
+ send_payload_to_client(client, generate_payload(client, message_data))
+
+/datum/controller/subsystem/chat/proc/handle_resend(client/client, sequence)
+ var/list/client_history = client_to_reliability_history[client.ckey]
+ sequence = "[sequence]"
+ if(isnull(client_history) || !(sequence in client_history))
+ return
+
+ var/datum/chat_payload/payload = client_history[sequence]
+ if(payload.resends > CHAT_RELIABILITY_MAX_RESENDS)
+ return // we tried but byond said no
+
+ payload.resends += 1
+ send_payload_to_client(client, client_history[sequence])
+ SSblackbox.record_feedback(
+ "nested tally",
+ "chat_resend_byond_version",
+ 1,
+ list(
+ "[client.byond_version]",
+ "[client.byond_build]",
+ ),
+ )
diff --git a/code/controllers/subsystem/SSchat_pings.dm b/code/controllers/subsystem/SSchat_pings.dm
deleted file mode 100644
index 24fb85d0bd87..000000000000
--- a/code/controllers/subsystem/SSchat_pings.dm
+++ /dev/null
@@ -1,17 +0,0 @@
-SUBSYSTEM_DEF(chat_pings)
- name = "Chat Pings"
- flags = SS_NO_INIT
- runlevels = RUNLEVEL_INIT | RUNLEVEL_LOBBY | RUNLEVEL_SETUP | RUNLEVEL_GAME | RUNLEVEL_POSTGAME // ALL OF THEM
- wait = 30 SECONDS // Chat pings every 30 seconds
- cpu_display = SS_CPUDISPLAY_LOW
- /// List of all held chat datums
- var/list/datum/chatOutput/chat_datums = list() // Do NOT put this in Initialize(). You will cause issues.
-
-/datum/controller/subsystem/chat_pings/fire(resumed)
- for(var/datum/chatOutput/CO as anything in chat_datums)
- CO.updatePing()
- if(MC_TICK_CHECK)
- return
-
-/datum/controller/subsystem/chat_pings/get_stat_details()
- return "P: [length(chat_datums)]"
diff --git a/code/controllers/subsystem/SSdbcore.dm b/code/controllers/subsystem/SSdbcore.dm
index e0dfe5c1067a..88624dc784ce 100644
--- a/code/controllers/subsystem/SSdbcore.dm
+++ b/code/controllers/subsystem/SSdbcore.dm
@@ -249,7 +249,7 @@ SUBSYSTEM_DEF(dbcore)
*/
/datum/controller/subsystem/dbcore/proc/NewQuery(sql_query, arguments)
if(IsAdminAdvancedProcCall())
- to_chat(usr, "DB query blocked: Advanced ProcCall detected.")
+ to_chat(usr, "DB query blocked: Advanced ProcCall detected.")
message_admins("[key_name(usr)] attempted to create a DB query via advanced proc-call")
log_admin("[key_name(usr)] attempted to create a DB query via advanced proc-call")
return FALSE
@@ -386,7 +386,7 @@ SUBSYSTEM_DEF(dbcore)
if(!.)
SSdbcore.total_errors++
if(usr)
- to_chat(usr, "A SQL error occurred during this operation, please inform an admin or a coder.")
+ to_chat(usr, "A SQL error occurred during this operation, please inform an admin or a coder.", MESSAGE_TYPE_ADMINLOG, confidential = TRUE)
message_admins("An SQL error has occurred. Please check the server logs, with the following timestamp ID: \[[time_stamp()]]")
/**
diff --git a/code/controllers/subsystem/SSdebugview.dm b/code/controllers/subsystem/SSdebugview.dm
index 6b145b416be3..0f973a5deb21 100644
--- a/code/controllers/subsystem/SSdebugview.dm
+++ b/code/controllers/subsystem/SSdebugview.dm
@@ -31,7 +31,7 @@ SUBSYSTEM_DEF(debugview)
entries += "\[Processing] Cost: [round(SSprocessing.cost, 1)]ms | P: [length(SSprocessing.processing)]"
entries += "\[Projectiles] Cost: [round(SSprojectiles.cost, 1)]ms | P: [length(SSprojectiles.processing)]"
entries += "\[Runechat] Cost: [round(SSrunechat.cost, 1)]ms | AM: [SSrunechat.bucket_count] | SQ: [length(SSrunechat.second_queue)]"
- entries += "\[TGUI] Cost: [round(SStgui.cost, 1)]ms | P: [length(SStgui.processing_uis)]"
+ entries += "\[TGUI] Cost: [round(SStgui.cost, 1)]ms | P: [length(SStgui.open_uis)]]"
entries += "\[Timer] Cost: [round(SStimer.cost, 1)]ms | B: [SStimer.bucket_count] | P: [length(SStimer.second_queue)] | RST: [SStimer.bucket_reset_count]"
// Do some parsing to format it properly
diff --git a/code/controllers/subsystem/SSghost_spawns.dm b/code/controllers/subsystem/SSghost_spawns.dm
index c433765f0bc6..9811088f742d 100644
--- a/code/controllers/subsystem/SSghost_spawns.dm
+++ b/code/controllers/subsystem/SSghost_spawns.dm
@@ -96,7 +96,7 @@ SUBSYSTEM_DEF(ghost_spawns)
if(P != P2 && P.hash == P2.hash)
// If there's already a poll for an identical mob type ongoing and the client is signed up for it, sign them up for this one
if(!inherited_sign_up && (M in P2.signed_up) && P.sign_up(M, TRUE))
- A.update_signed_up_alert()
+ A.update_signed_up_alert(M)
inherited_sign_up = TRUE
// This number is used to display the number of polls the alert regroups
num_stack++
diff --git a/code/controllers/subsystem/SSinstancing.dm b/code/controllers/subsystem/SSinstancing.dm
index 51c2532c472c..58eb372391a8 100644
--- a/code/controllers/subsystem/SSinstancing.dm
+++ b/code/controllers/subsystem/SSinstancing.dm
@@ -1,3 +1,4 @@
+#ifdef MULTIINSTANCE
SUBSYSTEM_DEF(instancing)
name = "Instancing"
runlevels = RUNLEVEL_INIT | RUNLEVEL_LOBBY | RUNLEVEL_SETUP | RUNLEVEL_GAME | RUNLEVEL_POSTGAME
@@ -182,3 +183,4 @@ SUBSYSTEM_DEF(instancing)
qdel(dbq1)
return null // If we are here, it means we didnt find our player on another server
+#endif
diff --git a/code/controllers/subsystem/SSjobs.dm b/code/controllers/subsystem/SSjobs.dm
index f520b06ae41a..8c5a04e9a2c0 100644
--- a/code/controllers/subsystem/SSjobs.dm
+++ b/code/controllers/subsystem/SSjobs.dm
@@ -12,6 +12,7 @@ SUBSYSTEM_DEF(jobs)
var/list/type_occupations = list() //Dict of all jobs, keys are types
var/list/prioritized_jobs = list() // List of jobs set to priority by HoP/Captain
var/list/id_change_records = list() // List of all job transfer records
+ var/probability_of_antag_role_restriction = 100 // Dict probability of a job rolling an antagonist role
var/id_change_counter = 1
//Players who need jobs
var/list/unassigned = list()
@@ -24,6 +25,8 @@ SUBSYSTEM_DEF(jobs)
var/late_arrivals_spawning = FALSE
/// Do we spawn people drunkenly due to the party last night?
var/drunken_spawning = FALSE
+ /// A list of minds that have failed to roll antagonist. Cleared when job selection finishes.
+ var/list/failed_head_antag_roll = list()
/datum/controller/subsystem/jobs/Initialize()
if(!length(occupations))
@@ -42,7 +45,7 @@ SUBSYSTEM_DEF(jobs)
occupations = list()
var/list/all_jobs = subtypesof(/datum/job)
if(!all_jobs.len)
- to_chat(world, "Error setting up jobs, no job datums found")
+ to_chat(world, "Error setting up jobs, no job datums found.")
return 0
for(var/J in all_jobs)
@@ -90,6 +93,8 @@ SUBSYSTEM_DEF(jobs)
return FALSE
if(job.barred_by_missing_limbs(player.client))
return FALSE
+ if(!job.is_donor_allowed(player.client)) // SS220 ADD - Donor Jobs
+ return FALSE
var/available = latejoin ? job.is_position_available() : job.is_spawn_position_available()
@@ -152,6 +157,13 @@ SUBSYSTEM_DEF(jobs)
Debug("FOC incompatbile with antagonist role, Player: [player]")
continue
if(player.client.prefs.active_character.GetJobDepartment(job, level) & job.flag)
+ if(player.mind.special_role && player.mind && (job.title in SSticker.mode.single_antag_positions)) //We want to check if they want the job, before rolling the prob chance
+ if((player.mind in SSjobs.failed_head_antag_roll) || !prob(probability_of_antag_role_restriction))
+ Debug("FOC Failed probability of getting a second antagonist position in this job, Player: [player], Job:[job.title]")
+ SSjobs.failed_head_antag_roll |= player.mind
+ continue
+ else
+ probability_of_antag_role_restriction /= 10
Debug("FOC pass, Player: [player], Level:[level]")
candidates += player
return candidates
@@ -183,6 +195,10 @@ SUBSYSTEM_DEF(jobs)
Debug("GRJ player not enough playtime, Player: [player]")
continue
+ if(!job.is_donor_allowed(player.client)) // SS220 ADD - Donor Jobs
+ Debug("DO player not enough donor level, Player: [player], Job:[job.title]")
+ continue
+
if(job.barred_by_disability(player.client))
Debug("GRJ player has disability rendering them ineligible for job, Player: [player]")
continue
@@ -194,7 +210,13 @@ SUBSYSTEM_DEF(jobs)
if(player.mind && (job.title in player.mind.restricted_roles))
Debug("GRJ incompatible with antagonist role, Player: [player], Job: [job.title]")
continue
-
+ if(player.mind.special_role && player.mind && (job.title in SSticker.mode.single_antag_positions))
+ if((player.mind in SSjobs.failed_head_antag_roll) || !prob(probability_of_antag_role_restriction))
+ Debug("GRJ Failed probability of getting a second antagonist position in this job, Player: [player], Job:[job.title]")
+ SSjobs.failed_head_antag_roll |= player.mind
+ continue
+ else
+ probability_of_antag_role_restriction /= 10
if((job.current_positions < job.spawn_positions) || job.spawn_positions == -1)
Debug("GRJ Random job given, Player: [player], Job: [job]")
AssignRole(player, job.title)
@@ -365,6 +387,10 @@ SUBSYSTEM_DEF(jobs)
Debug("DO player not enough playtime, Player: [player], Job:[job.title]")
continue
+ if(!job.is_donor_allowed(player.client)) // SS220 ADD - Donor Jobs
+ Debug("DO player not enough donor level, Player: [player], Job:[job.title]")
+ continue
+
if(job.barred_by_disability(player.client))
Debug("DO player has disability rendering them ineligible for job, Player: [player], Job:[job.title]")
continue
@@ -376,12 +402,17 @@ SUBSYSTEM_DEF(jobs)
if(player.mind && (job.title in player.mind.restricted_roles))
Debug("DO incompatible with antagonist role, Player: [player], Job:[job.title]")
continue
-
// If the player wants that job on this level, then try give it to him.
if(player.client.prefs.active_character.GetJobDepartment(job, level) & job.flag)
-
// If the job isn't filled
if(job.is_spawn_position_available())
+ if(player.mind.special_role && player.mind && (job.title in SSticker.mode.single_antag_positions)) //We want to check if they want the job, before rolling the prob chance
+ if((player.mind in SSjobs.failed_head_antag_roll) || !prob(probability_of_antag_role_restriction))
+ Debug("DO Failed probability of getting a second antagonist position in this job, Player: [player], Job:[job.title]")
+ SSjobs.failed_head_antag_roll |= player.mind
+ continue
+ else
+ probability_of_antag_role_restriction /= 10
Debug("DO pass, Player: [player], Level:[level], Job:[job.title]")
Debug(" - Job Flag: [job.flag] Job Department: [player.client.prefs.active_character.GetJobDepartment(job, level)] Job Current Pos: [job.current_positions] Job Spawn Positions = [job.spawn_positions]")
AssignRole(player, job.title)
@@ -418,6 +449,7 @@ SUBSYSTEM_DEF(jobs)
unassigned -= player
log_debug("Dividing Occupations took [stop_watch(watch)]s")
+ failed_head_antag_roll = list()
return TRUE
/datum/controller/subsystem/jobs/proc/AssignRank(mob/living/carbon/human/H, rank, joined_late = FALSE)
@@ -519,7 +551,7 @@ SUBSYSTEM_DEF(jobs)
H = new_mob
if(job && H)
- job.after_spawn(H)
+ job.after_spawn(H, joined_late) // SS220 EDIT - jobs - prisoner spawn
//Gives glasses to the vision impaired
if(HAS_TRAIT(H, TRAIT_NEARSIGHT))
@@ -529,8 +561,10 @@ SUBSYSTEM_DEF(jobs)
if(istype(G) && !G.prescription)
G.upgrade_prescription()
H.update_nearsighted_effects()
+
if(joined_late || job.admin_only)
H.create_log(MISC_LOG, "Spawned as \an [H.dna?.species ? H.dna.species : "Undefined species"] named [H]. [joined_late ? "Joined during the round" : "Roundstart joined"] as job: [rank].")
+ addtimer(CALLBACK(src, TYPE_PROC_REF(/datum/controller/subsystem/jobs, show_location_blurb), H.client, H.mind), 1 SECONDS) //Moment for minds to boot up / people to load in
return H
if(late_arrivals_spawning)
H.forceMove(pick(GLOB.latejoin))
@@ -545,6 +579,7 @@ SUBSYSTEM_DEF(jobs)
H.Sleeping(5 SECONDS)
H.Drunk((2 / liver_multiplier) MINUTES)
H.create_log(MISC_LOG, "Spawned as \an [H.dna?.species ? H.dna.species : "Undefined species"] named [H]. Roundstart joined as job: [rank].")
+ addtimer(CALLBACK(src, TYPE_PROC_REF(/datum/controller/subsystem/jobs, show_location_blurb), H.client, H.mind), 1 SECONDS) //Moment for minds to boot up / people to load in
return H
/datum/controller/subsystem/jobs/proc/LoadJobs(highpop = FALSE) //ran during round setup, reads info from jobs list
@@ -616,7 +651,7 @@ SUBSYSTEM_DEF(jobs)
//fuck
/datum/controller/subsystem/jobs/proc/CreateMoneyAccount(mob/living/H, rank, datum/job/job)
- if(!job.has_bank_account)
+ if(job && !job.has_bank_account)
return
var/starting_balance = job?.department_account_access ? COMMAND_MEMBER_STARTING_BALANCE : CREW_MEMBER_STARTING_BALANCE
var/datum/money_account/account = GLOB.station_money_database.create_account(H.real_name, starting_balance, ACCOUNT_SECURITY_ID, "NAS Trurl Accounting", TRUE)
diff --git a/code/controllers/subsystem/SSping.dm b/code/controllers/subsystem/SSping.dm
new file mode 100644
index 000000000000..d8fda04bddd6
--- /dev/null
+++ b/code/controllers/subsystem/SSping.dm
@@ -0,0 +1,41 @@
+/*!
+ * Copyright (c) 2022 Aleksej Komarov
+ * SPDX-License-Identifier: MIT
+ */
+
+SUBSYSTEM_DEF(ping)
+ name = "Ping"
+ priority = FIRE_PRIORITY_PING
+ wait = 4 SECONDS
+ flags = SS_NO_INIT
+ runlevels = RUNLEVEL_LOBBY | RUNLEVEL_SETUP | RUNLEVEL_GAME | RUNLEVEL_POSTGAME
+ offline_implications = "Chat ping system will no longer function correctly. No immediate action is needed."
+
+ /// List used each time SS fires to track which clients have been processed so far
+ var/list/current_run = list()
+
+/datum/controller/subsystem/ping/stat_entry()
+ ..("P:[length(GLOB.clients)]")
+
+/datum/controller/subsystem/ping/fire(resumed = FALSE)
+ // Prepare the new batch of clients
+ if(!resumed)
+ src.current_run = GLOB.clients.Copy()
+
+ // De-reference the list for sanic speeds
+ var/list/current_run = src.current_run
+
+ while(length(current_run))
+ var/client/client = current_run[current_run.len]
+ current_run.len--
+
+ if(client?.tgui_panel?.is_ready())
+ // Send a soft ping
+ client.tgui_panel.window.send_message("ping/soft", list(
+ // Slightly less than the subsystem timer (somewhat arbitrary)
+ // to prevent incoming pings from resetting the afk state
+ "afk" = client.is_afk(3.5 SECONDS),
+ ))
+
+ if(MC_TICK_CHECK)
+ return
diff --git a/code/controllers/subsystem/SStgui.dm b/code/controllers/subsystem/SStgui.dm
index 8ef9384f09c3..924a5f02919b 100644
--- a/code/controllers/subsystem/SStgui.dm
+++ b/code/controllers/subsystem/SStgui.dm
@@ -1,311 +1,357 @@
- /**
- * tgui subsystem
- *
- * Contains all tgui state and subsystem code.
- **/
-
+/**
+ * tgui subsystem
+ *
+ * Contains all tgui state and subsystem code.
+ *
+ * Copyright (c) 2020 Aleksej Komarov
+ * SPDX-License-Identifier: MIT
+ */
SUBSYSTEM_DEF(tgui)
- name = "TGUI"
+ name = "tgui"
wait = 9
flags = SS_NO_INIT
priority = FIRE_PRIORITY_TGUI
runlevels = RUNLEVEL_LOBBY | RUNLEVELS_DEFAULT
- offline_implications = "All TGUIs will no longer process. Shuttle call recommended."
- var/list/currentrun = list()
- var/list/open_uis = list() // A list of open UIs, grouped by src_object and ui_key.
- var/list/processing_uis = list() // A list of processing UIs, ungrouped.
- var/basehtml // The HTML base used for all UIs.
+ /// A list of UIs scheduled to process
+ var/list/current_run = list()
+ /// A list of open UIs
+ var/list/open_uis = list()
+ /// A list of open UIs, grouped by src_object.
+ var/list/open_uis_by_src = list()
+ /// The HTML base used for all UIs.
+ var/basehtml
/datum/controller/subsystem/tgui/PreInit()
- basehtml = file2text('tgui/packages/tgui/public/tgui.html')
+ basehtml = file2text('tgui/public/tgui.html')
+ // Inject inline polyfills
+ var/polyfill = file2text('tgui/public/tgui-polyfill.min.js')
+ polyfill = ""
+ basehtml = replacetextEx(basehtml, "", polyfill)
/datum/controller/subsystem/tgui/Shutdown()
close_all_uis()
-/datum/controller/subsystem/tgui/get_stat_details()
- return "P:[length(processing_uis)]"
-
-/datum/controller/subsystem/tgui/get_metrics()
- . = ..()
- var/list/cust = list()
- cust["processing"] = length(processing_uis)
- .["custom"] = cust
+/datum/controller/subsystem/tgui/stat_entry(msg)
+ msg = "P:[length(open_uis)]"
+ return ..()
-
-/datum/controller/subsystem/tgui/fire(resumed = 0)
+/datum/controller/subsystem/tgui/fire(resumed = FALSE)
if(!resumed)
- src.currentrun = processing_uis.Copy()
- //cache for sanic speed (lists are references anyways)
- var/list/currentrun = src.currentrun
-
- while(currentrun.len)
- var/datum/tgui/ui = currentrun[currentrun.len]
- currentrun.len--
+ src.current_run = open_uis.Copy()
+ // Cache for sanic speed (lists are references anyways)
+ var/list/current_run = src.current_run
+ while(current_run.len)
+ var/datum/tgui/ui = current_run[current_run.len]
+ current_run.len--
+ // TODO: Move user/src_object check to process()
if(ui && ui.user && ui.src_object)
ui.process()
else
- processing_uis.Remove(ui)
+ open_uis.Remove(ui)
if(MC_TICK_CHECK)
return
/**
* public
*
- * Get an open UI given a user, src_object, and ui_key and try to update it with data.
- * Returns the found UI.
+ * Requests a usable tgui window from the pool.
+ * Returns null if pool was exhausted.
*
- * * mob/user - The mob who opened/is using the UI. (REQUIRED)
- * * datum/src_object - The object/datum which owns the UI. (REQUIRED)
- * * ui_key - The ui_key of the UI. (REQUIRED)
- * * datum/tgui/ui - The UI to be updated, if it exists. (OPTIONAL)
- * * force_open - If the UI should be re-opened instead of updated. (OPTIONAL)
+ * required user mob
+ * return datum/tgui
*/
-/datum/controller/subsystem/tgui/proc/try_update_ui(mob/user, datum/src_object, ui_key, datum/tgui/ui, force_open = FALSE)
- if(isnull(ui)) // No UI was passed, so look for one.
- ui = get_open_ui(user, src_object, ui_key)
-
- if(!isnull(ui))
- var/data = src_object.ui_data(user) // Get data from the src_object.
- if(!force_open) // UI is already open; update it.
- ui.push_data(data)
- else // Re-open it anyways.
- ui.reinitialize(null, data)
- return ui // We found the UI, return it.
- else
- return null // We couldn't find a UI.
+/datum/controller/subsystem/tgui/proc/request_pooled_window(mob/user)
+ if(!user.client)
+ return
+ var/list/windows = user.client.tgui_windows
+ var/window_id
+ var/datum/tgui_window/window
+ var/window_found = FALSE
+ // Find a usable window
+ for(var/i in 1 to TGUI_WINDOW_HARD_LIMIT)
+ window_id = TGUI_WINDOW_ID(i)
+ window = windows[window_id]
+ // As we are looping, create missing window datums
+ if(!window)
+ window = new(user.client, window_id, pooled = TRUE)
+ // Skip windows with acquired locks
+ if(window.locked)
+ continue
+ if(window.status == TGUI_WINDOW_READY)
+ return window
+ if(window.status == TGUI_WINDOW_CLOSED)
+ window.status = TGUI_WINDOW_LOADING
+ window_found = TRUE
+ break
+ if(!window_found)
+ log_tgui(user, "Error: Pool exhausted")
+ return
+ return window
/**
- * private
+ * public
*
- * Get an open UI given a user, src_object, and ui_key.
- * Returns the found UI.
+ * Force closes all tgui windows.
*
- * * mob/user - The mob who opened/is using the UI. (REQUIRED)
- * * datum/src_object - The object/datum which owns the UI. (REQUIRED)
- * * ui_key - The ui_key of the UI. (REQUIRED)
+ * required user mob
*/
-/datum/controller/subsystem/tgui/proc/get_open_ui(mob/user, datum/src_object, ui_key)
- var/src_object_key = "[src_object.UID()]"
- if(isnull(open_uis[src_object_key]) || !islist(open_uis[src_object_key]))
- return null // No UIs open.
- else if(isnull(open_uis[src_object_key][ui_key]) || !islist(open_uis[src_object_key][ui_key]))
- return null // No UIs open for this object.
-
- for(var/datum/tgui/ui in open_uis[src_object_key][ui_key]) // Find UIs for this object.
- if(ui.user == user) // Make sure we have the right user
- return ui
-
- return null // Couldn't find a UI!
+/datum/controller/subsystem/tgui/proc/force_close_all_windows(mob/user)
+ log_tgui(user, "force_close_all_windows")
+ if(user.client)
+ user.client.tgui_windows = list()
+ for(var/i in 1 to TGUI_WINDOW_HARD_LIMIT)
+ var/window_id = TGUI_WINDOW_ID(i)
+ user << browse(null, "window=[window_id]")
/**
- * private
+ * public
*
- * Update all UIs attached to src_object.
- * Returns the number of UIs updated.
+ * Force closes the tgui window by window_id.
*
- * * datum/src_object - The object/datum which owns the UIs.
- * * update_static_data - If the static data of the `src_object` should be updated for every viewing user.
+ * required user mob
+ * required window_id string
*/
-/datum/controller/subsystem/tgui/proc/update_uis(datum/src_object, update_static_data = FALSE)
- var/src_object_key = "[src_object.UID()]"
- if(isnull(open_uis[src_object_key]) || !islist(open_uis[src_object_key]))
- return 0 // Couldn't find any UIs for this object.
-
- var/update_count = 0
- for(var/ui_key in open_uis[src_object_key])
- for(var/datum/tgui/ui in open_uis[src_object_key][ui_key])
- if(ui && ui.src_object && ui.user && ui.src_object.ui_host(ui.user)) // Check the UI is valid.
- if(update_static_data)
- src_object.update_static_data(ui.user, ui, ui_key)
- ui.process(force = 1) // Update the UI.
- update_count++ // Count each UI we update.
- return update_count
+/datum/controller/subsystem/tgui/proc/force_close_window(mob/user, window_id)
+ log_tgui(user, "force_close_window")
+ // Close all tgui datums based on window_id.
+ for(var/datum/tgui/ui in user.tgui_open_uis)
+ if(ui.window && ui.window.id == window_id)
+ ui.close(can_be_suspended = FALSE)
+ // Unset machine just to be sure.
+ user.unset_machine()
+ // Close window directly just to be sure.
+ user << browse(null, "window=[window_id]")
/**
- * private
+ * public
*
- * Close all UIs attached to src_object.
- * Returns the number of UIs closed.
+ * Try to find an instance of a UI, and push an update to it.
+ *
+ * required user mob The mob who opened/is using the UI.
+ * required src_object datum The object/datum which owns the UI.
+ * optional ui datum/tgui The UI to be updated, if it exists.
+ * optional force_open bool If the UI should be re-opened instead of updated.
*
- * * datum/src_object - The object/datum which owns the UIs.
+ * return datum/tgui The found UI.
*/
-/datum/controller/subsystem/tgui/proc/close_uis(datum/src_object)
- if(!src_object.unique_datum_id) // First check if the datum has an UID set
- return 0
- var/src_object_key = "[src_object.UID()]"
- if(isnull(open_uis[src_object_key]) || !islist(open_uis[src_object_key]))
- return 0 // Couldn't find any UIs for this object.
-
- var/close_count = 0
- for(var/ui_key in open_uis[src_object_key])
- for(var/datum/tgui/ui in open_uis[src_object_key][ui_key])
- if(ui && ui.src_object && ui.user && ui.src_object.ui_host(ui.user)) // Check the UI is valid.
- ui.close() // Close the UI.
- close_count++ // Count each UI we close.
- return close_count
+/datum/controller/subsystem/tgui/proc/try_update_ui(mob/user, datum/src_object, datum/tgui/ui, force_open = FALSE)
+ // Look up a UI if it wasn't passed
+ if(isnull(ui))
+ ui = get_open_ui(user, src_object)
+ // Couldn't find a UI.
+ if(isnull(ui))
+ return
+ var/data = src_object.ui_data(user) // Get data from the src_object.
+ if(force_open) // UI is already open; update it.
+ ui.send_full_update(data, TRUE)
+ return ui // We found the UI, return it
+ ui.process_status()
+ // UI ended up with the closed status
+ // or is actively trying to close itself.
+ // FIXME: Doesn't actually fix the paper bug.
+ if(ui.status <= UI_CLOSE)
+ ui.close()
+ return
+ ui.send_update()
+ return ui
/**
+ * public
+ *
+ * Get a open UI given a user and src_object.
*
- * Gets the amount of open UIs on an object
- * Returns the number of UIs open.
+ * required user mob The mob who opened/is using the UI.
+ * required src_object datum The object/datum which owns the UI.
*
- * * datum/src_object - The object/datum which owns the UIs.
+ * return datum/tgui The found UI.
*/
-/datum/controller/subsystem/tgui/proc/get_open_ui_count(datum/src_object)
- if(!src_object.unique_datum_id) // First check if the datum has an UID set
- return 0
- var/src_object_key = "[src_object.UID()]"
- if(isnull(open_uis[src_object_key]) || !islist(open_uis[src_object_key]))
- return 0 // Couldn't find any UIs for this object.
-
- var/open_count = 0
- for(var/ui_key in open_uis[src_object_key])
- for(var/datum/tgui/ui in open_uis[src_object_key][ui_key])
- if(ui && ui.src_object && ui.user && ui.src_object.ui_host(ui.user)) // Check the UI is valid.
- open_count++ // Count each UI thats open
+/datum/controller/subsystem/tgui/proc/get_open_ui(mob/user, datum/src_object)
+ var/key = "[src_object.UID()]"
+ // No UIs opened for this src_object
+ if(isnull(open_uis_by_src[key]) || !islist(open_uis_by_src[key]))
+ return
+ for(var/datum/tgui/ui in open_uis_by_src[key])
+ // Make sure we have the right user
+ if(ui.user == user)
+ return ui
+ return
- return open_count
+/**
+ * public
+ *
+ * Update all UIs attached to src_object.
+ *
+ * required src_object datum The object/datum which owns the UIs.
+ *
+ * return int The number of UIs updated.
+ */
+/datum/controller/subsystem/tgui/proc/update_uis(datum/src_object)
+ var/count = 0
+ var/key = "[src_object.UID()]"
+ // No UIs opened for this src_object
+ if(isnull(open_uis_by_src[key]) || !islist(open_uis_by_src[key]))
+ return count
+ for(var/datum/tgui/ui in open_uis_by_src[key])
+ // Check if UI is valid.
+ if(ui && ui.src_object && ui.user && ui.src_object.ui_host(ui.user))
+ ui.process(force = TRUE)
+ count++
+ return count
+/**
+ * public
+ *
+ * Close all UIs attached to src_object.
+ *
+ * required src_object datum The object/datum which owns the UIs.
+ *
+ * return int The number of UIs closed.
+ */
+/datum/controller/subsystem/tgui/proc/close_uis(datum/src_object)
+ . = 0
+ var/key = "[src_object.UID()]"
+ // No UIs opened for this src_object
+ if(isnull(open_uis_by_src[key]) || !islist(open_uis_by_src[key]))
+ return
+ for(var/datum/tgui/ui in open_uis_by_src[key])
+ // Check if UI is valid.
+ if(ui && ui.src_object && ui.user && ui.src_object.ui_host(ui.user))
+ ui.close()
+ .++
+ return
/**
- * private
+ * public
+ *
+ * Close all UIs regardless of their attachment to src_object.
*
- * Close *ALL* UIs
- * Returns the number of UIs closed.
+ * return int The number of UIs closed.
*/
/datum/controller/subsystem/tgui/proc/close_all_uis()
- var/close_count = 0
- for(var/src_object_key in open_uis)
- for(var/ui_key in open_uis[src_object_key])
- for(var/datum/tgui/ui in open_uis[src_object_key][ui_key])
- if(ui && ui.src_object && ui.user && ui.src_object.ui_host(ui.user)) // Check the UI is valid.
- ui.close() // Close the UI.
- close_count++ // Count each UI we close.
- return close_count
+ var/count = 0
+ for(var/key in open_uis_by_src)
+ for(var/datum/tgui/ui in open_uis_by_src[key])
+ // Check if UI is valid.
+ if(ui && ui.src_object && ui.user && ui.src_object.ui_host(ui.user))
+ ui.close()
+ count++
+ return count
/**
- * private
+ * public
*
* Update all UIs belonging to a user.
- * Returns the number of UIs updated.
*
- * * mob/user - The mob who opened/is using the UI. (REQUIRED)
- * * datum/src_object - If provided, only update UIs belonging this src_object. (OPTIONAL)
- * * ui_key - If provided, only update UIs with this UI key. (OPTIONAL)
+ * required user mob The mob who opened/is using the UI.
+ * optional src_object datum If provided, only update UIs belonging this src_object.
+ *
+ * return int The number of UIs updated.
*/
-/datum/controller/subsystem/tgui/proc/update_user_uis(mob/user, datum/src_object = null, ui_key = null)
- if(isnull(user.open_uis) || !islist(user.open_uis) || open_uis.len == 0)
- return 0 // Couldn't find any UIs for this user.
-
- var/update_count = 0
- for(var/datum/tgui/ui in user.open_uis)
- if((isnull(src_object) || !isnull(src_object) && ui.src_object == src_object) && (isnull(ui_key) || !isnull(ui_key) && ui.ui_key == ui_key))
- ui.process(force = 1) // Update the UI.
- update_count++ // Count each UI we upadte.
- return update_count
+/datum/controller/subsystem/tgui/proc/update_user_uis(mob/user, datum/src_object)
+ var/count = 0
+ if(length(user?.tgui_open_uis) == 0)
+ return count
+ for(var/datum/tgui/ui in user.tgui_open_uis)
+ if(isnull(src_object) || ui.src_object == src_object)
+ ui.process(force = TRUE)
+ count++
+ return count
/**
- * private
+ * public
*
* Close all UIs belonging to a user.
- * Returns the number of UIs closed.
*
- * * mob/user - The mob who opened/is using the UI. (REQUIRED)
- * * datum/src_object - If provided, only close UIs belonging this src_object. (OPTIONAL)
- * * ui_key - If provided, only close UIs with this UI key. (OPTIONAL)
+ * required user mob The mob who opened/is using the UI.
+ * optional src_object datum If provided, only close UIs belonging this src_object.
+ *
+ * return int The number of UIs closed.
*/
-/datum/controller/subsystem/tgui/proc/close_user_uis(mob/user, datum/src_object = null, ui_key = null)
- if(isnull(user.open_uis) || !islist(user.open_uis) || open_uis.len == 0)
- return 0 // Couldn't find any UIs for this user.
-
- var/close_count = 0
- for(var/datum/tgui/ui in user.open_uis)
- if((isnull(src_object) || !isnull(src_object) && ui.src_object == src_object) && (isnull(ui_key) || !isnull(ui_key) && ui.ui_key == ui_key))
- ui.close() // Close the UI.
- close_count++ // Count each UI we close.
- return close_count
+/datum/controller/subsystem/tgui/proc/close_user_uis(mob/user, datum/src_object)
+ var/count = 0
+ if(length(user?.tgui_open_uis) == 0)
+ return count
+ for(var/datum/tgui/ui in user.tgui_open_uis)
+ if(isnull(src_object) || ui.src_object == src_object)
+ ui.close()
+ count++
+ return count
/**
* private
*
* Add a UI to the list of open UIs.
*
- * * datum/tgui/ui - The UI to be added.
+ * required ui datum/tgui The UI to be added.
*/
/datum/controller/subsystem/tgui/proc/on_open(datum/tgui/ui)
- var/src_object_key = "[ui.src_object.UID()]"
- if(isnull(open_uis[src_object_key]) || !islist(open_uis[src_object_key]))
- open_uis[src_object_key] = list(ui.ui_key = list()) // Make a list for the ui_key and src_object.
- else if(isnull(open_uis[src_object_key][ui.ui_key]) || !islist(open_uis[src_object_key][ui.ui_key]))
- open_uis[src_object_key][ui.ui_key] = list() // Make a list for the ui_key.
-
- // Append the UI to all the lists.
- ui.user.open_uis |= ui
- var/list/uis = open_uis[src_object_key][ui.ui_key]
+ var/key = "[ui.src_object.UID()]"
+ if(isnull(open_uis_by_src[key]) || !islist(open_uis_by_src[key]))
+ open_uis_by_src[key] = list()
+ ui.user.tgui_open_uis |= ui
+ var/list/uis = open_uis_by_src[key]
uis |= ui
- processing_uis |= ui
+ open_uis |= ui
/**
* private
*
* Remove a UI from the list of open UIs.
- * Returns TRUE if removed, and FALSE if not.
*
- * * datum/tgui/ui - The UI to be removed.
+ * required ui datum/tgui The UI to be removed.
+ *
+ * return bool If the UI was removed or not.
*/
/datum/controller/subsystem/tgui/proc/on_close(datum/tgui/ui)
- var/src_object_key = "[ui.src_object.UID()]"
- if(isnull(open_uis[src_object_key]) || !islist(open_uis[src_object_key]))
- return FALSE // It wasn't open.
- else if(isnull(open_uis[src_object_key][ui.ui_key]) || !islist(open_uis[src_object_key][ui.ui_key]))
- return FALSE // It wasn't open.
-
- processing_uis.Remove(ui) // Remove it from the list of processing UIs.
- if(ui.user) // If the user exists, remove it from them too.
- ui.user.open_uis.Remove(ui)
- var/Ukey = ui.ui_key
- var/list/uis = open_uis[src_object_key][Ukey] // Remove it from the list of open UIs.
+ var/key = "[ui.src_object.UID()]"
+ if(isnull(open_uis_by_src[key]) || !islist(open_uis_by_src[key]))
+ return FALSE
+ // Remove it from the list of processing UIs.
+ open_uis.Remove(ui)
+ // If the user exists, remove it from them too.
+ if(ui.user)
+ ui.user.tgui_open_uis.Remove(ui)
+ var/list/uis = open_uis_by_src[key]
uis.Remove(ui)
- if(!uis.len)
- var/list/uiobj = open_uis[src_object_key]
- uiobj.Remove(Ukey)
- if(!uiobj.len)
- open_uis.Remove(src_object_key)
-
- return TRUE // Let the caller know we did it.
+ if(length(uis) == 0)
+ open_uis_by_src.Remove(key)
+ return TRUE
/**
* private
*
* Handle client logout, by closing all their UIs.
- * Returns the number of UIs closed.
*
- * * mob/user - The mob which logged out.
+ * required user mob The mob which logged out.
+ *
+ * return int The number of UIs closed.
*/
/datum/controller/subsystem/tgui/proc/on_logout(mob/user)
- return close_user_uis(user)
+ close_user_uis(user)
/**
* private
*
* Handle clients switching mobs, by transferring their UIs.
- * Returns TRUE if the UIs were transferred, and FALSE if not.
*
- * * mob/source - The client's original mob.
- * * mob/target - The client's new mob.
+ * required user source The client's original mob.
+ * required user target The client's new mob.
+ *
+ * return bool If the UIs were transferred.
*/
/datum/controller/subsystem/tgui/proc/on_transfer(mob/source, mob/target)
- if(!source || isnull(source.open_uis) || !islist(source.open_uis) || open_uis.len == 0)
- return FALSE // The old mob had no open UIs.
-
- if(isnull(target.open_uis) || !islist(target.open_uis))
- target.open_uis = list() // Create a list for the new mob if needed.
-
- for(var/datum/tgui/ui in source.open_uis)
- ui.user = target // Inform the UIs of their new owner.
- target.open_uis.Add(ui) // Transfer all the UIs.
-
- source.open_uis.Cut() // Clear the old list.
- return TRUE // Let the caller know we did it.
+ // The old mob had no open UIs.
+ if(length(source?.tgui_open_uis) == 0)
+ return FALSE
+ if(isnull(target.tgui_open_uis) || !istype(target.tgui_open_uis, /list))
+ target.tgui_open_uis = list()
+ // Transfer all the UIs.
+ for(var/datum/tgui/ui in source.tgui_open_uis)
+ // Inform the UIs of their new owner.
+ ui.user = target
+ target.tgui_open_uis.Add(ui)
+ // Clear the old list.
+ source.tgui_open_uis.Cut()
+ return TRUE
diff --git a/code/controllers/subsystem/SSthrowing.dm b/code/controllers/subsystem/SSthrowing.dm
index 606c762bb10b..10944b42c338 100644
--- a/code/controllers/subsystem/SSthrowing.dm
+++ b/code/controllers/subsystem/SSthrowing.dm
@@ -70,6 +70,8 @@ SUBSYSTEM_DEF(throwing)
var/last_move = 0
///When this variable is false, non dense mobs will be hit by a thrown item. useful for things that you dont want to be cheesed by crawling, EG. gravitational anomalies
var/dodgeable = TRUE
+ /// Can a thrown mob move themselves to stop the throw?
+ var/block_movement = TRUE
/datum/thrownthing/proc/tick()
var/atom/movable/AM = thrownthing
diff --git a/code/controllers/subsystem/SSticker.dm b/code/controllers/subsystem/SSticker.dm
index 0e99b37bcd5d..2c500571b4e1 100644
--- a/code/controllers/subsystem/SSticker.dm
+++ b/code/controllers/subsystem/SSticker.dm
@@ -296,9 +296,25 @@ SUBSYSTEM_DEF(ticker)
// Generate code phrases and responses
if(!GLOB.syndicate_code_phrase)
- GLOB.syndicate_code_phrase = generate_code_phrase()
+ var/temp_syndicate_code_phrase = generate_code_phrase(return_list = TRUE)
+
+ var/codewords = jointext(temp_syndicate_code_phrase, "|")
+ var/regex/codeword_match = new("([codewords])", "ig")
+
+ GLOB.syndicate_code_phrase_regex = codeword_match
+ temp_syndicate_code_phrase = jointext(temp_syndicate_code_phrase, ", ")
+ GLOB.syndicate_code_phrase = temp_syndicate_code_phrase
+
+
if(!GLOB.syndicate_code_response)
- GLOB.syndicate_code_response = generate_code_phrase()
+ var/temp_syndicate_code_response = generate_code_phrase(return_list = TRUE)
+
+ var/codewords = jointext(temp_syndicate_code_response, "|")
+ var/regex/codeword_match = new("([codewords])", "ig")
+
+ GLOB.syndicate_code_response_regex = codeword_match
+ temp_syndicate_code_response = jointext(temp_syndicate_code_response, ", ")
+ GLOB.syndicate_code_response = temp_syndicate_code_response
// Run post setup stuff
mode.post_setup()
@@ -699,8 +715,10 @@ SUBSYSTEM_DEF(ticker)
/datum/controller/subsystem/ticker/proc/reboot_helper(reason, end_string, delay)
// Admins delayed round end. Just alert and dont bother with anything else.
if(delay_end)
- to_chat(world, "An admin has delayed the round end.")
+ to_chat(world, "An admin has delayed the round end.")
return
+ if(delay)
+ INVOKE_ASYNC(src, TYPE_PROC_REF(/datum/controller/subsystem/ticker, show_server_restart_blurb), reason)
if(!isnull(delay))
// Delay time was present. Use that.
@@ -709,14 +727,14 @@ SUBSYSTEM_DEF(ticker)
// Use default restart timeout
delay = restart_timeout
- to_chat(world, "Rebooting world in [delay/10] [delay > 10 ? "seconds" : "second"]. [reason]")
+ to_chat(world, "Rebooting world in [delay/10] [delay > 10 ? "seconds" : "second"]. [reason]")
real_reboot_time = world.time + delay
UNTIL(world.time > real_reboot_time) // Hold it here
// And if we re-delayed, bail again
if(delay_end)
- to_chat(world, "Reboot was cancelled by an admin.")
+ to_chat(world, "Reboot was cancelled by an admin.")
return
if(end_string)
diff --git a/code/controllers/subsystem/SStimer.dm b/code/controllers/subsystem/SStimer.dm
index 53571e6eb7d8..7e80a9c06e75 100644
--- a/code/controllers/subsystem/SStimer.dm
+++ b/code/controllers/subsystem/SStimer.dm
@@ -224,7 +224,7 @@ SUBSYSTEM_DEF(timer)
* Generates a string with details about the timed event for debugging purposes
*/
/datum/controller/subsystem/timer/proc/get_timer_debug_string(datum/timedevent/TE)
- . = "Timer: [TE]"
+ . = "Timer: [TE.getTimerInfo()]"
. += "Prev: [TE.prev ? TE.prev : "NULL"], Next: [TE.next ? TE.next : "NULL"]"
if(TE.spent)
. += ", SPENT([TE.spent])"
@@ -502,14 +502,8 @@ SUBSYSTEM_DEF(timer)
* If the timed event is tracking client time, it will be added to a special bucket.
*/
/datum/timedevent/proc/bucketJoin()
- // Generate debug-friendly name for timer
- var/static/list/bitfield_flags = list("TIMER_UNIQUE", "TIMER_OVERRIDE", "TIMER_CLIENT_TIME", "TIMER_STOPPABLE", "TIMER_NO_HASH_WAIT", "TIMER_LOOP")
- name = "Timer: [id] (\ref[src]), TTR: [timeToRun], wait:[wait] Flags: [jointext(bitfield2list(flags, bitfield_flags), ", ")], \
- callBack: \ref[callBack], callBack.object: [callBack.object]\ref[callBack.object]([getcallingtype()]), \
- callBack.delegate:[callBack.delegate]([callBack.arguments ? callBack.arguments.Join(", ") : ""]), source: [source]"
-
if(bucket_joined)
- stack_trace("Bucket already joined! [name]")
+ stack_trace("Bucket already joined! [getTimerInfo()]")
// Check if this timed event should be diverted to the client time bucket, or the secondary queue
var/list/L
@@ -529,7 +523,7 @@ SUBSYSTEM_DEF(timer)
if(bucket_pos < SStimer.practical_offset && timeToRun < (SStimer.head_offset + TICKS2DS(BUCKET_LEN)))
WARNING("Bucket pos in past: bucket_pos = [bucket_pos] < practical_offset = [SStimer.practical_offset] \
- && timeToRun = [timeToRun] < [SStimer.head_offset + TICKS2DS(BUCKET_LEN)], Timer: [name]")
+ && timeToRun = [timeToRun] < [SStimer.head_offset + TICKS2DS(BUCKET_LEN)], Timer: [getTimerInfo()]")
bucket_pos = SStimer.practical_offset // Recover bucket_pos to avoid timer blocking queue
var/datum/timedevent/bucket_head = bucket_list[bucket_pos]
@@ -550,6 +544,21 @@ SUBSYSTEM_DEF(timer)
prev = null
bucket_list[bucket_pos] = src
+/**
+ * Returns debug information about timer
+ */
+/datum/timedevent/proc/getTimerInfo()
+ var/static/list/bitfield_flags = list("TIMER_UNIQUE", "TIMER_OVERRIDE", "TIMER_CLIENT_TIME", "TIMER_STOPPABLE", "TIMER_NO_HASH_WAIT", "TIMER_LOOP")
+ if(!name)
+ name = "Timer: [id] (\ref[src]), TTR: [timeToRun], wait:[wait] Flags: [jointext(bitfield2list(flags, bitfield_flags), ", ")], \
+ callBack: \ref[callBack], callBack.object: [callBack.object]\ref[callBack.object]([getcallingtype()]), \
+ callBack.delegate:[callBack.delegate]([callBack.arguments ? callBack.arguments.Join(", ") : ""]), source: [source]"
+ return name
+
+/datum/timedevent/can_vv_get(var_name)
+ getTimerInfo()
+ return ..()
+
/**
* Returns a string of the type of the callback for this timer
*/
diff --git a/code/controllers/subsystem/non_firing/SSassets.dm b/code/controllers/subsystem/non_firing/SSassets.dm
index d2c9a90217df..83bd6b5b9b5b 100644
--- a/code/controllers/subsystem/non_firing/SSassets.dm
+++ b/code/controllers/subsystem/non_firing/SSassets.dm
@@ -2,15 +2,38 @@ SUBSYSTEM_DEF(assets)
name = "Assets"
init_order = INIT_ORDER_ASSETS
flags = SS_NO_FIRE
+ /// Contains /datum/asset_cache_item
var/list/cache = list()
var/list/preload = list()
+ var/datum/asset_transport/transport = new()
-/datum/controller/subsystem/assets/Initialize()
- for(var/type in typesof(/datum/asset) - list(/datum/asset, /datum/asset/simple))
- var/datum/asset/A = new type()
- A.register()
+/datum/controller/subsystem/assets/Initialize(timeofday)
+ load_assets()
+ apply_configuration()
- preload = cache.Copy() //don't preload assets generated during the round
+/datum/controller/subsystem/assets/Recover()
+ cache = SSassets.cache
+ preload = SSassets.preload
- for(var/client/C in GLOB.clients)
- addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(getFilesSlow), C, preload, FALSE), 10)
+/datum/controller/subsystem/assets/proc/apply_configuration(initialize_transport = TRUE)
+ var/newtransporttype = /datum/asset_transport
+ switch(GLOB.configuration.asset_cache.asset_transport)
+ if("webroot")
+ newtransporttype = /datum/asset_transport/webroot
+
+ if(newtransporttype == transport.type)
+ return
+
+ var/datum/asset_transport/newtransport = new newtransporttype
+ if(newtransport.validate_config())
+ transport = newtransport
+
+ if(initialize_transport)
+ transport.Initialize(cache)
+
+/datum/controller/subsystem/assets/proc/load_assets()
+ for(var/datum/asset/asset_to_load as anything in typesof(/datum/asset))
+ if(initial(asset_to_load._abstract))
+ continue
+
+ get_asset_datum(type)
diff --git a/code/controllers/subsystem/non_firing/SSchangelog.dm b/code/controllers/subsystem/non_firing/SSchangelog.dm
index cfff6afee409..52b9f2004283 100644
--- a/code/controllers/subsystem/non_firing/SSchangelog.dm
+++ b/code/controllers/subsystem/non_firing/SSchangelog.dm
@@ -53,12 +53,6 @@ SUBSYSTEM_DEF(changelog)
if(!ss_ready)
return // Only return here, we dont have to worry about a queue list because this will be called from ShowChangelog()
- if(C.prefs.toggles & PREFTOGGLE_UI_DARKMODE)
- winset(C, "rpane.changelog", "background-color=#40628a;font-color=#ffffff;font-style=none")
- else
- winset(C, "rpane.changelog", "background-color=none;font-style=none")
-
-
C.prefs.lastchangelog = current_cl_timestamp
var/datum/db_query/updatePlayerCLTime = SSdbcore.NewQuery(
@@ -76,22 +70,12 @@ SUBSYSTEM_DEF(changelog)
/datum/controller/subsystem/changelog/proc/UpdatePlayerChangelogButton(client/C)
// If SQL aint even enabled, or we aint ready just set the button to default style
if(!SSdbcore.IsConnected() || !ss_ready)
- if(C.prefs.toggles & PREFTOGGLE_UI_DARKMODE)
- winset(C, "rpane.changelog", "background-color=#40628a;text-color=#FFFFFF")
- else
- winset(C, "rpane.changelog", "background-color=none;text-color=#000000")
return
// If we are ready, process the button style
if(C.prefs.lastchangelog != current_cl_timestamp)
- winset(C, "rpane.changelog", "background-color=#bb7700;text-color=#FFFFFF;font-style=bold")
+ winset(C, "rpane.changelog", "border=line;font-style=bold")
to_chat(C, "Changelog has changed since your last visit.")
- else
- if(C.prefs.toggles & PREFTOGGLE_UI_DARKMODE)
- winset(C, "rpane.changelog", "background-color=#40628a;text-color=#FFFFFF")
- else
- winset(C, "rpane.changelog", "background-color=none;text-color=#000000")
-
/datum/controller/subsystem/changelog/proc/OpenChangelog(client/C)
// If SQL isnt enabled, dont even queue them, just tell them it wont work
@@ -204,10 +188,13 @@ SUBSYSTEM_DEF(changelog)
return data
-/datum/controller/subsystem/changelog/ui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = FALSE, datum/tgui/master_ui = null, datum/ui_state/state = GLOB.always_state)
- ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open)
+/datum/controller/subsystem/changelog/ui_state(mob/user)
+ return GLOB.always_state
+
+/datum/controller/subsystem/changelog/ui_interact(mob/user, datum/tgui/ui = null)
+ ui = SStgui.try_update_ui(user, src, ui)
if(!ui)
- ui = new(user, src, ui_key, "ChangelogView", name, 750, 800, master_ui, state)
+ ui = new(user, src, "ChangelogView", name)
ui.set_autoupdate(FALSE)
ui.open()
@@ -224,13 +211,13 @@ SUBSYSTEM_DEF(changelog)
if("open_pr")
var/pr_num = params["pr_number"]
if(GLOB.configuration.url.github_url)
- if(alert("This will open PR #[pr_num] in your browser. Are you sure?", "Open PR", "Yes", "No") == "No")
+ if(tgui_alert(usr, "This will open PR #[pr_num] in your browser. Are you sure?", "Open PR", list("Yes", "No")) != "Yes")
return
// If the github URL in the config has a trailing slash, it doesnt matter here, thankfully github accepts having a double slash: https://github.com/org/repo//pull/1
var/url = "[GLOB.configuration.url.github_url]/pull/[pr_num]"
usr << link(url)
- return
+ return TRUE
to_chat(usr, "The GitHub URL is not set in the server configuration. PRs cannot be opened from changelog view. Please inform the server host.")
diff --git a/code/controllers/subsystem/non_firing/SSmapping.dm b/code/controllers/subsystem/non_firing/SSmapping.dm
index e5c776c8ed53..def0d7fffebc 100644
--- a/code/controllers/subsystem/non_firing/SSmapping.dm
+++ b/code/controllers/subsystem/non_firing/SSmapping.dm
@@ -13,7 +13,7 @@ SUBSYSTEM_DEF(mapping)
///List of areas that exist on the station this shift
var/list/existing_station_areas
///What do we have as the lavaland theme today?
- var/turf/simulated/floor/lavaland_theme
+ var/datum/lavaland_theme/lavaland_theme
///What primary cave theme we have picked for cave generation today.
var/cave_theme
@@ -40,8 +40,11 @@ SUBSYSTEM_DEF(mapping)
F << next_map.type
/datum/controller/subsystem/mapping/Initialize()
- lavaland_theme = pick(/turf/simulated/floor/lava/lava_land_surface, /turf/simulated/floor/lava/lava_land_surface/plasma, /turf/simulated/floor/chasm/straight_down/lava_land_surface)
+ var/datum/lavaland_theme/lavaland_theme_type = pick(subtypesof(/datum/lavaland_theme))
+ ASSERT(lavaland_theme_type)
+ lavaland_theme = new lavaland_theme_type
log_startup_progress("We're in the mood for [initial(lavaland_theme.name)] today...") //We load this first. In the event some nerd ever makes a surface map, and we don't have it in lavaland in the event lavaland is disabled.
+
cave_theme = pick(BLOCKED_BURROWS, CLASSIC_CAVES, DEADLY_DEEPROCK)
log_startup_progress("We feel like [cave_theme] today...")
// Load all Z level templates
@@ -71,14 +74,8 @@ SUBSYSTEM_DEF(mapping)
log_startup_progress("Populating lavaland...")
var/lavaland_setup_timer = start_watch()
seedRuins(list(level_name_to_num(MINING)), GLOB.configuration.ruins.lavaland_ruin_budget, /area/lavaland/surface/outdoors/unexplored, GLOB.lava_ruins_templates)
- switch(lavaland_theme)
- if(/turf/simulated/floor/lava/lava_land_surface)
- spawn_rivers(level_name_to_num(MINING)) //Default spawn, no tweaks needed
- if(/turf/simulated/floor/lava/lava_land_surface/plasma) //More rivers, smaller
- spawn_rivers(level_name_to_num(MINING), nodes = 2)
- spawn_rivers(level_name_to_num(MINING), nodes = 2)
- if(/turf/simulated/floor/chasm/straight_down/lava_land_surface) //Thiner chasms, bridges, reaches to edge of map.
- spawn_rivers(level_name_to_num(MINING), nodes = 6, turf_type = /turf/simulated/floor/lava/mapping_lava, whitelist_area = /area/lavaland/surface/outdoors, min_x = 50, min_y = 7, max_x = 250, max_y = 225, prob = 10, prob_loss = 5)
+ if(lavaland_theme)
+ lavaland_theme.setup()
var/time_spent = stop_watch(lavaland_setup_timer)
log_startup_progress("Successfully populated lavaland in [time_spent]s.")
else
@@ -129,6 +126,8 @@ SUBSYSTEM_DEF(mapping)
var/num_extra_space = rand(GLOB.configuration.ruins.extra_levels_min, GLOB.configuration.ruins.extra_levels_max)
for(var/i in 1 to num_extra_space)
GLOB.space_manager.add_new_zlevel("Ruin Area #[i]", linkage = CROSSLINKED, traits = list(REACHABLE_BY_CREW, SPAWN_RUINS, REACHABLE_SPACE_ONLY))
+ CHECK_TICK
+
log_startup_progress("Loaded random space levels in [stop_watch(load_zlevels_timer)]s.")
// Now spawn ruins, random budget between 20 and 30 for all zlevels combined.
diff --git a/code/controllers/subsystem/processing/processing.dm b/code/controllers/subsystem/processing/processing.dm
index 4ec3beb5c6ff..14ab39fdcdfc 100644
--- a/code/controllers/subsystem/processing/processing.dm
+++ b/code/controllers/subsystem/processing/processing.dm
@@ -37,8 +37,6 @@ SUBSYSTEM_DEF(processing)
if(MC_TICK_CHECK)
return
-/datum/var/isprocessing = FALSE
-
/datum/proc/process()
set waitfor = 0
return PROCESS_KILL
diff --git a/code/controllers/subsystem/tickets/tickets.dm b/code/controllers/subsystem/tickets/tickets.dm
index d3310abcaa67..e72f61da2227 100644
--- a/code/controllers/subsystem/tickets/tickets.dm
+++ b/code/controllers/subsystem/tickets/tickets.dm
@@ -252,14 +252,14 @@ SUBSYSTEM_DEF(tickets)
C.man_up(returnClient(N))
T.lastStaffResponse = "Autoresponse: [message_key]"
resolveTicket(N)
- message_staff("[C] has auto responded to [ticket_owner]\'s adminhelp with: [message_key] ")
+ message_staff("[C] has auto responded to [ticket_owner]\'s adminhelp with: [message_key]")
log_game("[C] has auto responded to [ticket_owner]\'s adminhelp with: [response_phrases[message_key]]")
if("Mentorhelp")
convert_ticket(T)
else
SEND_SOUND(returnClient(N), sound('sound/effects/adminhelp.ogg'))
to_chat_safe(returnClient(N), "[key_name_hidden(C)] is autoresponding with: [response_phrases[message_key]]")//for this we want the full value of whatever key this is to tell the player so we do response_phrases[message_key]
- message_staff("[C] has auto responded to [ticket_owner]\'s adminhelp with: [message_key] ") //we want to use the short named keys for this instead of the full sentence which is why we just do message_key
+ message_staff("[C] has auto responded to [ticket_owner]\'s adminhelp with: [message_key]") //we want to use the short named keys for this instead of the full sentence which is why we just do message_key
T.lastStaffResponse = "Autoresponse: [message_key]"
resolveTicket(N)
log_game("[C] has auto responded to [ticket_owner]\'s adminhelp with: [response_phrases[message_key]]")
diff --git a/code/datums/action.dm b/code/datums/action.dm
index 0bdd5c4a0a36..0e6dc66076dc 100644
--- a/code/datums/action.dm
+++ b/code/datums/action.dm
@@ -445,7 +445,7 @@
/datum/action/item_action/instrument
name = "Use Instrument"
- desc = "Use the instrument specified"
+ desc = "Use the instrument specified."
/datum/action/item_action/instrument/Trigger(left_click)
if(istype(target, /obj/item/instrument))
@@ -551,7 +551,7 @@
/datum/action/item_action/accessory/herald
name = "Mirror Walk"
- desc = "Use near a mirror to enter it"
+ desc = "Use near a mirror to enter it."
//Preset for spells
/datum/action/spell_action
diff --git a/code/datums/beam.dm b/code/datums/beam.dm
index d40051220839..f67b5f2ed4c9 100644
--- a/code/datums/beam.dm
+++ b/code/datums/beam.dm
@@ -14,8 +14,9 @@
var/origin_oldloc = null
var/static_beam = FALSE
var/beam_type = /obj/effect/ebeam //must be subtype
+ var/beamcolor
-/datum/beam/New(beam_origin,beam_target,beam_icon='icons/effects/beam.dmi',beam_icon_state="b_beam",time=50,maxdistance=10,btype = /obj/effect/ebeam,beam_sleep_time=3)
+/datum/beam/New(beam_origin, beam_target,beam_icon = 'icons/effects/beam.dmi', beam_icon_state = "b_beam", time = 50, maxdistance = 10, btype = /obj/effect/ebeam, beam_sleep_time = 3, beam_color)
endtime = world.time+time
origin = beam_origin
origin_oldloc = get_turf(origin)
@@ -29,6 +30,7 @@
icon = beam_icon
icon_state = beam_icon_state
beam_type = btype
+ beamcolor = beam_color
/datum/beam/proc/Start()
Draw()
@@ -77,10 +79,12 @@
//cropped by a transparent box of length-N pixel size
if(N+32>length)
var/icon/II = new(icon, icon_state)
- II.DrawBox(null,1,(length-N),32,32)
+ II.DrawBox(null, 1, (length-N), 32, 32)
X.icon = II
else
X.icon = base_icon
+ if(beamcolor)
+ X.color = beamcolor
X.transform = rot_matrix
//Calculate pixel offsets (If necessary)
@@ -163,7 +167,7 @@
var/armor = L.run_armor_check(limb_to_hit, LASER)
L.apply_damage(damage, BURN, limb_to_hit, armor)
-/atom/proc/Beam(atom/BeamTarget,icon_state="b_beam",icon='icons/effects/beam.dmi',time=50, maxdistance=10,beam_type=/obj/effect/ebeam,beam_sleep_time=3)
- var/datum/beam/newbeam = new(src,BeamTarget,icon,icon_state,time,maxdistance,beam_type,beam_sleep_time)
+/atom/proc/Beam(atom/BeamTarget, icon_state="b_beam", icon='icons/effects/beam.dmi', time = 5 SECONDS, maxdistance = 10, beam_type = /obj/effect/ebeam, beam_sleep_time = 3, beam_color)
+ var/datum/beam/newbeam = new(src, BeamTarget, icon, icon_state, time, maxdistance, beam_type, beam_sleep_time, beam_color)
INVOKE_ASYNC(newbeam, TYPE_PROC_REF(/datum/beam, Start))
return newbeam
diff --git a/code/datums/browser.dm b/code/datums/browser.dm
index 24d324d6e77f..e48861f533fd 100644
--- a/code/datums/browser.dm
+++ b/code/datums/browser.dm
@@ -1,24 +1,29 @@
/datum/browser
var/mob/user
var/title
- var/window_id // window_id is used as the window name for browse and onclose
+ /// window_id is used as the window name for browse and onclose calls
+ var/window_id
var/width = 0
var/height = 0
- var/atom/ref = null
- var/window_options = "focus=0;can_close=1;can_minimize=1;can_maximize=0;can_resize=1;titlebar=1;" // window option is set using window_id
+ /// UID of the host atom
+ var/atom_uid = null
+ /// Various options to control elements such as titlebar buttons for the window
+ var/list/window_options = list("focus=0;can_close=1;can_minimize=1;can_maximize=0;can_resize=1;titlebar=1;") // window option is set using window_id
+ /// Assoc list of stylesheets for use by the datum
var/stylesheets[0]
+ /// Assoc list of script files for use by the datum
var/scripts[0]
- var/title_image
- var/head_elements
- var/body_elements
- var/head_content = ""
- var/content = ""
- var/title_buttons = ""
+ /// Should default stylesheets be loaded
+ var/include_default_stylesheet = TRUE
+ /// Header HTML content of the browser datum
+ var/list/head_content = list()
+ /// HTML content of the browser datum
+ var/list/content = list()
-/datum/browser/New(nuser, nwindow_id, ntitle = 0, nwidth = 0, nheight = 0, atom/nref = null)
-
+/datum/browser/New(nuser, nwindow_id, ntitle = 0, nwidth = 0, nheight = 0, atom/atom = null)
user = nuser
+ RegisterSignal(user, COMSIG_PARENT_QDELETING, PROC_REF(user_deleted))
window_id = nwindow_id
if(ntitle)
title = format_text(ntitle)
@@ -26,64 +31,71 @@
width = nwidth
if(nheight)
height = nheight
- if(nref)
- ref = nref
- add_stylesheet("common", 'html/browser/common.css') // this CSS sheet is common to all UIs
+ if(atom)
+ atom_uid = atom.UID()
+
+/datum/browser/proc/user_deleted(datum/source)
+ SIGNAL_HANDLER
+ user = null
/datum/browser/proc/set_title(ntitle)
- title = format_text(ntitle)
+ title = islist(ntitle) ? ntitle : list(ntitle)
/datum/browser/proc/add_head_content(nhead_content)
- head_content = nhead_content
-
-/datum/browser/proc/set_title_buttons(ntitle_buttons)
- title_buttons = ntitle_buttons
+ head_content = islist(nhead_content) ? nhead_content : list(nhead_content)
/datum/browser/proc/set_window_options(nwindow_options)
- window_options = nwindow_options
-
-/datum/browser/proc/set_title_image(ntitle_image)
- //title_image = ntitle_image
+ window_options = islist(nwindow_options) ? nwindow_options : list(nwindow_options)
/datum/browser/proc/add_stylesheet(name, file)
- stylesheets[name] = file
+ if(istype(name, /datum/asset/spritesheet))
+ var/datum/asset/spritesheet/sheet = name
+ stylesheets["spritesheet_[sheet.name].css"] = "data/spritesheets/[sheet.name]"
+ else
+ var/asset_name = "[name].css"
+
+ stylesheets[asset_name] = file
+
+ if(!SSassets.cache[asset_name])
+ SSassets.transport.register_asset(asset_name, file)
+
+/datum/browser/proc/add_scss_stylesheet(name, file)
+ var/asset_name = "[name].scss"
+ stylesheets[asset_name] = file
+
+ if(!SSassets.cache[asset_name])
+ SSassets.transport.register_asset(asset_name, file)
/datum/browser/proc/add_script(name, file)
- scripts[name] = file
+ scripts["[ckey(name)].js"] = file
+ SSassets.transport.register_asset("[ckey(name)].js", file)
/datum/browser/proc/set_content(ncontent)
- content = ncontent
+ content = islist(ncontent) ? ncontent : list(ncontent)
/datum/browser/proc/add_content(ncontent)
content += ncontent
/datum/browser/proc/get_header()
- var/key
- var/filename
- for(key in stylesheets)
- filename = "[ckey(key)].css"
- user << browse_rsc(stylesheets[key], filename)
- head_content += ""
-
- for(key in scripts)
- filename = "[ckey(key)].js"
- user << browse_rsc(scripts[key], filename)
- head_content += ""
-
- var/title_attributes = "class='uiTitle'"
- if(title_image)
- title_attributes = "class='uiTitle icon' style='background-image: url([title_image]);'"
-
- return {"
+ if(include_default_stylesheet)
+ head_content += ""
+
+ for(var/file in stylesheets)
+ head_content += ""
+
+ for(var/file in scripts)
+ head_content += ""
+
+ return {"
-
-
- [head_content]
+
+
+ [head_content.Join("")]
"
- dat += "![]() | "
- else
- dat += "ERR: Unable to retrieve image data for occupant."
- dat += "Probe " - dat += "Dissect " - dat += "Analyze " - dat += " |
Player | Job | Crew | " @@ -80,7 +81,7 @@ GLOBAL_LIST_INIT(role_playtime_requirements, list( msg += "
---|